aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/glx
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-06-17 07:36:00 +0200
committertomaka <pierre.krieger1708@gmail.com>2015-06-17 07:36:00 +0200
commit90b28c205219df732d83e403f98abab31e6e52d4 (patch)
tree1008d78cf5c7280c9ddeea512033a92e07f989d1 /src/api/glx
parent2d1e503f77434fc0dd3f2715625ce1a972fdf62f (diff)
parentf6c26ec593ba96d89cb3476c815d6f33a915bfdd (diff)
downloadglutin-90b28c205219df732d83e403f98abab31e6e52d4.tar.gz
glutin-90b28c205219df732d83e403f98abab31e6e52d4.zip
Merge pull request #486 from tomaka/context-error
Handle errors from MakeCurrent and SwapBuffers
Diffstat (limited to 'src/api/glx')
-rw-r--r--src/api/glx/mod.rs13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/api/glx/mod.rs b/src/api/glx/mod.rs
index 885339f..455f6a5 100644
--- a/src/api/glx/mod.rs
+++ b/src/api/glx/mod.rs
@@ -1,6 +1,7 @@
#![cfg(all(target_os = "linux", feature = "window"))]
use BuilderAttribs;
+use ContextError;
use CreationError;
use GlContext;
use GlProfile;
@@ -139,11 +140,13 @@ impl Context {
}
impl GlContext for Context {
- unsafe fn make_current(&self) {
+ unsafe fn make_current(&self) -> Result<(), ContextError> {
+ // TODO: glutin needs some internal changes for proper error recovery
let res = self.glx.MakeCurrent(self.display as *mut _, self.window, self.context);
if res == 0 {
panic!("glx::MakeCurrent failed");
}
+ Ok(())
}
fn is_current(&self) -> bool {
@@ -158,10 +161,10 @@ impl GlContext for Context {
}
}
- fn swap_buffers(&self) {
- unsafe {
- self.glx.SwapBuffers(self.display as *mut _, self.window)
- }
+ fn swap_buffers(&self) -> Result<(), ContextError> {
+ // TODO: glutin needs some internal changes for proper error recovery
+ unsafe { self.glx.SwapBuffers(self.display as *mut _, self.window); }
+ Ok(())
}
fn get_api(&self) -> ::Api {