summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-07-22 11:12:55 -0400
committerGitHub <noreply@github.com>2019-07-22 11:12:55 -0400
commitf601f25bcc76f54ac0fa983cd74141bb075468de (patch)
treef126d994a186281792f331928d5139f68f0bfec8 /src/video_core/gpu.h
parent27e10e0442dfd347387c6eaf148b27f5cc38bcaf (diff)
parent2a4044a85877f6b1c3c91fcfe7242a162bee6ccb (diff)
Merge pull request #2734 from ReinUsesLisp/compute-shaders
gl_rasterizer: Implement compute shaders
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h6
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();