/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/fragment_ops/ |
H A D | vktFragmentOperationsScissorMultiViewportTests.cpp | 326 m_vertexBufferAlloc = bindBuffer (vk, device, allocator, *m_vertexBuffer, MemoryRequirement::HostVisible); in ScissorRenderer() 329 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(m_vertexBufferSize)); in ScissorRenderer() 330 flushAlloc(vk, device, *m_vertexBufferAlloc); in ScissorRenderer() 382 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::FragmentOperations::__anon27973::ScissorRenderer
|
H A D | vktFragmentOperationsScissorTests.cpp | 362 m_vertexBufferAlloc = bindBuffer(vk, device, allocator, *m_vertexBuffer, MemoryRequirement::HostVisible); in ScissorRenderer() 365 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &m_vertices[0], static_cast<std::size_t>(m_vertexBufferSize)); in ScissorRenderer() 366 flushAlloc(vk, device, *m_vertexBufferAlloc); in ScissorRenderer() 424 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::FragmentOperations::__anon27974::ScissorRenderer
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/fragment_ops/ |
H A D | vktFragmentOperationsScissorMultiViewportTests.cpp | 326 m_vertexBufferAlloc = bindBuffer (vk, device, allocator, *m_vertexBuffer, MemoryRequirement::HostVisible); in ScissorRenderer() 329 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertices[0], static_cast<std::size_t>(m_vertexBufferSize)); in ScissorRenderer() 330 flushAlloc(vk, device, *m_vertexBufferAlloc); in ScissorRenderer() 382 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::FragmentOperations::__anon29207::ScissorRenderer
|
H A D | vktFragmentOperationsScissorTests.cpp | 362 m_vertexBufferAlloc = bindBuffer(vk, device, allocator, *m_vertexBuffer, MemoryRequirement::HostVisible); in ScissorRenderer() 365 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &m_vertices[0], static_cast<std::size_t>(m_vertexBufferSize)); in ScissorRenderer() 366 flushAlloc(vk, device, *m_vertexBufferAlloc); in ScissorRenderer() 424 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::FragmentOperations::__anon29208::ScissorRenderer
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassMultipleSubpassesMultipleCommandBuffersTests.cpp | 130 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon28591::MultipleSubpassesMultipleCommandBuffersTestInstance 552 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in MultipleSubpassesMultipleCommandBuffersTestInstance() 553 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in MultipleSubpassesMultipleCommandBuffersTestInstance() 555 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertexValues.data(), static_cast<size_t>(vertexBufferSize)); in MultipleSubpassesMultipleCommandBuffersTestInstance() 556 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in MultipleSubpassesMultipleCommandBuffersTestInstance()
|
H A D | vktRenderPassUnusedAttachmentSparseFillingTests.cpp | 174 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon28600::InputAttachmentSparseFillingTestInstance 544 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in InputAttachmentSparseFillingTestInstance() 545 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in InputAttachmentSparseFillingTestInstance() 548 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex)); in InputAttachmentSparseFillingTestInstance() 549 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in InputAttachmentSparseFillingTestInstance()
|
H A D | vktRenderPassUnusedAttachmentTests.cpp | 283 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon28601::UnusedAttachmentTestInstance 818 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in UnusedAttachmentTestInstance() 820 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in UnusedAttachmentTestInstance() 823 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); in UnusedAttachmentTestInstance() 824 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in UnusedAttachmentTestInstance()
|
H A D | vktRenderPassDitheringTests.cpp | 161 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon28582::DitheringTestInstance 545 m_vertexBufferAlloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in createCommonResources() 547 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in createCommonResources() 550 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertices.data(), vertices.size() * sizeof(Vertex4RGBA)); in createCommonResources() 551 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in createCommonResources()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassMultipleSubpassesMultipleCommandBuffersTests.cpp | 130 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon29770::MultipleSubpassesMultipleCommandBuffersTestInstance 553 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in MultipleSubpassesMultipleCommandBuffersTestInstance() 554 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in MultipleSubpassesMultipleCommandBuffersTestInstance() 556 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertexValues.data(), static_cast<size_t>(vertexBufferSize)); in MultipleSubpassesMultipleCommandBuffersTestInstance() 557 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in MultipleSubpassesMultipleCommandBuffersTestInstance()
|
H A D | vktRenderPassUnusedAttachmentSparseFillingTests.cpp | 175 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon29779::InputAttachmentSparseFillingTestInstance 546 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in InputAttachmentSparseFillingTestInstance() 547 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in InputAttachmentSparseFillingTestInstance() 550 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex)); in InputAttachmentSparseFillingTestInstance() 551 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in InputAttachmentSparseFillingTestInstance()
|
H A D | vktRenderPassUnusedAttachmentTests.cpp | 284 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon29780::UnusedAttachmentTestInstance 820 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in UnusedAttachmentTestInstance() 822 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in UnusedAttachmentTestInstance() 825 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); in UnusedAttachmentTestInstance() 826 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in UnusedAttachmentTestInstance()
|
H A D | vktRenderPassDitheringTests.cpp | 162 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::renderpass::__anon29761::DitheringTestInstance 547 m_vertexBufferAlloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); in createCommonResources() 549 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in createCommonResources() 552 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertices.data(), vertices.size() * sizeof(Vertex4RGBA)); in createCommonResources() 553 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); in createCommonResources()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
H A D | vktSparseResourcesBufferTests.cpp | 994 m_vertexBufferAlloc = bindBuffer(vk, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in iterate() 996 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertexData[0], vertexBufferSize); in iterate() 997 flushAlloc(vk, getDevice(), *m_vertexBufferAlloc); in iterate() 1047 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::sparse::__anon28734::UBOTestInstance 1347 m_vertexBufferAlloc = bindBuffer(vk, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in initializeBuffers() 1352 generateGrid(m_vertexBufferAlloc->getHostPtr(), step, -1.0f, -1.0f, GRID_SIZE, GRID_SIZE); in initializeBuffers() 1354 flushAlloc(vk, getDevice(), *m_vertexBufferAlloc); in initializeBuffers() 1372 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::sparse::__anon28734::IndexBufferTestInstance 1412 m_vertexBufferAlloc = bindBuffer(vk, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in initializeBuffers() 1415 generateGrid(m_vertexBufferAlloc in initializeBuffers() 1434 MovePtr<Allocation> m_vertexBufferAlloc; global() member in vkt::sparse::__anon28734::IndirectBufferTestInstance [all...] |
H A D | vktSparseResourcesShaderIntrinsicsSampled.cpp | 534 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::sparse::SparseShaderIntrinsicsInstanceSampledBase 612 m_vertexBufferAlloc = bindBuffer(deviceInterface, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in recordCommands() 614 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertexData[0], static_cast<std::size_t>(vertexDataSizeInBytes)); in recordCommands() 615 flushAlloc(deviceInterface, getDevice(), *m_vertexBufferAlloc); in recordCommands()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/ |
H A D | vktSparseResourcesBufferTests.cpp | 994 m_vertexBufferAlloc = bindBuffer(vk, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in iterate() 996 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertexData[0], vertexBufferSize); in iterate() 997 flushAlloc(vk, getDevice(), *m_vertexBufferAlloc); in iterate() 1047 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::sparse::__anon29883::UBOTestInstance 1347 m_vertexBufferAlloc = bindBuffer(vk, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in initializeBuffers() 1352 generateGrid(m_vertexBufferAlloc->getHostPtr(), step, -1.0f, -1.0f, GRID_SIZE, GRID_SIZE); in initializeBuffers() 1354 flushAlloc(vk, getDevice(), *m_vertexBufferAlloc); in initializeBuffers() 1372 MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::sparse::__anon29883::IndexBufferTestInstance 1412 m_vertexBufferAlloc = bindBuffer(vk, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in initializeBuffers() 1415 generateGrid(m_vertexBufferAlloc in initializeBuffers() 1434 MovePtr<Allocation> m_vertexBufferAlloc; global() member in vkt::sparse::__anon29883::IndirectBufferTestInstance [all...] |
H A D | vktSparseResourcesShaderIntrinsicsSampled.cpp | 534 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::sparse::SparseShaderIntrinsicsInstanceSampledBase 612 m_vertexBufferAlloc = bindBuffer(deviceInterface, getDevice(), getAllocator(), *m_vertexBuffer, MemoryRequirement::HostVisible); in recordCommands() 614 deMemcpy(m_vertexBufferAlloc->getHostPtr(), &vertexData[0], static_cast<std::size_t>(vertexDataSizeInBytes)); in recordCommands() 615 flushAlloc(deviceInterface, getDevice(), *m_vertexBufferAlloc); in recordCommands()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/ |
H A D | vktRobustnessBufferAccessTests.cpp | 234 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::robustness::BufferAccessInstance 1173 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, *m_device, *m_vertexBuffer), MemoryRequirement::HostVisible); in BufferAccessInstance() 1175 VK_CHECK(vk.bindBufferMemory(*m_device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in BufferAccessInstance() 1178 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertices, sizeof(tcu::Vec4) * DE_LENGTH_OF_ARRAY(vertices)); in BufferAccessInstance() 1179 flushMappedMemoryRange(vk, *m_device, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset(), VK_WHOLE_SIZE); in BufferAccessInstance()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelinePushDescriptorTests.cpp | 269 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon28251::PushDescriptorBufferGraphicsTestInstance 535 m_vertexBufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, *m_vertexBuffer), MemoryRequirement::HostVisible); in init() 537 VK_CHECK(m_vkd.bindBufferMemory(*m_device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in init() 540 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); in init() 541 flushAlloc(m_vkd, *m_device, *m_vertexBufferAlloc); in init() 1102 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon28251::PushDescriptorImageGraphicsTestInstance 1614 m_vertexBufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, *m_vertexBuffer), MemoryRequirement::HostVisible); in init() 1616 VK_CHECK(m_vkd.bindBufferMemory(*m_device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc in init() 2749 de::MovePtr<Allocation> m_vertexBufferAlloc; global() member in vkt::pipeline::__anon28251::PushDescriptorTexelBufferGraphicsTestInstance 3627 de::MovePtr<Allocation> m_vertexBufferAlloc; global() member in vkt::pipeline::__anon28251::PushDescriptorInputAttachmentGraphicsTestInstance [all...] |
H A D | vktPipelineBlendTests.cpp | 205 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon28155::BlendTestInstance 242 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon28155::DualSourceBlendTestInstance 803 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); 805 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); 816 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); 818 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); 1403 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); 1405 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc [all...] |
H A D | vktPipelineInterfaceMatchingTests.cpp | 151 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon28226::InterfaceMatchingTestInstance 341 m_vertexBufferAlloc = m_alloc.allocate(getBufferMemoryRequirements(vk, device, *m_vertexBuffer), MemoryRequirement::HostVisible); in iterate() 342 VK_CHECK(vk.bindBufferMemory(device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in iterate() 344 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertices.data(), vertices.size() * sizeof(float)); in iterate() 345 flushAlloc(vk, device, *m_vertexBufferAlloc); in iterate()
|
H A D | vktPipelineStencilTests.cpp | 176 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon28276::StencilTestInstance 679 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); 681 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); 689 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); 690 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelinePushDescriptorTests.cpp | 266 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon29471::PushDescriptorBufferGraphicsTestInstance 524 m_vertexBufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, *m_vertexBuffer), MemoryRequirement::HostVisible); in init() 526 VK_CHECK(m_vkd.bindBufferMemory(*m_device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in init() 529 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); in init() 530 flushAlloc(m_vkd, *m_device, *m_vertexBufferAlloc); in init() 1090 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon29471::PushDescriptorImageGraphicsTestInstance 1602 m_vertexBufferAlloc = m_allocator.allocate(getBufferMemoryRequirements(m_vkd, *m_device, *m_vertexBuffer), MemoryRequirement::HostVisible); in init() 1604 VK_CHECK(m_vkd.bindBufferMemory(*m_device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc in init() 2739 de::MovePtr<Allocation> m_vertexBufferAlloc; global() member in vkt::pipeline::__anon29471::PushDescriptorTexelBufferGraphicsTestInstance 3609 de::MovePtr<Allocation> m_vertexBufferAlloc; global() member in vkt::pipeline::__anon29471::PushDescriptorInputAttachmentGraphicsTestInstance [all...] |
H A D | vktPipelineBlendTests.cpp | 205 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon29382::BlendTestInstance 242 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon29382::DualSourceBlendTestInstance 805 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); 807 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); 818 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); 820 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc); 1405 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); 1407 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc [all...] |
H A D | vktPipelineInterfaceMatchingTests.cpp | 149 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon29445::InterfaceMatchingTestInstance 339 m_vertexBufferAlloc = m_alloc.allocate(getBufferMemoryRequirements(vk, device, *m_vertexBuffer), MemoryRequirement::HostVisible); in iterate() 340 VK_CHECK(vk.bindBufferMemory(device, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); in iterate() 342 deMemcpy(m_vertexBufferAlloc->getHostPtr(), vertices.data(), vertices.size() * sizeof(float)); in iterate() 343 flushAlloc(vk, device, *m_vertexBufferAlloc); in iterate()
|
H A D | vktPipelineStencilTests.cpp | 175 de::MovePtr<Allocation> m_vertexBufferAlloc; member in vkt::pipeline::__anon29493::StencilTestInstance 674 m_vertexBufferAlloc = memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *m_vertexBuffer), MemoryRequirement::HostVisible); 676 VK_CHECK(vk.bindBufferMemory(vkDevice, *m_vertexBuffer, m_vertexBufferAlloc->getMemory(), m_vertexBufferAlloc->getOffset())); 684 deMemcpy(m_vertexBufferAlloc->getHostPtr(), m_vertices.data(), m_vertices.size() * sizeof(Vertex4RGBA)); 685 flushAlloc(vk, vkDevice, *m_vertexBufferAlloc);
|