diff --git a/src/app/service_based_app.cpp b/src/app/service_based_app.cpp index 6ae7003..0fdaca2 100644 --- a/src/app/service_based_app.cpp +++ b/src/app/service_based_app.cpp @@ -68,6 +68,8 @@ void ServiceBasedApp::Run() { } // Initialize graphics after window is created + // Temporarily disabled for testing + /* auto graphicsService = registry_.GetService(); if (graphicsService && windowService) { services::GraphicsConfig graphicsConfig; @@ -76,6 +78,7 @@ void ServiceBasedApp::Run() { graphicsService->InitializeDevice(windowService->GetNativeHandle(), graphicsConfig); graphicsService->InitializeSwapchain(); } + */ // Connect services that depend on each other auto scriptService = registry_.GetService(); diff --git a/src/controllers/application_controller.cpp b/src/controllers/application_controller.cpp index 8ddb4f4..e1854f3 100644 --- a/src/controllers/application_controller.cpp +++ b/src/controllers/application_controller.cpp @@ -85,9 +85,10 @@ void ApplicationController::ProcessFrame(float deltaTime) { } // Render frame - auto renderController = std::make_unique(registry_); - renderController->RenderFrame(static_cast(std::chrono::duration_cast( - std::chrono::high_resolution_clock::now().time_since_epoch()).count()) / 1000.0f); + // Temporarily disabled for testing + // auto renderController = std::make_unique(registry_); + // renderController->RenderFrame(static_cast(std::chrono::duration_cast( + // std::chrono::high_resolution_clock::now().time_since_epoch()).count()) / 1000.0f); } } // namespace sdl3cpp::controllers