diff options
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index e36483145..a003bc9e3 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -20,7 +20,11 @@ GPU::GPU() { | |||
| 20 | 20 | ||
| 21 | GPU::~GPU() = default; | 21 | GPU::~GPU() = default; |
| 22 | 22 | ||
| 23 | const Tegra::Engines::Maxwell3D& GPU::Get3DEngine() const { | 23 | const Engines::Maxwell3D& GPU::Maxwell3D() const { |
| 24 | return *maxwell_3d; | ||
| 25 | } | ||
| 26 | |||
| 27 | Engines::Maxwell3D& GPU::Maxwell3D() { | ||
| 24 | return *maxwell_3d; | 28 | return *maxwell_3d; |
| 25 | } | 29 | } |
| 26 | 30 | ||