Searched refs:numVerts (Results 1 – 3 of 3) sorted by relevance
24 protected int numVerts = 0; field in VirtualIndexBuffer28 public VirtualIndexBuffer(int numVerts, Mode meshMode){ in VirtualIndexBuffer() argument29 this.numVerts = numVerts; in VirtualIndexBuffer()33 numIndices = numVerts; in VirtualIndexBuffer()36 numIndices = (numVerts - 1) * 2 + 1; in VirtualIndexBuffer()39 numIndices = (numVerts - 1) * 2; in VirtualIndexBuffer()42 numIndices = numVerts; in VirtualIndexBuffer()45 numIndices = (numVerts - 2) * 3; in VirtualIndexBuffer()48 numIndices = (numVerts - 2) * 3; in VirtualIndexBuffer()51 numIndices = numVerts; in VirtualIndexBuffer()[all …]
272 public static int[] remapIndices(int[] indices, int numVerts) { in remapIndices() argument273 int[] indexCache = new int[numVerts]; in remapIndices()
74 const size_t numVerts = texCoord.size() / 4; in logCubeArrayTexCoords() local78 for (size_t vertNdx = 0; vertNdx < numVerts; vertNdx++) in logCubeArrayTexCoords()