コード例 #1
0
 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;
 }
コード例 #2
0
 public void setLUT(Allocation allocation) {
   allocation = (AllocationThunker) allocation;
   mN.setLUT(allocation.getNObj());
 }
コード例 #3
0
 public Script.KernelID getKernelID() {
   Script.KernelID kernelid = createKernelID(0, 3, null, null);
   kernelid.mN = mN.getKernelID();
   return kernelid;
 }
コード例 #4
0
 public void forEach(Allocation allocation, Allocation allocation1) {
   allocation = (AllocationThunker) allocation;
   allocation1 = (AllocationThunker) allocation1;
   mN.forEach(allocation.getNObj(), allocation1.getNObj());
 }