Lines Matching refs:totalCount
203 const deUint32 totalCount = GetVerticesCountForTriangles(3, 3);
204 PaddedAlloc<Vec4> positions (totalCount, 8, outOfRangeColor);
205 PaddedAlloc<Color> colors (totalCount, 8, { outOfRangeColor, outOfRangeColor });
263 const deUint32 totalCount = GetVerticesCountForTriangles(3, 3);
264 PaddedAlloc<Vertex> vertices (totalCount, 8, { outOfRangeColor, outOfRangeColor, outOfRangeColor, outOfRangeColor });
312 const deUint32 totalCount = GetVerticesCountForTriangles(3, 3);
321 PaddedAlloc<Vertex> vertices (totalCount, 8, { outOfRangeColor, outOfRangeColor, outOfRangeColor, outOfRangeColor, outOfRangeColor });
372 const deUint32 totalCount = GetVerticesCountForTriangles(3, 3);
373 PaddedAlloc<Vec4> vertices (totalCount, 8, unusedColor);
374 PaddedAlloc<Vec4> colors (2 * totalCount - invalidCount, 8, unusedColor);
382 [&vertices, &colors, &writeIndex, totalCount](Vec4 position, Vec4 color)
386 if (totalCount + writeIndex < colors.size())
388 colors[totalCount + writeIndex] = color;
403 makeVertexInputAttributeDescription(2u, 1u, VK_FORMAT_R32G32B32A32_SFLOAT, (colors.paddedStart() + totalCount) * elementSize)