summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-20 18:31:36 -0400
committerGravatar Lioncash2018-07-20 18:34:49 -0400
commit863579736cee987b7d3c341907b6c25f4fc1357b (patch)
treefe3f302bdf820dc2bdaf72a52354b82864c98945 /src/video_core/gpu.cpp
parentMerge pull request #742 from bunnei/misc-apm (diff)
downloadyuzu-863579736cee987b7d3c341907b6c25f4fc1357b.tar.gz
yuzu-863579736cee987b7d3c341907b6c25f4fc1357b.tar.xz
yuzu-863579736cee987b7d3c341907b6c25f4fc1357b.zip
gpu: Rename Get3DEngine() to Maxwell3D()
This makes it match its const qualified equivalent.
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp6
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
21GPU::~GPU() = default; 21GPU::~GPU() = default;
22 22
23const Tegra::Engines::Maxwell3D& GPU::Get3DEngine() const { 23const Engines::Maxwell3D& GPU::Maxwell3D() const {
24 return *maxwell_3d;
25}
26
27Engines::Maxwell3D& GPU::Maxwell3D() {
24 return *maxwell_3d; 28 return *maxwell_3d;
25} 29}
26 30