diff options
| author | 2018-04-23 20:12:40 -0500 | |
|---|---|---|
| committer | 2018-04-25 11:55:29 -0500 | |
| commit | b1109931b9a92ce89635cb7c0c0c1c0c7e6866ed (patch) | |
| tree | 8dc60c3b4fedc1300c0a66079df11197b4e366fa /src/video_core/gpu.cpp | |
| parent | GPU: Reduce the number of registers of Maxwell3D to 0xE00. (diff) | |
| download | yuzu-b1109931b9a92ce89635cb7c0c0c1c0c7e6866ed.tar.gz yuzu-b1109931b9a92ce89635cb7c0c0c1c0c7e6866ed.tar.xz yuzu-b1109931b9a92ce89635cb7c0c0c1c0c7e6866ed.zip | |
GPU: Added boilerplate code for the Fermi2D engine
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 9463cd5d6..351d21711 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -12,7 +12,7 @@ namespace Tegra { | |||
| 12 | GPU::GPU() { | 12 | GPU::GPU() { |
| 13 | memory_manager = std::make_unique<MemoryManager>(); | 13 | memory_manager = std::make_unique<MemoryManager>(); |
| 14 | maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager); | 14 | maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager); |
| 15 | fermi_2d = std::make_unique<Engines::Fermi2D>(); | 15 | fermi_2d = std::make_unique<Engines::Fermi2D>(*memory_manager); |
| 16 | maxwell_compute = std::make_unique<Engines::MaxwellCompute>(); | 16 | maxwell_compute = std::make_unique<Engines::MaxwellCompute>(); |
| 17 | } | 17 | } |
| 18 | 18 | ||