[GLControl] Use IGraphicsContext.SwapInterval to get/set vsync
This patch fixes warnings related to the deprecated IGraphicsContext.VSync property.
This commit is contained in:
parent
24be068742
commit
c9a86a63ab
1 changed files with 6 additions and 3 deletions
|
@ -394,10 +394,13 @@ namespace OpenTK
|
|||
get
|
||||
{
|
||||
if (!IsHandleCreated)
|
||||
return false;
|
||||
{
|
||||
return initial_vsync_value.HasValue ?
|
||||
initial_vsync_value.Value : true;
|
||||
}
|
||||
|
||||
ValidateState();
|
||||
return Context.VSync;
|
||||
return Context.SwapInterval != 0;
|
||||
}
|
||||
set
|
||||
{
|
||||
|
@ -412,7 +415,7 @@ namespace OpenTK
|
|||
}
|
||||
|
||||
ValidateState();
|
||||
Context.VSync = value;
|
||||
Context.SwapInterval = value ? 1 : 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue