diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-01-02 22:27:52 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-02-28 17:56:42 -0300 |
commit | 15cadc394848619be5e0ccaa43dc00488476218d (patch) | |
tree | 17eb2c8ab3f74a978cb338ad44ceadaf02c04dcb | |
parent | a5bfc0d045cada34248d3de493889371d22ade7c (diff) |
maxwell_3d: Use two tables instead of three for dirty flags
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 2 |
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: struct { std::bitset<std::numeric_limits<u8>::max()> flags; std::bitset<std::numeric_limits<u8>::max()> on_write_stores; - std::array<std::array<u8, Regs::NUM_REGS>, 3> tables{}; + std::array<std::array<u8, Regs::NUM_REGS>, 2> tables{}; } dirty; private: |