Searched refs:numIndices (Results 1 - 9 of 9) sorted by relevance

/external/deqp/modules/gles3/functional/
H A Des3fPrimitiveRestartTests.cpp446 int numIndices = getNumIndices(); local
448 DE_ASSERT(numIndices > 0);
450 DE_ASSERT(m_endWithRestart || getIndex(numIndices-1) != restartIndex); // We don't want restarts at end unless the case is a special case.
453 for (int i = 1; i < numIndices; i++)
556 int numIndices = getNumIndices(); local
557 for (int i = 0; i < numIndices; i++)
602 int numIndices = getNumIndices(); local
604 DE_ASSERT(numIndices >= 0);
608 for (int indexArrayNdx = 0; indexArrayNdx <= numIndices; indexArrayNdx++) // \note Goes one "too far" in order to detect end of array as well.
610 if (indexArrayNdx >= numIndices || getInde
[all...]
H A Des3fFragmentOutputTests.cpp492 const int numIndices = numQuads*6; local
497 vector<deUint16> indices (numIndices);
751 gl.drawElements(GL_TRIANGLES, numIndices, GL_UNSIGNED_SHORT, &indices[0]);
/external/deqp/modules/glshared/
H A DglsShaderPerformanceMeasurer.cpp101 int numIndices = gridSizeX * gridSizeY * numIndicesPerQuad; local
102 dst.resize(numIndices);
261 GLsizei numIndices = (GLsizei)getNumIndices(m_gridSizeX, m_gridSizeY);
266 gl.drawElements(GL_TRIANGLES, numIndices, GL_UNSIGNED_SHORT, DE_NULL);
H A DglsRandomShaderCase.cpp198 int numIndices = numQuads*6; local
199 m_indices.resize(numIndices);
H A DglsBufferTestUtil.cpp750 static void execVertexFetch (T* dst, const T* src, const deUint8* indices, int numIndices)
752 for (int i = 0; i < numIndices; ++i)
/external/deqp/framework/opengl/
H A DgluDrawUtil.cpp128 IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices);
373 IndexBuffer::IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices) argument
380 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, numIndices*getIndexSize(indexType), indices, usage);
/external/deqp/modules/gles2/functional/
H A Des2fBufferTestUtil.cpp562 static void execVertexFetch (T* dst, const T* src, const deUint8* indices, int numIndices)
564 for (int i = 0; i < numIndices; ++i)
/external/deqp/modules/gles31/functional/
H A Des31fOpaqueTypeIndexingTests.cpp95 static void uploadUniformIndices (const glw::Functions& gl, deUint32 program, const char* varPrefix, int numIndices, const int* indices) argument
97 for (int varNdx = 0; varNdx < numIndices; varNdx++)
H A Des31fTessellationTests.cpp1703 const int numIndices = gridWidth*gridHeight * (m_primitiveType == TESSPRIMITIVETYPE_TRIANGLES ? 3*2 : m_primitiveType == TESSPRIMITIVETYPE_QUADS ? 4 : -1);
1712 gridIndices.reserve(numIndices);
1775 DE_ASSERT((int)gridIndices.size() == numIndices);

Completed in 147 milliseconds