Searched refs:quadY (Results 1 - 5 of 5) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java150 public void set(int quadX, int quadY, float[][] positions, float[][] uvs) { argument
154 if (quadY < 0 || quadY * 2 >= mVertsDown) {
155 throw new IllegalArgumentException("quadY");
161 throw new IllegalArgumentException("quadY");
165 int j = quadY * 2;
/external/deqp/modules/glshared/
H A DglsRandomShaderCase.cpp210 int quadY = quadNdx / (m_gridWidth); local
211 int quadX = quadNdx - quadY*m_gridWidth;
213 m_indices[quadNdx*6+0] = (deUint16)(quadX + quadY*(m_gridWidth+1));
214 m_indices[quadNdx*6+1] = (deUint16)(quadX + (quadY+1)*(m_gridWidth+1));
215 m_indices[quadNdx*6+2] = (deUint16)(quadX + quadY*(m_gridWidth+1) + 1);
218 m_indices[quadNdx*6+5] = (deUint16)(quadX + (quadY+1)*(m_gridWidth+1) + 1);
/external/deqp/modules/gles3/functional/
H A Des3fFragmentOutputTests.cpp597 int quadY = quadNdx / (gridWidth-1); local
598 int quadX = quadNdx - quadY*(gridWidth-1);
600 indices[quadNdx*6+0] = deUint16(quadX + quadY*gridWidth);
601 indices[quadNdx*6+1] = deUint16(quadX + (quadY+1)*gridWidth);
602 indices[quadNdx*6+2] = deUint16(quadX + quadY*gridWidth + 1);
604 indices[quadNdx*6+4] = deUint16(quadX + (quadY+1)*gridWidth + 1);
H A Des3fShaderBuiltinVarTests.cpp831 const int quadY = quadNdx/maxQuadsX; local
835 const float y0 = -1.0f + float(quadY)*h;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c1039 const int quadY = y - iy; local
1043 quadY != setup->quad[0].input.y0)
1051 setup->quad[0].input.y0 = quadY;

Completed in 223 milliseconds