Run Generator.Bind
Fixes a load of whitespace errors and missing access modifies in ES.
Changes WaitSync to no longer return WaitSyncStatus (correct according to
https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glWaitSync.xhtml,
looks like 020bb696f6
fixed this in the override
but Bind wasn't rerun).
This commit is contained in:
parent
7da276864b
commit
d6a05b4571
10 changed files with 8428 additions and 8428 deletions
File diff suppressed because it is too large
Load diff
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do
|
||||
// so, subject to the following conditions:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do
|
||||
// so, subject to the following conditions:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do
|
||||
// so, subject to the following conditions:
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do
|
||||
// so, subject to the following conditions:
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -74183,7 +74183,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
[Obsolete("Use WaitSyncFlags overload instead")]
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, Int32 flags, Int64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.2 or ARB_sync|VERSION_3_2]
|
||||
/// Instruct the GL server to block until the specified sync object becomes signaled
|
||||
|
@ -74200,7 +74200,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
[Obsolete("Use WaitSyncFlags overload instead")]
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, Int32 flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.2 or ARB_sync|VERSION_3_2]
|
||||
/// Instruct the GL server to block until the specified sync object becomes signaled
|
||||
|
@ -74217,7 +74217,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
[Obsolete("Use WaitSyncFlags overload instead")]
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, UInt32 flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.2 or ARB_sync|VERSION_3_2]
|
||||
/// Instruct the GL server to block until the specified sync object becomes signaled
|
||||
|
@ -74233,7 +74233,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.2 or ARB_sync|VERSION_3_2]
|
||||
/// Instruct the GL server to block until the specified sync object becomes signaled
|
||||
|
@ -74249,7 +74249,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v1.4][deprecated: v3.2]
|
||||
/// Specify the raster position in window coordinates for pixel operations
|
||||
|
@ -138485,7 +138485,7 @@ namespace OpenTK.Graphics.OpenGL
|
|||
private static extern unsafe void glViewportIndexedfv(UInt32 index, Single* v);
|
||||
[Slot(2735)]
|
||||
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
|
||||
private static extern System.Int32 glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout);
|
||||
private static extern void glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout);
|
||||
[Slot(2746)]
|
||||
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
|
||||
private static extern void glWindowPos2d(Double x, Double y);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do
|
||||
// so, subject to the following conditions:
|
||||
|
|
|
@ -42807,7 +42807,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL4.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, Int64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.2 or ARB_sync|VERSION_3_2]
|
||||
/// Instruct the GL server to block until the specified sync object becomes signaled
|
||||
|
@ -42823,7 +42823,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_sync|VERSION_3_2", Version = "3.2", EntryPoint = "glWaitSync")]
|
||||
[CLSCompliant(false)]
|
||||
public static OpenTK.Graphics.OpenGL4.WaitSyncStatus WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
public static void WaitSync(IntPtr sync, OpenTK.Graphics.OpenGL4.WaitSyncFlags flags, UInt64 timeout) { throw new NotImplementedException(); }
|
||||
|
||||
public static partial class Ext
|
||||
{
|
||||
|
@ -46525,7 +46525,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
private static extern unsafe void glViewportIndexedfv(UInt32 index, Single* v);
|
||||
[Slot(797)]
|
||||
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
|
||||
private static extern System.Int32 glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout);
|
||||
private static extern void glWaitSync(IntPtr sync, System.Int32 flags, UInt64 timeout);
|
||||
[Slot(458)]
|
||||
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
|
||||
private static extern void glNamedBufferPageCommitmentEXT(UInt32 buffer, IntPtr offset, Int32 size, bool commit);
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// in the Software without restriction, including without limitation the rights to
|
||||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
// the Software, and to permit persons to whom the Software is furnished to do
|
||||
// so, subject to the following conditions:
|
||||
|
|
Loading…
Reference in a new issue