gl_rasterizer: Implement compute shaders

This commit is contained in:
ReinUsesLisp
2019-07-14 22:25:13 -03:00
parent 1bdb59fc6e
commit 725ba6cf63
15 changed files with 351 additions and 137 deletions

View File

@ -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();