Searched refs:vertexAttribs (Results 1 - 17 of 17) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineReferenceRenderer.cpp270 rr::VertexAttrib vertexAttribs[2]; local
273 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_FLOAT;
274 vertexAttribs[0].size = 4;
275 vertexAttribs[0].pointer = positions.data();
277 vertexAttribs[1].type = rr::VERTEXATTRIBTYPE_FLOAT;
278 vertexAttribs[1].size = 4;
279 vertexAttribs[1].pointer = colors.data();
281 rr::DrawCommand drawQuadCommand(renderState, *m_renderTarget, *m_program, 2, vertexAttribs, primitives);
302 rr::VertexAttrib vertexAttribs[2]; local
305 vertexAttribs[
[all...]
/external/deqp/framework/referencerenderer/
H A DrrRenderer.hpp117 , vertexAttribs (vertexAttribs_)
127 const VertexAttrib* const vertexAttribs; member in class:rr::DrawCommand
H A DrrRenderer.cpp1806 command.program.vertexShader->shadeVertices(command.vertexAttribs, &vertexPackets[0], numVertexPackets);
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemUtils.hpp149 const VertexAttribs& vertexAttribs,
160 const VertexAttribs& vertexAttribs,
H A DvktProtectedMemUtils.cpp656 const VertexAttribs& vertexAttribs,
689 (deUint32)vertexAttribs.size(), // deUint32 attributeCount;
690 vertexAttribs.data() // const VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
649 makeGraphicsPipeline(const vk::DeviceInterface& vk, const vk::VkDevice device, const vk::VkPipelineLayout pipelineLayout, const vk::VkRenderPass renderPass, const vk::VkShaderModule vertexShaderModule, const vk::VkShaderModule fragmentShaderModule, const VertexBindings& vertexBindings, const VertexAttribs& vertexAttribs, const tcu::UVec2& renderSize, const vk::VkPrimitiveTopology topology) argument
H A DvktProtectedMemShaderImageAccessTests.cpp1179 VertexAttribs vertexAttribs; local
1239 vertexAttribs.push_back(vertexInputAttributeDescriptions[0]);
1240 vertexAttribs.push_back(vertexInputAttributeDescriptions[1]);
1263 vertexAttribs,
H A DvktProtectedMemYCbCrConversionTests.cpp857 VertexAttribs vertexAttribs; local
877 vertexAttribs.push_back(inputAttribute);
898 vertexAttribs,
/external/deqp/modules/glshared/
H A DglsTextureBufferCase.cpp679 rr::VertexAttrib vertexAttribs[1]; local
684 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_NONPURE_UNORM8;
685 vertexAttribs[0].size = 2;
686 vertexAttribs[0].pointer = texture.getRefBuffer().getPtr();
694 vertexAttribs[0].type = rr::VERTEXATTRIBTYPE_NONPURE_UNORM8;
695 vertexAttribs[0].size = 2;
696 vertexAttribs[0].pointer = &(coords[0]);
702 const rr::DrawCommand cmd(renderState, renderTarget, program, 1, vertexAttribs, primitives);
709 const rr::DrawCommand cmd(renderState, renderTarget, program, 1, vertexAttribs, primitives);
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawInstancedTests.cpp602 const rr::VertexAttrib vertexAttribs[] = local
612 const rr::DrawCommand command(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), &vertexAttribs[0],
621 const rr::DrawCommand command(renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), &vertexAttribs[0],
H A DvktBasicDrawTests.cpp506 const rr::VertexAttrib vertexAttribs[] = local
515 DE_LENGTH_OF_ARRAY(vertexAttribs),
516 &vertexAttribs[0],
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiSmokeTests.cpp317 const rr::VertexAttrib vertexAttribs[] = local
325 DE_LENGTH_OF_ARRAY(vertexAttribs),
326 &vertexAttribs[0],
H A DvktApiObjectManagementTests.cpp1711 const VkVertexInputAttributeDescription vertexAttribs[] = local
1727 DE_LENGTH_OF_ARRAY(vertexAttribs),
1728 vertexAttribs
/external/deqp/modules/internal/
H A DditFrameworkTests.cpp774 const rr::VertexAttrib vertexAttribs[] = local
781 const rr::DrawCommand drawCmd (state, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), vertexAttribs, rr::PrimitiveList(rr::PRIMITIVETYPE_TRIANGLES, 3, 0));
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmGraphicsShaderTestUtil.cpp3018 vector<VkVertexInputAttributeDescription> vertexAttribs; local
3036 vertexAttribs.push_back(attr0);
3045 vertexAttribs.push_back(attr1);
3068 vertexAttribs.push_back(attr);
3079 vertexAttribs.data(), // const VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp4296 std::vector<rr::VertexAttrib> vertexAttribs;
4379 vertexAttribs.resize(vao.m_arrays.size());
4384 vertexAttribs[ndx].type = rr::VERTEXATTRIBTYPE_DONT_CARE; // reading with wrong type is allowed, but results are undefined
4385 vertexAttribs[ndx].generic = m_currentAttribs[ndx];
4389 vertexAttribs[ndx].type = rr::VERTEXATTRIBTYPE_DONT_CARE; // reading from deleted buffer, output zeros
4390 vertexAttribs[ndx].generic = tcu::Vec4(0, 0, 0, 0);
4394 vertexAttribs[ndx].type = (vao.m_arrays[ndx].integer) ?
4397 vertexAttribs[ndx].size = sglr::rr_util::mapGLSize(vao.m_arrays[ndx].size);
4398 vertexAttribs[ndx].stride = vao.m_arrays[ndx].stride;
4399 vertexAttribs[nd
[all...]
/external/deqp/external/vulkancts/modules/vulkan/device_group/
H A DvktDeviceGroupRendering.cpp132 const rr::VertexAttrib vertexAttribs[] = local
139 DE_LENGTH_OF_ARRAY(vertexAttribs),
140 &vertexAttribs[0],
/external/deqp/modules/gles31/functional/
H A Des31fDrawBuffersIndexedTests.cpp818 const rr::VertexAttrib vertexAttribs[] = local
832 const rr::DrawCommand command (renderState, renderTarget, program, DE_LENGTH_OF_ARRAY(vertexAttribs), vertexAttribs, primitives);

Completed in 267 milliseconds