2007-09-02 22:52:00 +00:00
|
|
|
|
#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
|
|
|
|
}
|
2007-09-02 00:40:43 +00:00
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct Status
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXFBConfig
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXPbuffer
|
2007-09-02 00:40:43 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXContextID
|
2007-09-02 00:40:43 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXHyperpipeNetworkPointer
|
2007-09-02 00:40:43 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXHyperpipeConfig
|
2007-09-02 00:40:43 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXHyperpipeConfigSGIX
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXHyperpipeConfigPointer
|
2007-09-02 00:40:43 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2007-09-02 22:52:00 +00:00
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXVideoSourceSGIX
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXFBConfigSGIX
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct GLXPbufferSGIX
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct DMparams
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 00:01:03 +00:00
|
|
|
|
internal struct DMbuffer
|
2007-09-02 22:52:00 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2007-08-20 10:46:37 +00:00
|
|
|
|
}
|