mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
rsx: Fix internal res tracking
This commit is contained in:
parent
cd87a64621
commit
7fcd747819
1 changed files with 4 additions and 1 deletions
|
@ -1630,7 +1630,10 @@ namespace rsx
|
||||||
layout.aa_factors[1] = aa_factor_v;
|
layout.aa_factors[1] = aa_factor_v;
|
||||||
|
|
||||||
// Log this to frame stats
|
// 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
|
// Check if anything has changed
|
||||||
bool really_changed = false;
|
bool really_changed = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue