From 9e874898f500a736d764ec7f615b4ae59b6f5768 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 16 Jan 2020 04:02:30 -0500 Subject: [PATCH] maxwell_3d: Make dirty_pointers private This isn't used outside of the class itself, so we can make it private for the time being. --- src/video_core/engines/maxwell_3d.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index a35e7a195b..16f95b77d8 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 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 dirty_pointers{}; + /// Retrieves information about a specific TIC entry from the TIC buffer. Texture::TICEntry GetTICEntry(u32 tic_index) const;