diff options
author | bunnei <bunneidev@gmail.com> | 2020-01-16 19:26:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 19:26:35 +0100 |
commit | 30faf6a9648fc2fd3939c588094f2e571b2d3cc2 (patch) | |
tree | 71d8b37b0a326cfdc7226a46d200fff1450ce57a /src | |
parent | Merge pull request #3304 from lioncash/fwd-decl (diff) | |
parent | maxwell_3d: Make dirty_pointers private (diff) | |
download | yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.gz yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.bz2 yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.lz yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.xz yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.zst yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.zip |
Diffstat (limited to 'src')
-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; |