diff options
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 5852b9619..7b4e9b842 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h | |||
| @@ -63,6 +63,7 @@ namespace Engines { | |||
| 63 | class Fermi2D; | 63 | class Fermi2D; |
| 64 | class Maxwell3D; | 64 | class Maxwell3D; |
| 65 | class MaxwellCompute; | 65 | class MaxwellCompute; |
| 66 | class MaxwellDMA; | ||
| 66 | } // namespace Engines | 67 | } // namespace Engines |
| 67 | 68 | ||
| 68 | enum class EngineID { | 69 | enum class EngineID { |
| @@ -103,6 +104,8 @@ private: | |||
| 103 | std::unique_ptr<Engines::Fermi2D> fermi_2d; | 104 | std::unique_ptr<Engines::Fermi2D> fermi_2d; |
| 104 | /// Compute engine | 105 | /// Compute engine |
| 105 | std::unique_ptr<Engines::MaxwellCompute> maxwell_compute; | 106 | std::unique_ptr<Engines::MaxwellCompute> maxwell_compute; |
| 107 | /// DMA engine | ||
| 108 | std::unique_ptr<Engines::MaxwellDMA> maxwell_dma; | ||
| 106 | }; | 109 | }; |
| 107 | 110 | ||
| 108 | } // namespace Tegra | 111 | } // namespace Tegra |