Home
last modified time | relevance | path

Searched refs:RsMesh (Results 1 – 9 of 9) sorted by relevance

/frameworks/support/renderscript/v8/rs_support/
Drs.h37 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,
DrsEnv.h12 typedef void * RsMesh; typedef
DrsDefines.h47 typedef void * RsMesh; typedef
/frameworks/rs/
Drs.h37 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,
DrsMesh.cpp272 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()
DrsEnv.h12 typedef void * RsMesh; typedef
DrsDefines.h47 typedef void * RsMesh; typedef
Drs.spec473 ret RsMesh
/frameworks/base/graphics/jni/
Dandroid_renderscript_RenderScript.cpp1342 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()