/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/ |
H A D | vktRobustness1VertexAccessTests.cpp | 706 auto indexBufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *indexBuffer), MemoryRequirement::HostVisible); 707 VK_CHECK(vk.bindBufferMemory(device, *indexBuffer, indexBufferAlloc->getMemory(), indexBufferAlloc->getOffset())); 708 deMemcpy(indexBufferAlloc->getHostPtr(), input.indices.data(), indexDataSize); 709 flushMappedMemoryRange(vk, device, indexBufferAlloc->getMemory(), indexBufferAlloc->getOffset(), VK_WHOLE_SIZE); 710 indexBufferAllocs.emplace_back(indexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/ |
H A D | vktRobustness1VertexAccessTests.cpp | 686 auto indexBufferAlloc = allocator.allocate(getBufferMemoryRequirements(vk, device, *indexBuffer), MemoryRequirement::HostVisible); 687 VK_CHECK(vk.bindBufferMemory(device, *indexBuffer, indexBufferAlloc->getMemory(), indexBufferAlloc->getOffset())); 688 deMemcpy(indexBufferAlloc->getHostPtr(), input.indices.data(), indexDataSize); 689 flushMappedMemoryRange(vk, device, indexBufferAlloc->getMemory(), indexBufferAlloc->getOffset(), VK_WHOLE_SIZE); 690 indexBufferAllocs.emplace_back(indexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineRobustnessCacheTests.cpp | 245 auto& indexBufferAlloc = indexBuffer->getAllocation(); in iterate() local 250 deMemcpy(indexBufferAlloc.getHostPtr(), &index, sizeof(deUint32)); in iterate() 251 flushAlloc(vk, device, indexBufferAlloc); in iterate() 509 deMemcpy(indexBufferAlloc.getHostPtr(), &invalidIndex, sizeof(deUint32)); in iterate() 510 flushAlloc(vk, device, indexBufferAlloc); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
H A D | vktMeshShaderSmokeTests.cpp | 410 auto& indexBufferAlloc = indexBuffer.getAllocation(); in iterate() local 411 void* indexBufferDataPtr = indexBufferAlloc.getHostPtr(); in iterate() 414 flushAlloc(vkd, device, indexBufferAlloc); in iterate()
|
H A D | vktMeshShaderSmokeTestsEXT.cpp | 520 auto& indexBufferAlloc = indexBuffer.getAllocation(); in iterate() local 521 void* indexBufferDataPtr = indexBufferAlloc.getHostPtr(); in iterate() 524 flushAlloc(vkd, device, indexBufferAlloc); in iterate()
|
H A D | vktMeshShaderMiscTests.cpp | 4566 auto& indexBufferAlloc = indexBuffer.getAllocation(); 4567 void* indexBufferData = indexBufferAlloc.getHostPtr(); 4570 flushAlloc(vkd, device, indexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/ |
H A D | vktMeshShaderSmokeTests.cpp | 410 auto& indexBufferAlloc = indexBuffer.getAllocation(); in iterate() local 411 void* indexBufferDataPtr = indexBufferAlloc.getHostPtr(); in iterate() 414 flushAlloc(vkd, device, indexBufferAlloc); in iterate()
|
H A D | vktMeshShaderSmokeTestsEXT.cpp | 516 auto& indexBufferAlloc = indexBuffer.getAllocation(); in iterate() local 517 void* indexBufferDataPtr = indexBufferAlloc.getHostPtr(); in iterate() 520 flushAlloc(vkd, device, indexBufferAlloc); in iterate()
|
H A D | vktMeshShaderMiscTests.cpp | 4566 auto& indexBufferAlloc = indexBuffer.getAllocation(); 4567 void* indexBufferData = indexBufferAlloc.getHostPtr(); 4570 flushAlloc(vkd, device, indexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRender.cpp | 1850 de::MovePtr<vk::Allocation> indexBufferAlloc; 2236 indexBufferAlloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *indexBuffer), MemoryRequirement::HostVisible); 2238 VK_CHECK(vk.bindBufferMemory(vkDevice, *indexBuffer, indexBufferAlloc->getMemory(), indexBufferAlloc->getOffset())); 2241 deMemcpy(indexBufferAlloc->getHostPtr(), indices, (size_t)indexBufferSize); 2242 flushAlloc(vk, vkDevice, *indexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/ |
H A D | vktShaderRender.cpp | 1852 de::MovePtr<vk::Allocation> indexBufferAlloc; 2238 indexBufferAlloc = m_memAlloc.allocate(getBufferMemoryRequirements(vk, vkDevice, *indexBuffer), MemoryRequirement::HostVisible); 2240 VK_CHECK(vk.bindBufferMemory(vkDevice, *indexBuffer, indexBufferAlloc->getMemory(), indexBufferAlloc->getOffset())); 2243 deMemcpy(indexBufferAlloc->getHostPtr(), indices, (size_t)indexBufferSize); 2244 flushAlloc(vk, vkDevice, *indexBufferAlloc);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/ |
H A D | vktDrawMultiExtTests.cpp | 1079 auto& indexBufferAlloc = indexBuffer->getAllocation(); in iterate() local 1080 indexBufferOffset = indexBufferAlloc.getOffset(); in iterate() 1081 void* indexBufferData = indexBufferAlloc.getHostPtr(); in iterate() 1084 flushAlloc(vkd, device, indexBufferAlloc); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/ |
H A D | vktDrawMultiExtTests.cpp | 1077 auto& indexBufferAlloc = indexBuffer->getAllocation(); in iterate() local 1078 indexBufferOffset = indexBufferAlloc.getOffset(); in iterate() 1079 void* indexBufferData = indexBufferAlloc.getHostPtr(); in iterate() 1082 flushAlloc(vkd, device, indexBufferAlloc); in iterate()
|