GPU: Added boilerplate code for the Fermi2D engine

This commit is contained in:
Subv 2018-04-23 20:12:40 -05:00
parent 94d0d499c3
commit b0b75e7ae4
3 changed files with 34 additions and 3 deletions

View file

@ -12,7 +12,7 @@ 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>();
fermi_2d = std::make_unique<Engines::Fermi2D>(*memory_manager);
maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
}