Home | History | Annotate | Download | only in jni

Lines Matching full:con

90     RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
91 LOG_API("nAssignName, con(%p), obj(%p)", con, (void *)obj);
95 rsAssignName(con, (void *)obj, (const char *)cptr, len);
102 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
103 LOG_API("nObjDestroy, con(%p) obj(%p)", con, (void *)obj);
104 rsObjDestroy(con, (void *)obj);
112 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
113 LOG_API("nObjDestroyOOB, con(%p) obj(%p)", con, (void *)obj);
114 rsObjDestroyOOB(con, (void *)obj);
120 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
121 LOG_API("nFileOpen, con(%p)", con);
125 jint ret = (jint)rsFileOpen(con, (const char *)cptr, len);
170 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
171 LOG_API("ContextSetPriority, con(%p), priority(%i)", con, p);
172 rsContextSetPriority(con, p);
180 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
181 LOG_API("nContextSetSurface, con(%p), width(%i), height(%i), surface(%p)", con, width, height, (Surface *)wnd);
192 rsContextSetSurface(con, width, height, window);
196 nContextDestroy(JNIEnv *_env, jobject _this, jint con)
198 LOG_API("nContextDestroy, con(%p)", (RsContext)con);
199 rsContextDestroy((RsContext)con);
205 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
206 LOG_API("nContextDump, con(%p) bits(%i)", (RsContext)con, bits);
207 rsContextDump((RsContext)con, bits);
213 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
214 LOG_API("nContextPause, con(%p)", con);
215 rsContextPause(con);
221 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
222 LOG_API("nContextResume, con(%p)", con);
223 rsContextResume(con);
229 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
231 LOG_API("nContextGetMessage, con(%p), len(%i)", con, len);
234 int id = rsContextGetMessage(con, ptr, &receiveLen, len * 4, wait);
244 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
245 LOG_API("nContextInitToClient, con(%p)", con);
246 rsContextInitToClient(con);
251 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
252 LOG_API("nContextDeinitToClient, con(%p)", con);
253 rsContextDeinitToClient(con);
260 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
261 LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", con, type, kind, norm, size);
262 return (jint)rsElementCreate(con, (RsDataType)type, (RsDataKind)kind, norm, size);
269 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
270 LOG_API("nElementCreate2, con(%p)", con);
281 jint id = (jint)rsElementCreate2(con, fieldCount, (RsElement *)ids, nameArray, sizeArray);
297 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
298 LOG_API("nTypeBegin, con(%p) e(%p)", con, (RsElement)eID);
299 rsTypeBegin(con, (RsElement)eID);
305 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
306 LOG_API("nTypeAdd, con(%p) dim(%i), val(%i)", con, dim, val);
307 rsTypeAdd(con, (RsDimension)dim, val);
313 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
314 LOG_API("nTypeCreate, con(%p)", con);
315 return (jint)rsTypeCreate(con);
441 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
442 LOG_API("nAllocationCreateTyped, con(%p), e(%p)", con, (RsElement)e);
443 return (jint) rsAllocationCreateTyped(con, (RsElement)e);
449 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
450 LOG_API("nAllocationUploadToTexture, con(%p), a(%p), genMip(%i), mip(%i)", con, (RsAllocation)a, genMip, mip);
451 rsAllocationUploadToTexture(con, (RsAllocation)a, genMip, mip);
457 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
458 LOG_API("nAllocationUploadToBufferObject, con(%p), a(%p)", con, (RsAllocation)a);
459 rsAllocationUploadToBufferObject(con, (RsAllocation)a);
485 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
497 jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
513 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
520 jint id = (jint)rsAllocationCreateBitmapRef(con, (RsType)type, ptr, nativeBitmap, ReleaseBitmapCallback);
527 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
543 jint id = (jint)rsAllocationCreateFromBitmap(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
553 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
566 jint id = (jint)rsAllocationCreateFromBitmapBoxed(con, w, h, (RsElement)dstFmt, e, genMips, ptr);
577 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
579 LOG_API("nAllocation1DSubData_i, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
581 rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
588 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
590 LOG_API("nAllocation1DSubData_s, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
592 rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
599 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
601 LOG_API("nAllocation1DSubData_b, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
603 rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
610 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
612 LOG_API("nAllocation1DSubData_f, con(%p), adapter(%p), offset(%i), count(%i), len(%i), sizeBytes(%i)", con, (RsAllocation)alloc, offset, count, len, sizeBytes);
614 rsAllocation1DSubData(con, (RsAllocation)alloc, offset, count, ptr, sizeBytes);
621 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
623 LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
625 rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes);
632 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
634 LOG_API("nAllocation2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)", con, (RsAllocation)alloc, xoff, yoff, w, h, len);
636 rsAllocation2DSubData(con, (RsAllocation)alloc, xoff, yoff, w, h, ptr, sizeBytes);
643 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
645 LOG_API("nAllocationRead_i, con(%p), alloc(%p), len(%i)", con, (RsAllocation)alloc, len);
647 rsAllocationRead(con, (RsAllocation)alloc, ptr);
654 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
656 LOG_API("nAllocationRead_f, con(%p), alloc(%p), len(%i)", con, (RsAllocation)alloc, len);
658 rsAllocationRead(con, (RsAllocation)alloc, ptr);
667 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
668 LOG_API("nAllocationDataFromObject con(%p), alloc(%p)", con, (RsAllocation)alloc);
678 rsAllocation1DSubData(con, (RsAllocation)alloc, offset, 1, bufAlloc, tc->size);
685 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
686 LOG_API("nAllocationReadFromObject con(%p), alloc(%p)", con, (RsAllocation)alloc);
694 rsAllocationRead(con, (RsAllocation)alloc, bufAlloc);
709 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
710 LOG_API("nAdapter1DBindAllocation, con(%p), adapter(%p), alloc(%p)", con, (RsAdapter1D)adapter, (RsAllocation)alloc);
711 rsAdapter1DBindAllocation(con, (RsAdapter1D)adapter, (RsAllocation)alloc);
717 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
718 LOG_API("nAdapter1DSetConstraint, con(%p), adapter(%p), dim(%i), value(%i)", con, (RsAdapter1D)adapter, dim, value);
719 rsAdapter1DSetConstraint(con, (RsAdapter1D)adapter, (RsDimension)dim, value);
725 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
727 LOG_API("nAdapter1DData_i, con(%p), adapter(%p), len(%i)", con, (RsAdapter1D)adapter, len);
729 rsAdapter1DData(con, (RsAdapter1D)adapter, ptr);
736 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
738 LOG_API("nAdapter1DSubData_i, con(%p), adapter(%p), offset(%i), count(%i), len(%i)", con, (RsAdapter1D)adapter, offset, count, len);
740 rsAdapter1DSubData(con, (RsAdapter1D)adapter, offset, count, ptr);
747 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
749 LOG_API("nAdapter1DData_f, con(%p), adapter(%p), len(%i)", con, (RsAdapter1D)adapter, len);
751 rsAdapter1DData(con, (RsAdapter1D)adapter, ptr);
758 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
760 LOG_API("nAdapter1DSubData_f, con(%p), adapter(%p), offset(%i), count(%i), len(%i)", con, (RsAdapter1D)adapter, offset, count, len);
762 rsAdapter1DSubData(con, (RsAdapter1D)adapter, offset, count, ptr);
769 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
770 LOG_API("nAdapter1DCreate, con(%p)", con);
771 return (jint)rsAdapter1DCreate(con);
779 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
780 LOG_API("nAdapter2DBindAllocation, con(%p), adapter(%p), alloc(%p)", con, (RsAdapter2D)adapter, (RsAllocation)alloc);
781 rsAdapter2DBindAllocation(con, (RsAdapter2D)adapter, (RsAllocation)alloc);
787 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
788 LOG_API("nAdapter2DSetConstraint, con(%p), adapter(%p), dim(%i), value(%i)", con, (RsAdapter2D)adapter, dim, value);
789 rsAdapter2DSetConstraint(con, (RsAdapter2D)adapter, (RsDimension)dim, value);
795 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
797 LOG_API("nAdapter2DData_i, con(%p), adapter(%p), len(%i)", con, (RsAdapter2D)adapter, len);
799 rsAdapter2DData(con, (RsAdapter2D)adapter, ptr);
806 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
808 LOG_API("nAdapter2DData_f, con(%p), adapter(%p), len(%i)", con, (RsAdapter2D)adapter, len);
810 rsAdapter2DData(con, (RsAdapter2D)adapter, ptr);
817 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
819 LOG_API("nAdapter2DSubData_i, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)",
820 con, (RsAdapter2D)adapter, xoff, yoff, w, h, len);
822 rsAdapter2DSubData(con, (RsAdapter2D)adapter, xoff, yoff, w, h, ptr);
829 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
831 LOG_API("nAdapter2DSubData_f, con(%p), adapter(%p), xoff(%i), yoff(%i), w(%i), h(%i), len(%i)",
832 con, (RsAdapter2D)adapter, xoff, yoff, w, h, len);
834 rsAdapter2DSubData(con, (RsAdapter1D)adapter, xoff, yoff, w, h, ptr);
841 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
842 LOG_API("nAdapter2DCreate, con(%p)", con);
843 return (jint)rsAdapter2DCreate(con);
851 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
852 LOG_API("nScriptBindAllocation, con(%p), script(%p), alloc(%p), slot(%i)", con, (RsScript)script, (RsAllocation)alloc, slot);
853 rsScriptBindAllocation(con, (RsScript)script, (RsAllocation)alloc, slot);
859 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
860 LOG_API("nScriptSetClearColor, con(%p), s(%p), r(%f), g(%f), b(%f), a(%f)", con, (void *)script, r, g, b, a);
861 rsScriptSetClearColor(con, (RsScript)script, r, g, b, a);
867 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
868 LOG_API("nScriptCSetClearDepth, con(%p), s(%p), depth(%f)", con, (void *)script, d);
869 rsScriptSetClearDepth(con, (RsScript)script, d);
875 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
876 LOG_API("nScriptCSetClearStencil, con(%p), s(%p), stencil(%i)", con, (void *)script, stencil);
877 rsScriptSetClearStencil(con, (RsScript)script, stencil);
883 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
884 LOG_API("nScriptCSetTimeZone, con(%p), s(%p), timeZone(%s)", con, (void *)script, (const char *)timeZone);
890 rsScriptSetTimeZone(con, (RsScript)script, (const char *)timeZone_ptr, length);
900 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
901 LOG_API("nScriptCAddType, con(%p), type(%p), writable(%i), slot(%i)", con, (RsType)type, writable, slot);
906 rsScriptSetType(con, (RsType)type, slot, writable, n);
915 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
916 LOG_API("nScriptSetInvoke, con(%p)", con);
921 rsScriptSetInvoke(con, n, slot);
930 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
931 LOG_API("nScriptInvoke, con(%p), script(%p)", con, (void *)obj);
932 rsScriptInvoke(con, (RsScript)obj, slot);
938 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
939 LOG_API("nScriptCSetRoot, con(%p), isRoot(%i)", con, isRoot);
940 rsScriptSetRoot(con, isRoot);
948 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
949 LOG_API("nScriptCBegin, con(%p)", con);
950 rsScriptCBegin(con);
957 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
958 LOG_API("!!! nScriptCSetScript, con(%p)", con);
988 rsScriptCSetText(con, (const char *)script_ptr, length);
1000 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1001 LOG_API("nScriptCCreate, con(%p)", con);
1002 return (jint)rsScriptCCreate(con);
1008 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1010 LOG_API("nScriptCAddDefineI32, con(%p) name(%s) value(%d)", con, n, value);
1011 rsScriptCSetDefineI32(con, n, value);
1018 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1020 LOG_API("nScriptCAddDefineF, con(%p) name(%s) value(%f)", con, n, value);
1021 rsScriptCSetDefineF(con, n, value);
1030 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1031 LOG_API("nProgramFragmentStoreBegin, con(%p), in(%p), out(%p)", con, (RsElement)in, (RsElement)out);
1032 rsProgramFragmentStoreBegin(con, (RsElement)in, (RsElement)out);
1038 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1039 LOG_API("nProgramFragmentStoreDepthFunc, con(%p), func(%i)", con, func);
1040 rsProgramFragmentStoreDepthFunc(con, (RsDepthFunc)func);
1046 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1047 LOG_API("nProgramFragmentStoreDepthMask, con(%p), enable(%i)", con, enable);
1048 rsProgramFragmentStoreDepthMask(con, enable);
1054 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1055 LOG_API("nProgramFragmentStoreColorMask, con(%p), r(%i), g(%i), b(%i), a(%i)", con, r, g, b, a);
1056 rsProgramFragmentStoreColorMask(con, r, g, b, a);
1062 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1063 LOG_API("nProgramFragmentStoreBlendFunc, con(%p), src(%i), dst(%i)", con, src, dst);
1064 rsProgramFragmentStoreBlendFunc(con, (RsBlendSrcFunc)src, (RsBlendDstFunc)dst);
1070 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1071 LOG_API("nProgramFragmentStoreDither, con(%p), enable(%i)", con, enable);
1072 rsProgramFragmentStoreDither(con, enable);
1078 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1079 LOG_API("nProgramFragmentStoreCreate, con(%p)", con);
1081 return (jint)rsProgramFragmentStoreCreate(con);
1089 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1090 LOG_API("nProgramBindConstants, con(%p), vpf(%p), sloat(%i), a(%p)", con, (RsProgramVertex)vpv, slot, (RsAllocation)a);
1091 rsProgramBindConstants(con, (RsProgram)vpv, slot, (RsAllocation)a);
1097 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1098 LOG_API("nProgramBindTexture, con(%p), vpf(%p), slot(%i), a(%p)", con, (RsProgramFragment)vpf, slot, (RsAllocation)a);
1099 rsProgramBindTexture(con, (RsProgramFragment)vpf, slot, (RsAllocation)a);
1105 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1106 LOG_API("nProgramBindSampler, con(%p), vpf(%p), slot(%i), a(%p)", con, (RsProgramFragment)vpf, slot, (RsSampler)a);
1107 rsProgramBindSampler(con, (RsProgramFragment)vpf, slot, (RsSampler)a);
1115 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1119 LOG_API("nProgramFragmentCreate, con(%p), paramLen(%i)", con, paramLen);
1121 jint ret = (jint)rsProgramFragmentCreate(con, (uint32_t *)paramPtr, paramLen);
1129 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1135 LOG_API("nProgramFragmentCreate2, con(%p), shaderLen(%i), paramLen(%i)", con, shaderLen, paramLen);
1137 jint ret = (jint)rsProgramFragmentCreate2(con, shaderUTF, shaderLen, (uint32_t *)paramPtr, paramLen);
1149 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1150 LOG_API("nProgramVertexCreate, con(%p), texMat(%i)", con, texMat);
1151 return (jint)rsProgramVertexCreate(con, texMat);
1157 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1163 LOG_API("nProgramVertexCreate2, con(%p), shaderLen(%i), paramLen(%i)", con, shaderLen, paramLen);
1165 jint ret = (jint)rsProgramVertexCreate2(con, shaderUTF, shaderLen, (uint32_t *)paramPtr, paramLen);
1177 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1178 LOG_API("nProgramRasterCreate, con(%p), in(%p), out(%p), pointSmooth(%i), lineSmooth(%i), pointSprite(%i)",
1179 con, (RsElement)in, (RsElement)out, pointSmooth, lineSmooth, pointSprite);
1180 return (jint)rsProgramRasterCreate(con, (RsElement)in, (RsElement)out, pointSmooth, lineSmooth, pointSprite);
1186 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1187 LOG_API("nProgramRasterSetPointSize, con(%p), vpf(%p), value(%f)", con, (RsProgramRaster)vpr, v);
1188 rsProgramRasterSetPointSize(con, (RsProgramFragment)vpr, v);
1194 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1195 LOG_API("nProgramRasterSetLineWidth, con(%p), vpf(%p), value(%f)", con, (RsProgramRaster)vpr, v);
1196 rsProgramRasterSetLineWidth(con, (RsProgramFragment)vpr, v);
1205 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1206 LOG_API("nContextBindRootScript, con(%p), script(%p)", con, (RsScript)script);
1207 rsContextBindRootScript(con, (RsScript)script);
1213 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1214 LOG_API("nContextBindProgramFragmentStore, con(%p), pfs(%p)", con, (RsProgramFragmentStore)pfs);
1215 rsContextBindProgramFragmentStore(con, (RsProgramFragmentStore)pfs);
1221 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1222 LOG_API("nContextBindProgramFragment, con(%p), pf(%p)", con, (RsProgramFragment)pf);
1223 rsContextBindProgramFragment(con, (RsProgramFragment)pf);
1229 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1230 LOG_API("nContextBindProgramVertex, con(%p), pf(%p)", con, (RsProgramVertex)pf);
1231 rsContextBindProgramVertex(con, (RsProgramVertex)pf);
1237 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1238 LOG_API("nContextBindProgramRaster, con(%p), pf(%p)", con, (RsProgramRaster)pf);
1239 rsContextBindProgramRaster(con, (RsProgramRaster)pf);
1248 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1249 LOG_API("nSamplerBegin, con(%p)", con);
1250 rsSamplerBegin(con);
1256 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1257 LOG_API("nSamplerSet, con(%p), param(%i), value(%i)", con, p, v);
1258 rsSamplerSet(con, (RsSamplerParam)p, (RsSamplerValue)v);
1264 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1265 LOG_API("nSamplerCreate, con(%p)", con);
1266 return (jint)rsSamplerCreate(con);
1274 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1275 LOG_API("nLightBegin, con(%p)", con);
1276 rsLightBegin(con);
1282 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1283 LOG_API("nLightSetIsMono, con(%p), isMono(%i)", con, isMono);
1284 rsLightSetMonochromatic(con, isMono);
1290 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1291 LOG_API("nLightSetIsLocal, con(%p), isLocal(%i)", con, isLocal);
1292 rsLightSetLocal(con, isLocal);
1298 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1299 LOG_API("nLightCreate, con(%p)", con);
1300 return (jint)rsLightCreate(con);
1306 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1307 LOG_API("nLightSetColor, con(%p), light(%p), r(%f), g(%f), b(%f)", con, (RsLight)light, r, g, b);
1308 rsLightSetColor(con, (RsLight)light, r, g, b);
1314 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1315 LOG_API("nLightSetPosition, con(%p), light(%p), x(%f), y(%f), z(%f)", con, (RsLight)light, x, y, z);
1316 rsLightSetPosition(con, (RsLight)light, x, y, z);
1324 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1326 LOG_API("nSimpleMeshCreate, con(%p), batchID(%i), indexID(%i), vtxIDs.len(%i), primID(%i)",
1327 con, batchID, indexID, len, primID);
1329 int id = (int)rsSimpleMeshCreate(con, (void *)batchID, (void *)indexID, (void **)ptr, len, primID);
1337 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1338 LOG_API("nSimpleMeshBindVertex, con(%p), SimpleMesh(%p), Alloc(%p), slot(%i)", con, (RsSimpleMesh)s, (RsAllocation)alloc, slot);
1339 rsSimpleMeshBindVertex(con, (RsSimpleMesh)s, (RsAllocation)alloc, slot);
1345 RsContext con = (RsContext)(_env->GetIntField(_this, gContextId));
1346 con(%p), SimpleMesh(%p), Alloc(%p)", con, (RsSimpleMesh)s, (RsAllocation)alloc);
1347 rsSimpleMeshBindIndex(con, (RsSimpleMesh)s, (RsAllocation)alloc);