FileDocCategorySizeDatePackage
ScriptIntrinsicConvolve5x5Thunker.javaAPI DocAndroid 5.1 API3001Thu Mar 12 22:22:56 GMT 2015android.support.v8.renderscript

ScriptIntrinsicConvolve5x5Thunker

public class ScriptIntrinsicConvolve5x5Thunker extends ScriptIntrinsicConvolve5x5

Fields Summary
android.renderscript.ScriptIntrinsicConvolve5x5
mN
Constructors Summary
ScriptIntrinsicConvolve5x5Thunker(int id, RenderScript rs)

        super(id, rs);
    
Methods Summary
public static android.support.v8.renderscript.ScriptIntrinsicConvolve5x5Thunkercreate(RenderScript rs, Element e)

        RenderScriptThunker rst = (RenderScriptThunker) rs;
        ElementThunker et = (ElementThunker) e;

        ScriptIntrinsicConvolve5x5Thunker si = new ScriptIntrinsicConvolve5x5Thunker(0, rs);
        try {
            si.mN = android.renderscript.ScriptIntrinsicConvolve5x5.create(rst.mN, et.getNObj());
        } catch (android.renderscript.RSRuntimeException exc) {
            throw ExceptionThunker.convertException(exc);
        }
        return si;
    
public voidforEach(Allocation aout)

        AllocationThunker aoutt = (AllocationThunker)aout;
        try {
            mN.forEach(aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }

    
public Script.FieldIDgetFieldID_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.KernelIDgetKernelID()

        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.ScriptIntrinsicConvolve5x5getNObj()

        return mN;
    
public voidsetCoefficients(float[] v)

        try {
            mN.setCoefficients(v);
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidsetInput(Allocation ain)

        AllocationThunker aint = (AllocationThunker)ain;
        try {
            mN.setInput(aint.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }