Explorar o código

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.
Lioncash %!s(int64=6) %!d(string=hai) anos
pai
achega
9e874898f5
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/video_core/engines/maxwell_3d.h

+ 2 - 2
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;