summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2020-12-06 20:46:53 -0500
committerGravatar Lioncash2020-12-06 20:46:57 -0500
commitbcc5c4403ab8a42adcf65f98f70a4f6d0ca94a02 (patch)
treea7f0be830f3cf417328416ba76dbdfe3e13d1ac3 /src
parentMerge pull request #5133 from lioncash/video-shadow2 (diff)
downloadyuzu-bcc5c4403ab8a42adcf65f98f70a4f6d0ca94a02.tar.gz
yuzu-bcc5c4403ab8a42adcf65f98f70a4f6d0ca94a02.tar.xz
yuzu-bcc5c4403ab8a42adcf65f98f70a4f6d0ca94a02.zip
maxwell_3d: Remove unused dirty_pointer array
This is unused and removing it shrinks the structure by 3584 bytes.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/maxwell_3d.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index b0d9559d0..d9b53cb67 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1504,8 +1504,6 @@ private:
1504 1504
1505 bool execute_on{true}; 1505 bool execute_on{true};
1506 1506
1507 std::array<u8, Regs::NUM_REGS> dirty_pointers{};
1508
1509 /// Retrieves information about a specific TIC entry from the TIC buffer. 1507 /// Retrieves information about a specific TIC entry from the TIC buffer.
1510 Texture::TICEntry GetTICEntry(u32 tic_index) const; 1508 Texture::TICEntry GetTICEntry(u32 tic_index) const;
1511 1509