diff --git a/Source/OpenTK/Platform/X11/GlxHelper.cs b/Source/OpenTK/Platform/X11/GlxHelper.cs index 7abb25d1..88d13368 100644 --- a/Source/OpenTK/Platform/X11/GlxHelper.cs +++ b/Source/OpenTK/Platform/X11/GlxHelper.cs @@ -15,9 +15,9 @@ using OpenTK.Graphics; namespace OpenTK.Platform.X11 { - internal static partial class Glx + static partial class Glx { - internal const string Library = "libGL.so.1"; + const string Library = "libGL.so.1"; // Disable BeforeFieldInit optimization. static Glx() { } @@ -77,63 +77,11 @@ namespace OpenTK.Platform.X11 #region internal static void LoadAll - internal static void LoadAll() + public static void LoadAll() { OpenTK.Platform.Utilities.LoadExtensions(typeof(Glx)); } #endregion } - - //internal struct Status - //{ - //} - - internal struct GLXFBConfig - { - } - - internal struct GLXPbuffer - { - } - - internal struct GLXContextID - { - } - - internal struct GLXHyperpipeNetworkPointer - { - } - - internal struct GLXHyperpipeConfig - { - } - - internal struct GLXHyperpipeConfigSGIX - { - } - - internal struct GLXHyperpipeConfigPointer - { - } - - internal struct GLXVideoSourceSGIX - { - } - - internal struct GLXFBConfigSGIX - { - } - - internal struct GLXPbufferSGIX - { - } - - internal struct DMparams - { - } - - internal struct DMbuffer - { - } }