Lines Matching full:slot
849 nScriptBindAllocation(JNIEnv *_env, jobject _this, jint script, jint alloc, jint slot)
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);
898 nScriptSetType(JNIEnv *_env, jobject _this, jint type, jboolean writable, jstring _str, jint slot)
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);
913 nScriptSetInvoke(JNIEnv *_env, jobject _this, jstring _str, jint slot)
921 rsScriptSetInvoke(con, n, slot);
928 nScriptInvoke(JNIEnv *_env, jobject _this, jint obj, jint slot)
932 rsScriptInvoke(con, (RsScript)obj, slot);
1087 nProgramBindConstants(JNIEnv *_env, jobject _this, jint vpv, jint slot, jint a)
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);
1095 nProgramBindTexture(JNIEnv *_env, jobject _this, jint vpf, jint slot, jint a)
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);
1103 nProgramBindSampler(JNIEnv *_env, jobject _this, jint vpf, jint slot, jint a)
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);
1335 nSimpleMeshBindVertex(JNIEnv *_env, jobject _this, jint s, jint alloc, jint slot)
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);