summaryrefslogtreecommitdiffstats
path: root/src/video_core/gpu.cpp
blob: 9463cd5d66eb5ce7237434a87ebc6337927962ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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;

const Tegra::Engines::Maxwell3D& GPU::Get3DEngine() const {
    return *maxwell_3d;
}

} // namespace Tegra