diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-06-17 07:36:00 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-06-17 07:36:00 +0200 |
commit | 90b28c205219df732d83e403f98abab31e6e52d4 (patch) | |
tree | 1008d78cf5c7280c9ddeea512033a92e07f989d1 /src/api/x11 | |
parent | 2d1e503f77434fc0dd3f2715625ce1a972fdf62f (diff) | |
parent | f6c26ec593ba96d89cb3476c815d6f33a915bfdd (diff) | |
download | glutin-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/x11')
-rw-r--r-- | src/api/x11/window.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/api/x11/window.rs b/src/api/x11/window.rs index ba0fe52..c0c5917 100644 --- a/src/api/x11/window.rs +++ b/src/api/x11/window.rs @@ -9,6 +9,7 @@ use std::collections::VecDeque; use std::sync::{Arc, Mutex}; use Api; +use ContextError; use CursorState; use GlContext; use GlRequest; @@ -800,11 +801,11 @@ impl Window { } impl GlContext for Window { - unsafe fn make_current(&self) { + unsafe fn make_current(&self) -> Result<(), ContextError> { match self.x.context { Context::Glx(ref ctxt) => ctxt.make_current(), Context::Egl(ref ctxt) => ctxt.make_current(), - Context::None => {} + Context::None => Ok(()) } } @@ -824,11 +825,11 @@ impl GlContext for Window { } } - fn swap_buffers(&self) { + fn swap_buffers(&self) -> Result<(), ContextError> { match self.x.context { Context::Glx(ref ctxt) => ctxt.swap_buffers(), Context::Egl(ref ctxt) => ctxt.swap_buffers(), - Context::None => {} + Context::None => Ok(()) } } |