Lines Matching defs:gridVtxWidth
188 inline tcu::IVec4 computeVertexIndices (float cellWidth, float cellHeight, int gridVtxWidth, int gridVtxHeight, int x, int y)
193 return tcu::IVec4(y0*gridVtxWidth + x0, y0*gridVtxWidth + x0 + 1, (y0+1)*gridVtxWidth + x0, (y0+1)*gridVtxWidth + x0 + 1);
213 int gridVtxWidth = m_gridWidth+1;
215 int numVertices = gridVtxWidth*gridVtxHeight;
245 int y = (vtxNdx/gridVtxWidth);
246 int x = vtxNdx - y*gridVtxWidth;
247 float xf = (float)x / (float)(gridVtxWidth-1);
326 tcu::IVec4 vtxIndices = computeVertexIndices(cellWidth, cellHeight, gridVtxWidth, gridVtxHeight, x, y);