Fixed build error in WinGLNative.
This commit is contained in:
parent
318c8e619d
commit
f98b344cdf
1 changed files with 7 additions and 1 deletions
|
@ -26,7 +26,13 @@ namespace OpenTK.Platform.Windows
|
|||
private Message msg; // Used only by the IsIdle event.
|
||||
|
||||
#region --- Constructors ---
|
||||
|
||||
|
||||
public WinGLControl(Control c, DisplayMode mode)
|
||||
{
|
||||
glContext = new WinGLContext(c.Handle, mode);
|
||||
}
|
||||
|
||||
[Obsolete]
|
||||
public WinGLControl(Control c, int width, int height, bool fullscreen)
|
||||
{
|
||||
glContext = new WinGLContext(
|
||||
|
|
Loading…
Reference in a new issue