mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-01 06:10:07 -04:00
Fix vsync being enabled even when disabled
This commit is contained in:
@@ -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")));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user