diff options
author | Lioncash <mathew1800@gmail.com> | 2020-01-16 10:02:30 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-01-16 10:07:15 +0100 |
commit | 9e874898f500a736d764ec7f615b4ae59b6f5768 (patch) | |
tree | 13c96f28a8aeeaef72b597e03277c622673bb162 | |
parent | Merge pull request #3303 from lioncash/reorder (diff) | |
download | yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.tar yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.tar.gz yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.tar.bz2 yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.tar.lz yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.tar.xz yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.tar.zst yuzu-9e874898f500a736d764ec7f615b4ae59b6f5768.zip |
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index a35e7a195..16f95b77d 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -1271,8 +1271,6 @@ public: } dirty{}; - std::array<u8, Regs::NUM_REGS> dirty_pointers{}; - /// Reads a register value located at the input method address u32 GetRegisterValue(u32 method) const; @@ -1367,6 +1365,8 @@ private: bool execute_on{true}; + std::array<u8, Regs::NUM_REGS> dirty_pointers{}; + /// Retrieves information about a specific TIC entry from the TIC buffer. Texture::TICEntry GetTICEntry(u32 tic_index) const; |