mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
vk: Fix frame skipping
This commit is contained in:
parent
b9130dd663
commit
c47f4fd59e
1 changed files with 2 additions and 3 deletions
|
@ -3167,9 +3167,6 @@ void VKGSRender::flip(int buffer, bool emu_flip)
|
||||||
|
|
||||||
if (skip_frame || swapchain_unavailable)
|
if (skip_frame || swapchain_unavailable)
|
||||||
{
|
{
|
||||||
m_frame->flip(m_context);
|
|
||||||
rsx::thread::flip(buffer, emu_flip);
|
|
||||||
|
|
||||||
if (!skip_frame)
|
if (!skip_frame)
|
||||||
{
|
{
|
||||||
verify(HERE), swapchain_unavailable;
|
verify(HERE), swapchain_unavailable;
|
||||||
|
@ -3186,6 +3183,8 @@ void VKGSRender::flip(int buffer, bool emu_flip)
|
||||||
m_textures_upload_time = 0;
|
m_textures_upload_time = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_frame->flip(m_context);
|
||||||
|
rsx::thread::flip(buffer, emu_flip);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue