summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/gpu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 2a9064ba3..f9a725dee 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -36,6 +36,10 @@ public:
36 36
37 std::unique_ptr<MemoryManager> memory_manager; 37 std::unique_ptr<MemoryManager> memory_manager;
38 38
39 Engines::Maxwell3D& Maxwell3D() {
40 return *maxwell_3d;
41 }
42
39private: 43private:
40 static constexpr u32 InvalidGraphMacroEntry = 0xFFFFFFFF; 44 static constexpr u32 InvalidGraphMacroEntry = 0xFFFFFFFF;
41 45