mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:45:30 +00:00
Removed unused types.
This commit is contained in:
parent
d7e387f548
commit
130d72dcf3
|
@ -15,9 +15,9 @@ using OpenTK.Graphics;
|
||||||
|
|
||||||
namespace OpenTK.Platform.X11
|
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.
|
// Disable BeforeFieldInit optimization.
|
||||||
static Glx() { }
|
static Glx() { }
|
||||||
|
@ -77,63 +77,11 @@ namespace OpenTK.Platform.X11
|
||||||
|
|
||||||
#region internal static void LoadAll
|
#region internal static void LoadAll
|
||||||
|
|
||||||
internal static void LoadAll()
|
public static void LoadAll()
|
||||||
{
|
{
|
||||||
OpenTK.Platform.Utilities.LoadExtensions(typeof(Glx));
|
OpenTK.Platform.Utilities.LoadExtensions(typeof(Glx));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#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
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue