Initial attempt to implement Render Graph

This commit is contained in:
Tony Klink 2024-04-06 22:31:24 -06:00
parent 173cfe2acf
commit 3732fc5e3d
Signed by: klink
GPG key ID: 85175567C4D19231
33 changed files with 8851 additions and 938 deletions

View file

@ -1,8 +1,8 @@
use anyhow::Result;
use khors_config::ConfigModule;
use khors_app::App;
use khors_graphics::RenderModule;
use khors_app::app::App;
use khors_graphics::renderer::RenderModule;
use khors_window::WindowModule;
use tokio::runtime::Builder;
use winit::event_loop::{ControlFlow, EventLoopBuilder};