summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-15 13:27:07 -0400
committerGravatar GitHub2018-09-15 13:27:07 -0400
commitdaee15b058ffb0af1cdb91a986a126975c0edf93 (patch)
tree317f1ac6484afa41d1f5df1ebc08244141ca3084 /src/video_core/gpu.h
parentMerge pull request #1310 from lioncash/kernel-ns (diff)
parentGPU: Basic implementation of the Kepler Inline Memory engine (p2mf). (diff)
downloadyuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.gz
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.tar.xz
yuzu-daee15b058ffb0af1cdb91a986a126975c0edf93.zip
Merge pull request #1271 from Subv/kepler_engine
GPU: Basic implementation of the Kepler Inline Memory engine (p2mf).
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 589a59b4f..7329ca766 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -102,6 +102,7 @@ class Fermi2D;
102class Maxwell3D; 102class Maxwell3D;
103class MaxwellCompute; 103class MaxwellCompute;
104class MaxwellDMA; 104class MaxwellDMA;
105class KeplerMemory;
105} // namespace Engines 106} // namespace Engines
106 107
107enum class EngineID { 108enum class EngineID {
@@ -146,6 +147,8 @@ private:
146 std::unique_ptr<Engines::MaxwellCompute> maxwell_compute; 147 std::unique_ptr<Engines::MaxwellCompute> maxwell_compute;
147 /// DMA engine 148 /// DMA engine
148 std::unique_ptr<Engines::MaxwellDMA> maxwell_dma; 149 std::unique_ptr<Engines::MaxwellDMA> maxwell_dma;
150 /// Inline memory engine
151 std::unique_ptr<Engines::KeplerMemory> kepler_memory;
149}; 152};
150 153
151} // namespace Tegra 154} // namespace Tegra