diff options
author | bunnei <bunneidev@gmail.com> | 2019-07-22 17:12:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-22 17:12:55 +0200 |
commit | f601f25bcc76f54ac0fa983cd74141bb075468de (patch) | |
tree | f126d994a186281792f331928d5139f68f0bfec8 /src/video_core/gpu.h | |
parent | Merge pull request #2735 from FernandoS27/pipeline-rework (diff) | |
parent | gl_shader_cache: Fix clang-format issues (diff) | |
download | yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar.gz yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar.bz2 yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar.lz yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar.xz yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar.zst yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.zip |
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index fe6628923..0ace0ff4f 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -155,6 +155,12 @@ public: /// Returns a const reference to the Maxwell3D GPU engine. const Engines::Maxwell3D& Maxwell3D() const; + /// Returns a reference to the KeplerCompute GPU engine. + Engines::KeplerCompute& KeplerCompute(); + + /// Returns a reference to the KeplerCompute GPU engine. + const Engines::KeplerCompute& KeplerCompute() const; + /// Returns a reference to the GPU memory manager. Tegra::MemoryManager& MemoryManager(); |