vk: Unconditionally enable hw acceleration for conditional evaluation

This commit is contained in:
kd-11 2022-05-10 00:12:36 +03:00 committed by kd-11
parent 0b7e013fbe
commit f0135a02f5
1 changed files with 2 additions and 2 deletions

View File

@ -548,8 +548,8 @@ VKGSRender::VKGSRender() : GSRender()
// Confirmed in BLES01916 (The Evil Within) which uses RGB565 for some virtual texturing data.
backend_config.supports_hw_renormalization = (vk::get_driver_vendor() == vk::driver_vendor::NVIDIA);
// Relaxed query synchronization
backend_config.supports_hw_conditional_render = !!g_cfg.video.relaxed_zcull_sync;
// Conditional rendering support
backend_config.supports_hw_conditional_render = true;
// Passthrough DMA
backend_config.supports_passthrough_dma = m_device->get_external_memory_host_support();