Merge pull request #629 from tomaka/fix-win-vsync

Fix vsync being enabled even when disabled
This commit is contained in:
tomaka 2015-10-08 16:32:10 +02:00
commit dcd5c49b7f

View file

@ -133,13 +133,11 @@ impl Context {
let gl_library = try!(load_opengl32_dll()); let gl_library = try!(load_opengl32_dll());
// handling vsync // handling vsync
if opengl.vsync { if extensions.split(' ').find(|&i| i == "WGL_EXT_swap_control").is_some() {
if extensions.split(' ').find(|&i| i == "WGL_EXT_swap_control").is_some() { let _guard = try!(CurrentContextGuard::make_current(hdc, context.0));
let _guard = try!(CurrentContextGuard::make_current(hdc, context.0));
if extra_functions.SwapIntervalEXT(1) == 0 { if extra_functions.SwapIntervalEXT(if opengl.vsync { 1 } else { 0 }) == 0 {
return Err(CreationError::OsError(format!("wglSwapIntervalEXT failed"))); return Err(CreationError::OsError(format!("wglSwapIntervalEXT failed")));
}
} }
} }