diff options
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/gpu.h | 4 |
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: std::unique_ptr<MemoryManager> memory_manager; + Engines::Maxwell3D& Maxwell3D() { + return *maxwell_3d; + } + private: static constexpr u32 InvalidGraphMacroEntry = 0xFFFFFFFF; |