Home
last modified time | relevance | path

Searched refs:vertexAttribs (Results 1 – 9 of 9) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineReferenceRenderer.cpp270 rr::VertexAttrib vertexAttribs[2]; in draw() local
273 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_FLOAT; in draw()
274 vertexAttribs[0].size = 4; in draw()
275 vertexAttribs[0].pointer = positions.data(); in draw()
277 vertexAttribs[1].type = rr::VERTEXATTRIBTYPE_FLOAT; in draw()
278 vertexAttribs[1].size = 4; in draw()
279 vertexAttribs[1].pointer = colors.data(); in draw()
281 …rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 2, vertexAttribs, primit… in draw()
302 rr::VertexAttrib vertexAttribs[2]; in draw() local
305 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_FLOAT; in draw()
[all …]
/external/deqp/framework/referencerenderer/
DrrRenderer.hpp117 , vertexAttribs (vertexAttribs_) in DrawCommand()
127 const VertexAttrib* const vertexAttribs; member in rr::DrawCommand
DrrRenderer.cpp1806 …command.program.vertexShader->shadeVertices(command.vertexAttribs, &vertexPackets[0], numVertexPac… in drawInstanced()
/external/deqp/modules/glshared/
DglsTextureBufferCase.cpp679 rr::VertexAttrib vertexAttribs[1]; in renderReference() local
684 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_NONPURE_UNORM8; in renderReference()
685 vertexAttribs[0].size = 2; in renderReference()
686 vertexAttribs[0].pointer = texture.getRefBuffer().getPtr(); in renderReference()
694 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_NONPURE_UNORM8; in renderReference()
695 vertexAttribs[0].size = 2; in renderReference()
696 vertexAttribs[0].pointer = &(coords[0]); in renderReference()
702 const rr::DrawCommand cmd(renderState, renderTarget, program, 1, vertexAttribs, primitives); in renderReference()
709 const rr::DrawCommand cmd(renderState, renderTarget, program, 1, vertexAttribs, primitives); in renderReference()
/external/deqp/modules/internal/
DditFrameworkTests.cpp760 const rr::VertexAttrib vertexAttribs[] = in runCase() local
767 … drawCmd (state, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), vertexAttribs, rr::P… in runCase()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiSmokeTests.cpp317 const rr::VertexAttrib vertexAttribs[] = in renderReferenceTriangle() local
325 DE_LENGTH_OF_ARRAY(vertexAttribs), in renderReferenceTriangle()
326 &vertexAttribs[0], in renderReferenceTriangle()
DvktApiObjectManagementTests.cpp1563 const VkVertexInputAttributeDescription vertexAttribs[] = in create() local
1579 DE_LENGTH_OF_ARRAY(vertexAttribs), in create()
1580 vertexAttribs in create()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp4296 std::vector<rr::VertexAttrib> vertexAttribs; in drawWithReference() local
4379 vertexAttribs.resize(vao.m_arrays.size()); in drawWithReference()
4384vertexAttribs[ndx].type = rr::VERTEXATTRIBTYPE_DONT_CARE; // reading with wrong type is allowed, b… in drawWithReference()
4385 vertexAttribs[ndx].generic = m_currentAttribs[ndx]; in drawWithReference()
4389vertexAttribs[ndx].type = rr::VERTEXATTRIBTYPE_DONT_CARE; // reading from deleted buffer, output z… in drawWithReference()
4390 vertexAttribs[ndx].generic = tcu::Vec4(0, 0, 0, 0); in drawWithReference()
4394 vertexAttribs[ndx].type = (vao.m_arrays[ndx].integer) ? in drawWithReference()
4397 vertexAttribs[ndx].size = sglr::rr_util::mapGLSize(vao.m_arrays[ndx].size); in drawWithReference()
4398 vertexAttribs[ndx].stride = vao.m_arrays[ndx].stride; in drawWithReference()
4399 vertexAttribs[ndx].instanceDivisor = vao.m_arrays[ndx].divisor; in drawWithReference()
[all …]
/external/deqp/modules/gles31/functional/
Des31fDrawBuffersIndexedTests.cpp818 const rr::VertexAttrib vertexAttribs[] = in renderRefQuad() local
832 …and (renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), vertexAttribs, primi… in renderRefQuad()