Searched refs:RsMesh (Results 1 – 9 of 9) sorted by relevance
/frameworks/support/renderscript/v8/rs_support/ |
D | rs.h | 37 void rsaMeshGetVertexBufferCount(RsContext, RsMesh, int32_t *vtxCount); 38 void rsaMeshGetIndexCount(RsContext, RsMesh, int32_t *idxCount); 39 void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); 40 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va,
|
D | rsEnv.h | 12 typedef void * RsMesh; typedef
|
D | rsDefines.h | 47 typedef void * RsMesh; typedef
|
/frameworks/rs/ |
D | rs.h | 37 void rsaMeshGetVertexBufferCount(RsContext, RsMesh, int32_t *vtxCount); 38 void rsaMeshGetIndexCount(RsContext, RsMesh, int32_t *idxCount); 39 void rsaMeshGetVertices(RsContext, RsMesh, RsAllocation *vtxData, uint32_t vtxDataCount); 40 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va,
|
D | rsMesh.cpp | 272 RsMesh rsi_MeshCreate(Context *rsc, in rsi_MeshCreate() 295 void rsaMeshGetVertexBufferCount(RsContext con, RsMesh mv, int32_t *numVtx) { in rsaMeshGetVertexBufferCount() 300 void rsaMeshGetIndexCount(RsContext con, RsMesh mv, int32_t *numIdx) { in rsaMeshGetIndexCount() 305 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) { in rsaMeshGetVertices() 315 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idx… in rsaMeshGetIndices()
|
D | rsEnv.h | 12 typedef void * RsMesh; typedef
|
D | rsDefines.h | 47 typedef void * RsMesh; typedef
|
D | rs.spec | 473 ret RsMesh
|
/frameworks/base/graphics/jni/ |
D | android_renderscript_RenderScript.cpp | 1342 LOG_API("nMeshGetVertexBufferCount, con(%p), Mesh(%p)", con, (RsMesh)mesh); in nMeshGetVertexBufferCount() 1344 rsaMeshGetVertexBufferCount(con, (RsMesh)mesh, &vtxCount); in nMeshGetVertexBufferCount() 1351 LOG_API("nMeshGetIndexCount, con(%p), Mesh(%p)", con, (RsMesh)mesh); in nMeshGetIndexCount() 1353 rsaMeshGetIndexCount(con, (RsMesh)mesh, &idxCount); in nMeshGetIndexCount() 1360 LOG_API("nMeshGetVertices, con(%p), Mesh(%p)", con, (RsMesh)mesh); in nMeshGetVertices() 1363 rsaMeshGetVertices(con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs); in nMeshGetVertices() 1375 LOG_API("nMeshGetVertices, con(%p), Mesh(%p)", con, (RsMesh)mesh); in nMeshGetIndices() 1380 rsaMeshGetIndices(con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices); in nMeshGetIndices()
|