Force disable conditional render on macOS

This commit is contained in:
kd-11 2023-02-04 18:05:24 +03:00 committed by kd-11
parent 6d918b565f
commit 86c7b31b6d

View File

@ -749,8 +749,10 @@ VKGSRender::VKGSRender(utils::serial* ar) noexcept : GSRender(ar)
// 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);
#ifndef __APPLE__
// Conditional rendering support
backend_config.supports_hw_conditional_render = true;
#endif
// Passthrough DMA
backend_config.supports_passthrough_dma = m_device->get_external_memory_host_support();