use glutin/multi_window branch

This commit is contained in:
Richard 2022-09-28 19:10:47 -03:00 committed by bungoboingo
parent ce43514eac
commit a386788b67
4 changed files with 29 additions and 23 deletions

View file

@ -31,7 +31,7 @@ pub fn main() {
.unwrap();
unsafe {
let windowed_context = windowed_context.make_current().unwrap();
let windowed_context = windowed_context.make_current(todo!("derezzedex")).unwrap();
let gl = glow::Context::from_loader_function(|s| {
windowed_context.get_proc_address(s) as *const _
@ -181,7 +181,7 @@ pub fn main() {
),
);
windowed_context.swap_buffers().unwrap();
windowed_context.swap_buffers(todo!("derezzedex")).unwrap();
}
_ => (),
}