feat: Remove temporary graphics initialization code from Run method

This commit is contained in:
2026-01-04 14:07:20 +00:00
parent f1fe6dedfb
commit d30e423294

View File

@@ -68,8 +68,6 @@ void ServiceBasedApp::Run() {
}
// Initialize graphics after window is created
// Temporarily disabled for testing
/*
auto graphicsService = registry_.GetService<services::IGraphicsService>();
if (graphicsService && windowService) {
services::GraphicsConfig graphicsConfig;
@@ -78,7 +76,6 @@ void ServiceBasedApp::Run() {
graphicsService->InitializeDevice(windowService->GetNativeHandle(), graphicsConfig);
graphicsService->InitializeSwapchain();
}
*/
// Connect services that depend on each other
auto scriptService = registry_.GetService<services::IScriptService>();