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,
|
public delegate void DebugProcAmd(int id,
|
||||||
AmdDebugOutput category, AmdDebugOutput severity,
|
AmdDebugOutput category, AmdDebugOutput severity,
|
||||||
IntPtr length, string message, IntPtr userParam);
|
int length, IntPtr message, IntPtr userParam);
|
||||||
|
|
||||||
public delegate void DebugProcArb(int id,
|
public delegate void DebugProcArb(
|
||||||
ArbDebugOutput category, ArbDebugOutput severity,
|
DebugSource source, DebugType type, int id,
|
||||||
IntPtr length, string message, IntPtr userParam);
|
DebugSeverity severity, int length, IntPtr message,
|
||||||
|
IntPtr userParam);
|
||||||
|
|
||||||
public delegate void DebugProc(int id,
|
public delegate void DebugProc(
|
||||||
ArbDebugOutput category, ArbDebugOutput severity,
|
DebugSource source, DebugType type, int id,
|
||||||
IntPtr length, string message, IntPtr userParam);
|
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