Home
last modified time | relevance | path

Searched refs:vertexAttribs (Results 1 – 17 of 17) 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/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemUtils.hpp151 const VertexAttribs& vertexAttribs,
162 const VertexAttribs& vertexAttribs,
DvktProtectedMemShaderImageAccessTests.cpp914 VertexAttribs vertexAttribs; in executeFragmentTest() local
974 vertexAttribs.push_back(vertexInputAttributeDescriptions[0]); in executeFragmentTest()
975 vertexAttribs.push_back(vertexInputAttributeDescriptions[1]); in executeFragmentTest()
998 vertexAttribs, in executeFragmentTest()
DvktProtectedMemUtils.cpp607 const VertexAttribs& vertexAttribs, in makeGraphicsPipeline() argument
621 …(deUint32)vertexAttribs.size(), // deUint32 vertexAttrib… in makeGraphicsPipeline()
622vertexAttribs.data() // const VkVertexInputAttributeDescription* pVertexAttributeDescr… in makeGraphicsPipeline()
DvktProtectedMemYCbCrConversionTests.cpp869 VertexAttribs vertexAttribs; in renderYCbCrToColor() local
889 vertexAttribs.push_back(inputAttribute); in renderYCbCrToColor()
910 vertexAttribs, in renderYCbCrToColor()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawInstancedTests.cpp606 const rr::VertexAttrib vertexAttribs[] = in iterate() local
617 …d command(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), &vertexAttribs[0], in iterate()
626 …d command(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), &vertexAttribs[0], in iterate()
DvktBasicDrawTests.cpp492 const rr::VertexAttrib vertexAttribs[] = in generateRefImage() local
501 DE_LENGTH_OF_ARRAY(vertexAttribs), in generateRefImage()
502 &vertexAttribs[0], in generateRefImage()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiSmokeTests.cpp319 const rr::VertexAttrib vertexAttribs[] = in renderReferenceTriangle() local
327 DE_LENGTH_OF_ARRAY(vertexAttribs), in renderReferenceTriangle()
328 &vertexAttribs[0], in renderReferenceTriangle()
DvktApiObjectManagementTests.cpp1660 const VkVertexInputAttributeDescription vertexAttribs[] = in createMultiple() local
1676 DE_LENGTH_OF_ARRAY(vertexAttribs), in createMultiple()
1677 vertexAttribs in createMultiple()
/external/deqp/modules/internal/
DditFrameworkTests.cpp774 const rr::VertexAttrib vertexAttribs[] = in runCase() local
781 … drawCmd (state, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), vertexAttribs, rr::P… in runCase()
/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/external/vulkancts/modules/vulkan/device_group/
DvktDeviceGroupRendering.cpp134 const rr::VertexAttrib vertexAttribs[] = in renderReferenceTriangle() local
141 DE_LENGTH_OF_ARRAY(vertexAttribs), in renderReferenceTriangle()
142 &vertexAttribs[0], in renderReferenceTriangle()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmGraphicsShaderTestUtil.cpp3473 vector<VkVertexInputAttributeDescription> vertexAttribs; in runAndVerifyDefaultPipeline() local
3491 vertexAttribs.push_back(attr0); in runAndVerifyDefaultPipeline()
3500 vertexAttribs.push_back(attr1); in runAndVerifyDefaultPipeline()
3523 vertexAttribs.push_back(attr); in runAndVerifyDefaultPipeline()
3534vertexAttribs.data(), // const VkVertexInputAttributeDescription* pVertexAttributeDescrip… in runAndVerifyDefaultPipeline()
/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()