mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 23:01:30 +11:00
Fix vsync being enabled even when disabled
This commit is contained in:
parent
df10bbd163
commit
0c1f15f842
|
@ -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")));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue