diff options
| author | 2018-03-25 16:28:24 -0400 | |
|---|---|---|
| committer | 2018-03-25 16:28:24 -0400 | |
| commit | e9315ace9f7f541d251a995ff2d4d3513ddc16c4 (patch) | |
| tree | ba32de7358ed98e1230c1f522a5c7ba35d7ab19e /src/video_core/gpu.cpp | |
| parent | Merge pull request #281 from mailwl/sockets-services (diff) | |
| parent | GPU: Make the debug_context variable a member of the frontend instead of a gl... (diff) | |
| download | yuzu-e9315ace9f7f541d251a995ff2d4d3513ddc16c4.tar.gz yuzu-e9315ace9f7f541d251a995ff2d4d3513ddc16c4.tar.xz yuzu-e9315ace9f7f541d251a995ff2d4d3513ddc16c4.zip | |
Merge pull request #273 from Subv/textures
GPU: Added code to unswizzle textures and ported the surface viewer from citra
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index c384d236e..9463cd5d6 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -18,4 +18,8 @@ GPU::GPU() { | |||
| 18 | 18 | ||
| 19 | GPU::~GPU() = default; | 19 | GPU::~GPU() = default; |
| 20 | 20 | ||
| 21 | const Tegra::Engines::Maxwell3D& GPU::Get3DEngine() const { | ||
| 22 | return *maxwell_3d; | ||
| 23 | } | ||
| 24 | |||
| 21 | } // namespace Tegra | 25 | } // namespace Tegra |