Methods Summary |
---|
public static android.support.v8.renderscript.ScriptIntrinsicLUTThunker | create(RenderScript rs, Element e)
RenderScriptThunker rst = (RenderScriptThunker) rs;
ElementThunker et = (ElementThunker) e;
ScriptIntrinsicLUTThunker si = new ScriptIntrinsicLUTThunker(0, rs);
try {
si.mN = android.renderscript.ScriptIntrinsicLUT.create(rst.mN, et.getNObj());
} catch (android.renderscript.RSRuntimeException exc) {
throw ExceptionThunker.convertException(exc);
}
return si;
|
public void | forEach(Allocation ain, Allocation aout)
AllocationThunker aint = (AllocationThunker)ain;
AllocationThunker aoutt = (AllocationThunker)aout;
try {
mN.forEach(aint.getNObj(), aoutt.getNObj());
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|
public Script.KernelID | getKernelID()
Script.KernelID k = createKernelID(0, 3, null, null);
try {
k.mN = mN.getKernelID();
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
return k;
|
android.renderscript.ScriptIntrinsicLUT | getNObj()
return mN;
|
public void | setAlpha(int index, int value)
try {
mN.setAlpha(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|
public void | setBlue(int index, int value)
try {
mN.setBlue(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|
public void | setGreen(int index, int value)
try {
mN.setGreen(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|
public void | setRed(int index, int value)
try {
mN.setRed(index, value);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|