Opentk/Source/OpenTK/Platform/X11/GlxHelper.cs

91 lines
1.5 KiB
C#
Raw Normal View History

#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
2007-08-20 10:46:37 +00:00
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Platform.X11
{
2008-01-23 00:01:03 +00:00
internal static partial class Glx
2007-08-20 10:46:37 +00:00
{
internal const string Library = "libGL.so.1";
// Disable BeforeFieldInit optimization.
static Glx() { }
2008-01-23 00:01:03 +00:00
#region internal static void LoadAll
internal static void LoadAll()
{
OpenTK.Platform.Utilities.LoadExtensions(typeof(Glx));
}
#endregion
2008-01-23 00:18:18 +00:00
#region internal static bool SupportsExtension(string p)
internal static bool SupportsExtension(string p)
{
throw new NotImplementedException();
}
#endregion
2007-08-20 10:46:37 +00:00
}
2008-01-23 00:01:03 +00:00
internal struct Status
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXFBConfig
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXPbuffer
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXContextID
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXHyperpipeNetworkPointer
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXHyperpipeConfig
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXHyperpipeConfigSGIX
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXHyperpipeConfigPointer
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXVideoSourceSGIX
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXFBConfigSGIX
{
}
2008-01-23 00:01:03 +00:00
internal struct GLXPbufferSGIX
{
}
2008-01-23 00:01:03 +00:00
internal struct DMparams
{
}
2008-01-23 00:01:03 +00:00
internal struct DMbuffer
{
}
2007-08-20 10:46:37 +00:00
}