mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +12:00
Force disable conditional render on macOS
This commit is contained in:
parent
6d918b565f
commit
86c7b31b6d
1 changed files with 2 additions and 0 deletions
|
@ -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();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue