GPU: Partially implemented the QUERY_* registers in the Maxwell3D engine.

Only QueryMode::Write is supported at the moment.
This commit is contained in:
Subv 2018-02-12 12:34:41 -05:00
parent 6cddf9d88e
commit ac61a7d1e6
3 changed files with 95 additions and 3 deletions

View file

@ -26,7 +26,7 @@ class GPU final {
public:
GPU() {
memory_manager = std::make_unique<MemoryManager>();
maxwell_3d = std::make_unique<Engines::Maxwell3D>();
maxwell_3d = std::make_unique<Engines::Maxwell3D>(*memory_manager);
fermi_2d = std::make_unique<Engines::Fermi2D>();
maxwell_compute = std::make_unique<Engines::MaxwellCompute>();
}