Methods Summary |
---|
public static android.support.v8.renderscript.ScriptIntrinsicConvolve3x3Thunker | create(RenderScript rs, Element e)
RenderScriptThunker rst = (RenderScriptThunker) rs;
ElementThunker et = (ElementThunker) e;
ScriptIntrinsicConvolve3x3Thunker si = new ScriptIntrinsicConvolve3x3Thunker(0, rs);
try {
si.mN = android.renderscript.ScriptIntrinsicConvolve3x3.create(rst.mN, et.getNObj());
} catch (android.renderscript.RSRuntimeException exc) {
throw ExceptionThunker.convertException(exc);
}
return si;
|
public void | forEach(Allocation aout)
AllocationThunker aoutt = (AllocationThunker)aout;
try {
mN.forEach(aoutt.getNObj());
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|
public Script.FieldID | getFieldID_Input()
Script.FieldID f = createFieldID(1, null);
try {
f.mN = mN.getFieldID_Input();
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
return f;
|
public Script.KernelID | getKernelID()
Script.KernelID k = createKernelID(0, 2, null, null);
try {
k.mN = mN.getKernelID();
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
return k;
|
android.renderscript.ScriptIntrinsicConvolve3x3 | getNObj()
return mN;
|
public void | setCoefficients(float[] v)
try {
mN.setCoefficients(v);
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|
public void | setInput(Allocation ain)
AllocationThunker aint = (AllocationThunker)ain;
try {
mN.setInput(aint.getNObj());
} catch (android.renderscript.RSRuntimeException e) {
throw ExceptionThunker.convertException(e);
}
|