Revert "[GPU] Make Processor optional for GraphicsSystem setup"

The Processor is still required in many places, including the GPU command processor worker thread

This reverts commit fd03d886e9.
This commit is contained in:
Triang3l
2022-07-06 22:43:40 +03:00
parent 2507837e8d
commit 3ee68d79ea
9 changed files with 13 additions and 18 deletions

View File

@@ -228,7 +228,7 @@ X_STATUS Emulator::Setup(
// Setup the core components.
result = graphics_system_->Setup(
memory_.get(), processor_.get(), kernel_state_.get(),
processor_.get(), kernel_state_.get(),
display_window_ ? &display_window_->app_context() : nullptr,
display_window_ != nullptr);
if (result) {