2007-07-23 00:15:18 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
|
2008-02-02 00:58:26 +00:00
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
2008-01-31 14:22:37 +00:00
|
|
|
|
using OpenTK.Graphics;
|
2007-07-23 00:15:18 +00:00
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.X11
|
|
|
|
|
{
|
2007-08-05 13:42:31 +00:00
|
|
|
|
/// <summary>
|
2007-09-09 11:52:09 +00:00
|
|
|
|
/// Provides methods to create and control an opengl context on the X11 platform.
|
2007-12-09 18:15:51 +00:00
|
|
|
|
/// This class supports OpenTK, and is not intended for use by OpenTK programs.
|
2007-08-05 13:42:31 +00:00
|
|
|
|
/// </summary>
|
2008-03-01 13:15:31 +00:00
|
|
|
|
internal sealed class X11GLContext : IGraphicsContext, IGraphicsContextInternal
|
2007-07-23 00:15:18 +00:00
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
IntPtr context;
|
|
|
|
|
X11WindowInfo window;
|
|
|
|
|
IntPtr visual;
|
|
|
|
|
bool vsync_supported;
|
|
|
|
|
int vsync_interval;
|
2007-07-23 00:15:18 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
bool disposed;
|
2007-07-23 00:15:18 +00:00
|
|
|
|
|
2007-09-09 11:52:09 +00:00
|
|
|
|
#region --- Constructors ---
|
2007-07-23 00:15:18 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
static X11GLContext()
|
|
|
|
|
{
|
|
|
|
|
// Set the GetCurrentContext implementation.
|
|
|
|
|
if (GraphicsContext.GetCurrentContext == null)
|
|
|
|
|
GraphicsContext.GetCurrentContext = X11GLContext.GetCurrentContext;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal X11GLContext(GraphicsMode mode, IWindowInfo info, IGraphicsContext shared, bool directRendering)
|
|
|
|
|
{
|
|
|
|
|
//if (mode == null) mode = GraphicsMode.Default;
|
|
|
|
|
if (info == null) throw new ArgumentNullException("info", "Should point to a valid window.");
|
|
|
|
|
|
|
|
|
|
window = (X11WindowInfo)info;
|
|
|
|
|
window.VisualInfo = SelectVisual(mode);
|
2008-01-31 13:15:17 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Print("Chose visual: {0}", window.VisualInfo);
|
|
|
|
|
|
|
|
|
|
CreateContext(shared, directRendering);
|
|
|
|
|
}
|
2007-09-09 11:52:09 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
#region --- Private Methods ---
|
2007-08-20 12:25:48 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
#region XVisualInfo SelectVisual(GraphicsMode mode)
|
2008-01-11 20:23:41 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
XVisualInfo SelectVisual(GraphicsMode mode)
|
2007-08-20 12:25:48 +00:00
|
|
|
|
{
|
|
|
|
|
List<int> visualAttributes = new List<int>();
|
2007-08-21 10:48:32 +00:00
|
|
|
|
|
2007-11-04 15:37:41 +00:00
|
|
|
|
// TODO: Improve modesetting code.
|
2008-03-01 13:15:31 +00:00
|
|
|
|
if (mode == null || mode.ColorDepth.BitsPerPixel == 0)
|
2007-08-21 10:48:32 +00:00
|
|
|
|
{
|
|
|
|
|
// Define the bare essentials - needed for compatibility with Mono's System.Windows.Forms
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Print("Mono/X11 compatibility mode.");
|
|
|
|
|
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.RGBA);
|
|
|
|
|
//visualAttributes.Add((int)GLXAttribute.RED_SIZE);
|
|
|
|
|
//visualAttributes.Add((int)1);
|
|
|
|
|
//visualAttributes.Add((int)GLXAttribute.GREEN_SIZE);
|
|
|
|
|
//visualAttributes.Add((int)1);
|
|
|
|
|
//visualAttributes.Add((int)GLXAttribute.BLUE_SIZE);
|
|
|
|
|
//visualAttributes.Add((int)1);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.DEPTH_SIZE);
|
2007-11-04 15:37:41 +00:00
|
|
|
|
visualAttributes.Add((int)1);
|
2007-08-21 10:48:32 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
visualAttributes.Add((int)GLXAttribute.RGBA);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.RED_SIZE);
|
|
|
|
|
visualAttributes.Add((int)mode.ColorDepth.Red);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.GREEN_SIZE);
|
|
|
|
|
visualAttributes.Add((int)mode.ColorDepth.Green);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.BLUE_SIZE);
|
|
|
|
|
visualAttributes.Add((int)mode.ColorDepth.Blue);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.ALPHA_SIZE);
|
|
|
|
|
visualAttributes.Add((int)mode.ColorDepth.Alpha);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.DEPTH_SIZE);
|
|
|
|
|
visualAttributes.Add((int)mode.Depth);
|
2007-08-21 10:48:32 +00:00
|
|
|
|
}
|
2008-01-15 10:59:36 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
if (mode.Buffers > 1)
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.DOUBLEBUFFER);
|
|
|
|
|
if (mode.Stencil > 1)
|
2007-08-20 12:25:48 +00:00
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
visualAttributes.Add((int)GLXAttribute.STENCIL_SIZE);
|
|
|
|
|
visualAttributes.Add(mode.Stencil);
|
2007-08-20 12:25:48 +00:00
|
|
|
|
}
|
2008-03-01 13:15:31 +00:00
|
|
|
|
if (mode.AccumulatorFormat.BitsPerPixel > 0)
|
|
|
|
|
{
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.ACCUM_ALPHA_SIZE);
|
|
|
|
|
visualAttributes.Add(mode.AccumulatorFormat.Alpha);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.ACCUM_BLUE_SIZE);
|
|
|
|
|
visualAttributes.Add(mode.AccumulatorFormat.Blue);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.ACCUM_GREEN_SIZE);
|
|
|
|
|
visualAttributes.Add(mode.AccumulatorFormat.Green);
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.ACCUM_RED_SIZE);
|
|
|
|
|
visualAttributes.Add(mode.AccumulatorFormat.Red);
|
|
|
|
|
}
|
|
|
|
|
if (mode.Stereo)
|
|
|
|
|
visualAttributes.Add((int)GLXAttribute.STEREO);
|
2008-01-31 13:15:17 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
visualAttributes.Add((int)0);
|
2007-09-09 15:10:21 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
visual = Glx.ChooseVisual(window.Display, window.Screen, visualAttributes.ToArray());
|
2008-01-31 13:15:17 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
if (visual == IntPtr.Zero)
|
|
|
|
|
throw new GraphicsContextException(String.Format("Failed to set requested mode: {0}.", mode.ToString()));
|
2008-01-31 13:15:17 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
return (XVisualInfo)Marshal.PtrToStructure(visual, typeof(XVisualInfo));
|
2007-09-09 15:10:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-01-31 13:15:17 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
#region void CreateContext(IGraphicsContext shareContext, bool direct)
|
2007-09-09 15:10:21 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
void CreateContext(IGraphicsContext shareContext, bool direct)
|
2007-09-09 15:10:21 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
2007-08-20 12:25:48 +00:00
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
ContextHandle shareHandle = shareContext != null ? (shareContext as IGraphicsContextInternal).Context : (ContextHandle)IntPtr.Zero;
|
2007-09-09 15:10:21 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Write("Creating OpenGL context: ");
|
|
|
|
|
Debug.Write(direct ? "direct, " : "indirect, ");
|
|
|
|
|
Debug.Write(shareHandle.Handle == IntPtr.Zero ? "not shared... " :
|
|
|
|
|
String.Format("shared with ({0})... ", shareHandle));
|
2007-09-09 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
// Try to call Glx.CreateContext with the specified parameters.
|
2008-03-01 13:15:31 +00:00
|
|
|
|
context = Glx.CreateContext(window.Display, visual, shareHandle.Handle, direct);
|
2007-09-09 15:10:21 +00:00
|
|
|
|
|
|
|
|
|
// Context creation succeeded, return.
|
|
|
|
|
if (context != IntPtr.Zero)
|
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Print("done! (id: {0})", context);
|
2008-01-23 00:18:52 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
//this.MakeCurrent();
|
2007-09-09 15:10:21 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// Context creation failed. Retry with a non-shared context with the
|
|
|
|
|
// direct/indirect rendering mode flipped.
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Print("failed.");
|
|
|
|
|
Debug.Write(String.Format("Creating OpenGL context: {0}, not shared... ", !direct ? "direct" : "indirect"));
|
|
|
|
|
context = Glx.CreateContext(window.Display, visual, IntPtr.Zero, !direct);
|
2007-09-09 15:10:21 +00:00
|
|
|
|
if (context != IntPtr.Zero)
|
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Print("done! (id: {0})", context);
|
2007-11-04 15:37:41 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
//this.MakeCurrent();
|
2007-09-09 15:10:21 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2008-01-23 00:18:52 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Debug.Print("failed.");
|
|
|
|
|
throw new GraphicsModeException("Failed to create OpenGL context. Glx.CreateContext call returned 0.");
|
2007-08-20 12:25:48 +00:00
|
|
|
|
}
|
2007-09-09 15:10:21 +00:00
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
Debug.Unindent();
|
|
|
|
|
}
|
2007-08-20 12:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
bool SupportsExtension(string e)
|
|
|
|
|
{
|
|
|
|
|
string extensions = Glx.QueryExtensionsString(window.Display, window.Screen);
|
|
|
|
|
return !String.IsNullOrEmpty(extensions) && extensions.Contains(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- IGraphicsContext Members ---
|
|
|
|
|
|
2007-07-23 00:15:18 +00:00
|
|
|
|
#region public void SwapBuffers()
|
|
|
|
|
|
|
|
|
|
public void SwapBuffers()
|
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Glx.SwapBuffers(window.Display, window.Handle);
|
2007-07-23 00:15:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region public void MakeCurrent()
|
|
|
|
|
|
2007-08-20 12:25:48 +00:00
|
|
|
|
bool result;
|
2007-07-23 00:15:18 +00:00
|
|
|
|
public void MakeCurrent()
|
|
|
|
|
{
|
2007-08-20 12:25:48 +00:00
|
|
|
|
Debug.Write(String.Format("Making context {0} current on thread {1} (Display: {2}, Screen: {3}, Window: {4})... ",
|
2008-03-01 13:15:31 +00:00
|
|
|
|
context, System.Threading.Thread.CurrentThread.ManagedThreadId, window.Display, window.Screen, window.Handle));
|
2007-08-20 12:25:48 +00:00
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
if (window.Display != IntPtr.Zero && window.Handle != IntPtr.Zero && context != IntPtr.Zero)
|
2007-07-23 00:15:18 +00:00
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
result = Glx.MakeCurrent(window.Display, window.Handle, context);
|
2007-08-20 12:25:48 +00:00
|
|
|
|
|
|
|
|
|
if (!result)
|
|
|
|
|
{
|
|
|
|
|
Debug.WriteLine("failed.");
|
|
|
|
|
// probably need to recreate context here.
|
|
|
|
|
//throw new ApplicationException(String.Format("Failed to make context {0} current on thread {1}.",
|
|
|
|
|
// context, System.Threading.Thread.CurrentThread.ManagedThreadId));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Debug.WriteLine("done!");
|
|
|
|
|
}
|
2007-07-23 00:15:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-01-15 12:47:51 +00:00
|
|
|
|
#region public bool IsCurrent
|
|
|
|
|
|
2007-12-09 18:15:51 +00:00
|
|
|
|
public bool IsCurrent
|
2007-07-23 00:15:18 +00:00
|
|
|
|
{
|
2008-01-15 12:47:51 +00:00
|
|
|
|
get { return Glx.GetCurrentContext() == this.context; }
|
2008-01-31 13:15:17 +00:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value)
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Glx.MakeCurrent(window.Display, window.Handle, context);
|
2008-01-31 13:15:17 +00:00
|
|
|
|
else
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Glx.MakeCurrent(window.Handle, IntPtr.Zero, IntPtr.Zero);
|
2008-01-31 13:15:17 +00:00
|
|
|
|
}
|
2007-12-09 18:15:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-01-15 12:47:51 +00:00
|
|
|
|
#endregion
|
2007-07-23 00:15:18 +00:00
|
|
|
|
|
2008-01-23 00:18:52 +00:00
|
|
|
|
#region public bool VSync
|
|
|
|
|
|
|
|
|
|
public bool VSync
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return vsync_supported && vsync_interval > 0;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (vsync_supported)
|
|
|
|
|
{
|
|
|
|
|
int error_code = Glx.Sgi.SwapInterval(value ? 1 : 0);
|
|
|
|
|
if (error_code != 0)
|
|
|
|
|
throw new GraphicsException(String.Format("Could not set vsync, error code: {0}", error_code));
|
|
|
|
|
vsync_interval = value ? 1 : 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-01-31 13:17:42 +00:00
|
|
|
|
public event DestroyEvent<IGraphicsContext> Destroy;
|
2007-12-09 18:15:51 +00:00
|
|
|
|
|
2007-07-23 00:15:18 +00:00
|
|
|
|
#region public IntPtr GetAddress(string function)
|
|
|
|
|
|
|
|
|
|
public IntPtr GetAddress(string function)
|
|
|
|
|
{
|
|
|
|
|
return Glx.GetProcAddress(function);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2007-12-09 18:15:51 +00:00
|
|
|
|
public void RegisterForDisposal(IDisposable resource)
|
|
|
|
|
{
|
2008-01-31 14:39:54 +00:00
|
|
|
|
throw new NotSupportedException("Use OpenTK.GraphicsContext instead.");
|
2007-12-09 18:15:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void DisposeResources()
|
|
|
|
|
{
|
2008-01-31 14:39:54 +00:00
|
|
|
|
throw new NotSupportedException("Use OpenTK.GraphicsContext instead.");
|
2007-12-09 18:15:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-23 00:15:18 +00:00
|
|
|
|
public IEnumerable<DisplayMode> GetDisplayModes()
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("The method or operation is not implemented.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-01-15 12:47:51 +00:00
|
|
|
|
#region --- IGLContextInternal Members ---
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
#region void LoadAll()
|
|
|
|
|
|
|
|
|
|
void IGraphicsContextInternal.LoadAll()
|
|
|
|
|
{
|
|
|
|
|
GL.LoadAll();
|
|
|
|
|
Glu.LoadAll();
|
|
|
|
|
Glx.LoadAll();
|
|
|
|
|
vsync_supported = this.SupportsExtension("SGI_swap_control") && this.GetAddress("glXSwapControlSGI") != IntPtr.Zero;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-02-28 13:57:07 +00:00
|
|
|
|
#region public DisplayMode Mode
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
GraphicsMode IGraphicsContextInternal.GraphicsMode
|
2008-02-28 13:57:07 +00:00
|
|
|
|
{
|
2008-03-01 13:15:31 +00:00
|
|
|
|
get { return null; }
|
2008-02-28 13:57:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-01-15 12:47:51 +00:00
|
|
|
|
#region IntPtr IGLContextInternal.Context
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
ContextHandle IGraphicsContextInternal.Context
|
2008-01-15 12:47:51 +00:00
|
|
|
|
{
|
|
|
|
|
get { return context; }
|
|
|
|
|
/*private set { context = value; }*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region IWindowInfo IGLContextInternal.Info
|
|
|
|
|
|
2008-03-01 13:15:31 +00:00
|
|
|
|
IWindowInfo IGraphicsContextInternal.Info { get { return window; } }
|
2008-01-15 12:47:51 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-01-31 13:15:17 +00:00
|
|
|
|
#region --- Methods ---
|
2008-01-20 19:29:42 +00:00
|
|
|
|
|
|
|
|
|
void OnDestroy()
|
|
|
|
|
{
|
|
|
|
|
if (Destroy != null)
|
|
|
|
|
Destroy(this, EventArgs.Empty);
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-31 13:15:17 +00:00
|
|
|
|
#region static ContextHandle GetCurrentContext()
|
|
|
|
|
|
|
|
|
|
static ContextHandle GetCurrentContext()
|
|
|
|
|
{
|
|
|
|
|
return (ContextHandle)Glx.GetCurrentContext();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2008-01-20 19:29:42 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
2007-07-23 00:15:18 +00:00
|
|
|
|
#region --- IDisposable Members ---
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
this.Dispose(true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Dispose(bool manuallyCalled)
|
|
|
|
|
{
|
|
|
|
|
if (!disposed)
|
|
|
|
|
{
|
|
|
|
|
// Clean unmanaged resources:
|
2008-03-01 13:15:31 +00:00
|
|
|
|
Glx.MakeCurrent(window.Display, IntPtr.Zero, IntPtr.Zero);
|
|
|
|
|
Glx.DestroyContext(window.Display, context);
|
2007-07-23 00:15:18 +00:00
|
|
|
|
API.Free(visual);
|
|
|
|
|
|
|
|
|
|
if (manuallyCalled)
|
|
|
|
|
{
|
|
|
|
|
// Safe to clean managed resources, too
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
disposed = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~X11GLContext()
|
|
|
|
|
{
|
|
|
|
|
this.Dispose(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|