Merge pull request #3301 from ReinUsesLisp/state-tracker

video_core: Remove gl_state and use a state tracker based on dirty flags
This commit is contained in:
Rodrigo Locatti
2020-03-09 18:34:37 -03:00
committed by GitHub
50 changed files with 1583 additions and 1896 deletions

View File

@ -174,6 +174,7 @@ struct System::Impl {
}
interrupt_manager = std::make_unique<Core::Hardware::InterruptManager>(system);
gpu_core = VideoCore::CreateGPU(system);
renderer->Rasterizer().SetupDirtyFlags();
is_powered_on = true;
exit_lock = false;