mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 01:55:30 +00:00
Merge pull request #644 from Frassle/rewriteexception
Add BindingsNotRewrittenException
This commit is contained in:
commit
11c24a80d9
|
@ -291,7 +291,7 @@ namespace Bind
|
||||||
sw.WriteLine("[CLSCompliant(false)]");
|
sw.WriteLine("[CLSCompliant(false)]");
|
||||||
}
|
}
|
||||||
|
|
||||||
sw.WriteLine("public static {0} {{ throw new NotImplementedException(); }}", GetDeclarationString(f, Settings.Compatibility));
|
sw.WriteLine("public static {0} {{ throw new BindingsNotRewrittenException(); }}", GetDeclarationString(f, Settings.Compatibility));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WriteDocumentation(BindStreamWriter sw, Function f)
|
private void WriteDocumentation(BindStreamWriter sw, Function f)
|
||||||
|
|
|
@ -47,4 +47,15 @@ namespace OpenTK
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override string Message { get; }
|
public override string Message { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This exception is thown when a binding method is called and the bindings have not been rewritten by Rewrite.exe.
|
||||||
|
/// </summary>
|
||||||
|
public class BindingsNotRewrittenException : Exception
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Constructs a new BindingsNotRewrittenException instance.
|
||||||
|
/// </summary>
|
||||||
|
public BindingsNotRewrittenException() : base("Rewrite.exe has not been run.") { }
|
||||||
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load diff
|
@ -42,7 +42,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
|
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
|
||||||
[CLSCompliant(false)]
|
[CLSCompliant(false)]
|
||||||
[Obsolete("Use GetClipPlane(..., float[]) instead. This method will return incorrect results.")]
|
[Obsolete("Use GetClipPlane(..., float[]) instead. This method will return incorrect results.")]
|
||||||
public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); }
|
public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new BindingsNotRewrittenException(); }
|
||||||
|
|
||||||
/// <summary>[requires: v1.0]
|
/// <summary>[requires: v1.0]
|
||||||
/// Return the coefficients of the specified clipping plane
|
/// Return the coefficients of the specified clipping plane
|
||||||
|
@ -55,7 +55,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
|
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
|
||||||
[CLSCompliant(false)]
|
[CLSCompliant(false)]
|
||||||
[Obsolete("Use GetClipPlane(..., int[]) instead. This method will return incorrect results.")]
|
[Obsolete("Use GetClipPlane(..., int[]) instead. This method will return incorrect results.")]
|
||||||
public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); }
|
public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new BindingsNotRewrittenException(); }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -31,152 +31,152 @@ namespace OpenTK
|
||||||
{
|
{
|
||||||
public static void Call(IntPtr address)
|
public static void Call(IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0>(T0 arg0, IntPtr address)
|
public static void Call<T0>(T0 arg0, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1>(T0 arg0, T1 arg1, IntPtr address)
|
public static void Call<T0, T1>(T0 arg0, T1 arg1, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2>(T0 arg0, T1 arg1, T2 arg2, IntPtr address)
|
public static void Call<T0, T1, T2>(T0 arg0, T1 arg1, T2 arg2, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address)
|
public static void Call<T0, T1, T2, T3>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, IntPtr address)
|
public static void Call<T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, T8 arg8, T9 arg9, T10 arg10, T11 arg11, T12 arg12, T13 arg13, T14 arg14, T15 arg15, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet>(IntPtr address)
|
public static TRet CallReturn<TRet>(IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0>(T0 arg0, IntPtr address)
|
public static TRet CallReturn<TRet, T0>(T0 arg0, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1>(T0 arg0, T1 arg1, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1>(T0 arg0, T1 arg1, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1, T2>(T0 arg0, T1 arg1, T2 arg2, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1, T2>(T0 arg0, T1 arg1, T2 arg2, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1, T2, T3>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1, T2, T3>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4, T5>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4, T5>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4, T5, T6>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4, T5, T6>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4, T5, T6, T7>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address)
|
public static TRet CallReturn<TRet, T0, T1, T2, T3, T4, T5, T6, T7>(T0 arg0, T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6, T7 arg7, IntPtr address)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IntPtr Pin<T>(T[] arg)
|
public static IntPtr Pin<T>(T[] arg)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IntPtr Pin<T>(T[,] arg)
|
public static IntPtr Pin<T>(T[,] arg)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IntPtr Pin<T>(T[,,] arg)
|
public static IntPtr Pin<T>(T[,,] arg)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IntPtr Pin<T>(ref T arg)
|
public static IntPtr Pin<T>(ref T arg)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -106,28 +106,28 @@ namespace OpenTK.Platform.Windows
|
||||||
public static
|
public static
|
||||||
IntPtr CreateContextAttribs(IntPtr hDC, IntPtr hShareContext, int[] attribList)
|
IntPtr CreateContextAttribs(IntPtr hDC, IntPtr hShareContext, int[] attribList)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetExtensionsStringARB")]
|
[AutoGenerated(EntryPoint = "wglGetExtensionsStringARB")]
|
||||||
public static
|
public static
|
||||||
string GetExtensionsString(IntPtr hdc)
|
string GetExtensionsString(IntPtr hdc)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")]
|
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")]
|
||||||
public static
|
public static
|
||||||
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, int[] piAttributes, [Out] int[] piValues)
|
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, int[] piAttributes, [Out] int[] piValues)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")]
|
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribivARB")]
|
||||||
public static
|
public static
|
||||||
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out int piValues)
|
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out int piValues)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")]
|
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")]
|
||||||
|
@ -135,119 +135,119 @@ namespace OpenTK.Platform.Windows
|
||||||
public static
|
public static
|
||||||
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, int nAttributes, int[] piAttributes, [Out] Single[] pfValues)
|
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, int nAttributes, int[] piAttributes, [Out] Single[] pfValues)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")]
|
[AutoGenerated(EntryPoint = "wglGetPixelFormatAttribfvARB")]
|
||||||
public static
|
public static
|
||||||
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out Single pfValues)
|
Boolean GetPixelFormatAttrib(IntPtr hdc, int iPixelFormat, int iLayerPlane, Int32 nAttributes, ref int piAttributes, [Out] out Single pfValues)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")]
|
[AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")]
|
||||||
public static
|
public static
|
||||||
Boolean ChoosePixelFormat(IntPtr hdc, int[] piAttribIList, Single[] pfAttribFList, Int32 nMaxFormats, [Out] int[] piFormats, out int nNumFormats)
|
Boolean ChoosePixelFormat(IntPtr hdc, int[] piAttribIList, Single[] pfAttribFList, Int32 nMaxFormats, [Out] int[] piFormats, out int nNumFormats)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")]
|
[AutoGenerated(EntryPoint = "wglChoosePixelFormatARB")]
|
||||||
public static
|
public static
|
||||||
Boolean ChoosePixelFormat(IntPtr hdc, ref int piAttribIList, ref Single pfAttribFList, Int32 nMaxFormats, [Out] out int piFormats, [Out] out Int32 nNumFormats)
|
Boolean ChoosePixelFormat(IntPtr hdc, ref int piAttribIList, ref Single pfAttribFList, Int32 nMaxFormats, [Out] out int piFormats, [Out] out Int32 nNumFormats)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglMakeContextCurrentARB")]
|
[AutoGenerated(EntryPoint = "wglMakeContextCurrentARB")]
|
||||||
public static
|
public static
|
||||||
Boolean MakeContextCurrent(IntPtr hDrawDC, IntPtr hReadDC, IntPtr hglrc)
|
Boolean MakeContextCurrent(IntPtr hDrawDC, IntPtr hReadDC, IntPtr hglrc)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetCurrentReadDCARB")]
|
[AutoGenerated(EntryPoint = "wglGetCurrentReadDCARB")]
|
||||||
public static
|
public static
|
||||||
IntPtr GetCurrentReadDC()
|
IntPtr GetCurrentReadDC()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglCreatePbufferARB")]
|
[AutoGenerated(EntryPoint = "wglCreatePbufferARB")]
|
||||||
public static
|
public static
|
||||||
IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList)
|
IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, int[] piAttribList)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglCreatePbufferARB")]
|
[AutoGenerated(EntryPoint = "wglCreatePbufferARB")]
|
||||||
public static
|
public static
|
||||||
IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, ref int piAttribList)
|
IntPtr CreatePbuffer(IntPtr hDC, int iPixelFormat, int iWidth, int iHeight, ref int piAttribList)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetPbufferDCARB")]
|
[AutoGenerated(EntryPoint = "wglGetPbufferDCARB")]
|
||||||
public static
|
public static
|
||||||
IntPtr GetPbufferDC(IntPtr hPbuffer)
|
IntPtr GetPbufferDC(IntPtr hPbuffer)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglReleasePbufferDCARB")]
|
[AutoGenerated(EntryPoint = "wglReleasePbufferDCARB")]
|
||||||
public static
|
public static
|
||||||
int ReleasePbufferDC(IntPtr hPbuffer, IntPtr hDC)
|
int ReleasePbufferDC(IntPtr hPbuffer, IntPtr hDC)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglDestroyPbufferARB")]
|
[AutoGenerated(EntryPoint = "wglDestroyPbufferARB")]
|
||||||
public static
|
public static
|
||||||
Boolean DestroyPbuffer(IntPtr hPbuffer)
|
Boolean DestroyPbuffer(IntPtr hPbuffer)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglQueryPbufferARB")]
|
[AutoGenerated(EntryPoint = "wglQueryPbufferARB")]
|
||||||
public static
|
public static
|
||||||
Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] int[] piValue)
|
Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] int[] piValue)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglQueryPbufferARB")]
|
[AutoGenerated(EntryPoint = "wglQueryPbufferARB")]
|
||||||
public static
|
public static
|
||||||
Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] out int piValue)
|
Boolean QueryPbuffer(IntPtr hPbuffer, int iAttribute, [Out] out int piValue)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglBindTexImageARB")]
|
[AutoGenerated(EntryPoint = "wglBindTexImageARB")]
|
||||||
public static
|
public static
|
||||||
Boolean BindTexImage(IntPtr hPbuffer, int iBuffer)
|
Boolean BindTexImage(IntPtr hPbuffer, int iBuffer)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglReleaseTexImageARB")]
|
[AutoGenerated(EntryPoint = "wglReleaseTexImageARB")]
|
||||||
public static
|
public static
|
||||||
Boolean ReleaseTexImage(IntPtr hPbuffer, int iBuffer)
|
Boolean ReleaseTexImage(IntPtr hPbuffer, int iBuffer)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")]
|
[AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")]
|
||||||
public static
|
public static
|
||||||
Boolean SetPbufferAttrib(IntPtr hPbuffer, int[] piAttribList)
|
Boolean SetPbufferAttrib(IntPtr hPbuffer, int[] piAttribList)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")]
|
[AutoGenerated(EntryPoint = "wglSetPbufferAttribARB")]
|
||||||
public static
|
public static
|
||||||
Boolean SetPbufferAttrib(IntPtr hPbuffer, ref int piAttribList)
|
Boolean SetPbufferAttrib(IntPtr hPbuffer, ref int piAttribList)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -257,21 +257,21 @@ namespace OpenTK.Platform.Windows
|
||||||
public static
|
public static
|
||||||
string GetExtensionsString()
|
string GetExtensionsString()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglSwapIntervalEXT")]
|
[AutoGenerated(EntryPoint = "wglSwapIntervalEXT")]
|
||||||
public static
|
public static
|
||||||
Boolean SwapInterval(int interval)
|
Boolean SwapInterval(int interval)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "wglGetSwapIntervalEXT")]
|
[AutoGenerated(EntryPoint = "wglGetSwapIntervalEXT")]
|
||||||
public static
|
public static
|
||||||
int GetSwapInterval()
|
int GetSwapInterval()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -416,13 +416,13 @@ namespace OpenTK.Platform.X11
|
||||||
[AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")]
|
[AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")]
|
||||||
unsafe public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int* attribs)
|
unsafe public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int* attribs)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")]
|
[AutoGenerated(EntryPoint = "glXCreateContextAttribsARB")]
|
||||||
public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int[] attribs)
|
public static IntPtr CreateContextAttribs(IntPtr display, IntPtr fbconfig, IntPtr share_context, bool direct, int[] attribs)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
// The linux OpenGL ABI 3.6 (1999) requires
|
// The linux OpenGL ABI 3.6 (1999) requires
|
||||||
|
@ -443,7 +443,7 @@ namespace OpenTK.Platform.X11
|
||||||
[AutoGenerated(EntryPoint = "glXSwapIntervalEXT")]
|
[AutoGenerated(EntryPoint = "glXSwapIntervalEXT")]
|
||||||
public static ErrorCode SwapInterval(IntPtr display, IntPtr drawable, int interval)
|
public static ErrorCode SwapInterval(IntPtr display, IntPtr drawable, int interval)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -452,13 +452,13 @@ namespace OpenTK.Platform.X11
|
||||||
[AutoGenerated(EntryPoint = "glXSwapIntervalMESA")]
|
[AutoGenerated(EntryPoint = "glXSwapIntervalMESA")]
|
||||||
public static ErrorCode SwapInterval(int interval)
|
public static ErrorCode SwapInterval(int interval)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
|
|
||||||
[AutoGenerated(EntryPoint = "glXGetSwapIntervalMESA")]
|
[AutoGenerated(EntryPoint = "glXGetSwapIntervalMESA")]
|
||||||
public static int GetSwapInterval()
|
public static int GetSwapInterval()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -467,7 +467,7 @@ namespace OpenTK.Platform.X11
|
||||||
[AutoGenerated(EntryPoint = "glXSwapIntervalSGI")]
|
[AutoGenerated(EntryPoint = "glXSwapIntervalSGI")]
|
||||||
public static ErrorCode SwapInterval(int interval)
|
public static ErrorCode SwapInterval(int interval)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new BindingsNotRewrittenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue