vk: whitespace fix only
This commit is contained in:
@@ -585,21 +585,21 @@ namespace vk
|
|||||||
{
|
{
|
||||||
CHECK_RESULT(vkResetFences(*g_current_renderer, 1, pFence));
|
CHECK_RESULT(vkResetFences(*g_current_renderer, 1, pFence));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void wait_for_fence(VkFence fence)
|
void wait_for_fence(VkFence fence)
|
||||||
{
|
{
|
||||||
while (auto status = vkGetFenceStatus(*g_current_renderer, fence))
|
while (auto status = vkGetFenceStatus(*g_current_renderer, fence))
|
||||||
{
|
{
|
||||||
switch (status)
|
switch (status)
|
||||||
{
|
{
|
||||||
case VK_NOT_READY:
|
case VK_NOT_READY:
|
||||||
continue;
|
continue;
|
||||||
default:
|
default:
|
||||||
die_with_error(HERE, status);
|
die_with_error(HERE, status);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void die_with_error(const char* faulting_addr, VkResult error_code)
|
void die_with_error(const char* faulting_addr, VkResult error_code)
|
||||||
|
|||||||
Reference in New Issue
Block a user