mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
vk: whitespace fix only
This commit is contained in:
parent
85d38b5751
commit
e23435a190
1 changed files with 15 additions and 15 deletions
|
@ -585,21 +585,21 @@ namespace vk
|
|||
{
|
||||
CHECK_RESULT(vkResetFences(*g_current_renderer, 1, pFence));
|
||||
}
|
||||
}
|
||||
|
||||
void wait_for_fence(VkFence fence)
|
||||
{
|
||||
while (auto status = vkGetFenceStatus(*g_current_renderer, fence))
|
||||
{
|
||||
switch (status)
|
||||
{
|
||||
case VK_NOT_READY:
|
||||
continue;
|
||||
default:
|
||||
die_with_error(HERE, status);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void wait_for_fence(VkFence fence)
|
||||
{
|
||||
while (auto status = vkGetFenceStatus(*g_current_renderer, fence))
|
||||
{
|
||||
switch (status)
|
||||
{
|
||||
case VK_NOT_READY:
|
||||
continue;
|
||||
default:
|
||||
die_with_error(HERE, status);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void die_with_error(const char* faulting_addr, VkResult error_code)
|
||||
|
|
Loading…
Add table
Reference in a new issue