GPU/Vulkan: Fix downloads messing up later commands

This commit is contained in:
Connor McLaughlin
2022-10-05 17:41:55 +10:00
parent 564a9bdeb4
commit 5f6490f68b
8 changed files with 25 additions and 15 deletions

View File

@ -384,6 +384,9 @@ void GPU_HW_OpenGL::SetCapabilities()
// adaptive smoothing would require texture views, which aren't in GLES.
m_supports_adaptive_downsampling = false;
// noperspective is not supported in GLSL ES.
m_supports_disable_color_perspective = (g_host_display->GetRenderAPI() == RenderAPI::OpenGL);
}
bool GPU_HW_OpenGL::CreateFramebuffer()