summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2020-01-16 13:26:35 -0500
committerGravatar GitHub2020-01-16 13:26:35 -0500
commit30faf6a9648fc2fd3939c588094f2e571b2d3cc2 (patch)
tree71d8b37b0a326cfdc7226a46d200fff1450ce57a
parentMerge pull request #3304 from lioncash/fwd-decl (diff)
parentmaxwell_3d: Make dirty_pointers private (diff)
downloadyuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.gz
yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.tar.xz
yuzu-30faf6a9648fc2fd3939c588094f2e571b2d3cc2.zip
Merge pull request #3308 from lioncash/private
maxwell_3d: Make dirty_pointers private
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
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:
1271 1271
1272 } dirty{}; 1272 } dirty{};
1273 1273
1274 std::array<u8, Regs::NUM_REGS> dirty_pointers{};
1275
1276 /// Reads a register value located at the input method address 1274 /// Reads a register value located at the input method address
1277 u32 GetRegisterValue(u32 method) const; 1275 u32 GetRegisterValue(u32 method) const;
1278 1276
@@ -1367,6 +1365,8 @@ private:
1367 1365
1368 bool execute_on{true}; 1366 bool execute_on{true};
1369 1367
1368 std::array<u8, Regs::NUM_REGS> dirty_pointers{};
1369
1370 /// Retrieves information about a specific TIC entry from the TIC buffer. 1370 /// Retrieves information about a specific TIC entry from the TIC buffer.
1371 Texture::TICEntry GetTICEntry(u32 tic_index) const; 1371 Texture::TICEntry GetTICEntry(u32 tic_index) const;
1372 1372