diff options
author | ecoal95 <ecoal95@gmail.com> | 2015-06-17 06:29:25 +0200 |
---|---|---|
committer | ecoal95 <ecoal95@gmail.com> | 2015-06-17 06:29:25 +0200 |
commit | 0a1a7208c3997b167a7006dc126361388aa0eb41 (patch) | |
tree | 30179b953121deacc87c4a5ba6072bae02f19a5a /src/api/glx | |
parent | 4589e4a723f1de20c8fe3f5c5113d5b04762027e (diff) | |
download | glutin-0a1a7208c3997b167a7006dc126361388aa0eb41.tar.gz glutin-0a1a7208c3997b167a7006dc126361388aa0eb41.zip |
glx: Unbind the context if it's the current one
Diffstat (limited to 'src/api/glx')
-rw-r--r-- | src/api/glx/mod.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/api/glx/mod.rs b/src/api/glx/mod.rs index f1eb436..885339f 100644 --- a/src/api/glx/mod.rs +++ b/src/api/glx/mod.rs @@ -179,8 +179,10 @@ unsafe impl Sync for Context {} impl Drop for Context { fn drop(&mut self) { unsafe { - // we don't call MakeCurrent(0, 0) because we are not sure that the context - // is still the current one + if self.is_current() { + self.glx.MakeCurrent(self.display as *mut _, 0, ptr::null_mut()); + } + self.glx.DestroyContext(self.display as *mut _, self.context); } } |