diff options
author | bunnei <bunneidev@gmail.com> | 2019-07-22 11:12:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-22 11:12:55 -0400 |
commit | f601f25bcc76f54ac0fa983cd74141bb075468de (patch) | |
tree | f126d994a186281792f331928d5139f68f0bfec8 /src/video_core/gpu.h | |
parent | 27e10e0442dfd347387c6eaf148b27f5cc38bcaf (diff) | |
parent | 2a4044a85877f6b1c3c91fcfe7242a162bee6ccb (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.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(); |