Lines Matching defs:fIndexCount
230 int fIndexCount;
233 Mesh::Mesh() : fPts(NULL), fCount(0), fIndices(NULL), fIndexCount(0) {}
254 fIndexCount = src.fIndexCount;
255 fIndices = new uint16_t[fIndexCount];
256 memcpy(fIndices, src.fIndices, fIndexCount * sizeof(uint16_t));
275 fIndexCount = rows * cols * 6;
276 fIndices = new uint16_t[fIndexCount];
311 fPts, fTex, NULL, NULL, fIndices, fIndexCount,
317 fPts, NULL, NULL, NULL, fIndices, fIndexCount,