Searched refs:inputAttributes (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/tests/VulkanBenchmarks/ |
D | TriangleBenchmarks.cpp | 54 std::vector<vk::VertexInputAttributeDescription> inputAttributes; in TriangleSolidColor() local 55 …inputAttributes.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 107 …inputAttributes.push_back(vk::VertexInputAttributeDescription(0, 0, vk::Format::eR32G32B32Sfloat, … in TriangleInterpolateColor() 108 …inputAttributes.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 166 …inputAttributes.push_back(vk::VertexInputAttributeDescription(0, 0, vk::Format::eR32G32B32Sfloat, … in TriangleSampleTexture() 167 …inputAttributes.push_back(vk::VertexInputAttributeDescription(1, 0, vk::Format::eR32G32Sfloat, off… in TriangleSampleTexture() [all …]
|
/external/swiftshader/tests/VulkanUnitTests/ |
D | DrawTests.cpp | 41 std::vector<vk::VertexInputAttributeDescription> inputAttributes; in TEST_F() local 42 …inputAttributes.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/ |
D | DrawTester.hpp | 78 …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
|
D | DrawTester.cpp | 408 …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()
|