diff options
| author | 2019-07-22 11:12:55 -0400 | |
|---|---|---|
| committer | 2019-07-22 11:12:55 -0400 | |
| 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.gz yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.tar.xz yuzu-f601f25bcc76f54ac0fa983cd74141bb075468de.zip | |
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: | |||
| 155 | /// Returns a const reference to the Maxwell3D GPU engine. | 155 | /// Returns a const reference to the Maxwell3D GPU engine. |
| 156 | const Engines::Maxwell3D& Maxwell3D() const; | 156 | const Engines::Maxwell3D& Maxwell3D() const; |
| 157 | 157 | ||
| 158 | /// Returns a reference to the KeplerCompute GPU engine. | ||
| 159 | Engines::KeplerCompute& KeplerCompute(); | ||
| 160 | |||
| 161 | /// Returns a reference to the KeplerCompute GPU engine. | ||
| 162 | const Engines::KeplerCompute& KeplerCompute() const; | ||
| 163 | |||
| 158 | /// Returns a reference to the GPU memory manager. | 164 | /// Returns a reference to the GPU memory manager. |
| 159 | Tegra::MemoryManager& MemoryManager(); | 165 | Tegra::MemoryManager& MemoryManager(); |
| 160 | 166 | ||