Initial attempt to implement Render Graph
This commit is contained in:
parent
173cfe2acf
commit
3732fc5e3d
33 changed files with 8851 additions and 938 deletions
13
modules/khors-window/src/window.rs
Normal file
13
modules/khors-window/src/window.rs
Normal 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();
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue