Fix GL context not being destroyed on win32
This commit is contained in:
parent
3c9565ad25
commit
d574f6f1bb
1 changed files with 3 additions and 0 deletions
|
|
@ -199,6 +199,9 @@ impl Window {
|
||||||
#[unsafe_destructor]
|
#[unsafe_destructor]
|
||||||
impl Drop for Window {
|
impl Drop for Window {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
|
use std::ptr;
|
||||||
|
unsafe { ffi::wglMakeCurrent(ptr::mut_null(), ptr::mut_null()); }
|
||||||
|
unsafe { ffi::wglDeleteContext(self.context); }
|
||||||
unsafe { ffi::DestroyWindow(self.window); }
|
unsafe { ffi::DestroyWindow(self.window); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue