aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/wgl
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-10-04 18:36:05 +0200
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-10-04 18:36:05 +0200
commit0c1f15f8425d55a67004b7e0ebf8e6cb5a6481f5 (patch)
tree3c6db264fb70d7654a8d1037759b0f3c59545da6 /src/api/wgl
parentdf10bbd1632cfd29429270734da485d295e6b888 (diff)
downloadglutin-0c1f15f8425d55a67004b7e0ebf8e6cb5a6481f5.tar.gz
glutin-0c1f15f8425d55a67004b7e0ebf8e6cb5a6481f5.zip
Fix vsync being enabled even when disabled
Diffstat (limited to 'src/api/wgl')
-rw-r--r--src/api/wgl/mod.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/api/wgl/mod.rs b/src/api/wgl/mod.rs
index e118931..f064931 100644
--- a/src/api/wgl/mod.rs
+++ b/src/api/wgl/mod.rs
@@ -133,13 +133,11 @@ impl Context {
let gl_library = try!(load_opengl32_dll());
// handling vsync
- if opengl.vsync {
- if extensions.split(' ').find(|&i| i == "WGL_EXT_swap_control").is_some() {
- let _guard = try!(CurrentContextGuard::make_current(hdc, context.0));
+ if extensions.split(' ').find(|&i| i == "WGL_EXT_swap_control").is_some() {
+ let _guard = try!(CurrentContextGuard::make_current(hdc, context.0));
- if extra_functions.SwapIntervalEXT(1) == 0 {
- return Err(CreationError::OsError(format!("wglSwapIntervalEXT failed")));
- }
+ if extra_functions.SwapIntervalEXT(if opengl.vsync { 1 } else { 0 }) == 0 {
+ return Err(CreationError::OsError(format!("wglSwapIntervalEXT failed")));
}
}