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

ScriptIntrinsicBlendThunker

public class ScriptIntrinsicBlendThunker extends ScriptIntrinsicBlend

Fields Summary
android.renderscript.ScriptIntrinsicBlend
mN
Constructors Summary
ScriptIntrinsicBlendThunker(int id, RenderScript rs)

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

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

        ScriptIntrinsicBlendThunker blend = new ScriptIntrinsicBlendThunker(0, rs);
        try {
            blend.mN = android.renderscript.ScriptIntrinsicBlend.create(rst.mN, et.getNObj());
        } catch (android.renderscript.RSRuntimeException exc) {
            throw ExceptionThunker.convertException(exc);
        }
        return blend;
    
public voidforEachAdd(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachAdd(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachClear(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachClear(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachDst(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachDst(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachDstAtop(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachDstAtop(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachDstIn(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachDstIn(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachDstOut(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachDstOut(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachDstOver(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachDstOver(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachMultiply(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachMultiply(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachSrc(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachSrc(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachSrcAtop(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachSrcAtop(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachSrcIn(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachSrcIn(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachSrcOut(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachSrcOut(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachSrcOver(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachSrcOver(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachSubtract(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachSubtract(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public voidforEachXor(Allocation ain, Allocation aout)

        AllocationThunker aint = (AllocationThunker)ain;
        AllocationThunker aoutt = (AllocationThunker)aout;

        try {
            mN.forEachXor(aint.getNObj(), aoutt.getNObj());
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
    
public Script.KernelIDgetKernelIDAdd()

        Script.KernelID k = createKernelID(34, 3, null, null);
        try {
            k.mN = mN.getKernelIDAdd();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDClear()

        Script.KernelID k = createKernelID(0, 3, null, null);
        try {
            k.mN = mN.getKernelIDClear();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDDst()

        Script.KernelID k = createKernelID(2, 3, null, null);
        try {
            k.mN = mN.getKernelIDDst();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDDstAtop()

        Script.KernelID k = createKernelID(10, 3, null, null);
        try {
            k.mN = mN.getKernelIDDstAtop();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDDstIn()

        Script.KernelID k = createKernelID(6, 3, null, null);
        try {
            k.mN = mN.getKernelIDDstIn();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDDstOut()

        Script.KernelID k = createKernelID(8, 3, null, null);
        try {
            k.mN = mN.getKernelIDDstOut();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDDstOver()

        Script.KernelID k = createKernelID(4, 3, null, null);
        try {
            k.mN = mN.getKernelIDDstOver();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDMultiply()

        Script.KernelID k = createKernelID(14, 3, null, null);
        try {
            k.mN = mN.getKernelIDMultiply();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDSrc()

        Script.KernelID k = createKernelID(1, 3, null, null);
        try {
            k.mN = mN.getKernelIDSrc();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDSrcAtop()

        Script.KernelID k = createKernelID(9, 3, null, null);
        try {
            k.mN = mN.getKernelIDSrcAtop();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDSrcIn()

        Script.KernelID k = createKernelID(5, 3, null, null);
        try {
            k.mN = mN.getKernelIDSrcIn();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDSrcOut()

        Script.KernelID k = createKernelID(7, 3, null, null);
        try {
            k.mN = mN.getKernelIDSrcOut();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDSrcOver()

        Script.KernelID k = createKernelID(3, 3, null, null);
        try {
            k.mN = mN.getKernelIDSrcOver();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDSubtract()

        Script.KernelID k = createKernelID(35, 3, null, null);
        try {
            k.mN = mN.getKernelIDSubtract();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
public Script.KernelIDgetKernelIDXor()

        Script.KernelID k = createKernelID(11, 3, null, null);
        try {
            k.mN = mN.getKernelIDXor();
        } catch (android.renderscript.RSRuntimeException e) {
            throw ExceptionThunker.convertException(e);
        }
        return k;
    
android.renderscript.ScriptIntrinsicBlendgetNObj()

        return mN;