From 0a53002ad3332aa07c140512ad2e7930a2e92d0c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 19 Nov 2010 09:09:58 +0000 Subject: [PATCH] Added new OpenGL 4.1 types. --- Source/OpenTK/Graphics/OpenGL/GLHelper.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Source/OpenTK/Graphics/OpenGL/GLHelper.cs b/Source/OpenTK/Graphics/OpenGL/GLHelper.cs index 540660fd..6124117d 100644 --- a/Source/OpenTK/Graphics/OpenGL/GLHelper.cs +++ b/Source/OpenTK/Graphics/OpenGL/GLHelper.cs @@ -1020,4 +1020,12 @@ namespace OpenTK.Graphics.OpenGL #endregion } + + public delegate void DebugProcAmd(int id, + AmdDebugOutput category, AmdDebugOutput severity, + IntPtr length, string message, IntPtr userParam); + + public delegate void DebugProcArb(int id, + ArbDebugOutput category, ArbDebugOutput severity, + IntPtr length, string message, IntPtr userParam); }