summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authornamkazy <nam.kazt.91@gmail.com>2020-03-22 07:41:16 +0100
committernamkazy <nam.kazt.91@gmail.com>2020-03-22 07:41:16 +0100
commitf66743cd0cd07e811b5a4340b6412d288b448c9c (patch)
treebfa057ee4fbb7df81c9f28bf69012cb9197f711d /src/video_core/engines
parentmaxwell_3d: init shadow_state (diff)
downloadyuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar
yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.gz
yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.bz2
yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.lz
yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.xz
yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.tar.zst
yuzu-f66743cd0cd07e811b5a4340b6412d288b448c9c.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 17119beda..d24c9f657 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -1276,7 +1276,9 @@ public:
};
std::array<u32, NUM_REGS> reg_array;
};
- } regs{};
+ };
+
+ Regs regs{};
/// Store temporary hw register values, used by some calls to restore state after a operation
Regs shadow_state;