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

@ -240,6 +240,7 @@ void GPU_HW_D3D12::SetCapabilities()
m_supports_dual_source_blend = true;
m_supports_per_sample_shading = true;
m_supports_disable_color_perspective = true;
Log_InfoPrintf("Dual-source blend: %s", m_supports_dual_source_blend ? "supported" : "not supported");
Log_InfoPrintf("Per-sample shading: %s", m_supports_per_sample_shading ? "supported" : "not supported");
Log_InfoPrintf("Max multisamples: %u", m_max_multisamples);