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

@ -0,0 +1,13 @@
use winit::event_loop::EventLoopBuilder;
pub struct Window {
handle: winit::window::Window,
event_loop: winit::event_loop::EventLoop<()>
}
impl Window {
pub fn new() -> Self {
let event_loop = EventLoopBuilder::new().build();
}
}