Add VkInstance
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s
This commit is contained in:
parent
433dc1afc8
commit
9223b89e4e
9 changed files with 237 additions and 122 deletions
11
src/main.rs
11
src/main.rs
|
@ -1,3 +1,12 @@
|
|||
use winit::event_loop::EventLoop;
|
||||
|
||||
mod display;
|
||||
mod vulkan;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
let event_loop = EventLoop::new().unwrap();
|
||||
|
||||
let mut app = display::App::default();
|
||||
|
||||
let _ = event_loop.run_app(&mut app);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue