mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 06:11:30 +11:00
Fix the windows build
This commit is contained in:
parent
24d9a70533
commit
816fbb2165
|
@ -1,7 +1,7 @@
|
|||
use std::marker::PhantomData;
|
||||
use std::os::raw::c_void;
|
||||
use std::io;
|
||||
|
||||
use libc;
|
||||
use winapi;
|
||||
use CreationError;
|
||||
|
||||
|
@ -40,8 +40,8 @@ impl<'a, 'b> CurrentContextGuard<'a, 'b> {
|
|||
impl<'a, 'b> Drop for CurrentContextGuard<'a, 'b> {
|
||||
fn drop(&mut self) {
|
||||
unsafe {
|
||||
gl::wgl::MakeCurrent(self.previous_hdc as *const libc::c_void,
|
||||
self.previous_hglrc as *const libc::c_void);
|
||||
gl::wgl::MakeCurrent(self.previous_hdc as *const c_void,
|
||||
self.previous_hglrc as *const c_void);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue