mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
rsx: More strict zcull stats enabling
This commit is contained in:
parent
a203ff677b
commit
b94e4247cc
1 changed files with 3 additions and 1 deletions
|
@ -2137,7 +2137,9 @@ namespace rsx
|
||||||
//Find zeta address in bound zculls
|
//Find zeta address in bound zculls
|
||||||
for (const auto& zcull : zculls)
|
for (const auto& zcull : zculls)
|
||||||
{
|
{
|
||||||
if (zcull.bound)
|
if (zcull.bound &&
|
||||||
|
rsx::to_surface_depth_format(zcull.zFormat) == m_depth_surface_info.depth_format &&
|
||||||
|
rsx::to_surface_antialiasing(zcull.aaFormat) == rsx::method_registers.surface_antialias())
|
||||||
{
|
{
|
||||||
const u32 rsx_address = rsx::get_address(zcull.offset, CELL_GCM_LOCATION_LOCAL, HERE);
|
const u32 rsx_address = rsx::get_address(zcull.offset, CELL_GCM_LOCATION_LOCAL, HERE);
|
||||||
if (rsx_address == zeta_address)
|
if (rsx_address == zeta_address)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue