Home
last modified time | relevance | path

Searched refs:inputAttributes (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/tests/VulkanBenchmarks/
DTriangleBenchmarks.cpp54 std::vector<vk::VertexInputAttributeDescription> inputAttributes; in TriangleSolidColor() local
55inputAttributes.push_back(vk::VertexInputAttributeDescription(0, 0, vk::Format::eR32G32B32Sfloat, … in TriangleSolidColor()
57 tester.addVertexBuffer(vertexBufferData, sizeof(vertexBufferData), std::move(inputAttributes)); in TriangleSolidColor()
106 std::vector<vk::VertexInputAttributeDescription> inputAttributes; in TriangleInterpolateColor() local
107inputAttributes.push_back(vk::VertexInputAttributeDescription(0, 0, vk::Format::eR32G32B32Sfloat, … in TriangleInterpolateColor()
108inputAttributes.push_back(vk::VertexInputAttributeDescription(1, 0, vk::Format::eR32G32B32Sfloat, … in TriangleInterpolateColor()
110 tester.addVertexBuffer(vertexBufferData, sizeof(vertexBufferData), std::move(inputAttributes)); in TriangleInterpolateColor()
165 std::vector<vk::VertexInputAttributeDescription> inputAttributes; in TriangleSampleTexture() local
166inputAttributes.push_back(vk::VertexInputAttributeDescription(0, 0, vk::Format::eR32G32B32Sfloat, … in TriangleSampleTexture()
167inputAttributes.push_back(vk::VertexInputAttributeDescription(1, 0, vk::Format::eR32G32Sfloat, off… in TriangleSampleTexture()
[all …]
/external/swiftshader/tests/VulkanUnitTests/
DDrawTests.cpp41 std::vector<vk::VertexInputAttributeDescription> inputAttributes; in TEST_F() local
42inputAttributes.push_back(vk::VertexInputAttributeDescription(0, 0, vk::Format::eR32G32B32Sfloat, … in TEST_F()
44 tester.addVertexBuffer(vertexBufferData, sizeof(vertexBufferData), std::move(inputAttributes)); in TEST_F()
/external/swiftshader/tests/VulkanWrapper/
DDrawTester.hpp78 …ata, size_t vertexBufferDataSize, std::vector<vk::VertexInputAttributeDescription> inputAttributes) in addVertexBuffer() argument
80 …rtexBuffer(vertexBufferData, vertexBufferDataSize, sizeof(VertexType), std::move(inputAttributes)); in addVertexBuffer()
121 …fferDataSize, size_t vertexSize, std::vector<vk::VertexInputAttributeDescription> inputAttributes);
148 std::vector<vk::VertexInputAttributeDescription> inputAttributes; member
DDrawTester.cpp408 …ufferDataSize, size_t vertexSize, std::vector<vk::VertexInputAttributeDescription> inputAttributes) in addVertexBuffer() argument
432 vertices.inputAttributes = std::move(inputAttributes); in addVertexBuffer()
436 …nputState.vertexAttributeDescriptionCount = static_cast<uint32_t>(vertices.inputAttributes.size()); in addVertexBuffer()
437 vertices.inputState.pVertexAttributeDescriptions = vertices.inputAttributes.data(); in addVertexBuffer()