public static ScriptIntrinsic3DLUTThunker create(RenderScript renderscript, Element element) { RenderScriptThunker renderscriptthunker = (RenderScriptThunker) renderscript; ElementThunker elementthunker = (ElementThunker) element; renderscript = new ScriptIntrinsic3DLUTThunker(0, renderscript, element); renderscript.mN = ScriptIntrinsic3DLUT.create(renderscriptthunker.mN, elementthunker.getNObj()); return renderscript; }
public void setLUT(Allocation allocation) { allocation = (AllocationThunker) allocation; mN.setLUT(allocation.getNObj()); }
public Script.KernelID getKernelID() { Script.KernelID kernelid = createKernelID(0, 3, null, null); kernelid.mN = mN.getKernelID(); return kernelid; }
public void forEach(Allocation allocation, Allocation allocation1) { allocation = (AllocationThunker) allocation; allocation1 = (AllocationThunker) allocation1; mN.forEach(allocation.getNObj(), allocation1.getNObj()); }