parent
4748890935
commit
b2a46d0439
30 changed files with 264 additions and 19 deletions
|
|
@ -7,6 +7,9 @@ use winit::{
|
|||
window::WindowBuilder,
|
||||
};
|
||||
|
||||
#[path = "util/fill.rs"]
|
||||
mod fill;
|
||||
|
||||
fn main() {
|
||||
SimpleLogger::new().init().unwrap();
|
||||
let event_loop = EventLoop::new();
|
||||
|
|
@ -56,6 +59,9 @@ In other words, the deltas indicate the direction in which to move the content (
|
|||
},
|
||||
_ => (),
|
||||
},
|
||||
Event::RedrawRequested(_) => {
|
||||
fill::fill_window(&window);
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue