Home
last modified time | relevance | path

Searched refs:mVertexTypeCount (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
DSimpleMesh.java74 int mVertexTypeCount; field in SimpleMesh.Builder
83 mVertexTypeCount = 0; in Builder()
89 if (mVertexTypeCount >= mVertexTypes.length) { in addVertexType()
93 int addedIndex = mVertexTypeCount; in addVertexType()
94 mVertexTypes[mVertexTypeCount] = new Entry(); in addVertexType()
95 mVertexTypes[mVertexTypeCount].t = t; in addVertexType()
96 mVertexTypeCount++; in addVertexType()
101 if (mVertexTypeCount >= mVertexTypes.length) { in addVertexType()
105 int addedIndex = mVertexTypeCount; in addVertexType()
106 mVertexTypes[mVertexTypeCount] = new Entry(); in addVertexType()
[all …]
/frameworks/base/libs/rs/
DrsSimpleMesh.cpp61 for (uint32_t ct=0; ct < mVertexTypeCount; ct++) { in renderRange()
68 for (uint32_t ct=0; ct < mVertexTypeCount; ct++) { in renderRange()
90 for (uint32_t ct=0; ct < mVertexTypeCount; ct++) { in uploadAll()
126 sm->mVertexTypeCount = vtxCount; in rsi_SimpleMeshCreate()
148 rsAssert(slot < sm->mVertexTypeCount); in rsi_SimpleMeshBindVertex()
DrsSimpleMesh.h38 uint32_t mVertexTypeCount; variable