HomeSort by relevance Sort by last modified time
    Searched refs:baseVertex (Results 1 - 12 of 12) sorted by null

  /external/deqp/framework/referencerenderer/
rrRenderer.hpp 76 DrawIndices (const deUint32*, int baseVertex = 0);
77 DrawIndices (const deUint16*, int baseVertex = 0);
78 DrawIndices (const deUint8*, int baseVertex = 0);
79 DrawIndices (const void* ptr, IndexType type, int baseVertex = 0);
83 const int baseVertex;
102 const void* const m_indices; // !< if indices is NULL, indices is interpreted as [first (== baseVertex) + 0, first + 1, first + 2, ...]
rrRenderer.cpp     [all...]
  /external/deqp/framework/opengl/simplereference/
sglrContext.hpp 181 virtual void drawElementsBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int baseVertex) = DE_NULL;
182 virtual void drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex) = DE_NULL;
184 virtual void drawRangeElementsBaseVertex (deUint32 mode, deUint32 start, deUint32 end, int count, deUint32 type, const void *indices, int baseVertex) = DE_NULL;
190 virtual void multiDrawElementsBaseVertex (deUint32 mode, const int* count, deUint32 type, const void** indices, int primCount, const int* baseVertex) = DE_NULL;
sglrGLContext.hpp 193 virtual void drawElementsBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int baseVertex);
194 virtual void drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex);
196 virtual void drawRangeElementsBaseVertex (deUint32 mode, deUint32 start, deUint32 end, int count, deUint32 type, const void *indices, int baseVertex);
202 virtual void multiDrawElementsBaseVertex (deUint32 mode, const int* count, deUint32 type, const void** indices, int primCount, const int* baseVertex);
sglrGLContext.cpp 805 void GLContext::drawElementsBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int baseVertex)
807 m_wrapper->glDrawElementsBaseVertex(mode, count, type, indices, baseVertex);
810 void GLContext::drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex)
812 m_wrapper->glDrawElementsInstancedBaseVertex(mode, count, type, indices, instanceCount, baseVertex);
820 void GLContext::drawRangeElementsBaseVertex (deUint32 mode, deUint32 start, deUint32 end, int count, deUint32 type, const void *indices, int baseVertex)
822 m_wrapper->glDrawRangeElementsBaseVertex(mode, start, end, count, type, indices, baseVertex);
845 void GLContext::multiDrawElementsBaseVertex (deUint32 mode, const int* count, deUint32 type, const void** indices, int primCount, const int* baseVertex)
847 m_wrapper->glMultiDrawElementsBaseVertex(mode, count, type, indices, primCount, baseVertex);
sglrReferenceContext.hpp 738 virtual void drawElementsBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int baseVertex);
740 virtual void drawElementsInstancedBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int instanceCount, int baseVertex);
742 virtual void drawRangeElementsBaseVertex (deUint32 mode, deUint32 start, deUint32 end, int count, deUint32 type, const void *indices, int baseVertex);
748 virtual void multiDrawElementsBaseVertex (deUint32 mode, const int* count, deUint32 type, const void** indices, int primCount, const int* baseVertex);
    [all...]
sglrReferenceContext.cpp     [all...]
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 68 deInt32 baseVertex;
263 drawCommand.baseVertex = (m_op == INVALID_DATA_FIRST) ? (overBoundDrawCount) : (0);
272 << "\n\tbaseVertex\t" << drawCommand.baseVertex
469 spec.baseVertex = random.chooseWeighted<int, const int*, const float*> (DE_ARRAY_BEGIN(baseVertices), DE_ARRAY_END(baseVertices), baseVertexWeigths);
  /external/deqp/modules/glshared/
glsDrawTest.cpp 274 bool baseVertex;
282 // indexed instanced ranged first baseVertex indirect
    [all...]
glsDrawTest.hpp 230 int baseVertex; //!< used only if drawMethod = DrawElementsIndirect or *BaseVertex
  /external/deqp/modules/gles31/functional/
es31fDrawTests.cpp 92 deInt32 baseVertex;
563 int baseVertex[2];
591 for (int iterationNdx = 0; iterationNdx < DE_LENGTH_OF_ARRAY(indexTest.baseVertex); ++iterationNdx)
593 const std::string iterationDesc = std::string("base vertex ") + de::toString(indexTest.baseVertex[iterationNdx]);
594 spec.baseVertex = indexTest.baseVertex[iterationNdx];
894 command.baseVertex = 0;
    [all...]
es31fGeometryShaderTests.cpp     [all...]

Completed in 7390 milliseconds