Fixed the DebugProc signatures.
The various DebugProc* delegates now conform to their specifications.
This commit is contained in:
parent
f57b53b677
commit
816f1e5c7f
1 changed files with 14 additions and 7 deletions
|
@ -1655,13 +1655,20 @@ namespace OpenTK.Graphics.OpenGL
|
|||
|
||||
public delegate void DebugProcAmd(int id,
|
||||
AmdDebugOutput category, AmdDebugOutput severity,
|
||||
IntPtr length, string message, IntPtr userParam);
|
||||
int length, IntPtr message, IntPtr userParam);
|
||||
|
||||
public delegate void DebugProcArb(int id,
|
||||
ArbDebugOutput category, ArbDebugOutput severity,
|
||||
IntPtr length, string message, IntPtr userParam);
|
||||
public delegate void DebugProcArb(
|
||||
DebugSource source, DebugType type, int id,
|
||||
DebugSeverity severity, int length, IntPtr message,
|
||||
IntPtr userParam);
|
||||
|
||||
public delegate void DebugProc(int id,
|
||||
ArbDebugOutput category, ArbDebugOutput severity,
|
||||
IntPtr length, string message, IntPtr userParam);
|
||||
public delegate void DebugProc(
|
||||
DebugSource source, DebugType type, int id,
|
||||
DebugSeverity severity, int length, IntPtr message,
|
||||
IntPtr userParam);
|
||||
|
||||
public delegate void DebugProcKhr(
|
||||
DebugSource source, DebugType type, int id,
|
||||
DebugSeverity severity, int length, IntPtr message,
|
||||
IntPtr userParam);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue