Searched defs:baseVertex (Results 1 - 11 of 11) sorted by relevance

/external/deqp/modules/gles31/stress/
H A Des31sDrawTests.cpp68 deInt32 baseVertex; member in struct:deqp::gles31::Stress::__anon4933::DrawElementsCommand
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/framework/referencerenderer/
H A DrrRenderer.hpp78 DrawIndices (const deUint32*, int baseVertex = 0);
79 DrawIndices (const deUint16*, int baseVertex = 0);
80 DrawIndices (const deUint8*, int baseVertex = 0);
81 DrawIndices (const void* ptr, IndexType type, int baseVertex = 0);
85 const int baseVertex; member in struct:rr::DrawIndices
104 const void* const m_indices; // !< if indices is NULL, indices is interpreted as [first (== baseVertex) + 0, first + 1, first + 2, ...]
/external/skia/src/gpu/
H A DGrMesh.h47 void setVertexData(const GrBuffer* vertexBuffer, int baseVertex = 0);
53 int baseVertex) = 0;
59 int baseVertex) = 0;
63 int baseVertex, const GrBuffer* instanceBuffer,
69 int baseVertex, const GrBuffer* instanceBuffer,
196 inline void GrMesh::setVertexData(const GrBuffer* vertexBuffer, int baseVertex) { argument
197 SkASSERT(baseVertex >= 0);
199 fBaseVertex = baseVertex;
/external/skia/src/gpu/vk/
H A DGrVkGpuCommandBuffer.cpp623 int baseVertex,
629 cbInfo.currentCmdBuf()->draw(fGpu, vertexCount, instanceCount, baseVertex, baseInstance);
639 int baseVertex,
646 baseIndex, baseVertex, baseInstance);
619 sendInstancedMeshToGpu(const GrPrimitiveProcessor& primProc, GrPrimitiveType, const GrBuffer* vertexBuffer, int vertexCount, int baseVertex, const GrBuffer* instanceBuffer, int instanceCount, int baseInstance) argument
633 sendIndexedInstancedMeshToGpu(const GrPrimitiveProcessor& primProc, GrPrimitiveType, const GrBuffer* indexBuffer, int indexCount, int baseIndex, const GrBuffer* vertexBuffer, int baseVertex, const GrBuffer* instanceBuffer, int instanceCount, int baseInstance) argument
/external/deqp/modules/gles31/functional/
H A Des31fDrawElementsBaseVertexTests.cpp180 void draw (GLenum mode, GLsizei count, GLenum type, GLvoid* indices, GLint baseVertex);
278 void VertexIDCase::draw (GLenum mode, GLsizei count, GLenum type, GLvoid* indices, GLint baseVertex) argument
283 GLU_CHECK_GLW_CALL(m_gl, drawElementsBaseVertex(mode, count, type, indices, baseVertex));
290 GLU_CHECK_GLW_CALL(m_gl, drawRangeElementsBaseVertex(mode, 0, maxElementsVertices, count, type, indices, baseVertex));
295 GLU_CHECK_GLW_CALL(m_gl, drawElementsInstancedBaseVertex(mode, count, type, indices, 1, baseVertex));
354 const GLuint baseVertex = 4; local
407 draw(GL_TRIANGLES, drawCount, GL_UNSIGNED_SHORT, (GLvoid*)indices, baseVertex);
415 draw(GL_TRIANGLES, drawCount, GL_UNSIGNED_SHORT, DE_NULL, baseVertex);
544 int baseVertex[2]; member in struct:deqp::gles31::Functional::__anon4778::IndexTest
572 for (int iterationNdx = 0; iterationNdx < DE_LENGTH_OF_ARRAY(indexTest.baseVertex);
[all...]
H A Des31fDrawTests.cpp92 deInt32 baseVertex; member in struct:deqp::gles31::Functional::__anon4781::DrawElementsCommand
561 int baseVertex[2]; member in struct:deqp::gles31::Functional::__anon4781::IndexTest
589 for (int iterationNdx = 0; iterationNdx < DE_LENGTH_OF_ARRAY(indexTest.baseVertex); ++iterationNdx)
591 const std::string iterationDesc = std::string("base vertex ") + de::toString(indexTest.baseVertex[iterationNdx]);
592 spec.baseVertex = indexTest.baseVertex[iterationNdx];
892 command.baseVertex = 0;
1218 << " int baseVertex;\n"
1260 buf << " commands[gl_GlobalInvocationID.x].baseVertex = 0;\n";
1380 data.baseVertex
[all...]
/external/deqp/modules/glshared/
H A DglsDrawTest.hpp231 int baseVertex; //!< used only if drawMethod = DrawElementsIndirect or *BaseVertex member in struct:deqp::gls::DrawTestSpec
H A DglsDrawTest.cpp261 bool baseVertex; member in struct:deqp::gls::__anon4945::MethodInfo
269 // indexed instanced ranged first baseVertex indirect
1762 void render (DrawTestSpec::Primitive primitive, DrawTestSpec::DrawMethod drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* indexOffset, int rangeStart, int rangeEnd, int instanceCount, int indirectOffset, int baseVertex, float coordScale, float colorScale, AttributeArray* indexArray);
1841 void AttributePack::render (DrawTestSpec::Primitive primitive, DrawTestSpec::DrawMethod drawMethod, int firstVertex, int vertexCount, DrawTestSpec::IndexType indexType, const void* indexOffset, int rangeStart, int rangeEnd, int instanceCount, int indirectOffset, int baseVertex, float coordScale, float colorScale, AttributeArray* indexArray) argument
1955 GLint baseVertex; member in struct:deqp::gls::DrawCommand
1969 command.baseVertex = baseVertex;
1981 << "\tbaseVertex: " << command.baseVertex << "\n"
2001 m_ctx.drawElementsBaseVertex(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), indexOffset, baseVertex); local
2006 m_ctx.drawElementsInstancedBaseVertex(primitiveToGL(primitive), vertexCount, indexTypeToGL(indexType), indexOffset, instanceCount, baseVertex); local
2011 m_ctx.drawRangeElementsBaseVertex(primitiveToGL(primitive), rangeStart, rangeEnd, vertexCount, indexTypeToGL(indexType), indexOffset, baseVertex); local
2606 << "base vertex " << baseVertex << ", "; local
2743 << "\\tbase vertex " << baseVertex << "\\n"; local
2752 << "\\tbase vertex " << baseVertex << "\\n"; local
2762 << "\\tbase vertex " << baseVertex << "\\n"; local
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp805 void GLContext::drawElementsBaseVertex (deUint32 mode, int count, deUint32 type, const void *indices, int baseVertex) argument
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) argument
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) argument
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) argument
847 m_wrapper->glMultiDrawElementsBaseVertex(mode, count, type, indices, primCount, baseVertex);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dcontext.h183 int32_t baseVertex; member in struct:DRAW_WORK
/external/skia/src/gpu/gl/
H A DGrGLGpu.cpp1847 int baseVertex,
1868 bindings[0].fBufferOffset = vertexBuffer->baseOffset() + baseVertex * vertexStride;
2575 const GrBuffer* vertexBuffer, int vertexCount, int baseVertex) {
2578 this->setupGeometry(primProc, nullptr, vertexBuffer, baseVertex, nullptr, 0);
2582 GL_CALL(DrawArrays(glPrimType, baseVertex, vertexCount));
2591 int baseVertex) {
2596 this->setupGeometry(primProc, indexBuffer, vertexBuffer, baseVertex, nullptr, 0);
2609 int vertexCount, int baseVertex,
2614 GL_CALL(DrawArraysInstanced(glPrimType, baseVertex, vertexCount, instanceCount));
2622 int baseVertex, cons
1844 setupGeometry(const GrPrimitiveProcessor& primProc, const GrBuffer* indexBuffer, const GrBuffer* vertexBuffer, int baseVertex, const GrBuffer* instanceBuffer, int baseInstance) argument
2574 sendMeshToGpu(const GrPrimitiveProcessor& primProc, GrPrimitiveType primitiveType, const GrBuffer* vertexBuffer, int vertexCount, int baseVertex) argument
2587 sendIndexedMeshToGpu(const GrPrimitiveProcessor& primProc, GrPrimitiveType primitiveType, const GrBuffer* indexBuffer, int indexCount, int baseIndex, uint16_t minIndexValue, uint16_t maxIndexValue, const GrBuffer* vertexBuffer, int baseVertex) argument
2607 sendInstancedMeshToGpu(const GrPrimitiveProcessor& primProc, GrPrimitiveType primitiveType, const GrBuffer* vertexBuffer, int vertexCount, int baseVertex, const GrBuffer* instanceBuffer, int instanceCount, int baseInstance) argument
2618 sendIndexedInstancedMeshToGpu(const GrPrimitiveProcessor& primProc, GrPrimitiveType primitiveType, const GrBuffer* indexBuffer, int indexCount, int baseIndex, const GrBuffer* vertexBuffer, int baseVertex, const GrBuffer* instanceBuffer, int instanceCount, int baseInstance) argument
[all...]

Completed in 368 milliseconds