diff options
author | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-06-16 10:15:31 +0200 |
---|---|---|
committer | Pierre Krieger <pierre.krieger1708@gmail.com> | 2015-06-16 10:44:44 +0200 |
commit | f6c26ec593ba96d89cb3476c815d6f33a915bfdd (patch) | |
tree | cc204a0cdfed5c3431f1e26cc2da10048d8c3474 /src/api/wgl | |
parent | e48c853b9c7a617bf8ba5f31b5fb2088c90c0ee7 (diff) | |
download | glutin-f6c26ec593ba96d89cb3476c815d6f33a915bfdd.tar.gz glutin-f6c26ec593ba96d89cb3476c815d6f33a915bfdd.zip |
Handle errors from MakeCurrent and SwapBuffers
Diffstat (limited to 'src/api/wgl')
-rw-r--r-- | src/api/wgl/mod.rs | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/api/wgl/mod.rs b/src/api/wgl/mod.rs index d1f42d2..c33054e 100644 --- a/src/api/wgl/mod.rs +++ b/src/api/wgl/mod.rs @@ -1,6 +1,7 @@ #![cfg(any(target_os = "windows"))] use BuilderAttribs; +use ContextError; use CreationError; use GlContext; use GlRequest; @@ -156,9 +157,12 @@ impl Context { } impl GlContext for Context { - unsafe fn make_current(&self) { - // TODO: check return value - gl::wgl::MakeCurrent(self.hdc as *const _, self.context.0 as *const _); + unsafe fn make_current(&self) -> Result<(), ContextError> { + if gl::wgl::MakeCurrent(self.hdc as *const _, self.context.0 as *const _) != 0 { + Ok(()) + } else { + Err(ContextError::IoError(io::Error::last_os_error())) + } } fn is_current(&self) -> bool { @@ -176,9 +180,11 @@ impl GlContext for Context { } } - fn swap_buffers(&self) { - unsafe { - gdi32::SwapBuffers(self.hdc); + fn swap_buffers(&self) -> Result<(), ContextError> { + if unsafe { gdi32::SwapBuffers(self.hdc) } != 0 { + Ok(()) + } else { + Err(ContextError::IoError(io::Error::last_os_error())) } } |