diff options
| author | 2018-09-15 13:27:07 -0400 | |
|---|---|---|
| committer | 2018-09-15 13:27:07 -0400 | |
| commit | daee15b058ffb0af1cdb91a986a126975c0edf93 (patch) | |
| tree | 317f1ac6484afa41d1f5df1ebc08244141ca3084 /src/video_core/gpu.h | |
| parent | Merge pull request #1310 from lioncash/kernel-ns (diff) | |
| parent | GPU: Basic implementation of the Kepler Inline Memory engine (p2mf). (diff) | |
| download | yuzu-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.h | 3 |
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; | |||
| 102 | class Maxwell3D; | 102 | class Maxwell3D; |
| 103 | class MaxwellCompute; | 103 | class MaxwellCompute; |
| 104 | class MaxwellDMA; | 104 | class MaxwellDMA; |
| 105 | class KeplerMemory; | ||
| 105 | } // namespace Engines | 106 | } // namespace Engines |
| 106 | 107 | ||
| 107 | enum class EngineID { | 108 | enum 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 |