Home | History | Annotate | Download | only in performance

Lines Matching refs:numComponents

308 			const int	numComponents	= 4;
312 m_comparisonValueArray.resize(numVertices * numComponents);
317 if (i % numComponents == 0)
318 m_comparisonValueArray[i] = (i / numComponents) % 2 == 0 ? +1.0f : -1.0f;
363 const int numComponents = 4;
366 DE_ASSERT((int)m_comparisonValueArray.size() == numComponents * (getGridWidth() + 1) * (getGridHeight() + 1));
372 gl.vertexAttribPointer(compareAttribLocation, (GLint)numComponents, GL_FLOAT, GL_FALSE, 0, DE_NULL);
588 const int numComponents = 4;
592 m_boundArray.resize(numVertices * numComponents);
597 if (i % numComponents == 0)
598 m_boundArray[i] = (i / numComponents) % 2 == 0 ? unstableBoundLow : unstableBoundHigh;
640 const int numComponents = 4;
643 DE_ASSERT((int)m_boundArray.size() == numComponents * (getGridWidth() + 1) * (getGridHeight() + 1));
649 gl.vertexAttribPointer(boundAttribLocation, (GLint)numComponents, GL_FLOAT, GL_FALSE, 0, DE_NULL);