Home
last modified time | relevance | path

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

/external/deqp/framework/randomshaders/
DrsgProgramExecutor.cpp188 inline tcu::IVec4 computeVertexIndices (float cellWidth, float cellHeight, int gridVtxWidth, int gr… in computeVertexIndices() argument
193 …return tcu::IVec4(y0*gridVtxWidth + x0, y0*gridVtxWidth + x0 + 1, (y0+1)*gridVtxWidth + x0, (y0+1)… in computeVertexIndices()
213 int gridVtxWidth = m_gridWidth+1; in execute() local
215 int numVertices = gridVtxWidth*gridVtxHeight; in execute()
245 int y = (vtxNdx/gridVtxWidth); in execute()
246 int x = vtxNdx - y*gridVtxWidth; in execute()
247 float xf = (float)x / (float)(gridVtxWidth-1); in execute()
326 …tcu::IVec4 vtxIndices = computeVertexIndices(cellWidth, cellHeight, gridVtxWidth, gridVtxHeight, x… in execute()