mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 17:55:39 +00:00
140 lines
3.6 KiB
C#
140 lines
3.6 KiB
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
using System.Diagnostics;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
namespace OpenTK.Platform.X11
|
|
{
|
|
internal static partial class Glx
|
|
{
|
|
internal const string Library = "libGL.so.1";
|
|
|
|
// Disable BeforeFieldInit optimization.
|
|
static Glx() { }
|
|
|
|
#region static Delegate LoadDelegate(string name, Type signature)
|
|
|
|
/// <summary>
|
|
/// Creates a System.Delegate that can be used to call an OpenGL function, core or extension.
|
|
/// </summary>
|
|
/// <param name="name">The name of the Wgl function (eg. "wglNewList")</param>
|
|
/// <param name="signature">The signature of the OpenGL function.</param>
|
|
/// <returns>
|
|
/// A System.Delegate that can be used to call this OpenGL function, or null if the specified
|
|
/// function name did not correspond to an OpenGL function.
|
|
/// </returns>
|
|
static Delegate LoadDelegate(string name, Type signature)
|
|
{
|
|
Delegate d;
|
|
string realName = name.StartsWith("glx") ? name.Substring(3) : name;
|
|
|
|
if (typeof(Glx).GetMethod(realName,
|
|
BindingFlags.NonPublic | BindingFlags.Static) != null)
|
|
d = GetExtensionDelegate(name, signature) ??
|
|
Delegate.CreateDelegate(signature, typeof(Glx), realName);
|
|
else
|
|
d = GetExtensionDelegate(name, signature);
|
|
|
|
return d;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region private static Delegate GetExtensionDelegate(string name, Type signature)
|
|
|
|
/// <summary>
|
|
/// Creates a System.Delegate that can be used to call a dynamically exported OpenGL function.
|
|
/// </summary>
|
|
/// <param name="name">The name of the OpenGL function (eg. "glNewList")</param>
|
|
/// <param name="signature">The signature of the OpenGL function.</param>
|
|
/// <returns>
|
|
/// A System.Delegate that can be used to call this OpenGL function or null
|
|
/// if the function is not available in the current OpenGL context.
|
|
/// </returns>
|
|
private static Delegate GetExtensionDelegate(string name, Type signature)
|
|
{
|
|
IntPtr address = Glx.GetProcAddress(name);
|
|
|
|
if (address == IntPtr.Zero ||
|
|
address == new IntPtr(1) || // Workaround for buggy nvidia drivers which return
|
|
address == new IntPtr(2)) // 1 or 2 instead of IntPtr.Zero for some extensions.
|
|
return null;
|
|
else
|
|
return Marshal.GetDelegateForFunctionPointer(address, signature);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region internal static void LoadAll
|
|
|
|
internal 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
|
|
{
|
|
}
|
|
}
|