rename renderer to vulkan
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 20m44s
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 20m44s
This commit is contained in:
parent
6bc3dbd53d
commit
f32db72101
8 changed files with 11 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
use std::error::Error;
|
||||
use winit::event_loop::{ControlFlow, EventLoop};
|
||||
|
||||
mod renderer;
|
||||
mod vulkan;
|
||||
|
||||
fn main() -> Result<(), impl Error> {
|
||||
env_logger::init();
|
||||
|
@ -9,7 +9,7 @@ fn main() -> Result<(), impl Error> {
|
|||
let event_loop = EventLoop::new().unwrap();
|
||||
event_loop.set_control_flow(ControlFlow::Poll);
|
||||
|
||||
let mut app = renderer::App::new(&event_loop);
|
||||
let mut app = vulkan::App::new(&event_loop);
|
||||
|
||||
event_loop.run_app(&mut app)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue