Home | History | Annotate | Download | only in jni

Lines Matching full:jobject

93 nContextFinish(JNIEnv *_env, jobject _this, RsContext con)
100 nAssignName(JNIEnv *_env, jobject _this, RsContext con, jint obj, jbyteArray str)
110 nGetName(JNIEnv *_env, jobject _this, RsContext con, jint obj)
122 nObjDestroy(JNIEnv *_env, jobject _this, RsContext con, jint obj)
131 nDeviceCreate(JNIEnv *_env, jobject _this)
138 nDeviceDestroy(JNIEnv *_env, jobject _this, jint dev)
145 nDeviceSetConfig(JNIEnv *_env, jobject _this, jint dev, jint p, jint value)
152 nContextCreate(JNIEnv *_env, jobject _this, jint dev, jint ver, jint sdkVer)
159 nContextCreateGL(JNIEnv *_env, jobject _this, jint dev, jint ver, jint sdkVer,
183 nContextSetPriority(JNIEnv *_env, jobject _this, RsContext con, jint p)
192 nContextSetSurface(JNIEnv *_env, jobject _this, RsContext con, jint width, jint height, jobject wnd)
207 nContextSetSurfaceTexture(JNIEnv *_env, jobject _this, RsContext con, jint width, jint height, jobject sur)
224 nContextDestroy(JNIEnv *_env, jobject _this, RsContext con)
231 nContextDump(JNIEnv *_env, jobject _this, RsContext con, jint bits)
238 nContextPause(JNIEnv *_env, jobject _this, RsContext con)
245 nContextResume(JNIEnv *_env, jobject _this, RsContext con)
253 nContextGetErrorMessage(JNIEnv *_env, jobject _this, RsContext con)
271 nContextGetUserMessage(JNIEnv *_env, jobject _this, RsContext con, jintArray data)
290 nContextPeekMessage(JNIEnv *_env, jobject _this, RsContext con, jintArray auxData)
304 static void nContextInitToClient(JNIEnv *_env, jobject _this, RsContext con)
310 static void nContextDeinitToClient(JNIEnv *_env, jobject _this, RsContext con)
318 nElementCreate(JNIEnv *_env, jobject _this, RsContext con, jint type, jint kind, jboolean norm, jint size)
325 nElementCreate2(JNIEnv *_env, jobject _this, RsContext con, jintArray _ids, jobjectArray _names, jintArray _arraySizes)
356 nElementGetNativeData(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _elementData)
374 nElementGetSubElements(JNIEnv *_env, jobject _this, RsContext con, jint id,
402 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid,
413 nTypeGetNativeData(JNIEnv *_env, jobject _this, RsContext con, jint id, jintArray _typeData)
433 nAllocationCreateTyped(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mips, jint usage)
440 nAllocationSyncAll(JNIEnv *_env, jobject _this, RsContext con, jint a, jint bits)
447 nAllocationGenerateMipmaps(JNIEnv *_env, jobject _this, RsContext con, jint alloc)
454 nAllocationCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage)
470 nAllocationCubeCreateFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint type, jint mip, jobject jbitmap, jint usage)
486 nAllocationCopyFromBitmap(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jobject jbitmap)
503 nAllocationCopyToBitmap(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jobject jbitmap)
524 nAllocationData1D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jintArray data, int sizeBytes)
534 nAllocationData1D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jshortArray data, int sizeBytes)
544 nAllocationData1D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jbyteArray data, int sizeBytes)
554 nAllocationData1D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint count, jfloatArray data, int sizeBytes)
565 nAllocationElementData1D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint offset, jint lod, jint compIdx, jbyteArray data, int sizeBytes)
575 nAllocationData2D_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
586 nAllocationData2D_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
597 nAllocationData2D_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
608 nAllocationData2D_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint xoff, jint yoff, jint lod, jint face,
619 nAllocationData2D_alloc(JNIEnv *_env, jobject _this, RsContext con,
643 nAllocationRead_i(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jintArray data)
654 nAllocationRead_s(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jshortArray data)
665 nAllocationRead_b(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jbyteArray data)
676 nAllocationRead_f(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jfloatArray data)
687 nAllocationGetType(JNIEnv *_env, jobject _this, RsContext con, jint a)
694 nAllocationResize1D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint dimX)
701 nAllocationResize2D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint dimX, jint dimY)
710 nFileA3DCreateFromAssetStream(JNIEnv *_env, jobject _this, RsContext con, jint native_asset)
721 nFileA3DCreateFromAsset(JNIEnv *_env, jobject _this, RsContext con, jobject _assetMgr, jstring _path)
739 nFileA3DCreateFromFile(JNIEnv *_env, jobject _this, RsContext con, jstring fileName)
748 nFileA3DGetNumIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D)
756 nFileA3DGetIndexEntries(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D, jint numEntries, jintArray _ids, jobjectArray _entries)
772 nFileA3DGetEntryByIndex(JNIEnv *_env, jobject _this, RsContext con, jint fileA3D, jint index)
782 nFontCreateFromFile(JNIEnv *_env, jobject _this, RsContext con,
794 nFontCreateFromAssetStream(JNIEnv *_env, jobject _this, RsContext con,
808 nFontCreateFromAsset(JNIEnv *_env, jobject _this, RsContext con, jobject _assetMgr, jstring _path,
833 nScriptBindAllocation(JNIEnv *_env, jobject _this, RsContext con, jint script, jint alloc, jint slot)
840 nScriptSetVarI(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val)
847 nScriptSetVarObj(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint val)
854 nScriptSetVarJ(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jlong val)
861 nScriptSetVarF(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, float val)
868 nScriptSetVarD(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, double val)
875 nScriptSetVarV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data)
886 nScriptSetTimeZone(JNIEnv *_env, jobject _this, RsContext con, jint script, jbyteArray timeZone)
902 nScriptInvoke(JNIEnv *_env, jobject _this, RsContext con, jint obj, jint slot)
909 nScriptInvokeV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jbyteArray data)
919 nScriptForEach(JNIEnv *_env, jobject _this, RsContext con,
926 nScriptForEachV(JNIEnv *_env, jobject _this, RsContext con,
940 nScriptCCreate(JNIEnv *_env, jobject _this, RsContext con,
991 nProgramStoreCreate(JNIEnv *_env, jobject _this, RsContext con,
1006 nProgramBindConstants(JNIEnv *_env, jobject _this, RsContext con, jint vpv, jint slot, jint a)
1013 nProgramBindTexture(JNIEnv *_env, jobject _this, RsContext con, jint vpf, jint slot, jint a)
1020 nProgramBindSampler(JNIEnv *_env, jobject _this, RsContext con, jint vpf, jint slot, jint a)
1029 nProgramFragmentCreate(JNIEnv *_env, jobject _this, RsContext con, jstring shader, jintArray params)
1046 nProgramVertexCreate(JNIEnv *_env, jobject _this, RsContext con, jstring shader, jintArray params)
1062 nProgramRasterCreate(JNIEnv *_env, jobject _this, RsContext con, jboolean pointSprite, jint cull)
1072 nContextBindRootScript(JNIEnv *_env, jobject _this, RsContext con, jint script)
1079 nContextBindProgramStore(JNIEnv *_env, jobject _this, RsContext con, jint pfs)
1086 nContextBindProgramFragment(JNIEnv *_env, jobject _this, RsContext con, jint pf)
1093 nContextBindProgramVertex(JNIEnv *_env, jobject _this, RsContext con, jint pf)
1100 nContextBindProgramRaster(JNIEnv *_env, jobject _this, RsContext con, jint pf)
1110 nSamplerCreate(JNIEnv *_env, jobject _this, RsContext con, jint magFilter, jint minFilter,
1126 nMeshCreate(JNIEnv *_env, jobject _this, RsContext con, jintArray _vtx, jintArray _idx, jintArray _prim)
1149 nMeshGetVertexBufferCount(JNIEnv *_env, jobject _this, RsContext con, jint mesh)
1158 nMeshGetIndexCount(JNIEnv *_env, jobject _this, RsContext con, jint mesh)
1167 nMeshGetVertices(JNIEnv *_env, jobject _this, RsContext con, jint mesh, jintArray _ids, int numVtxIDs)
1182 nMeshGetIndices(JNIEnv *_env, jobject _this, RsContext con, jint mesh, jintArray _idxIds, jintArray _primitives, int numIndices)