diff options
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 758bfe148..8e19c3373 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | #include "video_core/gpu.h" | 20 | #include "video_core/gpu.h" |
| 21 | #include "video_core/memory_manager.h" | 21 | #include "video_core/memory_manager.h" |
| 22 | #include "video_core/renderer_base.h" | 22 | #include "video_core/renderer_base.h" |
| 23 | #include "video_core/shader_notify.h" | ||
| 23 | #include "video_core/video_core.h" | 24 | #include "video_core/video_core.h" |
| 24 | 25 | ||
| 25 | namespace Tegra { | 26 | namespace Tegra { |
| @@ -36,6 +37,7 @@ GPU::GPU(Core::System& system, std::unique_ptr<VideoCore::RendererBase>&& render | |||
| 36 | kepler_compute = std::make_unique<Engines::KeplerCompute>(system, rasterizer, *memory_manager); | 37 | kepler_compute = std::make_unique<Engines::KeplerCompute>(system, rasterizer, *memory_manager); |
| 37 | maxwell_dma = std::make_unique<Engines::MaxwellDMA>(system, *memory_manager); | 38 | maxwell_dma = std::make_unique<Engines::MaxwellDMA>(system, *memory_manager); |
| 38 | kepler_memory = std::make_unique<Engines::KeplerMemory>(system, *memory_manager); | 39 | kepler_memory = std::make_unique<Engines::KeplerMemory>(system, *memory_manager); |
| 40 | shader_notify = std::make_unique<VideoCore::ShaderNotify>(); | ||
| 39 | } | 41 | } |
| 40 | 42 | ||
| 41 | GPU::~GPU() = default; | 43 | GPU::~GPU() = default; |