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. // 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); backend_config.supports_hw_renormalization = (vk::get_driver_vendor() == vk::driver_vendor::NVIDIA);
#ifndef __APPLE__
// Conditional rendering support // Conditional rendering support
backend_config.supports_hw_conditional_render = true; backend_config.supports_hw_conditional_render = true;
#endif
// Passthrough DMA // Passthrough DMA
backend_config.supports_passthrough_dma = m_device->get_external_memory_host_support(); backend_config.supports_passthrough_dma = m_device->get_external_memory_host_support();