summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-21 10:51:00 -0700
committerGravatar GitHub2018-07-21 10:51:00 -0700
commit552aac7e6c233d15dba22fe54c68588f1e48a5fa (patch)
treed1f2b22baa5c46ff89d5c8437a624c71ccf85596 /src/video_core/gpu.cpp
parentMerge pull request #751 from Subv/tpidr_el0 (diff)
parentgpu: Rename Get3DEngine() to Maxwell3D() (diff)
downloadyuzu-552aac7e6c233d15dba22fe54c68588f1e48a5fa.tar.gz
yuzu-552aac7e6c233d15dba22fe54c68588f1e48a5fa.tar.xz
yuzu-552aac7e6c233d15dba22fe54c68588f1e48a5fa.zip
Merge pull request #749 from lioncash/consistency
gpu: Rename Get3DEngine() to Maxwell3D()
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