diff options
| author | 2018-03-18 15:15:05 -0500 | |
|---|---|---|
| committer | 2018-03-18 15:23:24 -0500 | |
| commit | a64b936cbe6e779627f69ebde85a3055ccd6c2de (patch) | |
| tree | 134b00ab118a890e7903688f1e13289ddba9344e /src/video_core/gpu.cpp | |
| parent | Merge pull request #246 from Subv/gpu_macro_calls (diff) | |
| download | yuzu-a64b936cbe6e779627f69ebde85a3055ccd6c2de.tar.gz yuzu-a64b936cbe6e779627f69ebde85a3055ccd6c2de.tar.xz yuzu-a64b936cbe6e779627f69ebde85a3055ccd6c2de.zip | |
GPU: Move the GPU's class constructor and destructors to a cpp file.
This should reduce recompile times when editing the Maxwell3D register structure.
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp new file mode 100644 index 000000000..c384d236e --- /dev/null +++ b/src/video_core/gpu.cpp | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | // Copyright 2018 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "video_core/engines/fermi_2d.h" | ||
| 6 | #include "video_core/engines/maxwell_3d.h" | ||
| 7 | #include "video_core/engines/maxwell_compute.h" | ||
| 8 | #include "video_core/gpu.h" | ||
| 9 | |||
| 10 | namespace Tegra { | ||
| 11 | |||
| 12 | GPU::GPU() { | ||
| 13 | memory_manager = std::make_unique<MemoryManager>(); | ||
| 14 | maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager); | ||
| 15 | fermi_2d = std::make_unique<Engines::Fermi2D>(); | ||
| 16 | maxwell_compute = std::make_unique<Engines::MaxwellCompute>(); | ||
| 17 | } | ||
| 18 | |||
| 19 | GPU::~GPU() = default; | ||
| 20 | |||
| 21 | } // namespace Tegra | ||