Searched refs:RsMesh (Results 1 – 7 of 7) sorted by relevance
/frameworks/rs/ |
D | rsApiMesh.cpp | 23 void rsaMeshGetVertexBufferCount(RsContext con, RsMesh mv, int32_t *numVtx) { in rsaMeshGetVertexBufferCount() 28 void rsaMeshGetIndexCount(RsContext con, RsMesh mv, int32_t *numIdx) { in rsaMeshGetIndexCount() 33 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) { in rsaMeshGetVertices() 43 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idx… in rsaMeshGetIndices()
|
D | rs.h | 35 void rsaMeshGetVertexBufferCount(RsContext, RsMesh, int32_t *vtxCount); 36 void rsaMeshGetIndexCount(RsContext, RsMesh, int32_t *idxCount); 37 void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); 38 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va,
|
D | rsEnv.h | 10 typedef void * RsMesh; typedef
|
D | rsg.spec | 76 ret RsMesh
|
D | rsDefines.h | 48 typedef void * RsMesh; typedef
|
D | rsMesh.cpp | 269 RsMesh rsi_MeshCreate(Context *rsc, in rsi_MeshCreate()
|
/frameworks/base/rs/jni/ |
D | android_renderscript_RenderScript.cpp | 2699 ALOGD("nMeshGetVertexBufferCount, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetVertexBufferCount() 2702 rsaMeshGetVertexBufferCount((RsContext)con, (RsMesh)mesh, &vtxCount); in nMeshGetVertexBufferCount() 2710 ALOGD("nMeshGetIndexCount, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetIndexCount() 2713 rsaMeshGetIndexCount((RsContext)con, (RsMesh)mesh, &idxCount); in nMeshGetIndexCount() 2721 ALOGD("nMeshGetVertices, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetVertices() 2725 rsaMeshGetVertices((RsContext)con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs); in nMeshGetVertices() 2739 ALOGD("nMeshGetVertices, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetIndices() 2745 rsaMeshGetIndices((RsContext)con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices); in nMeshGetIndices()
|