Updated INativeGLWindow.CreateWindow to accept a GLContext as argument.

This commit is contained in:
the_fiddler 2008-01-11 20:22:08 +00:00
parent 315daee7ce
commit 94043ee334

View file

@ -17,7 +17,7 @@ namespace OpenTK.Platform
/// </summary>
interface INativeGLWindow : IResizable, IDisposable
{
void CreateWindow(DisplayMode mode);
void CreateWindow(DisplayMode mode, GLContext context);
void DestroyWindow();
void ProcessEvents();
void PointToClient(ref System.Drawing.Point p);