diff options
| author | 2020-07-18 00:48:27 -0400 | |
|---|---|---|
| committer | 2020-07-18 00:48:27 -0400 | |
| commit | 90cbcaa44a3901a832556258b5b97d8d7de34ca9 (patch) | |
| tree | 570ff95dae035757fb2831804aae4f4ca681d354 /src/video_core/gpu.cpp | |
| parent | Merge pull request #4364 from lioncash/desig5 (diff) | |
| parent | Fix style issues (diff) | |
| download | yuzu-90cbcaa44a3901a832556258b5b97d8d7de34ca9.tar.gz yuzu-90cbcaa44a3901a832556258b5b97d8d7de34ca9.tar.xz yuzu-90cbcaa44a3901a832556258b5b97d8d7de34ca9.zip | |
Merge pull request #4273 from ogniK5377/async-shaders-prod
video_core: Add asynchronous shader decompilation and compilation
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; |