| 2071 | } |
| 2072 | |
| 2073 | void GPUDeviceVulkan::WaitForGPU() |
| 2074 | { |
| 2075 | if (Device != VK_NULL_HANDLE) |
| 2076 | { |
| 2077 | PROFILE_CPU(); |
| 2078 | ZoneColor(TracyWaitZoneColor); |
| 2079 | VALIDATE_VULKAN_RESULT(vkDeviceWaitIdle(Device)); |
| 2080 | } |
| 2081 | } |
| 2082 | |
| 2083 | bool GPUDeviceVulkan::GetQueryResult(uint64 queryID, uint64& result, bool wait) |
| 2084 | { |
no outgoing calls
no test coverage detected