summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-01-02 22:27:52 -0300
committerGravatar ReinUsesLisp2020-02-28 17:56:42 -0300
commit15cadc394848619be5e0ccaa43dc00488476218d (patch)
tree17eb2c8ab3f74a978cb338ad44ceadaf02c04dcb /src/video_core
parentgl_state_tracker: Track state of index buffers (diff)
downloadyuzu-15cadc394848619be5e0ccaa43dc00488476218d.tar.gz
yuzu-15cadc394848619be5e0ccaa43dc00488476218d.tar.xz
yuzu-15cadc394848619be5e0ccaa43dc00488476218d.zip
maxwell_3d: Use two tables instead of three for dirty flags
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/engines/maxwell_3d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index beaf3ffb6..3ff6dec75 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1294,7 +1294,7 @@ public:
1294 struct { 1294 struct {
1295 std::bitset<std::numeric_limits<u8>::max()> flags; 1295 std::bitset<std::numeric_limits<u8>::max()> flags;
1296 std::bitset<std::numeric_limits<u8>::max()> on_write_stores; 1296 std::bitset<std::numeric_limits<u8>::max()> on_write_stores;
1297 std::array<std::array<u8, Regs::NUM_REGS>, 3> tables{}; 1297 std::array<std::array<u8, Regs::NUM_REGS>, 2> tables{};
1298 } dirty; 1298 } dirty;
1299 1299
1300private: 1300private: