Home
last modified time | relevance | path

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

/frameworks/rs/
DrsApiMesh.cpp22 void rsaMeshGetVertexBufferCount(RsContext con, RsMesh mv, int32_t *numVtx) { in rsaMeshGetVertexBufferCount()
27 void rsaMeshGetIndexCount(RsContext con, RsMesh mv, int32_t *numIdx) { in rsaMeshGetIndexCount()
32 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount) { in rsaMeshGetVertices()
42 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idx… in rsaMeshGetIndices()
Drs.h35 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,
DrsEnv.h10 typedef void * RsMesh; typedef
DrsApiStubs.h143 extern "C" RsMesh rsMeshCreate (RsContext rsc, RsAllocation * vtx, size_t vtx_length, RsAllocation …
154 void rsaMeshGetVertexBufferCount(RsContext con, RsMesh mv, int32_t *numVtx);
155 void rsaMeshGetIndexCount(RsContext con, RsMesh mv, int32_t *numIdx);
156 void rsaMeshGetVertices(RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCount);
157 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idx…
Drsg.spec76 ret RsMesh
DrsApiStubs.cpp841 extern "C" RsMesh rsMeshCreate (RsContext ctxWrapper, RsAllocation * vtx, size_t vtx_length, in rsMeshCreate()
893 void rsaMeshGetVertexBufferCount(RsContext ctxWrapper, RsMesh mv, int32_t *numVtx) in rsaMeshGetVertexBufferCount()
898 void rsaMeshGetIndexCount(RsContext ctxWrapper, RsMesh mv, int32_t *numIdx) in rsaMeshGetIndexCount()
903 void rsaMeshGetVertices(RsContext ctxWrapper, RsMesh mv, RsAllocation *vtxData, uint32_t vtxDataCou… in rsaMeshGetVertices()
908 void rsaMeshGetIndices(RsContext ctxWrapper, RsMesh mv, RsAllocation *va, uint32_t *primType, uint3… in rsaMeshGetIndices()
DrsDefines.h48 typedef void * RsMesh; typedef
DrsMesh.cpp266 RsMesh rsi_MeshCreate(Context *rsc, in rsi_MeshCreate()
/frameworks/rs/cpp/
DrsDispatch.h119 typedef RsMesh (*MeshCreateFnPtr) (RsContext rsc, RsAllocation * vtx, size_t vtx_length, RsAllocati…
129 typedef void (*MeshGetVertexBufferCountFnPtr) (RsContext con, RsMesh mv, int32_t *numVtx);
130 typedef void (*MeshGetIndexCountFnPtr) (RsContext con, RsMesh mv, int32_t *numIdx);
131 typedef void (*MeshGetVerticesFnPtr) (RsContext con, RsMesh mv, RsAllocation *vtxData, uint32_t vtx…
132 typedef void (*MeshGetIndicesFnPtr) (RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType…
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp2702 ALOGD("nMeshGetVertexBufferCount, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetVertexBufferCount()
2705 rsaMeshGetVertexBufferCount((RsContext)con, (RsMesh)mesh, &vtxCount); in nMeshGetVertexBufferCount()
2713 ALOGD("nMeshGetIndexCount, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetIndexCount()
2716 rsaMeshGetIndexCount((RsContext)con, (RsMesh)mesh, &idxCount); in nMeshGetIndexCount()
2724 ALOGD("nMeshGetVertices, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetVertices()
2728 rsaMeshGetVertices((RsContext)con, (RsMesh)mesh, allocs, (uint32_t)numVtxIDs); in nMeshGetVertices()
2742 ALOGD("nMeshGetVertices, con(%p), Mesh(%p)", (RsContext)con, (RsMesh)mesh); in nMeshGetIndices()
2748 rsaMeshGetIndices((RsContext)con, (RsMesh)mesh, allocs, prims, (uint32_t)numIndices); in nMeshGetIndices()