mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
rsx: Improve strict mode check in 308a::color
- The chances that someone is using strict mode is lower than the odds of having default ZCULL
This commit is contained in:
parent
67f97b0e15
commit
ab6bcd32a9
1 changed files with 1 additions and 1 deletions
|
@ -1056,7 +1056,7 @@ namespace rsx
|
||||||
|
|
||||||
// 308A::COLOR can be used to create custom sync primitives.
|
// 308A::COLOR can be used to create custom sync primitives.
|
||||||
// Hide this behind strict mode due to the potential performance implications.
|
// Hide this behind strict mode due to the potential performance implications.
|
||||||
if (count == 1 && !g_cfg.video.relaxed_zcull_sync && g_cfg.video.strict_rendering_mode)
|
if (count == 1 && g_cfg.video.strict_rendering_mode && !g_cfg.video.relaxed_zcull_sync)
|
||||||
{
|
{
|
||||||
rsx->sync();
|
rsx->sync();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue