rsx: Fix internal res tracking

This commit is contained in:
kd-11 2025-02-12 00:59:33 +03:00 committed by kd-11
parent cd87a64621
commit 7fcd747819

View file

@ -1630,7 +1630,10 @@ namespace rsx
layout.aa_factors[1] = aa_factor_v;
// Log this to frame stats
m_frame_stats.framebuffer_stats.add(layout.width, layout.height, aa_mode);
if (layout.target != rsx::surface_target::none)
{
m_frame_stats.framebuffer_stats.add(layout.width, layout.height, aa_mode);
}
// Check if anything has changed
bool really_changed = false;