diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/api/wgl/make_current_guard.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/wgl/make_current_guard.rs b/src/api/wgl/make_current_guard.rs index b890c82..83e35b2 100644 --- a/src/api/wgl/make_current_guard.rs +++ b/src/api/wgl/make_current_guard.rs @@ -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); } } } |