| 832 | VulkanFence::~VulkanFence() { vkDestroyFence(device, fence, nullptr); } |
| 833 | |
| 834 | void VulkanFence::reset() { vkResetFences(device, 1, &fence); } |
| 835 | |
| 836 | void VulkanFence::wait() |
| 837 | { |
| 838 | vkWaitForFences(device, 1, &fence, VK_TRUE, UINT64_MAX); |
| 839 | } |
| 840 |
no outgoing calls