From 94043ee3348eec91c71b3e1aeaedd435e9f3e4d7 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 11 Jan 2008 20:22:08 +0000 Subject: [PATCH] Updated INativeGLWindow.CreateWindow to accept a GLContext as argument. --- Source/OpenTK/Platform/INativeGLWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/INativeGLWindow.cs b/Source/OpenTK/Platform/INativeGLWindow.cs index b1d9d84c..3cb6fed4 100644 --- a/Source/OpenTK/Platform/INativeGLWindow.cs +++ b/Source/OpenTK/Platform/INativeGLWindow.cs @@ -17,7 +17,7 @@ namespace OpenTK.Platform /// 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);