GPU: Added boilerplate code for the Fermi2D engine

This commit is contained in:
Subv
2018-04-23 20:12:40 -05:00
parent c16cfbbc6c
commit b1109931b9
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>();
}