diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-18 19:45:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-18 19:45:40 -0400 |
commit | 6317a0b2ca5cfd5997d60522554d6f1f6b94a979 (patch) | |
tree | d86384f4fed07fc791541e49b8ef0f7834461c35 /src/video_core/gpu.cpp | |
parent | 46f9d4b4a34ab6d4b072a41de28771906a610d4a (diff) | |
parent | 7b6868e908319b91785712410b481e9112621175 (diff) |
Merge pull request #248 from Subv/cb_data
GPU: Handle writes to the CB_DATA method.
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 @@ +// Copyright 2018 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include "video_core/engines/fermi_2d.h" +#include "video_core/engines/maxwell_3d.h" +#include "video_core/engines/maxwell_compute.h" +#include "video_core/gpu.h" + +namespace Tegra { + +GPU::GPU() { + memory_manager = std::make_unique<MemoryManager>(); + maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager); + fermi_2d = std::make_unique<Engines::Fermi2D>(); + maxwell_compute = std::make_unique<Engines::MaxwellCompute>(); +} + +GPU::~GPU() = default; + +} // namespace Tegra |