Fixed a possible cast problem.
This commit is contained in:
parent
9c214032b9
commit
8c3011f405
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ namespace OpenTK.Platform.X11
|
|||
if (glContext == null)
|
||||
throw new ApplicationException("Could not create GLContext");
|
||||
Debug.Print("Created GLContext");
|
||||
window.VisualInfo = ((X11.WindowInfo)((X11GLContext)glContext).Info).VisualInfo;
|
||||
window.VisualInfo = ((X11.WindowInfo)((IGLContextInternal)glContext).Info).VisualInfo;
|
||||
//window.VisualInfo = Marshal.PtrToStructure(Glx.ChooseVisual(window.Display, window.Screen,
|
||||
|
||||
// Create a window on this display using the visual above
|
||||
|
|
Loading…
Reference in a new issue