diff --git a/Source/OpenTK/Graphics/ES10/ES.cs b/Source/OpenTK/Graphics/ES10/ES.cs index 14ee343c..9da61a4a 100644 --- a/Source/OpenTK/Graphics/ES10/ES.cs +++ b/Source/OpenTK/Graphics/ES10/ES.cs @@ -56,7 +56,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES10.All)texture); + Core.ActiveTexture((OpenTK.Graphics.ES10.All)texture); #if DEBUG } #endif @@ -84,7 +84,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFunc((OpenTK.Graphics.ES10.All)func, (Single)@ref); + Core.AlphaFunc((OpenTK.Graphics.ES10.All)func, (Single)@ref); #if DEBUG } #endif @@ -99,7 +99,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFuncx((OpenTK.Graphics.ES10.All)func, (int)@ref); + Core.AlphaFuncx((OpenTK.Graphics.ES10.All)func, (int)@ref); #if DEBUG } #endif @@ -127,7 +127,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES10.All)target, (UInt32)texture); + Core.BindTexture((OpenTK.Graphics.ES10.All)target, (UInt32)texture); #if DEBUG } #endif @@ -156,7 +156,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES10.All)target, (UInt32)texture); + Core.BindTexture((OpenTK.Graphics.ES10.All)target, (UInt32)texture); #if DEBUG } #endif @@ -184,7 +184,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES10.All)sfactor, (OpenTK.Graphics.ES10.All)dfactor); + Core.BlendFunc((OpenTK.Graphics.ES10.All)sfactor, (OpenTK.Graphics.ES10.All)dfactor); #if DEBUG } #endif @@ -207,7 +207,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((UInt32)mask); + Core.Clear((UInt32)mask); #if DEBUG } #endif @@ -231,7 +231,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((UInt32)mask); + Core.Clear((UInt32)mask); #if DEBUG } #endif @@ -254,7 +254,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + Core.ClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -269,7 +269,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColorx((int)red, (int)green, (int)blue, (int)alpha); + Core.ClearColorx((int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -292,7 +292,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthf((Single)depth); + Core.ClearDepthf((Single)depth); #if DEBUG } #endif @@ -307,7 +307,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthx((int)depth); + Core.ClearDepthx((int)depth); #if DEBUG } #endif @@ -330,7 +330,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearStencil((Int32)s); + Core.ClearStencil((Int32)s); #if DEBUG } #endif @@ -353,7 +353,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientActiveTexture((OpenTK.Graphics.ES10.All)texture); + Core.ClientActiveTexture((OpenTK.Graphics.ES10.All)texture); #if DEBUG } #endif @@ -381,7 +381,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4f((Single)red, (Single)green, (Single)blue, (Single)alpha); + Core.Color4f((Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -396,7 +396,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4x((int)red, (int)green, (int)blue, (int)alpha); + Core.Color4x((int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -419,7 +419,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); + Core.ColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -457,7 +457,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); + Core.ColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -499,7 +499,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.ColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -546,7 +546,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.ColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -593,7 +593,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.ColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -640,7 +640,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.ColorPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -704,7 +704,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + Core.CompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -766,7 +766,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -833,7 +833,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -900,7 +900,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -967,7 +967,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -1036,7 +1036,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data); + Core.CompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -1103,7 +1103,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1175,7 +1175,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1247,7 +1247,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1319,7 +1319,7 @@ namespace OpenTK.Graphics.ES10 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + Core.CompressedTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -1378,7 +1378,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + Core.CopyTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (OpenTK.Graphics.ES10.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -1431,7 +1431,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + Core.CopyTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -1454,7 +1454,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES10.All)mode); + Core.CullFace((OpenTK.Graphics.ES10.All)mode); #if DEBUG } #endif @@ -1486,7 +1486,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + Core.DeleteTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -1520,7 +1520,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + Core.DeleteTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -1551,7 +1551,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + Core.DeleteTextures((Int32)n, (UInt32*)textures); #if DEBUG } #endif @@ -1584,7 +1584,7 @@ namespace OpenTK.Graphics.ES10 { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + Core.DeleteTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -1619,7 +1619,7 @@ namespace OpenTK.Graphics.ES10 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + Core.DeleteTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -1650,7 +1650,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + Core.DeleteTextures((Int32)n, (UInt32*)textures); #if DEBUG } #endif @@ -1673,7 +1673,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES10.All)func); + Core.DepthFunc((OpenTK.Graphics.ES10.All)func); #if DEBUG } #endif @@ -1696,7 +1696,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthMask((bool)flag); + Core.DepthMask((bool)flag); #if DEBUG } #endif @@ -1724,7 +1724,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangef((Single)zNear, (Single)zFar); + Core.DepthRangef((Single)zNear, (Single)zFar); #if DEBUG } #endif @@ -1739,7 +1739,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangex((int)zNear, (int)zFar); + Core.DepthRangex((int)zNear, (int)zFar); #if DEBUG } #endif @@ -1754,7 +1754,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES10.All)cap); + Core.Disable((OpenTK.Graphics.ES10.All)cap); #if DEBUG } #endif @@ -1769,7 +1769,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientState((OpenTK.Graphics.ES10.All)array); + Core.DisableClientState((OpenTK.Graphics.ES10.All)array); #if DEBUG } #endif @@ -1802,7 +1802,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES10.All)mode, (Int32)first, (Int32)count); + Core.DrawArrays((OpenTK.Graphics.ES10.All)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -1840,7 +1840,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices); + Core.DrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices); #if DEBUG } #endif @@ -1882,7 +1882,7 @@ namespace OpenTK.Graphics.ES10 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Core.DrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -1929,7 +1929,7 @@ namespace OpenTK.Graphics.ES10 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Core.DrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -1976,7 +1976,7 @@ namespace OpenTK.Graphics.ES10 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Core.DrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -2023,7 +2023,7 @@ namespace OpenTK.Graphics.ES10 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + Core.DrawElements((OpenTK.Graphics.ES10.All)mode, (Int32)count, (OpenTK.Graphics.ES10.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -2052,7 +2052,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES10.All)cap); + Core.Enable((OpenTK.Graphics.ES10.All)cap); #if DEBUG } #endif @@ -2075,7 +2075,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientState((OpenTK.Graphics.ES10.All)array); + Core.EnableClientState((OpenTK.Graphics.ES10.All)array); #if DEBUG } #endif @@ -2093,7 +2093,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinish(); + Core.Finish(); #if DEBUG } #endif @@ -2111,7 +2111,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlush(); + Core.Flush(); #if DEBUG } #endif @@ -2139,7 +2139,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogf((OpenTK.Graphics.ES10.All)pname, (Single)param); + Core.Fogf((OpenTK.Graphics.ES10.All)pname, (Single)param); #if DEBUG } #endif @@ -2171,7 +2171,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* @params_ptr = @params) { - Delegates.glFogfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); + Core.Fogfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); } } #if DEBUG @@ -2202,7 +2202,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params); + Core.Fogfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params); #if DEBUG } #endif @@ -2217,7 +2217,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogx((OpenTK.Graphics.ES10.All)pname, (int)param); + Core.Fogx((OpenTK.Graphics.ES10.All)pname, (int)param); #if DEBUG } #endif @@ -2236,7 +2236,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* @params_ptr = @params) { - Delegates.glFogxv((OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); + Core.Fogxv((OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); } } #if DEBUG @@ -2254,7 +2254,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogxv((OpenTK.Graphics.ES10.All)pname, (int*)@params); + Core.Fogxv((OpenTK.Graphics.ES10.All)pname, (int*)@params); #if DEBUG } #endif @@ -2277,7 +2277,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES10.All)mode); + Core.FrontFace((OpenTK.Graphics.ES10.All)mode); #if DEBUG } #endif @@ -2310,7 +2310,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumf((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar); + Core.Frustumf((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar); #if DEBUG } #endif @@ -2325,7 +2325,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumx((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar); + Core.Frustumx((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar); #if DEBUG } #endif @@ -2357,7 +2357,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + Core.GenTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -2391,7 +2391,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + Core.GenTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -2422,7 +2422,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + Core.GenTextures((Int32)n, (UInt32*)textures); #if DEBUG } #endif @@ -2455,7 +2455,7 @@ namespace OpenTK.Graphics.ES10 { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + Core.GenTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -2490,7 +2490,7 @@ namespace OpenTK.Graphics.ES10 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + Core.GenTextures((Int32)n, (UInt32*)textures_ptr); } } #if DEBUG @@ -2521,7 +2521,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + Core.GenTextures((Int32)n, (UInt32*)textures); #if DEBUG } #endif @@ -2535,7 +2535,7 @@ namespace OpenTK.Graphics.ES10 public static OpenTK.Graphics.ES10.All GetError() { - return Delegates.glGetError(); + return Core.GetError(); } /// [requires: v1.0 and 1.0] @@ -2551,7 +2551,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES10.All)pname, (Int32*)@params_ptr); + Core.GetIntegerv((OpenTK.Graphics.ES10.All)pname, (Int32*)@params_ptr); } } #if DEBUG @@ -2572,7 +2572,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES10.All)pname, (Int32*)@params_ptr); + Core.GetIntegerv((OpenTK.Graphics.ES10.All)pname, (Int32*)@params_ptr); } } #if DEBUG @@ -2590,7 +2590,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES10.All)pname, (Int32*)@params); + Core.GetIntegerv((OpenTK.Graphics.ES10.All)pname, (Int32*)@params); #if DEBUG } #endif @@ -2619,7 +2619,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES10.All)name)); } + unsafe { return new string((sbyte*)Core.GetString((OpenTK.Graphics.ES10.All)name)); } #if DEBUG } #endif @@ -2647,7 +2647,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)mode); + Core.Hint((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)mode); #if DEBUG } #endif @@ -2680,7 +2680,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightf((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (Single)param); + Core.Lightf((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (Single)param); #if DEBUG } #endif @@ -2717,7 +2717,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* @params_ptr = @params) { - Delegates.glLightfv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); + Core.Lightfv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); } } #if DEBUG @@ -2753,7 +2753,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightfv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (Single*)@params); + Core.Lightfv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (Single*)@params); #if DEBUG } #endif @@ -2781,7 +2781,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelf((OpenTK.Graphics.ES10.All)pname, (Single)param); + Core.LightModelf((OpenTK.Graphics.ES10.All)pname, (Single)param); #if DEBUG } #endif @@ -2813,7 +2813,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* @params_ptr = @params) { - Delegates.glLightModelfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); + Core.LightModelfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); } } #if DEBUG @@ -2844,7 +2844,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params); + Core.LightModelfv((OpenTK.Graphics.ES10.All)pname, (Single*)@params); #if DEBUG } #endif @@ -2859,7 +2859,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelx((OpenTK.Graphics.ES10.All)pname, (int)param); + Core.LightModelx((OpenTK.Graphics.ES10.All)pname, (int)param); #if DEBUG } #endif @@ -2878,7 +2878,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* @params_ptr = @params) { - Delegates.glLightModelxv((OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); + Core.LightModelxv((OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); } } #if DEBUG @@ -2896,7 +2896,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelxv((OpenTK.Graphics.ES10.All)pname, (int*)@params); + Core.LightModelxv((OpenTK.Graphics.ES10.All)pname, (int*)@params); #if DEBUG } #endif @@ -2911,7 +2911,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightx((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (int)param); + Core.Lightx((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (int)param); #if DEBUG } #endif @@ -2930,7 +2930,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* @params_ptr = @params) { - Delegates.glLightxv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); + Core.Lightxv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); } } #if DEBUG @@ -2948,7 +2948,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightxv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (int*)@params); + Core.Lightxv((OpenTK.Graphics.ES10.All)light, (OpenTK.Graphics.ES10.All)pname, (int*)@params); #if DEBUG } #endif @@ -2971,7 +2971,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidth((Single)width); + Core.LineWidth((Single)width); #if DEBUG } #endif @@ -2986,7 +2986,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidthx((int)width); + Core.LineWidthx((int)width); #if DEBUG } #endif @@ -3004,7 +3004,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadIdentity(); + Core.LoadIdentity(); #if DEBUG } #endif @@ -3031,7 +3031,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* m_ptr = m) { - Delegates.glLoadMatrixf((Single*)m_ptr); + Core.LoadMatrixf((Single*)m_ptr); } } #if DEBUG @@ -3060,7 +3060,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* m_ptr = &m) { - Delegates.glLoadMatrixf((Single*)m_ptr); + Core.LoadMatrixf((Single*)m_ptr); } } #if DEBUG @@ -3086,7 +3086,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixf((Single*)m); + Core.LoadMatrixf((Single*)m); #if DEBUG } #endif @@ -3105,7 +3105,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* m_ptr = m) { - Delegates.glLoadMatrixx((int*)m_ptr); + Core.LoadMatrixx((int*)m_ptr); } } #if DEBUG @@ -3126,7 +3126,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* m_ptr = &m) { - Delegates.glLoadMatrixx((int*)m_ptr); + Core.LoadMatrixx((int*)m_ptr); } } #if DEBUG @@ -3144,7 +3144,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixx((int*)m); + Core.LoadMatrixx((int*)m); #if DEBUG } #endif @@ -3167,7 +3167,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLogicOp((OpenTK.Graphics.ES10.All)opcode); + Core.LogicOp((OpenTK.Graphics.ES10.All)opcode); #if DEBUG } #endif @@ -3200,7 +3200,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialf((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (Single)param); + Core.Materialf((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (Single)param); #if DEBUG } #endif @@ -3237,7 +3237,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* @params_ptr = @params) { - Delegates.glMaterialfv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); + Core.Materialfv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); } } #if DEBUG @@ -3273,7 +3273,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialfv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (Single*)@params); + Core.Materialfv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (Single*)@params); #if DEBUG } #endif @@ -3288,7 +3288,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialx((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (int)param); + Core.Materialx((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (int)param); #if DEBUG } #endif @@ -3307,7 +3307,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* @params_ptr = @params) { - Delegates.glMaterialxv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); + Core.Materialxv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); } } #if DEBUG @@ -3325,7 +3325,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialxv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (int*)@params); + Core.Materialxv((OpenTK.Graphics.ES10.All)face, (OpenTK.Graphics.ES10.All)pname, (int*)@params); #if DEBUG } #endif @@ -3348,7 +3348,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMode((OpenTK.Graphics.ES10.All)mode); + Core.MatrixMode((OpenTK.Graphics.ES10.All)mode); #if DEBUG } #endif @@ -3376,7 +3376,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4f((OpenTK.Graphics.ES10.All)target, (Single)s, (Single)t, (Single)r, (Single)q); + Core.MultiTexCoord4f((OpenTK.Graphics.ES10.All)target, (Single)s, (Single)t, (Single)r, (Single)q); #if DEBUG } #endif @@ -3391,7 +3391,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4x((OpenTK.Graphics.ES10.All)target, (int)s, (int)t, (int)r, (int)q); + Core.MultiTexCoord4x((OpenTK.Graphics.ES10.All)target, (int)s, (int)t, (int)r, (int)q); #if DEBUG } #endif @@ -3418,7 +3418,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* m_ptr = m) { - Delegates.glMultMatrixf((Single*)m_ptr); + Core.MultMatrixf((Single*)m_ptr); } } #if DEBUG @@ -3447,7 +3447,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* m_ptr = &m) { - Delegates.glMultMatrixf((Single*)m_ptr); + Core.MultMatrixf((Single*)m_ptr); } } #if DEBUG @@ -3473,7 +3473,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixf((Single*)m); + Core.MultMatrixf((Single*)m); #if DEBUG } #endif @@ -3492,7 +3492,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* m_ptr = m) { - Delegates.glMultMatrixx((int*)m_ptr); + Core.MultMatrixx((int*)m_ptr); } } #if DEBUG @@ -3513,7 +3513,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* m_ptr = &m) { - Delegates.glMultMatrixx((int*)m_ptr); + Core.MultMatrixx((int*)m_ptr); } } #if DEBUG @@ -3531,7 +3531,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixx((int*)m); + Core.MultMatrixx((int*)m); #if DEBUG } #endif @@ -3557,7 +3557,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3f((Single)nx, (Single)ny, (Single)nz); + Core.Normal3f((Single)nx, (Single)ny, (Single)nz); #if DEBUG } #endif @@ -3572,7 +3572,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3x((int)nx, (int)ny, (int)nz); + Core.Normal3x((int)nx, (int)ny, (int)nz); #if DEBUG } #endif @@ -3605,7 +3605,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); + Core.NormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -3642,7 +3642,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.NormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -3684,7 +3684,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.NormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -3726,7 +3726,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.NormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -3768,7 +3768,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.NormalPointer((OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -3807,7 +3807,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthof((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar); + Core.Orthof((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar); #if DEBUG } #endif @@ -3822,7 +3822,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthox((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar); + Core.Orthox((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar); #if DEBUG } #endif @@ -3850,7 +3850,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES10.All)pname, (Int32)param); + Core.PixelStorei((OpenTK.Graphics.ES10.All)pname, (Int32)param); #if DEBUG } #endif @@ -3873,7 +3873,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSize((Single)size); + Core.PointSize((Single)size); #if DEBUG } #endif @@ -3888,7 +3888,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSizex((int)size); + Core.PointSizex((int)size); #if DEBUG } #endif @@ -3916,7 +3916,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffset((Single)factor, (Single)units); + Core.PolygonOffset((Single)factor, (Single)units); #if DEBUG } #endif @@ -3931,7 +3931,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffsetx((int)factor, (int)units); + Core.PolygonOffsetx((int)factor, (int)units); #if DEBUG } #endif @@ -3946,7 +3946,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopMatrix(); + Core.PopMatrix(); #if DEBUG } #endif @@ -3964,7 +3964,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushMatrix(); + Core.PushMatrix(); #if DEBUG } #endif @@ -4007,7 +4007,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels); + Core.ReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -4054,7 +4054,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.ReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -4106,7 +4106,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.ReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -4158,7 +4158,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.ReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -4210,7 +4210,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.ReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -4244,7 +4244,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatef((Single)angle, (Single)x, (Single)y, (Single)z); + Core.Rotatef((Single)angle, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -4259,7 +4259,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatex((int)angle, (int)x, (int)y, (int)z); + Core.Rotatex((int)angle, (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -4287,7 +4287,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverage((Single)value, (bool)invert); + Core.SampleCoverage((Single)value, (bool)invert); #if DEBUG } #endif @@ -4302,7 +4302,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoveragex((int)value, (bool)invert); + Core.SampleCoveragex((int)value, (bool)invert); #if DEBUG } #endif @@ -4325,7 +4325,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalef((Single)x, (Single)y, (Single)z); + Core.Scalef((Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -4340,7 +4340,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalex((int)x, (int)y, (int)z); + Core.Scalex((int)x, (int)y, (int)z); #if DEBUG } #endif @@ -4368,7 +4368,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); + Core.Scissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -4391,7 +4391,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShadeModel((OpenTK.Graphics.ES10.All)mode); + Core.ShadeModel((OpenTK.Graphics.ES10.All)mode); #if DEBUG } #endif @@ -4424,7 +4424,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES10.All)func, (Int32)@ref, (UInt32)mask); + Core.StencilFunc((OpenTK.Graphics.ES10.All)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -4458,7 +4458,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES10.All)func, (Int32)@ref, (UInt32)mask); + Core.StencilFunc((OpenTK.Graphics.ES10.All)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -4481,7 +4481,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + Core.StencilMask((UInt32)mask); #if DEBUG } #endif @@ -4505,7 +4505,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + Core.StencilMask((UInt32)mask); #if DEBUG } #endif @@ -4538,7 +4538,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES10.All)fail, (OpenTK.Graphics.ES10.All)zfail, (OpenTK.Graphics.ES10.All)zpass); + Core.StencilOp((OpenTK.Graphics.ES10.All)fail, (OpenTK.Graphics.ES10.All)zfail, (OpenTK.Graphics.ES10.All)zpass); #if DEBUG } #endif @@ -4576,7 +4576,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); + Core.TexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -4618,7 +4618,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.TexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -4665,7 +4665,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.TexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -4712,7 +4712,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.TexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -4759,7 +4759,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.TexCoordPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -4798,7 +4798,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvf((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single)param); + Core.TexEnvf((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single)param); #if DEBUG } #endif @@ -4835,7 +4835,7 @@ namespace OpenTK.Graphics.ES10 { fixed (Single* @params_ptr = @params) { - Delegates.glTexEnvfv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); + Core.TexEnvfv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single*)@params_ptr); } } #if DEBUG @@ -4871,7 +4871,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvfv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single*)@params); + Core.TexEnvfv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single*)@params); #if DEBUG } #endif @@ -4886,7 +4886,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvx((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int)param); + Core.TexEnvx((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int)param); #if DEBUG } #endif @@ -4905,7 +4905,7 @@ namespace OpenTK.Graphics.ES10 { fixed (int* @params_ptr = @params) { - Delegates.glTexEnvxv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); + Core.TexEnvxv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int*)@params_ptr); } } #if DEBUG @@ -4923,7 +4923,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvxv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int*)@params); + Core.TexEnvxv((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int*)@params); #if DEBUG } #endif @@ -4986,7 +4986,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels); + Core.TexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -5053,7 +5053,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5125,7 +5125,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5197,7 +5197,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5269,7 +5269,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -5308,7 +5308,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single)param); + Core.TexParameterf((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (Single)param); #if DEBUG } #endif @@ -5323,7 +5323,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterx((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int)param); + Core.TexParameterx((OpenTK.Graphics.ES10.All)target, (OpenTK.Graphics.ES10.All)pname, (int)param); #if DEBUG } #endif @@ -5386,7 +5386,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels); + Core.TexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -5453,7 +5453,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5525,7 +5525,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5597,7 +5597,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -5669,7 +5669,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + Core.TexSubImage2D((OpenTK.Graphics.ES10.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES10.All)format, (OpenTK.Graphics.ES10.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -5698,7 +5698,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatef((Single)x, (Single)y, (Single)z); + Core.Translatef((Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -5713,7 +5713,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatex((int)x, (int)y, (int)z); + Core.Translatex((int)x, (int)y, (int)z); #if DEBUG } #endif @@ -5751,7 +5751,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); + Core.VertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -5793,7 +5793,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.VertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5840,7 +5840,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.VertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5887,7 +5887,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.VertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5934,7 +5934,7 @@ namespace OpenTK.Graphics.ES10 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + Core.VertexPointer((Int32)size, (OpenTK.Graphics.ES10.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -5968,7 +5968,7 @@ namespace OpenTK.Graphics.ES10 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); + Core.Viewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif diff --git a/Source/OpenTK/Graphics/ES11/ES11.cs b/Source/OpenTK/Graphics/ES11/ES11.cs index 77c1725c..80d906af 100644 --- a/Source/OpenTK/Graphics/ES11/ES11.cs +++ b/Source/OpenTK/Graphics/ES11/ES11.cs @@ -37,6 +37,397 @@ namespace OpenTK.Graphics.ES11 partial class GL { + static GL() + { + EntryPointNames = new string[] + { + "glAccumxOES", + "glActiveTexture", + "glAlphaFunc", + "glAlphaFuncx", + "glAlphaFuncxOES", + "glBindBuffer", + "glBindFramebufferOES", + "glBindRenderbufferOES", + "glBindTexture", + "glBindVertexArrayOES", + "glBitmapxOES", + "glBlendColorxOES", + "glBlendEquationEXT", + "glBlendEquationOES", + "glBlendEquationSeparateOES", + "glBlendFunc", + "glBlendFuncSeparateOES", + "glBufferData", + "glBufferSubData", + "glCheckFramebufferStatusOES", + "glClear", + "glClearAccumxOES", + "glClearColor", + "glClearColorx", + "glClearColorxOES", + "glClearDepthf", + "glClearDepthfOES", + "glClearDepthx", + "glClearDepthxOES", + "glClearStencil", + "glClientActiveTexture", + "glClientWaitSyncAPPLE", + "glClipPlanef", + "glClipPlanefIMG", + "glClipPlanefOES", + "glClipPlanex", + "glClipPlanexIMG", + "glClipPlanexOES", + "glColor3xOES", + "glColor3xvOES", + "glColor4f", + "glColor4ub", + "glColor4x", + "glColor4xOES", + "glColor4xvOES", + "glColorMask", + "glColorPointer", + "glCompressedTexImage2D", + "glCompressedTexSubImage2D", + "glConvolutionParameterxOES", + "glConvolutionParameterxvOES", + "glCopyTexImage2D", + "glCopyTexSubImage2D", + "glCopyTextureLevelsAPPLE", + "glCullFace", + "glCurrentPaletteMatrixOES", + "glDeleteBuffers", + "glDeleteFencesNV", + "glDeleteFramebuffersOES", + "glDeleteRenderbuffersOES", + "glDeleteSyncAPPLE", + "glDeleteTextures", + "glDeleteVertexArraysOES", + "glDepthFunc", + "glDepthMask", + "glDepthRangef", + "glDepthRangefOES", + "glDepthRangex", + "glDepthRangexOES", + "glDisable", + "glDisableClientState", + "glDisableDriverControlQCOM", + "glDiscardFramebufferEXT", + "glDrawArrays", + "glDrawElements", + "glDrawTexfOES", + "glDrawTexfvOES", + "glDrawTexiOES", + "glDrawTexivOES", + "glDrawTexsOES", + "glDrawTexsvOES", + "glDrawTexxOES", + "glDrawTexxvOES", + "glEGLImageTargetRenderbufferStorageOES", + "glEGLImageTargetTexture2DOES", + "glEnable", + "glEnableClientState", + "glEnableDriverControlQCOM", + "glEndTilingQCOM", + "glEvalCoord1xOES", + "glEvalCoord1xvOES", + "glEvalCoord2xOES", + "glEvalCoord2xvOES", + "glExtGetBufferPointervQCOM", + "glExtGetBuffersQCOM", + "glExtGetFramebuffersQCOM", + "glExtGetProgramBinarySourceQCOM", + "glExtGetProgramsQCOM", + "glExtGetRenderbuffersQCOM", + "glExtGetShadersQCOM", + "glExtGetTexLevelParameterivQCOM", + "glExtGetTexSubImageQCOM", + "glExtGetTexturesQCOM", + "glExtIsProgramBinaryQCOM", + "glExtTexObjectStateOverrideiQCOM", + "glFeedbackBufferxOES", + "glFenceSyncAPPLE", + "glFinish", + "glFinishFenceNV", + "glFlush", + "glFlushMappedBufferRangeEXT", + "glFogf", + "glFogfv", + "glFogx", + "glFogxOES", + "glFogxv", + "glFogxvOES", + "glFramebufferRenderbufferOES", + "glFramebufferTexture2DMultisampleEXT", + "glFramebufferTexture2DMultisampleIMG", + "glFramebufferTexture2DOES", + "glFrontFace", + "glFrustumf", + "glFrustumfOES", + "glFrustumx", + "glFrustumxOES", + "glGenBuffers", + "glGenerateMipmapOES", + "glGenFencesNV", + "glGenFramebuffersOES", + "glGenRenderbuffersOES", + "glGenTextures", + "glGenVertexArraysOES", + "glGetBooleanv", + "glGetBufferParameteriv", + "glGetBufferPointervOES", + "glGetClipPlanef", + "glGetClipPlanefOES", + "glGetClipPlanex", + "glGetClipPlanexOES", + "glGetConvolutionParameterxvOES", + "glGetDriverControlsQCOM", + "glGetDriverControlStringQCOM", + "glGetError", + "glGetFenceivNV", + "glGetFixedv", + "glGetFixedvOES", + "glGetFloatv", + "glGetFramebufferAttachmentParameterivOES", + "glGetGraphicsResetStatusEXT", + "glGetHistogramParameterxvOES", + "glGetInteger64vAPPLE", + "glGetIntegerv", + "glGetLightfv", + "glGetLightxOES", + "glGetLightxv", + "glGetLightxvOES", + "glGetMapxvOES", + "glGetMaterialfv", + "glGetMaterialxOES", + "glGetMaterialxv", + "glGetMaterialxvOES", + "glGetnUniformfvEXT", + "glGetnUniformivEXT", + "glGetPixelMapxv", + "glGetPointerv", + "glGetRenderbufferParameterivOES", + "glGetString", + "glGetSyncivAPPLE", + "glGetTexEnvfv", + "glGetTexEnviv", + "glGetTexEnvxv", + "glGetTexEnvxvOES", + "glGetTexGenfvOES", + "glGetTexGenivOES", + "glGetTexGenxvOES", + "glGetTexLevelParameterxvOES", + "glGetTexParameterfv", + "glGetTexParameteriv", + "glGetTexParameterxv", + "glGetTexParameterxvOES", + "glHint", + "glIndexxOES", + "glIndexxvOES", + "glIsBuffer", + "glIsEnabled", + "glIsFenceNV", + "glIsFramebufferOES", + "glIsRenderbufferOES", + "glIsSyncAPPLE", + "glIsTexture", + "glIsVertexArrayOES", + "glLightf", + "glLightfv", + "glLightModelf", + "glLightModelfv", + "glLightModelx", + "glLightModelxOES", + "glLightModelxv", + "glLightModelxvOES", + "glLightx", + "glLightxOES", + "glLightxv", + "glLightxvOES", + "glLineWidth", + "glLineWidthx", + "glLineWidthxOES", + "glLoadIdentity", + "glLoadMatrixf", + "glLoadMatrixx", + "glLoadMatrixxOES", + "glLoadPaletteFromModelViewMatrixOES", + "glLoadTransposeMatrixxOES", + "glLogicOp", + "glMap1xOES", + "glMap2xOES", + "glMapBufferOES", + "glMapBufferRangeEXT", + "glMapGrid1xOES", + "glMapGrid2xOES", + "glMaterialf", + "glMaterialfv", + "glMaterialx", + "glMaterialxOES", + "glMaterialxv", + "glMaterialxvOES", + "glMatrixIndexPointerOES", + "glMatrixMode", + "glMultiDrawArraysEXT", + "glMultiDrawElementsEXT", + "glMultiTexCoord1bOES", + "glMultiTexCoord1bvOES", + "glMultiTexCoord1xOES", + "glMultiTexCoord1xvOES", + "glMultiTexCoord2bOES", + "glMultiTexCoord2bvOES", + "glMultiTexCoord2xOES", + "glMultiTexCoord2xvOES", + "glMultiTexCoord3bOES", + "glMultiTexCoord3bvOES", + "glMultiTexCoord3xOES", + "glMultiTexCoord3xvOES", + "glMultiTexCoord4bOES", + "glMultiTexCoord4bvOES", + "glMultiTexCoord4f", + "glMultiTexCoord4x", + "glMultiTexCoord4xOES", + "glMultiTexCoord4xvOES", + "glMultMatrixf", + "glMultMatrixx", + "glMultMatrixxOES", + "glMultTransposeMatrixxOES", + "glNormal3f", + "glNormal3x", + "glNormal3xOES", + "glNormal3xvOES", + "glNormalPointer", + "glOrthof", + "glOrthofOES", + "glOrthox", + "glOrthoxOES", + "glPassThroughxOES", + "glPixelMapx", + "glPixelStorei", + "glPixelStorex", + "glPixelTransferxOES", + "glPixelZoomxOES", + "glPointParameterf", + "glPointParameterfv", + "glPointParameterx", + "glPointParameterxOES", + "glPointParameterxv", + "glPointParameterxvOES", + "glPointSize", + "glPointSizePointerOES", + "glPointSizex", + "glPointSizexOES", + "glPolygonOffset", + "glPolygonOffsetx", + "glPolygonOffsetxOES", + "glPopMatrix", + "glPrioritizeTexturesxOES", + "glPushMatrix", + "glQueryMatrixxOES", + "glRasterPos2xOES", + "glRasterPos2xvOES", + "glRasterPos3xOES", + "glRasterPos3xvOES", + "glRasterPos4xOES", + "glRasterPos4xvOES", + "glReadnPixelsEXT", + "glReadPixels", + "glRectxOES", + "glRectxvOES", + "glRenderbufferStorageMultisampleAPPLE", + "glRenderbufferStorageMultisampleEXT", + "glRenderbufferStorageMultisampleIMG", + "glRenderbufferStorageOES", + "glResolveMultisampleFramebufferAPPLE", + "glRotatef", + "glRotatex", + "glRotatexOES", + "glSampleCoverage", + "glSampleCoverageOES", + "glSampleCoveragex", + "glSampleCoveragexOES", + "glScalef", + "glScalex", + "glScalexOES", + "glScissor", + "glSetFenceNV", + "glShadeModel", + "glStartTilingQCOM", + "glStencilFunc", + "glStencilMask", + "glStencilOp", + "glTestFenceNV", + "glTexCoord1bOES", + "glTexCoord1bvOES", + "glTexCoord1xOES", + "glTexCoord1xvOES", + "glTexCoord2bOES", + "glTexCoord2bvOES", + "glTexCoord2xOES", + "glTexCoord2xvOES", + "glTexCoord3bOES", + "glTexCoord3bvOES", + "glTexCoord3xOES", + "glTexCoord3xvOES", + "glTexCoord4bOES", + "glTexCoord4bvOES", + "glTexCoord4xOES", + "glTexCoord4xvOES", + "glTexCoordPointer", + "glTexEnvf", + "glTexEnvfv", + "glTexEnvi", + "glTexEnviv", + "glTexEnvx", + "glTexEnvxOES", + "glTexEnvxv", + "glTexEnvxvOES", + "glTexGenfOES", + "glTexGenfvOES", + "glTexGeniOES", + "glTexGenivOES", + "glTexGenxOES", + "glTexGenxvOES", + "glTexImage2D", + "glTexParameterf", + "glTexParameterfv", + "glTexParameteri", + "glTexParameteriv", + "glTexParameterx", + "glTexParameterxOES", + "glTexParameterxv", + "glTexParameterxvOES", + "glTexStorage1DEXT", + "glTexStorage2DEXT", + "glTexStorage3DEXT", + "glTexSubImage2D", + "glTextureStorage1DEXT", + "glTextureStorage2DEXT", + "glTextureStorage3DEXT", + "glTranslatef", + "glTranslatex", + "glTranslatexOES", + "glUnmapBufferOES", + "glVertex2bOES", + "glVertex2bvOES", + "glVertex2xOES", + "glVertex2xvOES", + "glVertex3bOES", + "glVertex3bvOES", + "glVertex3xOES", + "glVertex3xvOES", + "glVertex4bOES", + "glVertex4bvOES", + "glVertex4xOES", + "glVertex4xvOES", + "glVertexPointer", + "glViewport", + "glWaitSyncAPPLE", + "glWeightPointerOES", + }; + EntryPoints = new IntPtr[EntryPointNames.Length]; + } public static partial class Apple { @@ -66,7 +457,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (UInt32)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[31], (IntPtr)sync, (UInt32)flags, (UInt64)timeout); #if DEBUG } #endif @@ -99,7 +490,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (UInt32)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[31], (IntPtr)sync, (UInt32)flags, (UInt64)timeout); #if DEBUG } #endif @@ -114,7 +505,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureLevelsAPPLE((UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); + InteropHelper.Call(EntryPoints[53], (UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); #if DEBUG } #endif @@ -130,7 +521,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureLevelsAPPLE((UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); + InteropHelper.Call(EntryPoints[53], (UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); #if DEBUG } #endif @@ -152,7 +543,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSyncAPPLE((IntPtr)sync); + InteropHelper.Call(EntryPoints[60], (IntPtr)sync); #if DEBUG } #endif @@ -179,7 +570,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSyncAPPLE((OpenTK.Graphics.ES11.All)condition, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[106], (OpenTK.Graphics.ES11.All)condition, (UInt32)flags); #if DEBUG } #endif @@ -207,7 +598,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSyncAPPLE((OpenTK.Graphics.ES11.All)condition, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[106], (OpenTK.Graphics.ES11.All)condition, (UInt32)flags); #if DEBUG } #endif @@ -226,7 +617,7 @@ namespace OpenTK.Graphics.ES11 { Int64 retval; Int64* @params_ptr = &retval; - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES11.All)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -247,7 +638,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES11.All)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -268,7 +659,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES11.All)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -287,7 +678,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES11.All)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -334,7 +725,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* length_ptr = length) fixed (Int32* values_ptr = values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES11.All)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[168], (IntPtr)sync, (OpenTK.Graphics.ES11.All)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); } } #if DEBUG @@ -383,7 +774,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES11.All)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[168], (IntPtr)sync, (OpenTK.Graphics.ES11.All)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -430,7 +821,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES11.All)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[168], (IntPtr)sync, (OpenTK.Graphics.ES11.All)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -452,7 +843,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSyncAPPLE((IntPtr)sync); + return InteropHelper.CallReturn(EntryPoints[189], (IntPtr)sync); #if DEBUG } #endif @@ -494,7 +885,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleAPPLE((OpenTK.Graphics.ES11.All)target, (Int32)samples, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[294], (OpenTK.Graphics.ES11.All)target, (Int32)samples, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -509,7 +900,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResolveMultisampleFramebufferAPPLE(); + InteropHelper.Call(EntryPoints[298]); #if DEBUG } #endif @@ -541,7 +932,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (UInt32)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[382], (IntPtr)sync, (UInt32)flags, (UInt64)timeout); #if DEBUG } #endif @@ -574,7 +965,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (UInt32)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[382], (IntPtr)sync, (UInt32)flags, (UInt64)timeout); #if DEBUG } #endif @@ -599,7 +990,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES11.TextureUnit)texture); + InteropHelper.Call(EntryPoints[1], (OpenTK.Graphics.ES11.TextureUnit)texture); #if DEBUG } #endif @@ -621,7 +1012,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES11.TextureUnit)texture); + InteropHelper.Call(EntryPoints[1], (OpenTK.Graphics.ES11.TextureUnit)texture); #if DEBUG } #endif @@ -649,7 +1040,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFunc((OpenTK.Graphics.ES11.AlphaFunction)func, (Single)@ref); + InteropHelper.Call(EntryPoints[2], (OpenTK.Graphics.ES11.AlphaFunction)func, (Single)@ref); #if DEBUG } #endif @@ -676,7 +1067,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFunc((OpenTK.Graphics.ES11.AlphaFunction)func, (Single)@ref); + InteropHelper.Call(EntryPoints[2], (OpenTK.Graphics.ES11.AlphaFunction)func, (Single)@ref); #if DEBUG } #endif @@ -691,7 +1082,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFuncx((OpenTK.Graphics.ES11.All)func, (int)@ref); + InteropHelper.Call(EntryPoints[3], (OpenTK.Graphics.ES11.All)func, (int)@ref); #if DEBUG } #endif @@ -718,7 +1109,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES11.All)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[5], (OpenTK.Graphics.ES11.All)target, (UInt32)buffer); #if DEBUG } #endif @@ -746,7 +1137,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES11.All)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[5], (OpenTK.Graphics.ES11.All)target, (UInt32)buffer); #if DEBUG } #endif @@ -773,7 +1164,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -802,7 +1193,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -829,7 +1220,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -857,7 +1248,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES11.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -890,7 +1281,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES11.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES11.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.ES11.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES11.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -922,7 +1313,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES11.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES11.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.ES11.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES11.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -959,7 +1350,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES11.All)usage); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES11.All)usage); #if DEBUG } #endif @@ -1000,7 +1391,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); } finally { @@ -1046,7 +1437,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); } finally { @@ -1092,7 +1483,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); } finally { @@ -1138,7 +1529,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage); data = (T2)data_ptr.Target; } finally @@ -1181,7 +1572,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -1222,7 +1613,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1268,7 +1659,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1314,7 +1705,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1360,7 +1751,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -1389,7 +1780,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES11.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.ES11.ClearBufferMask)mask); #if DEBUG } #endif @@ -1411,7 +1802,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES11.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.ES11.ClearBufferMask)mask); #if DEBUG } #endif @@ -1434,7 +1825,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES11.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.ES11.ClearBufferMask)mask); #if DEBUG } #endif @@ -1458,7 +1849,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES11.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.ES11.ClearBufferMask)mask); #if DEBUG } #endif @@ -1480,7 +1871,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[22], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -1495,7 +1886,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColorx((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[23], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -1517,7 +1908,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthf((Single)d); + InteropHelper.Call(EntryPoints[25], (Single)d); #if DEBUG } #endif @@ -1532,7 +1923,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthx((int)depth); + InteropHelper.Call(EntryPoints[27], (int)depth); #if DEBUG } #endif @@ -1554,7 +1945,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearStencil((Int32)s); + InteropHelper.Call(EntryPoints[29], (Int32)s); #if DEBUG } #endif @@ -1577,7 +1968,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientActiveTexture((OpenTK.Graphics.ES11.TextureUnit)texture); + InteropHelper.Call(EntryPoints[30], (OpenTK.Graphics.ES11.TextureUnit)texture); #if DEBUG } #endif @@ -1599,7 +1990,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientActiveTexture((OpenTK.Graphics.ES11.TextureUnit)texture); + InteropHelper.Call(EntryPoints[30], (OpenTK.Graphics.ES11.TextureUnit)texture); #if DEBUG } #endif @@ -1630,7 +2021,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* eqn_ptr = eqn) { - Delegates.glClipPlanef((OpenTK.Graphics.ES11.All)p, (Single*)eqn_ptr); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn_ptr); } } #if DEBUG @@ -1663,7 +2054,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* eqn_ptr = &eqn) { - Delegates.glClipPlanef((OpenTK.Graphics.ES11.All)p, (Single*)eqn_ptr); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn_ptr); } } #if DEBUG @@ -1693,7 +2084,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanef((OpenTK.Graphics.ES11.All)p, (Single*)eqn); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn); #if DEBUG } #endif @@ -1712,7 +2103,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = equation) { - Delegates.glClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -1733,7 +2124,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = &equation) { - Delegates.glClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -1751,7 +2142,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -1778,7 +2169,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4f((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[40], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -1805,7 +2196,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ub((Byte)red, (Byte)green, (Byte)blue, (Byte)alpha); + InteropHelper.Call(EntryPoints[41], (Byte)red, (Byte)green, (Byte)blue, (Byte)alpha); #if DEBUG } #endif @@ -1820,7 +2211,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4x((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[42], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -1847,7 +2238,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); + InteropHelper.Call(EntryPoints[45], (bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -1885,7 +2276,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -1927,7 +2318,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -1974,7 +2365,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -2021,7 +2412,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -2068,7 +2459,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -2111,7 +2502,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -2152,7 +2543,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -2198,7 +2589,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -2244,7 +2635,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -2290,7 +2681,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[46], (Int32)size, (OpenTK.Graphics.ES11.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -2354,7 +2745,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -2416,7 +2807,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -2483,7 +2874,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -2550,7 +2941,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -2617,7 +3008,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -2680,7 +3071,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -2741,7 +3132,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -2807,7 +3198,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -2873,7 +3264,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -2939,7 +3330,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -3008,7 +3399,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -3075,7 +3466,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -3147,7 +3538,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -3219,7 +3610,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -3291,7 +3682,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -3359,7 +3750,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -3425,7 +3816,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -3496,7 +3887,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -3567,7 +3958,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -3638,7 +4029,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -3697,7 +4088,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -3749,7 +4140,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -3802,7 +4193,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -3854,7 +4245,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -3877,7 +4268,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES11.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES11.CullFaceMode)mode); #if DEBUG } #endif @@ -3899,7 +4290,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES11.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES11.CullFaceMode)mode); #if DEBUG } #endif @@ -3930,7 +4321,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -3963,7 +4354,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -3995,7 +4386,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -4028,7 +4419,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -4058,7 +4449,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -4090,7 +4481,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -4124,7 +4515,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -4154,7 +4545,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -4185,7 +4576,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -4218,7 +4609,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -4250,7 +4641,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -4283,7 +4674,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -4313,7 +4704,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -4345,7 +4736,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -4379,7 +4770,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -4409,7 +4800,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -4432,7 +4823,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES11.DepthFunction)func); + InteropHelper.Call(EntryPoints[63], (OpenTK.Graphics.ES11.DepthFunction)func); #if DEBUG } #endif @@ -4454,7 +4845,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES11.DepthFunction)func); + InteropHelper.Call(EntryPoints[63], (OpenTK.Graphics.ES11.DepthFunction)func); #if DEBUG } #endif @@ -4476,7 +4867,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthMask((bool)flag); + InteropHelper.Call(EntryPoints[64], (bool)flag); #if DEBUG } #endif @@ -4503,7 +4894,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangef((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[65], (Single)n, (Single)f); #if DEBUG } #endif @@ -4518,7 +4909,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangex((int)n, (int)f); + InteropHelper.Call(EntryPoints[67], (int)n, (int)f); #if DEBUG } #endif @@ -4534,7 +4925,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES11.EnableCap)cap); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES11.EnableCap)cap); #if DEBUG } #endif @@ -4549,7 +4940,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES11.EnableCap)cap); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES11.EnableCap)cap); #if DEBUG } #endif @@ -4565,7 +4956,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientState((OpenTK.Graphics.ES11.EnableCap)array); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES11.EnableCap)array); #if DEBUG } #endif @@ -4580,7 +4971,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientState((OpenTK.Graphics.ES11.EnableCap)array); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES11.EnableCap)array); #if DEBUG } #endif @@ -4613,7 +5004,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -4646,7 +5037,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -4678,7 +5069,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -4716,7 +5107,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices); #if DEBUG } #endif @@ -4758,7 +5149,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -4805,7 +5196,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -4852,7 +5243,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -4899,7 +5290,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -4943,7 +5334,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices); #if DEBUG } #endif @@ -4985,7 +5376,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5032,7 +5423,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5079,7 +5470,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5126,7 +5517,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -5169,7 +5560,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices); #if DEBUG } #endif @@ -5210,7 +5601,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5256,7 +5647,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5302,7 +5693,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -5348,7 +5739,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -5382,7 +5773,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES11.EnableCap)cap); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES11.EnableCap)cap); #if DEBUG } #endif @@ -5409,7 +5800,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES11.EnableCap)cap); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES11.EnableCap)cap); #if DEBUG } #endif @@ -5432,7 +5823,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientState((OpenTK.Graphics.ES11.EnableCap)array); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES11.EnableCap)array); #if DEBUG } #endif @@ -5454,7 +5845,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientState((OpenTK.Graphics.ES11.EnableCap)array); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES11.EnableCap)array); #if DEBUG } #endif @@ -5471,7 +5862,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinish(); + InteropHelper.Call(EntryPoints[107]); #if DEBUG } #endif @@ -5488,7 +5879,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlush(); + InteropHelper.Call(EntryPoints[109]); #if DEBUG } #endif @@ -5516,7 +5907,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogf((OpenTK.Graphics.ES11.FogParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES11.FogParameter)pname, (Single)param); #if DEBUG } #endif @@ -5543,7 +5934,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogf((OpenTK.Graphics.ES11.FogParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES11.FogParameter)pname, (Single)param); #if DEBUG } #endif @@ -5575,7 +5966,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glFogfv((OpenTK.Graphics.ES11.FogParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES11.FogParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -5606,7 +5997,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogfv((OpenTK.Graphics.ES11.FogParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES11.FogParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -5637,7 +6028,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glFogfv((OpenTK.Graphics.ES11.FogParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES11.FogParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -5667,7 +6058,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogfv((OpenTK.Graphics.ES11.FogParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES11.FogParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -5682,7 +6073,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogx((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -5701,7 +6092,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* param_ptr = param) { - Delegates.glFogxv((OpenTK.Graphics.ES11.All)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -5719,7 +6110,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogxv((OpenTK.Graphics.ES11.All)pname, (int*)param); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param); #if DEBUG } #endif @@ -5742,7 +6133,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES11.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[121], (OpenTK.Graphics.ES11.FrontFaceDirection)mode); #if DEBUG } #endif @@ -5764,7 +6155,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES11.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[121], (OpenTK.Graphics.ES11.FrontFaceDirection)mode); #if DEBUG } #endif @@ -5796,7 +6187,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumf((Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); + InteropHelper.Call(EntryPoints[122], (Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); #if DEBUG } #endif @@ -5811,7 +6202,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumx((int)l, (int)r, (int)b, (int)t, (int)n, (int)f); + InteropHelper.Call(EntryPoints[124], (int)l, (int)r, (int)b, (int)t, (int)n, (int)f); #if DEBUG } #endif @@ -5843,7 +6234,7 @@ namespace OpenTK.Graphics.ES11 const Int32 n = 1; Int32 retval; Int32* buffers_ptr = &retval; - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers_ptr); return retval; } #if DEBUG @@ -5876,7 +6267,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -5909,7 +6300,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -5940,7 +6331,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -5972,7 +6363,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -6006,7 +6397,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -6037,7 +6428,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -6069,7 +6460,7 @@ namespace OpenTK.Graphics.ES11 const Int32 n = 1; Int32 retval; Int32* textures_ptr = &retval; - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures_ptr); return retval; } #if DEBUG @@ -6102,7 +6493,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -6135,7 +6526,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -6166,7 +6557,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -6198,7 +6589,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -6232,7 +6623,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -6263,7 +6654,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[131], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -6283,7 +6674,7 @@ namespace OpenTK.Graphics.ES11 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -6304,7 +6695,7 @@ namespace OpenTK.Graphics.ES11 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -6326,7 +6717,7 @@ namespace OpenTK.Graphics.ES11 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -6348,7 +6739,7 @@ namespace OpenTK.Graphics.ES11 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -6368,7 +6759,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -6387,7 +6778,7 @@ namespace OpenTK.Graphics.ES11 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -6408,7 +6799,7 @@ namespace OpenTK.Graphics.ES11 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -6427,7 +6818,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.ES11.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -6463,7 +6854,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -6501,7 +6892,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -6537,7 +6928,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -6568,7 +6959,7 @@ namespace OpenTK.Graphics.ES11 { Single retval; Single* equation_ptr = &retval; - Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[136], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); return retval; } #if DEBUG @@ -6601,7 +6992,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* equation_ptr = equation) { - Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[136], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -6634,7 +7025,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* equation_ptr = &equation) { - Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[136], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -6665,7 +7056,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation); + InteropHelper.Call(EntryPoints[136], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -6684,7 +7075,7 @@ namespace OpenTK.Graphics.ES11 { int retval; int* equation_ptr = &retval; - Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[138], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); return retval; } #if DEBUG @@ -6705,7 +7096,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = equation) { - Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[138], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -6726,7 +7117,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = &equation) { - Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[138], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -6745,7 +7136,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation); + InteropHelper.Call(EntryPoints[138], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -6758,7 +7149,7 @@ namespace OpenTK.Graphics.ES11 public static OpenTK.Graphics.ES11.ErrorCode GetError() { - return Delegates.glGetError(); + return InteropHelper.CallReturn(EntryPoints[143]); } /// [requires: v1.0] @@ -6774,7 +7165,7 @@ namespace OpenTK.Graphics.ES11 { int retval; int* @params_ptr = &retval; - Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -6795,7 +7186,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -6816,7 +7207,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -6835,7 +7226,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -6855,7 +7246,7 @@ namespace OpenTK.Graphics.ES11 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -6876,7 +7267,7 @@ namespace OpenTK.Graphics.ES11 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -6898,7 +7289,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -6920,7 +7311,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -6940,7 +7331,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -6959,7 +7350,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -6980,7 +7371,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -6999,7 +7390,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.ES11.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -7019,7 +7410,7 @@ namespace OpenTK.Graphics.ES11 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -7040,7 +7431,7 @@ namespace OpenTK.Graphics.ES11 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -7062,7 +7453,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -7084,7 +7475,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -7104,7 +7495,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -7123,7 +7514,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -7144,7 +7535,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -7163,7 +7554,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES11.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.ES11.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -7200,7 +7591,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -7239,7 +7630,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -7276,7 +7667,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7312,7 +7703,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -7350,7 +7741,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -7386,7 +7777,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7405,7 +7796,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[155], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -7426,7 +7817,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[155], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -7445,7 +7836,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[155], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7482,7 +7873,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[158], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -7521,7 +7912,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[158], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -7558,7 +7949,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[158], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7594,7 +7985,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[158], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -7632,7 +8023,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[158], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -7668,7 +8059,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[158], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7687,7 +8078,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -7708,7 +8099,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -7727,7 +8118,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7746,7 +8137,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* values_ptr = values) { - Delegates.glGetPixelMapxv((OpenTK.Graphics.ES11.All)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[164], (OpenTK.Graphics.ES11.All)map, (Int32)size, (IntPtr)values_ptr); } } #if DEBUG @@ -7767,7 +8158,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* values_ptr = &values) { - Delegates.glGetPixelMapxv((OpenTK.Graphics.ES11.All)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[164], (OpenTK.Graphics.ES11.All)map, (Int32)size, (IntPtr)values_ptr); values = *values_ptr; } } @@ -7786,7 +8177,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapxv((OpenTK.Graphics.ES11.All)map, (Int32)size, (int*)values); + InteropHelper.Call(EntryPoints[164], (OpenTK.Graphics.ES11.All)map, (Int32)size, (IntPtr)values); #if DEBUG } #endif @@ -7814,7 +8205,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -7846,7 +8237,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -7883,7 +8274,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -7920,7 +8311,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -7957,7 +8348,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -7990,7 +8381,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8021,7 +8412,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -8057,7 +8448,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -8093,7 +8484,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -8129,7 +8520,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.ES11.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -8163,7 +8554,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES11.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[167], (OpenTK.Graphics.ES11.StringName)name)); } #if DEBUG } #endif @@ -8190,7 +8581,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES11.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[167], (OpenTK.Graphics.ES11.StringName)name)); } #if DEBUG } #endif @@ -8227,7 +8618,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8266,7 +8657,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8303,7 +8694,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8339,7 +8730,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8377,7 +8768,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8413,7 +8804,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8450,7 +8841,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8489,7 +8880,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8526,7 +8917,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8562,7 +8953,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8600,7 +8991,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8636,7 +9027,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8655,7 +9046,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8676,7 +9067,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8695,7 +9086,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8732,7 +9123,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[177], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8771,7 +9162,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[177], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8808,7 +9199,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[177], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8844,7 +9235,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[177], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8882,7 +9273,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[177], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -8918,7 +9309,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[177], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -8955,7 +9346,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[178], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -8994,7 +9385,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[178], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -9031,7 +9422,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[178], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9067,7 +9458,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[178], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9105,7 +9496,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[178], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -9141,7 +9532,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[178], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9160,7 +9551,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9181,7 +9572,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -9200,7 +9591,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9228,7 +9619,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES11.HintTarget)target, (OpenTK.Graphics.ES11.HintMode)mode); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES11.HintTarget)target, (OpenTK.Graphics.ES11.HintMode)mode); #if DEBUG } #endif @@ -9255,7 +9646,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES11.HintTarget)target, (OpenTK.Graphics.ES11.HintMode)mode); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES11.HintTarget)target, (OpenTK.Graphics.ES11.HintMode)mode); #if DEBUG } #endif @@ -9277,7 +9668,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[184], (UInt32)buffer); #if DEBUG } #endif @@ -9300,7 +9691,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[184], (UInt32)buffer); #if DEBUG } #endif @@ -9328,7 +9719,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.ES11.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[185], (OpenTK.Graphics.ES11.EnableCap)cap); #if DEBUG } #endif @@ -9355,7 +9746,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.ES11.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[185], (OpenTK.Graphics.ES11.EnableCap)cap); #if DEBUG } #endif @@ -9377,7 +9768,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[190], (UInt32)texture); #if DEBUG } #endif @@ -9400,7 +9791,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[190], (UInt32)texture); #if DEBUG } #endif @@ -9433,7 +9824,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightf((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[192], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single)param); #if DEBUG } #endif @@ -9465,7 +9856,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightf((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[192], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single)param); #if DEBUG } #endif @@ -9502,7 +9893,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9538,7 +9929,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[193], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9574,7 +9965,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9609,7 +10000,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightfv((OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[193], (OpenTK.Graphics.ES11.LightName)light, (OpenTK.Graphics.ES11.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9637,7 +10028,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelf((OpenTK.Graphics.ES11.LightModelParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES11.LightModelParameter)pname, (Single)param); #if DEBUG } #endif @@ -9664,7 +10055,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelf((OpenTK.Graphics.ES11.LightModelParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES11.LightModelParameter)pname, (Single)param); #if DEBUG } #endif @@ -9696,7 +10087,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glLightModelfv((OpenTK.Graphics.ES11.LightModelParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES11.LightModelParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9727,7 +10118,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelfv((OpenTK.Graphics.ES11.LightModelParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES11.LightModelParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9758,7 +10149,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glLightModelfv((OpenTK.Graphics.ES11.LightModelParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES11.LightModelParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9788,7 +10179,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelfv((OpenTK.Graphics.ES11.LightModelParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES11.LightModelParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9803,7 +10194,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelx((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -9822,7 +10213,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* param_ptr = param) { - Delegates.glLightModelxv((OpenTK.Graphics.ES11.All)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[198], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -9840,7 +10231,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelxv((OpenTK.Graphics.ES11.All)pname, (int*)param); + InteropHelper.Call(EntryPoints[198], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param); #if DEBUG } #endif @@ -9855,7 +10246,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightx((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[200], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -9874,7 +10265,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -9892,7 +10283,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -9914,7 +10305,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidth((Single)width); + InteropHelper.Call(EntryPoints[204], (Single)width); #if DEBUG } #endif @@ -9929,7 +10320,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidthx((int)width); + InteropHelper.Call(EntryPoints[205], (int)width); #if DEBUG } #endif @@ -9946,7 +10337,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadIdentity(); + InteropHelper.Call(EntryPoints[207]); #if DEBUG } #endif @@ -9972,7 +10363,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* m_ptr = m) { - Delegates.glLoadMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[208], (IntPtr)m_ptr); } } #if DEBUG @@ -10000,7 +10391,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* m_ptr = &m) { - Delegates.glLoadMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[208], (IntPtr)m_ptr); } } #if DEBUG @@ -10025,7 +10416,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixf((Single*)m); + InteropHelper.Call(EntryPoints[208], (IntPtr)m); #if DEBUG } #endif @@ -10044,7 +10435,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = m) { - Delegates.glLoadMatrixx((int*)m_ptr); + InteropHelper.Call(EntryPoints[209], (IntPtr)m_ptr); } } #if DEBUG @@ -10065,7 +10456,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = &m) { - Delegates.glLoadMatrixx((int*)m_ptr); + InteropHelper.Call(EntryPoints[209], (IntPtr)m_ptr); } } #if DEBUG @@ -10083,7 +10474,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixx((int*)m); + InteropHelper.Call(EntryPoints[209], (IntPtr)m); #if DEBUG } #endif @@ -10106,7 +10497,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLogicOp((OpenTK.Graphics.ES11.LogicOp)opcode); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES11.LogicOp)opcode); #if DEBUG } #endif @@ -10128,7 +10519,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLogicOp((OpenTK.Graphics.ES11.LogicOp)opcode); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES11.LogicOp)opcode); #if DEBUG } #endif @@ -10161,7 +10552,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialf((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single)param); #if DEBUG } #endif @@ -10193,7 +10584,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialf((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single)param); #if DEBUG } #endif @@ -10230,7 +10621,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -10266,7 +10657,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[221], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -10302,7 +10693,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -10337,7 +10728,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialfv((OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[221], (OpenTK.Graphics.ES11.MaterialFace)face, (OpenTK.Graphics.ES11.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -10352,7 +10743,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialx((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[222], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -10371,7 +10762,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* param_ptr = param) { - Delegates.glMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -10389,7 +10780,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)param); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)param); #if DEBUG } #endif @@ -10412,7 +10803,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMode((OpenTK.Graphics.ES11.MatrixMode)mode); + InteropHelper.Call(EntryPoints[227], (OpenTK.Graphics.ES11.MatrixMode)mode); #if DEBUG } #endif @@ -10434,7 +10825,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMode((OpenTK.Graphics.ES11.MatrixMode)mode); + InteropHelper.Call(EntryPoints[227], (OpenTK.Graphics.ES11.MatrixMode)mode); #if DEBUG } #endif @@ -10462,7 +10853,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4f((OpenTK.Graphics.ES11.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.ES11.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); #if DEBUG } #endif @@ -10489,7 +10880,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4f((OpenTK.Graphics.ES11.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.ES11.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); #if DEBUG } #endif @@ -10504,7 +10895,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4x((OpenTK.Graphics.ES11.All)texture, (int)s, (int)t, (int)r, (int)q); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.ES11.All)texture, (int)s, (int)t, (int)r, (int)q); #if DEBUG } #endif @@ -10530,7 +10921,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* m_ptr = m) { - Delegates.glMultMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[248], (IntPtr)m_ptr); } } #if DEBUG @@ -10558,7 +10949,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* m_ptr = &m) { - Delegates.glMultMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[248], (IntPtr)m_ptr); } } #if DEBUG @@ -10583,7 +10974,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixf((Single*)m); + InteropHelper.Call(EntryPoints[248], (IntPtr)m); #if DEBUG } #endif @@ -10602,7 +10993,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = m) { - Delegates.glMultMatrixx((int*)m_ptr); + InteropHelper.Call(EntryPoints[249], (IntPtr)m_ptr); } } #if DEBUG @@ -10623,7 +11014,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = &m) { - Delegates.glMultMatrixx((int*)m_ptr); + InteropHelper.Call(EntryPoints[249], (IntPtr)m_ptr); } } #if DEBUG @@ -10641,7 +11032,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixx((int*)m); + InteropHelper.Call(EntryPoints[249], (IntPtr)m); #if DEBUG } #endif @@ -10666,7 +11057,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3f((Single)nx, (Single)ny, (Single)nz); + InteropHelper.Call(EntryPoints[252], (Single)nx, (Single)ny, (Single)nz); #if DEBUG } #endif @@ -10681,7 +11072,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3x((int)nx, (int)ny, (int)nz); + InteropHelper.Call(EntryPoints[253], (int)nx, (int)ny, (int)nz); #if DEBUG } #endif @@ -10714,7 +11105,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -10751,7 +11142,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -10793,7 +11184,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -10835,7 +11226,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -10877,7 +11268,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -10915,7 +11306,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -10951,7 +11342,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -10992,7 +11383,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -11033,7 +11424,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -11074,7 +11465,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.ES11.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -11112,7 +11503,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthof((Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); + InteropHelper.Call(EntryPoints[257], (Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); #if DEBUG } #endif @@ -11127,7 +11518,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthox((int)l, (int)r, (int)b, (int)t, (int)n, (int)f); + InteropHelper.Call(EntryPoints[259], (int)l, (int)r, (int)b, (int)t, (int)n, (int)f); #if DEBUG } #endif @@ -11146,7 +11537,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* values_ptr = values) { - Delegates.glPixelMapx((OpenTK.Graphics.ES11.All)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.ES11.All)map, (Int32)size, (IntPtr)values_ptr); } } #if DEBUG @@ -11167,7 +11558,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* values_ptr = &values) { - Delegates.glPixelMapx((OpenTK.Graphics.ES11.All)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.ES11.All)map, (Int32)size, (IntPtr)values_ptr); } } #if DEBUG @@ -11185,7 +11576,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapx((OpenTK.Graphics.ES11.All)map, (Int32)size, (int*)values); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.ES11.All)map, (Int32)size, (IntPtr)values); #if DEBUG } #endif @@ -11213,7 +11604,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES11.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.ES11.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -11240,7 +11631,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES11.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.ES11.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -11255,7 +11646,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorex((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -11287,7 +11678,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterf((OpenTK.Graphics.ES11.All)pname, (Single)param); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.ES11.All)pname, (Single)param); #if DEBUG } #endif @@ -11323,7 +11714,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -11358,7 +11749,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -11373,7 +11764,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterx((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[269], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -11392,7 +11783,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glPointParameterxv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -11410,7 +11801,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterxv((OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -11432,7 +11823,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSize((Single)size); + InteropHelper.Call(EntryPoints[273], (Single)size); #if DEBUG } #endif @@ -11447,7 +11838,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSizex((int)size); + InteropHelper.Call(EntryPoints[275], (int)size); #if DEBUG } #endif @@ -11474,7 +11865,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffset((Single)factor, (Single)units); + InteropHelper.Call(EntryPoints[277], (Single)factor, (Single)units); #if DEBUG } #endif @@ -11489,7 +11880,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffsetx((int)factor, (int)units); + InteropHelper.Call(EntryPoints[278], (int)factor, (int)units); #if DEBUG } #endif @@ -11504,7 +11895,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopMatrix(); + InteropHelper.Call(EntryPoints[280]); #if DEBUG } #endif @@ -11521,7 +11912,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushMatrix(); + InteropHelper.Call(EntryPoints[282]); #if DEBUG } #endif @@ -11564,7 +11955,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -11611,7 +12002,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -11663,7 +12054,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -11715,7 +12106,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -11767,7 +12158,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -11815,7 +12206,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -11861,7 +12252,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -11912,7 +12303,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -11963,7 +12354,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -12014,7 +12405,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[291], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -12047,7 +12438,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatef((Single)angle, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[299], (Single)angle, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -12062,7 +12453,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatex((int)angle, (int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[300], (int)angle, (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -12089,7 +12480,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverage((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[302], (Single)value, (bool)invert); #if DEBUG } #endif @@ -12104,7 +12495,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoveragex((int)value, (bool)invert); + InteropHelper.Call(EntryPoints[304], (int)value, (bool)invert); #if DEBUG } #endif @@ -12126,7 +12517,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalef((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[306], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -12141,7 +12532,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalex((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[307], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -12168,7 +12559,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[309], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -12191,7 +12582,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShadeModel((OpenTK.Graphics.ES11.ShadingModel)mode); + InteropHelper.Call(EntryPoints[311], (OpenTK.Graphics.ES11.ShadingModel)mode); #if DEBUG } #endif @@ -12213,7 +12604,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShadeModel((OpenTK.Graphics.ES11.ShadingModel)mode); + InteropHelper.Call(EntryPoints[311], (OpenTK.Graphics.ES11.ShadingModel)mode); #if DEBUG } #endif @@ -12245,7 +12636,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[313], (OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -12279,7 +12670,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[313], (OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -12311,7 +12702,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[313], (OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -12344,7 +12735,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[313], (OpenTK.Graphics.ES11.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -12366,7 +12757,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[314], (UInt32)mask); #if DEBUG } #endif @@ -12389,7 +12780,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[314], (UInt32)mask); #if DEBUG } #endif @@ -12422,7 +12813,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES11.StencilOp)fail, (OpenTK.Graphics.ES11.StencilOp)zfail, (OpenTK.Graphics.ES11.StencilOp)zpass); + InteropHelper.Call(EntryPoints[315], (OpenTK.Graphics.ES11.StencilOp)fail, (OpenTK.Graphics.ES11.StencilOp)zfail, (OpenTK.Graphics.ES11.StencilOp)zpass); #if DEBUG } #endif @@ -12454,7 +12845,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES11.StencilOp)fail, (OpenTK.Graphics.ES11.StencilOp)zfail, (OpenTK.Graphics.ES11.StencilOp)zpass); + InteropHelper.Call(EntryPoints[315], (OpenTK.Graphics.ES11.StencilOp)fail, (OpenTK.Graphics.ES11.StencilOp)zfail, (OpenTK.Graphics.ES11.StencilOp)zpass); #if DEBUG } #endif @@ -12492,7 +12883,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -12534,7 +12925,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12581,7 +12972,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12628,7 +13019,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12675,7 +13066,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -12718,7 +13109,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -12759,7 +13150,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12805,7 +13196,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12851,7 +13242,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -12897,7 +13288,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[333], (Int32)size, (OpenTK.Graphics.ES11.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -12936,7 +13327,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvf((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[334], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single)param); #if DEBUG } #endif @@ -12968,7 +13359,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvf((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[334], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single)param); #if DEBUG } #endif @@ -13005,7 +13396,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[335], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13041,7 +13432,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[335], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13077,7 +13468,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[335], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13112,7 +13503,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvfv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[335], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13145,7 +13536,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvi((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[336], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32)param); #if DEBUG } #endif @@ -13177,7 +13568,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvi((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[336], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32)param); #if DEBUG } #endif @@ -13214,7 +13605,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[337], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13250,7 +13641,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[337], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13286,7 +13677,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[337], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13321,7 +13712,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnviv((OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[337], (OpenTK.Graphics.ES11.TextureEnvTarget)target, (OpenTK.Graphics.ES11.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13336,7 +13727,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvx((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[338], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -13355,7 +13746,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[340], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13373,7 +13764,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[340], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13436,7 +13827,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -13503,7 +13894,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -13575,7 +13966,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -13647,7 +14038,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -13719,7 +14110,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -13787,7 +14178,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -13853,7 +14244,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -13924,7 +14315,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -13995,7 +14386,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -14066,7 +14457,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -14113,7 +14504,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -14153,7 +14544,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -14198,7 +14589,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14242,7 +14633,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14286,7 +14677,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14329,7 +14720,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14370,7 +14761,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -14410,7 +14801,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -14455,7 +14846,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14499,7 +14890,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14543,7 +14934,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14586,7 +14977,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES11.TextureTarget)target, (OpenTK.Graphics.ES11.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14601,7 +14992,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterx((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -14620,7 +15011,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14638,7 +15029,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14701,7 +15092,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -14768,7 +15159,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -14840,7 +15231,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -14912,7 +15303,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -14984,7 +15375,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -15052,7 +15443,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -15118,7 +15509,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -15189,7 +15580,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -15260,7 +15651,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -15331,7 +15722,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES11.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.PixelFormat)format, (OpenTK.Graphics.ES11.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -15359,7 +15750,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatef((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[364], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -15374,7 +15765,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatex((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[365], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -15412,7 +15803,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -15454,7 +15845,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15501,7 +15892,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15548,7 +15939,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15595,7 +15986,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -15638,7 +16029,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -15679,7 +16070,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15725,7 +16116,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15771,7 +16162,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -15817,7 +16208,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[380], (Int32)size, (OpenTK.Graphics.ES11.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -15850,7 +16241,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[381], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -15879,7 +16270,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.ES11.All)mode); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES11.All)mode); #if DEBUG } #endif @@ -15898,7 +16289,7 @@ namespace OpenTK.Graphics.ES11 { fixed (OpenTK.Graphics.ES11.All* attachments_ptr = attachments) { - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES11.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES11.All*)attachments_ptr); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES11.All)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -15919,7 +16310,7 @@ namespace OpenTK.Graphics.ES11 { fixed (OpenTK.Graphics.ES11.All* attachments_ptr = &attachments) { - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES11.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES11.All*)attachments_ptr); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES11.All)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -15937,7 +16328,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES11.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES11.All*)attachments); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES11.All)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -15969,7 +16360,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRangeEXT((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -15984,7 +16375,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleEXT((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[118], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -16000,7 +16391,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleEXT((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[118], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -16015,7 +16406,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetGraphicsResetStatusEXT(); + return InteropHelper.CallReturn(EntryPoints[149]); #if DEBUG } #endif @@ -16034,7 +16425,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -16055,7 +16446,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16074,7 +16465,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16094,7 +16485,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -16116,7 +16507,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16135,7 +16526,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16154,7 +16545,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -16175,7 +16566,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16194,7 +16585,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16214,7 +16605,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -16236,7 +16627,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16255,7 +16646,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16292,7 +16683,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[217], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -16330,7 +16721,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[217], (OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -16373,7 +16764,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -16418,7 +16809,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -16459,7 +16850,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -16501,7 +16892,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -16545,7 +16936,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -16585,7 +16976,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -16632,7 +17023,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -16685,7 +17076,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -16743,7 +17134,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -16801,7 +17192,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -16859,7 +17250,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -16914,7 +17305,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -16967,7 +17358,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17025,7 +17416,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17083,7 +17474,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17141,7 +17532,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -17193,7 +17584,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -17241,7 +17632,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17294,7 +17685,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17347,7 +17738,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17400,7 +17791,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -17452,7 +17843,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -17504,7 +17895,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17561,7 +17952,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17618,7 +18009,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17675,7 +18066,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -17729,7 +18120,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -17781,7 +18172,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17838,7 +18229,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17895,7 +18286,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -17952,7 +18343,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -18003,7 +18394,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -18050,7 +18441,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -18102,7 +18493,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -18154,7 +18545,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -18206,7 +18597,7 @@ namespace OpenTK.Graphics.ES11 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES11.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.ES11.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -18227,7 +18618,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[290], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data); #if DEBUG } #endif @@ -18246,7 +18637,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[290], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -18270,7 +18661,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[290], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -18294,7 +18685,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[290], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -18318,7 +18709,7 @@ namespace OpenTK.Graphics.ES11 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[290], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -18366,7 +18757,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.ES11.All)target, (Int32)samples, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.ES11.All)target, (Int32)samples, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -18403,7 +18794,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage1DEXT((OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[357], (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -18445,7 +18836,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DEXT((OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[358], (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -18492,7 +18883,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DEXT((OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -18507,7 +18898,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[361], (UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -18523,7 +18914,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[361], (UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -18538,7 +18929,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[362], (UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -18554,7 +18945,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[362], (UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -18569,7 +18960,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[363], (UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -18585,7 +18976,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[363], (UInt32)texture, (OpenTK.Graphics.ES11.All)target, (Int32)levels, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -18620,7 +19011,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* eqn_ptr = eqn) { - Delegates.glClipPlanefIMG((OpenTK.Graphics.ES11.All)p, (Single*)eqn_ptr); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn_ptr); } } #if DEBUG @@ -18653,7 +19044,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* eqn_ptr = &eqn) { - Delegates.glClipPlanefIMG((OpenTK.Graphics.ES11.All)p, (Single*)eqn_ptr); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn_ptr); } } #if DEBUG @@ -18683,7 +19074,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanefIMG((OpenTK.Graphics.ES11.All)p, (Single*)eqn); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn); #if DEBUG } #endif @@ -18702,7 +19093,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* eqn_ptr = eqn) { - Delegates.glClipPlanexIMG((OpenTK.Graphics.ES11.All)p, (int*)eqn_ptr); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn_ptr); } } #if DEBUG @@ -18723,7 +19114,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* eqn_ptr = &eqn) { - Delegates.glClipPlanexIMG((OpenTK.Graphics.ES11.All)p, (int*)eqn_ptr); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn_ptr); } } #if DEBUG @@ -18741,7 +19132,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanexIMG((OpenTK.Graphics.ES11.All)p, (int*)eqn); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES11.All)p, (IntPtr)eqn); #if DEBUG } #endif @@ -18756,7 +19147,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleIMG((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -18772,7 +19163,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleIMG((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -18814,7 +19205,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleIMG((OpenTK.Graphics.ES11.All)target, (Int32)samples, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[296], (OpenTK.Graphics.ES11.All)target, (Int32)samples, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -18837,7 +19228,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -18858,7 +19249,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -18878,7 +19269,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -18899,7 +19290,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -18917,7 +19308,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -18937,7 +19328,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -18959,7 +19350,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -18977,7 +19368,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -18992,7 +19383,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[108], (UInt32)fence); #if DEBUG } #endif @@ -19008,7 +19399,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[108], (UInt32)fence); #if DEBUG } #endif @@ -19028,7 +19419,7 @@ namespace OpenTK.Graphics.ES11 const Int32 n = 1; Int32 retval; Int32* fences_ptr = &retval; - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences_ptr); return retval; } #if DEBUG @@ -19049,7 +19440,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -19070,7 +19461,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -19089,7 +19480,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -19109,7 +19500,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -19131,7 +19522,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -19150,7 +19541,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[128], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -19169,7 +19560,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19190,7 +19581,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19209,7 +19600,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[144], (UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19229,7 +19620,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19251,7 +19642,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19270,7 +19661,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[144], (UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19285,7 +19676,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[186], (UInt32)fence); #if DEBUG } #endif @@ -19301,7 +19692,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[186], (UInt32)fence); #if DEBUG } #endif @@ -19316,7 +19707,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES11.All)condition); + InteropHelper.Call(EntryPoints[310], (UInt32)fence, (OpenTK.Graphics.ES11.All)condition); #if DEBUG } #endif @@ -19332,7 +19723,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES11.All)condition); + InteropHelper.Call(EntryPoints[310], (UInt32)fence, (OpenTK.Graphics.ES11.All)condition); #if DEBUG } #endif @@ -19347,7 +19738,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[316], (UInt32)fence); #if DEBUG } #endif @@ -19363,7 +19754,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[316], (UInt32)fence); #if DEBUG } #endif @@ -19382,7 +19773,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAccumxOES((OpenTK.Graphics.ES11.All)op, (int)value); + InteropHelper.Call(EntryPoints[0], (OpenTK.Graphics.ES11.All)op, (int)value); #if DEBUG } #endif @@ -19397,7 +19788,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFuncxOES((OpenTK.Graphics.ES11.All)func, (int)@ref); + InteropHelper.Call(EntryPoints[4], (OpenTK.Graphics.ES11.All)func, (int)@ref); #if DEBUG } #endif @@ -19424,7 +19815,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES11.All)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -19452,7 +19843,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES11.All)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -19479,7 +19870,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.ES11.All)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -19507,7 +19898,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.ES11.All)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -19529,7 +19920,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayOES((UInt32)array); + InteropHelper.Call(EntryPoints[9], (UInt32)array); #if DEBUG } #endif @@ -19552,7 +19943,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayOES((UInt32)array); + InteropHelper.Call(EntryPoints[9], (UInt32)array); #if DEBUG } #endif @@ -19571,7 +19962,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* bitmap_ptr = bitmap) { - Delegates.glBitmapxOES((Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (Byte*)bitmap_ptr); + InteropHelper.Call(EntryPoints[10], (Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (IntPtr)bitmap_ptr); } } #if DEBUG @@ -19592,7 +19983,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* bitmap_ptr = &bitmap) { - Delegates.glBitmapxOES((Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (Byte*)bitmap_ptr); + InteropHelper.Call(EntryPoints[10], (Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (IntPtr)bitmap_ptr); } } #if DEBUG @@ -19610,7 +20001,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBitmapxOES((Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (Byte*)bitmap); + InteropHelper.Call(EntryPoints[10], (Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (IntPtr)bitmap); #if DEBUG } #endif @@ -19625,7 +20016,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColorxOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[11], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -19652,7 +20043,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationOES((OpenTK.Graphics.ES11.All)mode); + InteropHelper.Call(EntryPoints[13], (OpenTK.Graphics.ES11.All)mode); #if DEBUG } #endif @@ -19684,7 +20075,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateOES((OpenTK.Graphics.ES11.All)modeRGB, (OpenTK.Graphics.ES11.All)modeAlpha); + InteropHelper.Call(EntryPoints[14], (OpenTK.Graphics.ES11.All)modeRGB, (OpenTK.Graphics.ES11.All)modeAlpha); #if DEBUG } #endif @@ -19726,7 +20117,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateOES((OpenTK.Graphics.ES11.All)srcRGB, (OpenTK.Graphics.ES11.All)dstRGB, (OpenTK.Graphics.ES11.All)srcAlpha, (OpenTK.Graphics.ES11.All)dstAlpha); + InteropHelper.Call(EntryPoints[16], (OpenTK.Graphics.ES11.All)srcRGB, (OpenTK.Graphics.ES11.All)dstRGB, (OpenTK.Graphics.ES11.All)srcAlpha, (OpenTK.Graphics.ES11.All)dstAlpha); #if DEBUG } #endif @@ -19748,7 +20139,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatusOES((OpenTK.Graphics.ES11.All)target); + return InteropHelper.CallReturn(EntryPoints[19], (OpenTK.Graphics.ES11.All)target); #if DEBUG } #endif @@ -19763,7 +20154,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearAccumxOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[21], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -19778,7 +20169,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColorxOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[24], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -19800,7 +20191,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthfOES((Single)depth); + InteropHelper.Call(EntryPoints[26], (Single)depth); #if DEBUG } #endif @@ -19815,7 +20206,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthxOES((int)depth); + InteropHelper.Call(EntryPoints[28], (int)depth); #if DEBUG } #endif @@ -19846,7 +20237,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* equation_ptr = equation) { - Delegates.glClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -19879,7 +20270,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* equation_ptr = &equation) { - Delegates.glClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -19909,7 +20300,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -19928,7 +20319,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = equation) { - Delegates.glClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -19949,7 +20340,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = &equation) { - Delegates.glClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -19967,7 +20358,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -19982,7 +20373,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3xOES((int)red, (int)green, (int)blue); + InteropHelper.Call(EntryPoints[38], (int)red, (int)green, (int)blue); #if DEBUG } #endif @@ -20001,7 +20392,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* components_ptr = components) { - Delegates.glColor3xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[39], (IntPtr)components_ptr); } } #if DEBUG @@ -20022,7 +20413,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* components_ptr = &components) { - Delegates.glColor3xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[39], (IntPtr)components_ptr); } } #if DEBUG @@ -20040,7 +20431,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3xvOES((int*)components); + InteropHelper.Call(EntryPoints[39], (IntPtr)components); #if DEBUG } #endif @@ -20055,7 +20446,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4xOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[43], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -20074,7 +20465,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* components_ptr = components) { - Delegates.glColor4xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[44], (IntPtr)components_ptr); } } #if DEBUG @@ -20095,7 +20486,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* components_ptr = &components) { - Delegates.glColor4xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[44], (IntPtr)components_ptr); } } #if DEBUG @@ -20113,7 +20504,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4xvOES((int*)components); + InteropHelper.Call(EntryPoints[44], (IntPtr)components); #if DEBUG } #endif @@ -20128,7 +20519,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterxOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -20147,7 +20538,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glConvolutionParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20165,7 +20556,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20180,7 +20571,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCurrentPaletteMatrixOES((UInt32)matrixpaletteindex); + InteropHelper.Call(EntryPoints[55], (UInt32)matrixpaletteindex); #if DEBUG } #endif @@ -20196,7 +20587,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCurrentPaletteMatrixOES((UInt32)matrixpaletteindex); + InteropHelper.Call(EntryPoints[55], (UInt32)matrixpaletteindex); #if DEBUG } #endif @@ -20215,7 +20606,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -20236,7 +20627,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -20268,7 +20659,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -20301,7 +20692,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -20331,7 +20722,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -20363,7 +20754,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -20397,7 +20788,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -20427,7 +20818,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -20446,7 +20837,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -20467,7 +20858,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -20499,7 +20890,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -20532,7 +20923,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -20562,7 +20953,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -20594,7 +20985,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -20628,7 +21019,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -20658,7 +21049,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -20677,7 +21068,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -20698,7 +21089,7 @@ namespace OpenTK.Graphics.ES11 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -20730,7 +21121,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -20763,7 +21154,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -20793,7 +21184,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -20825,7 +21216,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -20859,7 +21250,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -20889,7 +21280,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -20916,7 +21307,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangefOES((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[66], (Single)n, (Single)f); #if DEBUG } #endif @@ -20931,7 +21322,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangexOES((int)n, (int)f); + InteropHelper.Call(EntryPoints[68], (int)n, (int)f); #if DEBUG } #endif @@ -20946,7 +21337,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexfOES((Single)x, (Single)y, (Single)z, (Single)width, (Single)height); + InteropHelper.Call(EntryPoints[75], (Single)x, (Single)y, (Single)z, (Single)width, (Single)height); #if DEBUG } #endif @@ -20965,7 +21356,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* coords_ptr = coords) { - Delegates.glDrawTexfvOES((Single*)coords_ptr); + InteropHelper.Call(EntryPoints[76], (IntPtr)coords_ptr); } } #if DEBUG @@ -20986,7 +21377,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* coords_ptr = &coords) { - Delegates.glDrawTexfvOES((Single*)coords_ptr); + InteropHelper.Call(EntryPoints[76], (IntPtr)coords_ptr); } } #if DEBUG @@ -21004,7 +21395,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexfvOES((Single*)coords); + InteropHelper.Call(EntryPoints[76], (IntPtr)coords); #if DEBUG } #endif @@ -21019,7 +21410,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexiOES((Int32)x, (Int32)y, (Int32)z, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[77], (Int32)x, (Int32)y, (Int32)z, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -21038,7 +21429,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* coords_ptr = coords) { - Delegates.glDrawTexivOES((Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[78], (IntPtr)coords_ptr); } } #if DEBUG @@ -21059,7 +21450,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* coords_ptr = &coords) { - Delegates.glDrawTexivOES((Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[78], (IntPtr)coords_ptr); } } #if DEBUG @@ -21077,7 +21468,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexivOES((Int32*)coords); + InteropHelper.Call(EntryPoints[78], (IntPtr)coords); #if DEBUG } #endif @@ -21092,7 +21483,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexsOES((Int16)x, (Int16)y, (Int16)z, (Int16)width, (Int16)height); + InteropHelper.Call(EntryPoints[79], (Int16)x, (Int16)y, (Int16)z, (Int16)width, (Int16)height); #if DEBUG } #endif @@ -21111,7 +21502,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int16* coords_ptr = coords) { - Delegates.glDrawTexsvOES((Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[80], (IntPtr)coords_ptr); } } #if DEBUG @@ -21132,7 +21523,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int16* coords_ptr = &coords) { - Delegates.glDrawTexsvOES((Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[80], (IntPtr)coords_ptr); } } #if DEBUG @@ -21150,7 +21541,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexsvOES((Int16*)coords); + InteropHelper.Call(EntryPoints[80], (IntPtr)coords); #if DEBUG } #endif @@ -21165,7 +21556,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexxOES((int)x, (int)y, (int)z, (int)width, (int)height); + InteropHelper.Call(EntryPoints[81], (int)x, (int)y, (int)z, (int)width, (int)height); #if DEBUG } #endif @@ -21184,7 +21575,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glDrawTexxvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[82], (IntPtr)coords_ptr); } } #if DEBUG @@ -21205,7 +21596,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glDrawTexxvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[82], (IntPtr)coords_ptr); } } #if DEBUG @@ -21223,7 +21614,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTexxvOES((int*)coords); + InteropHelper.Call(EntryPoints[82], (IntPtr)coords); #if DEBUG } #endif @@ -21238,7 +21629,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEGLImageTargetRenderbufferStorageOES((OpenTK.Graphics.ES11.All)target, (IntPtr)image); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES11.All)target, (IntPtr)image); #if DEBUG } #endif @@ -21253,7 +21644,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEGLImageTargetTexture2DOES((OpenTK.Graphics.ES11.All)target, (IntPtr)image); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES11.All)target, (IntPtr)image); #if DEBUG } #endif @@ -21268,7 +21659,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1xOES((int)u); + InteropHelper.Call(EntryPoints[89], (int)u); #if DEBUG } #endif @@ -21284,7 +21675,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1xvOES((int*)coords); + InteropHelper.Call(EntryPoints[90], (IntPtr)coords); #if DEBUG } #endif @@ -21299,7 +21690,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2xOES((int)u, (int)v); + InteropHelper.Call(EntryPoints[91], (int)u, (int)v); #if DEBUG } #endif @@ -21318,7 +21709,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glEvalCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[92], (IntPtr)coords_ptr); } } #if DEBUG @@ -21339,7 +21730,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glEvalCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[92], (IntPtr)coords_ptr); } } #if DEBUG @@ -21357,7 +21748,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[92], (IntPtr)coords); #if DEBUG } #endif @@ -21376,7 +21767,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* buffer_ptr = buffer) { - Delegates.glFeedbackBufferxOES((Int32)n, (OpenTK.Graphics.ES11.All)type, (int*)buffer_ptr); + InteropHelper.Call(EntryPoints[105], (Int32)n, (OpenTK.Graphics.ES11.All)type, (IntPtr)buffer_ptr); } } #if DEBUG @@ -21397,7 +21788,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* buffer_ptr = &buffer) { - Delegates.glFeedbackBufferxOES((Int32)n, (OpenTK.Graphics.ES11.All)type, (int*)buffer_ptr); + InteropHelper.Call(EntryPoints[105], (Int32)n, (OpenTK.Graphics.ES11.All)type, (IntPtr)buffer_ptr); } } #if DEBUG @@ -21415,7 +21806,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFeedbackBufferxOES((Int32)n, (OpenTK.Graphics.ES11.All)type, (int*)buffer); + InteropHelper.Call(EntryPoints[105], (Int32)n, (OpenTK.Graphics.ES11.All)type, (IntPtr)buffer); #if DEBUG } #endif @@ -21430,7 +21821,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogxOES((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[114], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -21449,7 +21840,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* param_ptr = param) { - Delegates.glFogxvOES((OpenTK.Graphics.ES11.All)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[116], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -21467,7 +21858,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogxvOES((OpenTK.Graphics.ES11.All)pname, (int*)param); + InteropHelper.Call(EntryPoints[116], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param); #if DEBUG } #endif @@ -21504,7 +21895,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbufferOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[117], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -21542,7 +21933,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbufferOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[117], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -21557,7 +21948,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[120], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -21573,7 +21964,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[120], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -21605,7 +21996,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumfOES((Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); + InteropHelper.Call(EntryPoints[123], (Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); #if DEBUG } #endif @@ -21620,7 +22011,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumxOES((int)l, (int)r, (int)b, (int)t, (int)n, (int)f); + InteropHelper.Call(EntryPoints[125], (int)l, (int)r, (int)b, (int)t, (int)n, (int)f); #if DEBUG } #endif @@ -21642,7 +22033,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmapOES((OpenTK.Graphics.ES11.All)target); + InteropHelper.Call(EntryPoints[127], (OpenTK.Graphics.ES11.All)target); #if DEBUG } #endif @@ -21662,7 +22053,7 @@ namespace OpenTK.Graphics.ES11 const Int32 n = 1; Int32 retval; Int32* framebuffers_ptr = &retval; - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers_ptr); return retval; } #if DEBUG @@ -21695,7 +22086,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -21728,7 +22119,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -21759,7 +22150,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -21791,7 +22182,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -21825,7 +22216,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -21856,7 +22247,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[129], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -21876,7 +22267,7 @@ namespace OpenTK.Graphics.ES11 const Int32 n = 1; Int32 retval; Int32* renderbuffers_ptr = &retval; - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers_ptr); return retval; } #if DEBUG @@ -21909,7 +22300,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -21942,7 +22333,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -21973,7 +22364,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -22005,7 +22396,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -22039,7 +22430,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -22070,7 +22461,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[130], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -22090,7 +22481,7 @@ namespace OpenTK.Graphics.ES11 const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -22123,7 +22514,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -22156,7 +22547,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -22187,7 +22578,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -22219,7 +22610,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -22253,7 +22644,7 @@ namespace OpenTK.Graphics.ES11 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -22284,7 +22675,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[132], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -22299,7 +22690,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[135], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22318,7 +22709,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[135], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -22342,7 +22733,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[135], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -22366,7 +22757,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[135], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -22390,7 +22781,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[135], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -22427,7 +22818,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* equation_ptr = equation) { - Delegates.glGetClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -22460,7 +22851,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* equation_ptr = &equation) { - Delegates.glGetClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -22491,7 +22882,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -22510,7 +22901,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = equation) { - Delegates.glGetClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[139], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -22531,7 +22922,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* equation_ptr = &equation) { - Delegates.glGetClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[139], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -22550,7 +22941,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation); + InteropHelper.Call(EntryPoints[139], (OpenTK.Graphics.ES11.All)plane, (IntPtr)equation); #if DEBUG } #endif @@ -22569,7 +22960,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetConvolutionParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -22590,7 +22981,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -22609,7 +23000,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22628,7 +23019,7 @@ namespace OpenTK.Graphics.ES11 { int retval; int* @params_ptr = &retval; - Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -22649,7 +23040,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -22670,7 +23061,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -22689,7 +23080,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22730,7 +23121,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -22773,7 +23164,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -22814,7 +23205,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22833,7 +23224,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetHistogramParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -22854,7 +23245,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetHistogramParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -22873,7 +23264,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22892,7 +23283,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetLightxOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[154], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -22913,7 +23304,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetLightxOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[154], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -22932,7 +23323,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightxOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[154], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22951,7 +23342,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* v_ptr = v) { - Delegates.glGetMapxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)query, (int*)v_ptr); + InteropHelper.Call(EntryPoints[157], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)query, (IntPtr)v_ptr); } } #if DEBUG @@ -22972,7 +23363,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* v_ptr = &v) { - Delegates.glGetMapxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)query, (int*)v_ptr); + InteropHelper.Call(EntryPoints[157], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)query, (IntPtr)v_ptr); v = *v_ptr; } } @@ -22991,7 +23382,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)query, (int*)v); + InteropHelper.Call(EntryPoints[157], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)query, (IntPtr)v); #if DEBUG } #endif @@ -23006,7 +23397,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialxOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[159], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -23025,7 +23416,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23043,7 +23434,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23079,7 +23470,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[166], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23117,7 +23508,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[166], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23153,7 +23544,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[166], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23172,7 +23563,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23193,7 +23584,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23212,7 +23603,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23248,7 +23639,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23286,7 +23677,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23322,7 +23713,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23358,7 +23749,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23396,7 +23787,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23432,7 +23823,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23451,7 +23842,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23472,7 +23863,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23491,7 +23882,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23510,7 +23901,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetTexLevelParameterxvOES((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[176], (OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23531,7 +23922,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexLevelParameterxvOES((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[176], (OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23550,7 +23941,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexLevelParameterxvOES((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[176], (OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23569,7 +23960,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glGetTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23590,7 +23981,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23609,7 +24000,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23624,7 +24015,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexxOES((int)component); + InteropHelper.Call(EntryPoints[182], (int)component); #if DEBUG } #endif @@ -23640,7 +24031,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexxvOES((int*)component); + InteropHelper.Call(EntryPoints[183], (IntPtr)component); #if DEBUG } #endif @@ -23662,7 +24053,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebufferOES((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[187], (UInt32)framebuffer); #if DEBUG } #endif @@ -23685,7 +24076,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebufferOES((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[187], (UInt32)framebuffer); #if DEBUG } #endif @@ -23707,7 +24098,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbufferOES((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[188], (UInt32)renderbuffer); #if DEBUG } #endif @@ -23730,7 +24121,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbufferOES((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[188], (UInt32)renderbuffer); #if DEBUG } #endif @@ -23752,7 +24143,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayOES((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[191], (UInt32)array); #if DEBUG } #endif @@ -23775,7 +24166,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayOES((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[191], (UInt32)array); #if DEBUG } #endif @@ -23790,7 +24181,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelxOES((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[197], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -23809,7 +24200,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* param_ptr = param) { - Delegates.glLightModelxvOES((OpenTK.Graphics.ES11.All)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[199], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -23827,7 +24218,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelxvOES((OpenTK.Graphics.ES11.All)pname, (int*)param); + InteropHelper.Call(EntryPoints[199], (OpenTK.Graphics.ES11.All)pname, (IntPtr)param); #if DEBUG } #endif @@ -23842,7 +24233,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightxOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[201], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -23861,7 +24252,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[203], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23879,7 +24270,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[203], (OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23894,7 +24285,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidthxOES((int)width); + InteropHelper.Call(EntryPoints[206], (int)width); #if DEBUG } #endif @@ -23913,7 +24304,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = m) { - Delegates.glLoadMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[210], (IntPtr)m_ptr); } } #if DEBUG @@ -23934,7 +24325,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = &m) { - Delegates.glLoadMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[210], (IntPtr)m_ptr); } } #if DEBUG @@ -23952,7 +24343,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[210], (IntPtr)m); #if DEBUG } #endif @@ -23967,7 +24358,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadPaletteFromModelViewMatrixOES(); + InteropHelper.Call(EntryPoints[211]); #if DEBUG } #endif @@ -23986,7 +24377,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = m) { - Delegates.glLoadTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[212], (IntPtr)m_ptr); } } #if DEBUG @@ -24007,7 +24398,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = &m) { - Delegates.glLoadTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[212], (IntPtr)m_ptr); } } #if DEBUG @@ -24025,7 +24416,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadTransposeMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[212], (IntPtr)m); #if DEBUG } #endif @@ -24040,7 +24431,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap1xOES((OpenTK.Graphics.ES11.All)target, (int)u1, (int)u2, (Int32)stride, (Int32)order, (int)points); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES11.All)target, (int)u1, (int)u2, (Int32)stride, (Int32)order, (int)points); #if DEBUG } #endif @@ -24055,7 +24446,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap2xOES((OpenTK.Graphics.ES11.All)target, (int)u1, (int)u2, (Int32)ustride, (Int32)uorder, (int)v1, (int)v2, (Int32)vstride, (Int32)vorder, (int)points); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.ES11.All)target, (int)u1, (int)u2, (Int32)ustride, (Int32)uorder, (int)v1, (int)v2, (Int32)vstride, (Int32)vorder, (int)points); #if DEBUG } #endif @@ -24082,7 +24473,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)access); + return InteropHelper.CallReturn(EntryPoints[216], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)access); #if DEBUG } #endif @@ -24097,7 +24488,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid1xOES((Int32)n, (int)u1, (int)u2); + InteropHelper.Call(EntryPoints[218], (Int32)n, (int)u1, (int)u2); #if DEBUG } #endif @@ -24112,7 +24503,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid2xOES((Int32)n, (int)u1, (int)u2, (int)v1, (int)v2); + InteropHelper.Call(EntryPoints[219], (Int32)n, (int)u1, (int)u2, (int)v1, (int)v2); #if DEBUG } #endif @@ -24127,7 +24518,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialxOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[223], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -24146,7 +24537,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* param_ptr = param) { - Delegates.glMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -24164,7 +24555,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)param); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (IntPtr)param); #if DEBUG } #endif @@ -24179,7 +24570,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[226], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -24198,7 +24589,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[226], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -24222,7 +24613,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[226], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -24246,7 +24637,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[226], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -24270,7 +24661,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[226], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -24303,7 +24694,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.ES11.All)texture, (SByte)s); #if DEBUG } #endif @@ -24331,7 +24722,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.ES11.All)texture, (SByte)s); #if DEBUG } #endif @@ -24359,7 +24750,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24387,7 +24778,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24402,7 +24793,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1xOES((OpenTK.Graphics.ES11.All)texture, (int)s); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES11.All)texture, (int)s); #if DEBUG } #endif @@ -24418,7 +24809,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords); + InteropHelper.Call(EntryPoints[233], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24445,7 +24836,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[234], (OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t); #if DEBUG } #endif @@ -24473,7 +24864,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[234], (OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t); #if DEBUG } #endif @@ -24504,7 +24895,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24537,7 +24928,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24567,7 +24958,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24599,7 +24990,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24633,7 +25024,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24663,7 +25054,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24678,7 +25069,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2xOES((OpenTK.Graphics.ES11.All)texture, (int)s, (int)t); + InteropHelper.Call(EntryPoints[236], (OpenTK.Graphics.ES11.All)texture, (int)s, (int)t); #if DEBUG } #endif @@ -24697,7 +25088,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glMultiTexCoord2xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[237], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24718,7 +25109,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glMultiTexCoord2xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[237], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24736,7 +25127,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords); + InteropHelper.Call(EntryPoints[237], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24763,7 +25154,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -24791,7 +25182,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -24822,7 +25213,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24855,7 +25246,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24885,7 +25276,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24917,7 +25308,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24951,7 +25342,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -24981,7 +25372,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -24996,7 +25387,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3xOES((OpenTK.Graphics.ES11.All)texture, (int)s, (int)t, (int)r); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.ES11.All)texture, (int)s, (int)t, (int)r); #if DEBUG } #endif @@ -25015,7 +25406,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glMultiTexCoord3xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25036,7 +25427,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glMultiTexCoord3xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25054,7 +25445,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -25081,7 +25472,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -25109,7 +25500,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bOES((OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.ES11.All)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -25140,7 +25531,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25173,7 +25564,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25203,7 +25594,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -25235,7 +25626,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25269,7 +25660,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25299,7 +25690,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.ES11.All)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -25314,7 +25705,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4xOES((OpenTK.Graphics.ES11.All)texture, (int)s, (int)t, (int)r, (int)q); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.ES11.All)texture, (int)s, (int)t, (int)r, (int)q); #if DEBUG } #endif @@ -25333,7 +25724,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glMultiTexCoord4xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25354,7 +25745,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glMultiTexCoord4xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -25372,7 +25763,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4xvOES((OpenTK.Graphics.ES11.All)texture, (int*)coords); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.ES11.All)texture, (IntPtr)coords); #if DEBUG } #endif @@ -25391,7 +25782,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = m) { - Delegates.glMultMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[250], (IntPtr)m_ptr); } } #if DEBUG @@ -25412,7 +25803,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = &m) { - Delegates.glMultMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[250], (IntPtr)m_ptr); } } #if DEBUG @@ -25430,7 +25821,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[250], (IntPtr)m); #if DEBUG } #endif @@ -25449,7 +25840,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = m) { - Delegates.glMultTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[251], (IntPtr)m_ptr); } } #if DEBUG @@ -25470,7 +25861,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* m_ptr = &m) { - Delegates.glMultTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[251], (IntPtr)m_ptr); } } #if DEBUG @@ -25488,7 +25879,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultTransposeMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[251], (IntPtr)m); #if DEBUG } #endif @@ -25503,7 +25894,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3xOES((int)nx, (int)ny, (int)nz); + InteropHelper.Call(EntryPoints[254], (int)nx, (int)ny, (int)nz); #if DEBUG } #endif @@ -25522,7 +25913,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glNormal3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[255], (IntPtr)coords_ptr); } } #if DEBUG @@ -25543,7 +25934,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glNormal3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[255], (IntPtr)coords_ptr); } } #if DEBUG @@ -25561,7 +25952,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[255], (IntPtr)coords); #if DEBUG } #endif @@ -25593,7 +25984,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthofOES((Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); + InteropHelper.Call(EntryPoints[258], (Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); #if DEBUG } #endif @@ -25608,7 +25999,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthoxOES((int)l, (int)r, (int)b, (int)t, (int)n, (int)f); + InteropHelper.Call(EntryPoints[260], (int)l, (int)r, (int)b, (int)t, (int)n, (int)f); #if DEBUG } #endif @@ -25623,7 +26014,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPassThroughxOES((int)token); + InteropHelper.Call(EntryPoints[261], (int)token); #if DEBUG } #endif @@ -25638,7 +26029,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransferxOES((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -25653,7 +26044,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelZoomxOES((int)xfactor, (int)yfactor); + InteropHelper.Call(EntryPoints[266], (int)xfactor, (int)yfactor); #if DEBUG } #endif @@ -25668,7 +26059,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterxOES((OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[270], (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -25687,7 +26078,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glPointParameterxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -25705,7 +26096,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -25720,7 +26111,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -25739,7 +26130,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -25763,7 +26154,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -25787,7 +26178,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -25811,7 +26202,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -25832,7 +26223,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSizexOES((int)size); + InteropHelper.Call(EntryPoints[276], (int)size); #if DEBUG } #endif @@ -25847,7 +26238,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffsetxOES((int)factor, (int)units); + InteropHelper.Call(EntryPoints[279], (int)factor, (int)units); #if DEBUG } #endif @@ -25867,7 +26258,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* textures_ptr = textures) fixed (int* priorities_ptr = priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[281], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -25889,7 +26280,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* textures_ptr = &textures) fixed (int* priorities_ptr = &priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[281], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -25907,7 +26298,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures, (int*)priorities); + InteropHelper.Call(EntryPoints[281], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -25928,7 +26319,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* textures_ptr = textures) fixed (int* priorities_ptr = priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[281], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -25951,7 +26342,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* textures_ptr = &textures) fixed (int* priorities_ptr = &priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[281], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -25969,7 +26360,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures, (int*)priorities); + InteropHelper.Call(EntryPoints[281], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -25989,7 +26380,7 @@ namespace OpenTK.Graphics.ES11 fixed (int* mantissa_ptr = mantissa) fixed (Int32* exponent_ptr = exponent) { - return Delegates.glQueryMatrixxOES((int*)mantissa_ptr, (Int32*)exponent_ptr); + return InteropHelper.CallReturn(EntryPoints[283], (IntPtr)mantissa_ptr, (IntPtr)exponent_ptr); } } #if DEBUG @@ -26011,7 +26402,7 @@ namespace OpenTK.Graphics.ES11 fixed (int* mantissa_ptr = &mantissa) fixed (Int32* exponent_ptr = &exponent) { - Int32 retval = Delegates.glQueryMatrixxOES((int*)mantissa_ptr, (Int32*)exponent_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[283], (IntPtr)mantissa_ptr, (IntPtr)exponent_ptr); mantissa = *mantissa_ptr; exponent = *exponent_ptr; return retval; @@ -26032,7 +26423,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glQueryMatrixxOES((int*)mantissa, (Int32*)exponent); + return InteropHelper.CallReturn(EntryPoints[283], (IntPtr)mantissa, (IntPtr)exponent); #if DEBUG } #endif @@ -26047,7 +26438,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2xOES((int)x, (int)y); + InteropHelper.Call(EntryPoints[284], (int)x, (int)y); #if DEBUG } #endif @@ -26066,7 +26457,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glRasterPos2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[285], (IntPtr)coords_ptr); } } #if DEBUG @@ -26087,7 +26478,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glRasterPos2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[285], (IntPtr)coords_ptr); } } #if DEBUG @@ -26105,7 +26496,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[285], (IntPtr)coords); #if DEBUG } #endif @@ -26120,7 +26511,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3xOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[286], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -26139,7 +26530,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glRasterPos3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[287], (IntPtr)coords_ptr); } } #if DEBUG @@ -26160,7 +26551,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glRasterPos3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[287], (IntPtr)coords_ptr); } } #if DEBUG @@ -26178,7 +26569,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[287], (IntPtr)coords); #if DEBUG } #endif @@ -26193,7 +26584,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4xOES((int)x, (int)y, (int)z, (int)w); + InteropHelper.Call(EntryPoints[288], (int)x, (int)y, (int)z, (int)w); #if DEBUG } #endif @@ -26212,7 +26603,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glRasterPos4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[289], (IntPtr)coords_ptr); } } #if DEBUG @@ -26233,7 +26624,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glRasterPos4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[289], (IntPtr)coords_ptr); } } #if DEBUG @@ -26251,7 +26642,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4xvOES((int*)coords); + InteropHelper.Call(EntryPoints[289], (IntPtr)coords); #if DEBUG } #endif @@ -26266,7 +26657,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectxOES((int)x1, (int)y1, (int)x2, (int)y2); + InteropHelper.Call(EntryPoints[292], (int)x1, (int)y1, (int)x2, (int)y2); #if DEBUG } #endif @@ -26286,7 +26677,7 @@ namespace OpenTK.Graphics.ES11 fixed (int* v1_ptr = v1) fixed (int* v2_ptr = v2) { - Delegates.glRectxvOES((int*)v1_ptr, (int*)v2_ptr); + InteropHelper.Call(EntryPoints[293], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -26308,7 +26699,7 @@ namespace OpenTK.Graphics.ES11 fixed (int* v1_ptr = &v1) fixed (int* v2_ptr = &v2) { - Delegates.glRectxvOES((int*)v1_ptr, (int*)v2_ptr); + InteropHelper.Call(EntryPoints[293], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -26326,7 +26717,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectxvOES((int*)v1, (int*)v2); + InteropHelper.Call(EntryPoints[293], (IntPtr)v1, (IntPtr)v2); #if DEBUG } #endif @@ -26363,7 +26754,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[297], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -26378,7 +26769,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatexOES((int)angle, (int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[301], (int)angle, (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -26405,7 +26796,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverageOES((int)value, (bool)invert); + InteropHelper.Call(EntryPoints[303], (int)value, (bool)invert); #if DEBUG } #endif @@ -26420,7 +26811,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoveragexOES((int)value, (bool)invert); + InteropHelper.Call(EntryPoints[305], (int)value, (bool)invert); #if DEBUG } #endif @@ -26435,7 +26826,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalexOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[308], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -26457,7 +26848,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bOES((SByte)s); + InteropHelper.Call(EntryPoints[317], (SByte)s); #if DEBUG } #endif @@ -26480,7 +26871,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bOES((SByte)s); + InteropHelper.Call(EntryPoints[317], (SByte)s); #if DEBUG } #endif @@ -26503,7 +26894,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[318], (IntPtr)coords); #if DEBUG } #endif @@ -26526,7 +26917,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[318], (IntPtr)coords); #if DEBUG } #endif @@ -26541,7 +26932,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1xOES((int)s); + InteropHelper.Call(EntryPoints[319], (int)s); #if DEBUG } #endif @@ -26557,7 +26948,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1xvOES((int*)coords); + InteropHelper.Call(EntryPoints[320], (IntPtr)coords); #if DEBUG } #endif @@ -26579,7 +26970,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bOES((SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[321], (SByte)s, (SByte)t); #if DEBUG } #endif @@ -26602,7 +26993,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bOES((SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[321], (SByte)s, (SByte)t); #if DEBUG } #endif @@ -26628,7 +27019,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[322], (IntPtr)coords_ptr); } } #if DEBUG @@ -26656,7 +27047,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[322], (IntPtr)coords_ptr); } } #if DEBUG @@ -26681,7 +27072,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[322], (IntPtr)coords); #if DEBUG } #endif @@ -26708,7 +27099,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[322], (IntPtr)coords_ptr); } } #if DEBUG @@ -26737,7 +27128,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[322], (IntPtr)coords_ptr); } } #if DEBUG @@ -26762,7 +27153,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[322], (IntPtr)coords); #if DEBUG } #endif @@ -26777,7 +27168,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2xOES((int)s, (int)t); + InteropHelper.Call(EntryPoints[323], (int)s, (int)t); #if DEBUG } #endif @@ -26796,7 +27187,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glTexCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[324], (IntPtr)coords_ptr); } } #if DEBUG @@ -26817,7 +27208,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glTexCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[324], (IntPtr)coords_ptr); } } #if DEBUG @@ -26835,7 +27226,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[324], (IntPtr)coords); #if DEBUG } #endif @@ -26857,7 +27248,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bOES((SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[325], (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -26880,7 +27271,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bOES((SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[325], (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -26906,7 +27297,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[326], (IntPtr)coords_ptr); } } #if DEBUG @@ -26934,7 +27325,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[326], (IntPtr)coords_ptr); } } #if DEBUG @@ -26959,7 +27350,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[326], (IntPtr)coords); #if DEBUG } #endif @@ -26986,7 +27377,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[326], (IntPtr)coords_ptr); } } #if DEBUG @@ -27015,7 +27406,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[326], (IntPtr)coords_ptr); } } #if DEBUG @@ -27040,7 +27431,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[326], (IntPtr)coords); #if DEBUG } #endif @@ -27055,7 +27446,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3xOES((int)s, (int)t, (int)r); + InteropHelper.Call(EntryPoints[327], (int)s, (int)t, (int)r); #if DEBUG } #endif @@ -27074,7 +27465,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glTexCoord3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[328], (IntPtr)coords_ptr); } } #if DEBUG @@ -27095,7 +27486,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glTexCoord3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[328], (IntPtr)coords_ptr); } } #if DEBUG @@ -27113,7 +27504,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[328], (IntPtr)coords); #if DEBUG } #endif @@ -27135,7 +27526,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bOES((SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[329], (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -27158,7 +27549,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bOES((SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[329], (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -27184,7 +27575,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[330], (IntPtr)coords_ptr); } } #if DEBUG @@ -27212,7 +27603,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[330], (IntPtr)coords_ptr); } } #if DEBUG @@ -27237,7 +27628,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[330], (IntPtr)coords); #if DEBUG } #endif @@ -27264,7 +27655,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[330], (IntPtr)coords_ptr); } } #if DEBUG @@ -27293,7 +27684,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[330], (IntPtr)coords_ptr); } } #if DEBUG @@ -27318,7 +27709,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[330], (IntPtr)coords); #if DEBUG } #endif @@ -27333,7 +27724,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4xOES((int)s, (int)t, (int)r, (int)q); + InteropHelper.Call(EntryPoints[331], (int)s, (int)t, (int)r, (int)q); #if DEBUG } #endif @@ -27352,7 +27743,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glTexCoord4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[332], (IntPtr)coords_ptr); } } #if DEBUG @@ -27373,7 +27764,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glTexCoord4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[332], (IntPtr)coords_ptr); } } #if DEBUG @@ -27391,7 +27782,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4xvOES((int*)coords); + InteropHelper.Call(EntryPoints[332], (IntPtr)coords); #if DEBUG } #endif @@ -27406,7 +27797,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvxOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[339], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -27425,7 +27816,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[341], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27443,7 +27834,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[341], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27475,7 +27866,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenfOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single)param); + InteropHelper.Call(EntryPoints[342], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single)param); #if DEBUG } #endif @@ -27511,7 +27902,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Single* @params_ptr = @params) { - Delegates.glTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[343], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27546,7 +27937,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[343], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27578,7 +27969,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGeniOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32)param); + InteropHelper.Call(EntryPoints[344], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32)param); #if DEBUG } #endif @@ -27614,7 +28005,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[345], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27649,7 +28040,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[345], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27664,7 +28055,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenxOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[346], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -27683,7 +28074,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[347], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27701,7 +28092,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[347], (OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27716,7 +28107,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterxOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); + InteropHelper.Call(EntryPoints[354], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param); #if DEBUG } #endif @@ -27735,7 +28126,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* @params_ptr = @params) { - Delegates.glTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27753,7 +28144,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27768,7 +28159,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatexOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[366], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -27783,7 +28174,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBufferOES((OpenTK.Graphics.ES11.All)target); + return InteropHelper.CallReturn(EntryPoints[367], (OpenTK.Graphics.ES11.All)target); #if DEBUG } #endif @@ -27805,7 +28196,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bOES((SByte)x); + InteropHelper.Call(EntryPoints[368], (SByte)x); #if DEBUG } #endif @@ -27828,7 +28219,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bOES((SByte)x); + InteropHelper.Call(EntryPoints[368], (SByte)x); #if DEBUG } #endif @@ -27854,7 +28245,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glVertex2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[369], (IntPtr)coords_ptr); } } #if DEBUG @@ -27879,7 +28270,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[369], (IntPtr)coords); #if DEBUG } #endif @@ -27906,7 +28297,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glVertex2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[369], (IntPtr)coords_ptr); } } #if DEBUG @@ -27931,7 +28322,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[369], (IntPtr)coords); #if DEBUG } #endif @@ -27946,7 +28337,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2xOES((int)x); + InteropHelper.Call(EntryPoints[370], (int)x); #if DEBUG } #endif @@ -27965,7 +28356,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glVertex2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[371], (IntPtr)coords_ptr); } } #if DEBUG @@ -27983,7 +28374,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[371], (IntPtr)coords); #if DEBUG } #endif @@ -28005,7 +28396,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bOES((SByte)x, (SByte)y); + InteropHelper.Call(EntryPoints[372], (SByte)x, (SByte)y); #if DEBUG } #endif @@ -28028,7 +28419,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bOES((SByte)x, (SByte)y); + InteropHelper.Call(EntryPoints[372], (SByte)x, (SByte)y); #if DEBUG } #endif @@ -28054,7 +28445,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[373], (IntPtr)coords_ptr); } } #if DEBUG @@ -28082,7 +28473,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[373], (IntPtr)coords_ptr); } } #if DEBUG @@ -28107,7 +28498,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[373], (IntPtr)coords); #if DEBUG } #endif @@ -28134,7 +28525,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[373], (IntPtr)coords_ptr); } } #if DEBUG @@ -28163,7 +28554,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[373], (IntPtr)coords_ptr); } } #if DEBUG @@ -28188,7 +28579,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[373], (IntPtr)coords); #if DEBUG } #endif @@ -28203,7 +28594,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3xOES((int)x, (int)y); + InteropHelper.Call(EntryPoints[374], (int)x, (int)y); #if DEBUG } #endif @@ -28222,7 +28613,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glVertex3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[375], (IntPtr)coords_ptr); } } #if DEBUG @@ -28243,7 +28634,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glVertex3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[375], (IntPtr)coords_ptr); } } #if DEBUG @@ -28261,7 +28652,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[375], (IntPtr)coords); #if DEBUG } #endif @@ -28283,7 +28674,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bOES((SByte)x, (SByte)y, (SByte)z); + InteropHelper.Call(EntryPoints[376], (SByte)x, (SByte)y, (SByte)z); #if DEBUG } #endif @@ -28306,7 +28697,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bOES((SByte)x, (SByte)y, (SByte)z); + InteropHelper.Call(EntryPoints[376], (SByte)x, (SByte)y, (SByte)z); #if DEBUG } #endif @@ -28332,7 +28723,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[377], (IntPtr)coords_ptr); } } #if DEBUG @@ -28360,7 +28751,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Byte* coords_ptr = &coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[377], (IntPtr)coords_ptr); } } #if DEBUG @@ -28385,7 +28776,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[377], (IntPtr)coords); #if DEBUG } #endif @@ -28412,7 +28803,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[377], (IntPtr)coords_ptr); } } #if DEBUG @@ -28441,7 +28832,7 @@ namespace OpenTK.Graphics.ES11 { fixed (SByte* coords_ptr = &coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[377], (IntPtr)coords_ptr); } } #if DEBUG @@ -28466,7 +28857,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[377], (IntPtr)coords); #if DEBUG } #endif @@ -28481,7 +28872,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4xOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[378], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -28500,7 +28891,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = coords) { - Delegates.glVertex4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[379], (IntPtr)coords_ptr); } } #if DEBUG @@ -28521,7 +28912,7 @@ namespace OpenTK.Graphics.ES11 { fixed (int* coords_ptr = &coords) { - Delegates.glVertex4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[379], (IntPtr)coords_ptr); } } #if DEBUG @@ -28539,7 +28930,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4xvOES((int*)coords); + InteropHelper.Call(EntryPoints[379], (IntPtr)coords); #if DEBUG } #endif @@ -28554,7 +28945,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[383], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -28573,7 +28964,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[383], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28597,7 +28988,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[383], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28621,7 +29012,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[383], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -28645,7 +29036,7 @@ namespace OpenTK.Graphics.ES11 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[383], (Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -28670,7 +29061,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[71], (UInt32)driverControl); #if DEBUG } #endif @@ -28686,7 +29077,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[71], (UInt32)driverControl); #if DEBUG } #endif @@ -28701,7 +29092,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[87], (UInt32)driverControl); #if DEBUG } #endif @@ -28717,7 +29108,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[87], (UInt32)driverControl); #if DEBUG } #endif @@ -28732,7 +29123,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTilingQCOM((UInt32)preserveMask); + InteropHelper.Call(EntryPoints[88], (UInt32)preserveMask); #if DEBUG } #endif @@ -28748,7 +29139,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTilingQCOM((UInt32)preserveMask); + InteropHelper.Call(EntryPoints[88], (UInt32)preserveMask); #if DEBUG } #endif @@ -28763,7 +29154,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES11.All)target, (IntPtr)@params); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES11.All)target, (IntPtr)@params); #if DEBUG } #endif @@ -28782,7 +29173,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -28806,7 +29197,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -28830,7 +29221,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -28854,7 +29245,7 @@ namespace OpenTK.Graphics.ES11 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES11.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -28880,7 +29271,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* buffers_ptr = buffers) fixed (Int32* numBuffers_ptr = numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[94], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); } } #if DEBUG @@ -28902,7 +29293,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* buffers_ptr = &buffers) fixed (Int32* numBuffers_ptr = &numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[94], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); buffers = *buffers_ptr; numBuffers = *numBuffers_ptr; } @@ -28922,7 +29313,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBuffersQCOM((UInt32*)buffers, (Int32)maxBuffers, (Int32*)numBuffers); + InteropHelper.Call(EntryPoints[94], (IntPtr)buffers, (Int32)maxBuffers, (IntPtr)numBuffers); #if DEBUG } #endif @@ -28943,7 +29334,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* buffers_ptr = buffers) fixed (Int32* numBuffers_ptr = numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[94], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); } } #if DEBUG @@ -28966,7 +29357,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* buffers_ptr = &buffers) fixed (Int32* numBuffers_ptr = &numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[94], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); buffers = *buffers_ptr; numBuffers = *numBuffers_ptr; } @@ -28986,7 +29377,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBuffersQCOM((UInt32*)buffers, (Int32)maxBuffers, (Int32*)numBuffers); + InteropHelper.Call(EntryPoints[94], (IntPtr)buffers, (Int32)maxBuffers, (IntPtr)numBuffers); #if DEBUG } #endif @@ -29006,7 +29397,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* framebuffers_ptr = framebuffers) fixed (Int32* numFramebuffers_ptr = numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[95], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); } } #if DEBUG @@ -29028,7 +29419,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* framebuffers_ptr = &framebuffers) fixed (Int32* numFramebuffers_ptr = &numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[95], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); framebuffers = *framebuffers_ptr; numFramebuffers = *numFramebuffers_ptr; } @@ -29048,7 +29439,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers, (Int32)maxFramebuffers, (Int32*)numFramebuffers); + InteropHelper.Call(EntryPoints[95], (IntPtr)framebuffers, (Int32)maxFramebuffers, (IntPtr)numFramebuffers); #if DEBUG } #endif @@ -29069,7 +29460,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* framebuffers_ptr = framebuffers) fixed (Int32* numFramebuffers_ptr = numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[95], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); } } #if DEBUG @@ -29092,7 +29483,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* framebuffers_ptr = &framebuffers) fixed (Int32* numFramebuffers_ptr = &numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[95], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); framebuffers = *framebuffers_ptr; numFramebuffers = *numFramebuffers_ptr; } @@ -29112,7 +29503,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers, (Int32)maxFramebuffers, (Int32*)numFramebuffers); + InteropHelper.Call(EntryPoints[95], (IntPtr)framebuffers, (Int32)maxFramebuffers, (IntPtr)numFramebuffers); #if DEBUG } #endif @@ -29131,7 +29522,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[96], (UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); } } #if DEBUG @@ -29152,7 +29543,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = &length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[96], (UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); length = *length_ptr; } } @@ -29171,7 +29562,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (Int32*)length); + InteropHelper.Call(EntryPoints[96], (UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (IntPtr)length); #if DEBUG } #endif @@ -29191,7 +29582,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[96], (UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); } } #if DEBUG @@ -29213,7 +29604,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = &length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[96], (UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); length = *length_ptr; } } @@ -29232,7 +29623,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (Int32*)length); + InteropHelper.Call(EntryPoints[96], (UInt32)program, (OpenTK.Graphics.ES11.All)shadertype, (StringBuilder)source, (IntPtr)length); #if DEBUG } #endif @@ -29252,7 +29643,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* programs_ptr = programs) fixed (Int32* numPrograms_ptr = numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); } } #if DEBUG @@ -29274,7 +29665,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* programs_ptr = &programs) fixed (Int32* numPrograms_ptr = &numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); programs = *programs_ptr; numPrograms = *numPrograms_ptr; } @@ -29294,7 +29685,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramsQCOM((UInt32*)programs, (Int32)maxPrograms, (Int32*)numPrograms); + InteropHelper.Call(EntryPoints[97], (IntPtr)programs, (Int32)maxPrograms, (IntPtr)numPrograms); #if DEBUG } #endif @@ -29315,7 +29706,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* programs_ptr = programs) fixed (Int32* numPrograms_ptr = numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); } } #if DEBUG @@ -29338,7 +29729,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* programs_ptr = &programs) fixed (Int32* numPrograms_ptr = &numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); programs = *programs_ptr; numPrograms = *numPrograms_ptr; } @@ -29358,7 +29749,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramsQCOM((UInt32*)programs, (Int32)maxPrograms, (Int32*)numPrograms); + InteropHelper.Call(EntryPoints[97], (IntPtr)programs, (Int32)maxPrograms, (IntPtr)numPrograms); #if DEBUG } #endif @@ -29378,7 +29769,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* renderbuffers_ptr = renderbuffers) fixed (Int32* numRenderbuffers_ptr = numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[98], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); } } #if DEBUG @@ -29400,7 +29791,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* renderbuffers_ptr = &renderbuffers) fixed (Int32* numRenderbuffers_ptr = &numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[98], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); renderbuffers = *renderbuffers_ptr; numRenderbuffers = *numRenderbuffers_ptr; } @@ -29420,7 +29811,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers); + InteropHelper.Call(EntryPoints[98], (IntPtr)renderbuffers, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers); #if DEBUG } #endif @@ -29441,7 +29832,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* renderbuffers_ptr = renderbuffers) fixed (Int32* numRenderbuffers_ptr = numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[98], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); } } #if DEBUG @@ -29464,7 +29855,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* renderbuffers_ptr = &renderbuffers) fixed (Int32* numRenderbuffers_ptr = &numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[98], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); renderbuffers = *renderbuffers_ptr; numRenderbuffers = *numRenderbuffers_ptr; } @@ -29484,7 +29875,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers); + InteropHelper.Call(EntryPoints[98], (IntPtr)renderbuffers, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers); #if DEBUG } #endif @@ -29504,7 +29895,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* shaders_ptr = shaders) fixed (Int32* numShaders_ptr = numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); } } #if DEBUG @@ -29526,7 +29917,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* shaders_ptr = &shaders) fixed (Int32* numShaders_ptr = &numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); shaders = *shaders_ptr; numShaders = *numShaders_ptr; } @@ -29546,7 +29937,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetShadersQCOM((UInt32*)shaders, (Int32)maxShaders, (Int32*)numShaders); + InteropHelper.Call(EntryPoints[99], (IntPtr)shaders, (Int32)maxShaders, (IntPtr)numShaders); #if DEBUG } #endif @@ -29567,7 +29958,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* shaders_ptr = shaders) fixed (Int32* numShaders_ptr = numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); } } #if DEBUG @@ -29590,7 +29981,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* shaders_ptr = &shaders) fixed (Int32* numShaders_ptr = &numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); shaders = *shaders_ptr; numShaders = *numShaders_ptr; } @@ -29610,7 +30001,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetShadersQCOM((UInt32*)shaders, (Int32)maxShaders, (Int32*)numShaders); + InteropHelper.Call(EntryPoints[99], (IntPtr)shaders, (Int32)maxShaders, (IntPtr)numShaders); #if DEBUG } #endif @@ -29629,7 +30020,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[100], (UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29650,7 +30041,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[100], (UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29669,7 +30060,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[100], (UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29689,7 +30080,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = @params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[100], (UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29711,7 +30102,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* @params_ptr = &@params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[100], (UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29730,7 +30121,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[100], (UInt32)texture, (OpenTK.Graphics.ES11.All)face, (Int32)level, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29745,7 +30136,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels); #if DEBUG } #endif @@ -29764,7 +30155,7 @@ namespace OpenTK.Graphics.ES11 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -29788,7 +30179,7 @@ namespace OpenTK.Graphics.ES11 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -29812,7 +30203,7 @@ namespace OpenTK.Graphics.ES11 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -29836,7 +30227,7 @@ namespace OpenTK.Graphics.ES11 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); texels = (T10)texels_ptr.Target; } finally @@ -29862,7 +30253,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* textures_ptr = textures) fixed (Int32* numTextures_ptr = numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[102], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); } } #if DEBUG @@ -29884,7 +30275,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* textures_ptr = &textures) fixed (Int32* numTextures_ptr = &numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[102], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); textures = *textures_ptr; numTextures = *numTextures_ptr; } @@ -29904,7 +30295,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexturesQCOM((UInt32*)textures, (Int32)maxTextures, (Int32*)numTextures); + InteropHelper.Call(EntryPoints[102], (IntPtr)textures, (Int32)maxTextures, (IntPtr)numTextures); #if DEBUG } #endif @@ -29925,7 +30316,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* textures_ptr = textures) fixed (Int32* numTextures_ptr = numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[102], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); } } #if DEBUG @@ -29948,7 +30339,7 @@ namespace OpenTK.Graphics.ES11 fixed (UInt32* textures_ptr = &textures) fixed (Int32* numTextures_ptr = &numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[102], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); textures = *textures_ptr; numTextures = *numTextures_ptr; } @@ -29968,7 +30359,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexturesQCOM((UInt32*)textures, (Int32)maxTextures, (Int32*)numTextures); + InteropHelper.Call(EntryPoints[102], (IntPtr)textures, (Int32)maxTextures, (IntPtr)numTextures); #if DEBUG } #endif @@ -29983,7 +30374,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glExtIsProgramBinaryQCOM((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[103], (UInt32)program); #if DEBUG } #endif @@ -29999,7 +30390,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glExtIsProgramBinaryQCOM((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[103], (UInt32)program); #if DEBUG } #endif @@ -30014,7 +30405,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtTexObjectStateOverrideiQCOM((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32)param); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32)param); #if DEBUG } #endif @@ -30034,7 +30425,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* num_ptr = num) fixed (Int32* driverControls_ptr = driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[141], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); } } #if DEBUG @@ -30057,7 +30448,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* num_ptr = num) fixed (UInt32* driverControls_ptr = driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[141], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); } } #if DEBUG @@ -30079,7 +30470,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* num_ptr = &num) fixed (Int32* driverControls_ptr = &driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[141], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); num = *num_ptr; driverControls = *driverControls_ptr; } @@ -30104,7 +30495,7 @@ namespace OpenTK.Graphics.ES11 fixed (Int32* num_ptr = &num) fixed (UInt32* driverControls_ptr = &driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[141], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); num = *num_ptr; driverControls = *driverControls_ptr; } @@ -30124,7 +30515,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls); + InteropHelper.Call(EntryPoints[141], (IntPtr)num, (Int32)size, (IntPtr)driverControls); #if DEBUG } #endif @@ -30140,7 +30531,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls); + InteropHelper.Call(EntryPoints[141], (IntPtr)num, (Int32)size, (IntPtr)driverControls); #if DEBUG } #endif @@ -30159,7 +30550,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[142], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); } } #if DEBUG @@ -30180,7 +30571,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = &length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[142], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); length = *length_ptr; } } @@ -30199,7 +30590,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[142], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length, (StringBuilder)driverControlString); #if DEBUG } #endif @@ -30219,7 +30610,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[142], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); } } #if DEBUG @@ -30241,7 +30632,7 @@ namespace OpenTK.Graphics.ES11 { fixed (Int32* length_ptr = &length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[142], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); length = *length_ptr; } } @@ -30260,7 +30651,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[142], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length, (StringBuilder)driverControlString); #if DEBUG } #endif @@ -30275,7 +30666,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartTilingQCOM((UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); + InteropHelper.Call(EntryPoints[312], (UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); #if DEBUG } #endif @@ -30291,7 +30682,7 @@ namespace OpenTK.Graphics.ES11 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartTilingQCOM((UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); + InteropHelper.Call(EntryPoints[312], (UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); #if DEBUG } #endif diff --git a/Source/OpenTK/Graphics/ES20/ES20.cs b/Source/OpenTK/Graphics/ES20/ES20.cs index 5812b3ed..80b1b6c1 100644 --- a/Source/OpenTK/Graphics/ES20/ES20.cs +++ b/Source/OpenTK/Graphics/ES20/ES20.cs @@ -37,6 +37,355 @@ namespace OpenTK.Graphics.ES20 partial class GL { + static GL() + { + EntryPointNames = new string[] + { + "glActiveProgramEXT", + "glActiveShaderProgramEXT", + "glActiveTexture", + "glAlphaFuncQCOM", + "glAttachShader", + "glBeginPerfMonitorAMD", + "glBeginQueryEXT", + "glBindAttribLocation", + "glBindBuffer", + "glBindFramebuffer", + "glBindProgramPipelineEXT", + "glBindRenderbuffer", + "glBindTexture", + "glBindVertexArrayOES", + "glBlendBarrierNV", + "glBlendColor", + "glBlendEquation", + "glBlendEquationEXT", + "glBlendEquationSeparate", + "glBlendFunc", + "glBlendFuncSeparate", + "glBlendParameteriNV", + "glBlitFramebufferANGLE", + "glBlitFramebufferNV", + "glBufferData", + "glBufferSubData", + "glCheckFramebufferStatus", + "glClear", + "glClearColor", + "glClearDepthf", + "glClearStencil", + "glClientWaitSyncAPPLE", + "glColorMask", + "glCompileShader", + "glCompressedTexImage2D", + "glCompressedTexImage3DOES", + "glCompressedTexSubImage2D", + "glCompressedTexSubImage3DOES", + "glCopyBufferSubDataNV", + "glCopyTexImage2D", + "glCopyTexSubImage2D", + "glCopyTexSubImage3DOES", + "glCopyTextureLevelsAPPLE", + "glCoverageMaskNV", + "glCoverageOperationNV", + "glCreateProgram", + "glCreateShader", + "glCreateShaderProgramEXT", + "glCreateShaderProgramvEXT", + "glCullFace", + "glDebugMessageCallback", + "glDebugMessageCallbackKHR", + "glDebugMessageControl", + "glDebugMessageControlKHR", + "glDebugMessageInsert", + "glDebugMessageInsertKHR", + "glDeleteBuffers", + "glDeleteFencesNV", + "glDeleteFramebuffers", + "glDeletePerfMonitorsAMD", + "glDeleteProgram", + "glDeleteProgramPipelinesEXT", + "glDeleteQueriesEXT", + "glDeleteRenderbuffers", + "glDeleteShader", + "glDeleteSyncAPPLE", + "glDeleteTextures", + "glDeleteVertexArraysOES", + "glDepthFunc", + "glDepthMask", + "glDepthRangef", + "glDetachShader", + "glDisable", + "glDisableDriverControlQCOM", + "glDisableVertexAttribArray", + "glDiscardFramebufferEXT", + "glDrawArrays", + "glDrawArraysInstancedANGLE", + "glDrawArraysInstancedEXT", + "glDrawArraysInstancedNV", + "glDrawBuffersEXT", + "glDrawBuffersIndexedEXT", + "glDrawBuffersNV", + "glDrawElements", + "glDrawElementsInstancedANGLE", + "glDrawElementsInstancedEXT", + "glDrawElementsInstancedNV", + "glEGLImageTargetRenderbufferStorageOES", + "glEGLImageTargetTexture2DOES", + "glEnable", + "glEnableDriverControlQCOM", + "glEnableVertexAttribArray", + "glEndPerfMonitorAMD", + "glEndQueryEXT", + "glEndTilingQCOM", + "glExtGetBufferPointervQCOM", + "glExtGetBuffersQCOM", + "glExtGetFramebuffersQCOM", + "glExtGetProgramBinarySourceQCOM", + "glExtGetProgramsQCOM", + "glExtGetRenderbuffersQCOM", + "glExtGetShadersQCOM", + "glExtGetTexLevelParameterivQCOM", + "glExtGetTexSubImageQCOM", + "glExtGetTexturesQCOM", + "glExtIsProgramBinaryQCOM", + "glExtTexObjectStateOverrideiQCOM", + "glFenceSyncAPPLE", + "glFinish", + "glFinishFenceNV", + "glFlush", + "glFlushMappedBufferRangeEXT", + "glFramebufferRenderbuffer", + "glFramebufferTexture2D", + "glFramebufferTexture2DMultisampleEXT", + "glFramebufferTexture2DMultisampleIMG", + "glFramebufferTexture3DOES", + "glFrontFace", + "glGenBuffers", + "glGenerateMipmap", + "glGenFencesNV", + "glGenFramebuffers", + "glGenPerfMonitorsAMD", + "glGenProgramPipelinesEXT", + "glGenQueriesEXT", + "glGenRenderbuffers", + "glGenTextures", + "glGenVertexArraysOES", + "glGetActiveAttrib", + "glGetActiveUniform", + "glGetAttachedShaders", + "glGetAttribLocation", + "glGetBooleanv", + "glGetBufferParameteriv", + "glGetBufferPointervOES", + "glGetDebugMessageLog", + "glGetDebugMessageLogKHR", + "glGetDriverControlsQCOM", + "glGetDriverControlStringQCOM", + "glGetError", + "glGetFenceivNV", + "glGetFloatv", + "glGetFramebufferAttachmentParameteriv", + "glGetGraphicsResetStatusEXT", + "glGetInteger64vAPPLE", + "glGetIntegeri_vEXT", + "glGetIntegerv", + "glGetnUniformfvEXT", + "glGetnUniformivEXT", + "glGetObjectLabel", + "glGetObjectLabelEXT", + "glGetObjectLabelKHR", + "glGetObjectPtrLabel", + "glGetObjectPtrLabelKHR", + "glGetPerfMonitorCounterDataAMD", + "glGetPerfMonitorCounterInfoAMD", + "glGetPerfMonitorCountersAMD", + "glGetPerfMonitorCounterStringAMD", + "glGetPerfMonitorGroupsAMD", + "glGetPerfMonitorGroupStringAMD", + "glGetPointerv", + "glGetPointervKHR", + "glGetProgramBinaryOES", + "glGetProgramInfoLog", + "glGetProgramiv", + "glGetProgramPipelineInfoLogEXT", + "glGetProgramPipelineivEXT", + "glGetQueryivEXT", + "glGetQueryObjecti64vEXT", + "glGetQueryObjectivEXT", + "glGetQueryObjectui64vEXT", + "glGetQueryObjectuivEXT", + "glGetRenderbufferParameteriv", + "glGetShaderInfoLog", + "glGetShaderiv", + "glGetShaderPrecisionFormat", + "glGetShaderSource", + "glGetString", + "glGetSyncivAPPLE", + "glGetTexParameterfv", + "glGetTexParameteriv", + "glGetTranslatedShaderSourceANGLE", + "glGetUniformfv", + "glGetUniformiv", + "glGetUniformLocation", + "glGetVertexAttribfv", + "glGetVertexAttribiv", + "glGetVertexAttribPointerv", + "glHint", + "glInsertEventMarkerEXT", + "glIsBuffer", + "glIsEnabled", + "glIsFenceNV", + "glIsFramebuffer", + "glIsProgram", + "glIsProgramPipelineEXT", + "glIsQueryEXT", + "glIsRenderbuffer", + "glIsShader", + "glIsSyncAPPLE", + "glIsTexture", + "glIsVertexArrayOES", + "glLabelObjectEXT", + "glLineWidth", + "glLinkProgram", + "glMapBufferOES", + "glMapBufferRangeEXT", + "glMultiDrawArraysEXT", + "glMultiDrawElementsEXT", + "glObjectLabel", + "glObjectLabelKHR", + "glObjectPtrLabel", + "glObjectPtrLabelKHR", + "glPixelStorei", + "glPolygonOffset", + "glPopDebugGroup", + "glPopDebugGroupKHR", + "glPopGroupMarkerEXT", + "glProgramBinaryOES", + "glProgramParameteriEXT", + "glProgramUniform1fEXT", + "glProgramUniform1fvEXT", + "glProgramUniform1iEXT", + "glProgramUniform1ivEXT", + "glProgramUniform1uiEXT", + "glProgramUniform1uivEXT", + "glProgramUniform2fEXT", + "glProgramUniform2fvEXT", + "glProgramUniform2iEXT", + "glProgramUniform2ivEXT", + "glProgramUniform2uiEXT", + "glProgramUniform2uivEXT", + "glProgramUniform3fEXT", + "glProgramUniform3fvEXT", + "glProgramUniform3iEXT", + "glProgramUniform3ivEXT", + "glProgramUniform3uiEXT", + "glProgramUniform3uivEXT", + "glProgramUniform4fEXT", + "glProgramUniform4fvEXT", + "glProgramUniform4iEXT", + "glProgramUniform4ivEXT", + "glProgramUniform4uiEXT", + "glProgramUniform4uivEXT", + "glProgramUniformMatrix2fvEXT", + "glProgramUniformMatrix2x3fvEXT", + "glProgramUniformMatrix2x4fvEXT", + "glProgramUniformMatrix3fvEXT", + "glProgramUniformMatrix3x2fvEXT", + "glProgramUniformMatrix3x4fvEXT", + "glProgramUniformMatrix4fvEXT", + "glProgramUniformMatrix4x2fvEXT", + "glProgramUniformMatrix4x3fvEXT", + "glPushDebugGroup", + "glPushDebugGroupKHR", + "glPushGroupMarkerEXT", + "glQueryCounterEXT", + "glReadBufferIndexedEXT", + "glReadBufferNV", + "glReadnPixelsEXT", + "glReadPixels", + "glReleaseShaderCompiler", + "glRenderbufferStorage", + "glRenderbufferStorageMultisampleANGLE", + "glRenderbufferStorageMultisampleAPPLE", + "glRenderbufferStorageMultisampleEXT", + "glRenderbufferStorageMultisampleIMG", + "glRenderbufferStorageMultisampleNV", + "glResolveMultisampleFramebufferAPPLE", + "glSampleCoverage", + "glScissor", + "glSelectPerfMonitorCountersAMD", + "glSetFenceNV", + "glShaderBinary", + "glShaderSource", + "glStartTilingQCOM", + "glStencilFunc", + "glStencilFuncSeparate", + "glStencilMask", + "glStencilMaskSeparate", + "glStencilOp", + "glStencilOpSeparate", + "glTestFenceNV", + "glTexImage2D", + "glTexImage3DOES", + "glTexParameterf", + "glTexParameterfv", + "glTexParameteri", + "glTexParameteriv", + "glTexStorage1DEXT", + "glTexStorage2DEXT", + "glTexStorage3DEXT", + "glTexSubImage2D", + "glTexSubImage3DOES", + "glTextureStorage1DEXT", + "glTextureStorage2DEXT", + "glTextureStorage3DEXT", + "glUniform1f", + "glUniform1fv", + "glUniform1i", + "glUniform1iv", + "glUniform2f", + "glUniform2fv", + "glUniform2i", + "glUniform2iv", + "glUniform3f", + "glUniform3fv", + "glUniform3i", + "glUniform3iv", + "glUniform4f", + "glUniform4fv", + "glUniform4i", + "glUniform4iv", + "glUniformMatrix2fv", + "glUniformMatrix2x3fvNV", + "glUniformMatrix2x4fvNV", + "glUniformMatrix3fv", + "glUniformMatrix3x2fvNV", + "glUniformMatrix3x4fvNV", + "glUniformMatrix4fv", + "glUniformMatrix4x2fvNV", + "glUniformMatrix4x3fvNV", + "glUnmapBufferOES", + "glUseProgram", + "glUseProgramStagesEXT", + "glUseShaderProgramEXT", + "glValidateProgram", + "glValidateProgramPipelineEXT", + "glVertexAttrib1f", + "glVertexAttrib1fv", + "glVertexAttrib2f", + "glVertexAttrib2fv", + "glVertexAttrib3f", + "glVertexAttrib3fv", + "glVertexAttrib4f", + "glVertexAttrib4fv", + "glVertexAttribDivisorANGLE", + "glVertexAttribDivisorEXT", + "glVertexAttribDivisorNV", + "glVertexAttribPointer", + "glViewport", + "glWaitSyncAPPLE", + }; + EntryPoints = new IntPtr[EntryPointNames.Length]; + } public static partial class Amd { @@ -49,7 +398,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[5], (UInt32)monitor); #if DEBUG } #endif @@ -65,7 +414,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[5], (UInt32)monitor); #if DEBUG } #endif @@ -84,7 +433,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* monitors_ptr = (UInt32*)&monitors; - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors_ptr); } #if DEBUG } @@ -105,7 +454,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* monitors_ptr = (UInt32*)&monitors; - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors_ptr); } #if DEBUG } @@ -125,7 +474,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* monitors_ptr = monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -146,7 +495,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* monitors_ptr = &monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -164,7 +513,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -184,7 +533,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* monitors_ptr = monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -206,7 +555,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* monitors_ptr = &monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -224,7 +573,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[59], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -239,7 +588,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[92], (UInt32)monitor); #if DEBUG } #endif @@ -255,7 +604,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[92], (UInt32)monitor); #if DEBUG } #endif @@ -275,7 +624,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* monitors_ptr = &retval; - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors_ptr); return retval; } #if DEBUG @@ -296,7 +645,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* monitors_ptr = monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -317,7 +666,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* monitors_ptr = &monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors_ptr); monitors = *monitors_ptr; } } @@ -336,7 +685,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -356,7 +705,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* monitors_ptr = monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -378,7 +727,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* monitors_ptr = &monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors_ptr); monitors = *monitors_ptr; } } @@ -397,7 +746,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -417,7 +766,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* data_ptr = data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[154], (UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); bytesWritten = *bytesWritten_ptr; } } @@ -440,7 +789,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* data_ptr = &data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[154], (UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); data = *data_ptr; bytesWritten = *bytesWritten_ptr; } @@ -460,7 +809,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (UInt32*)data, (Int32*)bytesWritten); + InteropHelper.Call(EntryPoints[154], (UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (IntPtr)data, (IntPtr)bytesWritten); #if DEBUG } #endif @@ -481,7 +830,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* data_ptr = data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[154], (UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); bytesWritten = *bytesWritten_ptr; } } @@ -505,7 +854,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* data_ptr = &data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[154], (UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); data = *data_ptr; bytesWritten = *bytesWritten_ptr; } @@ -525,7 +874,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (UInt32*)data, (Int32*)bytesWritten); + InteropHelper.Call(EntryPoints[154], (UInt32)monitor, (OpenTK.Graphics.ES20.All)pname, (Int32)dataSize, (IntPtr)data, (IntPtr)bytesWritten); #if DEBUG } #endif @@ -540,7 +889,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data); #if DEBUG } #endif @@ -559,7 +908,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -583,7 +932,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -607,7 +956,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -631,7 +980,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -653,7 +1002,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data); #if DEBUG } #endif @@ -673,7 +1022,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -698,7 +1047,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -723,7 +1072,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -748,7 +1097,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[155], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES20.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -775,7 +1124,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (Int32* counters_ptr = counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[156], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; } @@ -800,7 +1149,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (Int32* counters_ptr = &counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[156], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; counters = *counters_ptr; @@ -821,7 +1170,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters, (Int32*)maxActiveCounters, (Int32)counterSize, (UInt32*)counters); + InteropHelper.Call(EntryPoints[156], (UInt32)group, (IntPtr)numCounters, (IntPtr)maxActiveCounters, (Int32)counterSize, (IntPtr)counters); #if DEBUG } #endif @@ -843,7 +1192,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (UInt32* counters_ptr = counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[156], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; } @@ -869,7 +1218,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (UInt32* counters_ptr = &counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[156], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; counters = *counters_ptr; @@ -890,7 +1239,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters, (Int32*)maxActiveCounters, (Int32)counterSize, (UInt32*)counters); + InteropHelper.Call(EntryPoints[156], (UInt32)group, (IntPtr)numCounters, (IntPtr)maxActiveCounters, (Int32)counterSize, (IntPtr)counters); #if DEBUG } #endif @@ -909,7 +1258,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[157], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)counterString); length = *length_ptr; } } @@ -928,7 +1277,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[157], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length, (StringBuilder)counterString); #if DEBUG } #endif @@ -948,7 +1297,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[157], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)counterString); length = *length_ptr; } } @@ -967,7 +1316,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[157], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length, (StringBuilder)counterString); #if DEBUG } #endif @@ -987,7 +1336,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* numGroups_ptr = &numGroups) fixed (Int32* groups_ptr = groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[158], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; } } @@ -1010,7 +1359,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* numGroups_ptr = &numGroups) fixed (Int32* groups_ptr = &groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[158], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; groups = *groups_ptr; } @@ -1035,7 +1384,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* numGroups_ptr = &numGroups) fixed (UInt32* groups_ptr = groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[158], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; } } @@ -1059,7 +1408,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* numGroups_ptr = &numGroups) fixed (UInt32* groups_ptr = &groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[158], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; groups = *groups_ptr; } @@ -1079,7 +1428,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups, (Int32)groupsSize, (UInt32*)groups); + InteropHelper.Call(EntryPoints[158], (IntPtr)numGroups, (Int32)groupsSize, (IntPtr)groups); #if DEBUG } #endif @@ -1095,7 +1444,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups, (Int32)groupsSize, (UInt32*)groups); + InteropHelper.Call(EntryPoints[158], (IntPtr)numGroups, (Int32)groupsSize, (IntPtr)groups); #if DEBUG } #endif @@ -1114,7 +1463,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[159], (UInt32)group, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)groupString); length = *length_ptr; } } @@ -1133,7 +1482,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[159], (UInt32)group, (Int32)bufSize, (IntPtr)length, (StringBuilder)groupString); #if DEBUG } #endif @@ -1153,7 +1502,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[159], (UInt32)group, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)groupString); length = *length_ptr; } } @@ -1172,7 +1521,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[159], (UInt32)group, (Int32)bufSize, (IntPtr)length, (StringBuilder)groupString); #if DEBUG } #endif @@ -1191,7 +1540,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* counterList_ptr = counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[271], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); } } #if DEBUG @@ -1212,7 +1561,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* counterList_ptr = &counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[271], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); counterList = *counterList_ptr; } } @@ -1231,7 +1580,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList); + InteropHelper.Call(EntryPoints[271], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList); #if DEBUG } #endif @@ -1251,7 +1600,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* counterList_ptr = counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[271], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); } } #if DEBUG @@ -1273,7 +1622,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* counterList_ptr = &counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[271], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); counterList = *counterList_ptr; } } @@ -1292,7 +1641,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList); + InteropHelper.Call(EntryPoints[271], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList); #if DEBUG } #endif @@ -1334,7 +1683,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferANGLE((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[22], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -1371,7 +1720,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferANGLE((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[22], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -1409,7 +1758,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -1446,7 +1795,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -1489,7 +1838,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -1536,7 +1885,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1588,7 +1937,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1640,7 +1989,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1692,7 +2041,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -1740,7 +2089,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -1786,7 +2135,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1837,7 +2186,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1888,7 +2237,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1939,7 +2288,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -1964,7 +2313,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[181], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); } } #if DEBUG @@ -1985,7 +2334,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[181], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -2004,7 +2353,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[181], (UInt32)shader, (Int32)bufsize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -2024,7 +2373,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[181], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); } } #if DEBUG @@ -2046,7 +2395,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[181], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -2065,7 +2414,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[181], (UInt32)shader, (Int32)bufsize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -2108,7 +2457,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleANGLE((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -2150,7 +2499,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleANGLE((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -2177,7 +2526,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorANGLE((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[336], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -2205,7 +2554,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorANGLE((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[336], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -2241,7 +2590,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[31], (IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2275,7 +2624,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[31], (IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2307,7 +2656,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[31], (IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2340,7 +2689,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[31], (IntPtr)sync, (OpenTK.Graphics.ES20.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2355,7 +2704,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureLevelsAPPLE((UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); + InteropHelper.Call(EntryPoints[42], (UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); #if DEBUG } #endif @@ -2371,7 +2720,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureLevelsAPPLE((UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); + InteropHelper.Call(EntryPoints[42], (UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); #if DEBUG } #endif @@ -2393,7 +2742,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSyncAPPLE((IntPtr)sync); + InteropHelper.Call(EntryPoints[65], (IntPtr)sync); #if DEBUG } #endif @@ -2421,7 +2770,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSyncAPPLE((OpenTK.Graphics.ES20.SyncCondition)condition, (OpenTK.Graphics.ES20.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[107], (OpenTK.Graphics.ES20.SyncCondition)condition, (OpenTK.Graphics.ES20.WaitSyncFlags)flags); #if DEBUG } #endif @@ -2448,7 +2797,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSyncAPPLE((OpenTK.Graphics.ES20.SyncCondition)condition, (OpenTK.Graphics.ES20.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[107], (OpenTK.Graphics.ES20.SyncCondition)condition, (OpenTK.Graphics.ES20.WaitSyncFlags)flags); #if DEBUG } #endif @@ -2468,7 +2817,7 @@ namespace OpenTK.Graphics.ES20 { Int64 retval; Int64* @params_ptr = &retval; - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -2489,7 +2838,7 @@ namespace OpenTK.Graphics.ES20 { Int64 retval; Int64* @params_ptr = &retval; - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -2511,7 +2860,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -2533,7 +2882,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -2553,7 +2902,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -2572,7 +2921,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -2593,7 +2942,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -2612,7 +2961,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES20.GetPName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -2660,7 +3009,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = length) fixed (Int32* values_ptr = values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[178], (IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); } } #if DEBUG @@ -2710,7 +3059,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[178], (IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -2758,7 +3107,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[178], (IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -2805,7 +3154,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = length) fixed (Int32* values_ptr = values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[178], (IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); } } #if DEBUG @@ -2854,7 +3203,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[178], (IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -2901,7 +3250,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[178], (IntPtr)sync, (OpenTK.Graphics.ES20.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -2923,7 +3272,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSyncAPPLE((IntPtr)sync); + return InteropHelper.CallReturn(EntryPoints[199], (IntPtr)sync); #if DEBUG } #endif @@ -2966,7 +3315,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleAPPLE((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -3008,7 +3357,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleAPPLE((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -3023,7 +3372,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResolveMultisampleFramebufferAPPLE(); + InteropHelper.Call(EntryPoints[268]); #if DEBUG } #endif @@ -3055,7 +3404,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[341], (IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3089,7 +3438,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[341], (IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3121,7 +3470,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[341], (IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3154,7 +3503,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[341], (IntPtr)sync, (OpenTK.Graphics.ES20.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3179,7 +3528,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES20.TextureUnit)texture); + InteropHelper.Call(EntryPoints[2], (OpenTK.Graphics.ES20.TextureUnit)texture); #if DEBUG } #endif @@ -3201,7 +3550,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES20.TextureUnit)texture); + InteropHelper.Call(EntryPoints[2], (OpenTK.Graphics.ES20.TextureUnit)texture); #if DEBUG } #endif @@ -3228,7 +3577,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[4], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -3256,7 +3605,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[4], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -3288,7 +3637,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[7], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -3321,7 +3670,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[7], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -3348,7 +3697,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3377,7 +3726,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3404,7 +3753,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3432,7 +3781,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES20.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3459,7 +3808,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -3488,7 +3837,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -3515,7 +3864,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -3543,7 +3892,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.ES20.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -3570,7 +3919,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -3599,7 +3948,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -3626,7 +3975,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -3654,7 +4003,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -3681,7 +4030,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -3710,7 +4059,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -3737,7 +4086,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -3765,7 +4114,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES20.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -3787,7 +4136,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[15], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -3815,7 +4164,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.ES20.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[16], (OpenTK.Graphics.ES20.BlendEquationMode)mode); #if DEBUG } #endif @@ -3842,7 +4191,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.ES20.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[16], (OpenTK.Graphics.ES20.BlendEquationMode)mode); #if DEBUG } #endif @@ -3875,7 +4224,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparate((OpenTK.Graphics.ES20.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES20.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES20.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES20.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -3907,7 +4256,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparate((OpenTK.Graphics.ES20.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES20.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES20.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES20.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -3940,7 +4289,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES20.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[19], (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -3972,7 +4321,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES20.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[19], (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -4015,7 +4364,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -4057,7 +4406,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES20.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES20.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -4095,7 +4444,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES20.BufferUsageHint)usage); #if DEBUG } #endif @@ -4137,7 +4486,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4184,7 +4533,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4231,7 +4580,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4278,7 +4627,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -4322,7 +4671,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES20.BufferUsageHint)usage); #if DEBUG } #endif @@ -4359,7 +4708,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES20.BufferUsageHint)usage); #if DEBUG } #endif @@ -4401,7 +4750,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4447,7 +4796,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4494,7 +4843,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4540,7 +4889,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4587,7 +4936,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4633,7 +4982,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); } finally { @@ -4680,7 +5029,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -4727,7 +5076,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES20.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -4771,7 +5120,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -4813,7 +5162,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -4860,7 +5209,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -4907,7 +5256,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -4954,7 +5303,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -4997,7 +5346,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -5038,7 +5387,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5084,7 +5433,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5130,7 +5479,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5176,7 +5525,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -5205,7 +5554,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.ES20.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[26], (OpenTK.Graphics.ES20.FramebufferTarget)target); #if DEBUG } #endif @@ -5227,7 +5576,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.ES20.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[26], (OpenTK.Graphics.ES20.FramebufferTarget)target); #if DEBUG } #endif @@ -5250,7 +5599,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES20.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[27], (OpenTK.Graphics.ES20.ClearBufferMask)mask); #if DEBUG } #endif @@ -5272,7 +5621,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES20.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[27], (OpenTK.Graphics.ES20.ClearBufferMask)mask); #if DEBUG } #endif @@ -5294,7 +5643,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[28], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -5316,7 +5665,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthf((Single)d); + InteropHelper.Call(EntryPoints[29], (Single)d); #if DEBUG } #endif @@ -5338,7 +5687,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearStencil((Int32)s); + InteropHelper.Call(EntryPoints[30], (Int32)s); #if DEBUG } #endif @@ -5365,7 +5714,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); + InteropHelper.Call(EntryPoints[32], (bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -5387,7 +5736,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[33], (UInt32)shader); #if DEBUG } #endif @@ -5410,7 +5759,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[33], (UInt32)shader); #if DEBUG } #endif @@ -5468,7 +5817,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -5530,7 +5879,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5597,7 +5946,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5664,7 +6013,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5731,7 +6080,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -5795,7 +6144,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -5857,7 +6206,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5924,7 +6273,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5991,7 +6340,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6058,7 +6407,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -6121,7 +6470,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -6182,7 +6531,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6248,7 +6597,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6314,7 +6663,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6380,7 +6729,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -6449,7 +6798,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -6516,7 +6865,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6588,7 +6937,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6660,7 +7009,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6732,7 +7081,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -6801,7 +7150,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -6868,7 +7217,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6940,7 +7289,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7012,7 +7361,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7084,7 +7433,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -7152,7 +7501,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -7218,7 +7567,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7289,7 +7638,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7360,7 +7709,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7431,7 +7780,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -7490,7 +7839,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -7543,7 +7892,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -7595,7 +7944,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -7648,7 +7997,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[40], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -7701,7 +8050,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[40], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -7753,7 +8102,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[40], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -7770,7 +8119,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateProgram(); + return InteropHelper.CallReturn(EntryPoints[45]); #if DEBUG } #endif @@ -7793,7 +8142,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShader((OpenTK.Graphics.ES20.ShaderType)type); + return InteropHelper.CallReturn(EntryPoints[46], (OpenTK.Graphics.ES20.ShaderType)type); #if DEBUG } #endif @@ -7815,7 +8164,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShader((OpenTK.Graphics.ES20.ShaderType)type); + return InteropHelper.CallReturn(EntryPoints[46], (OpenTK.Graphics.ES20.ShaderType)type); #if DEBUG } #endif @@ -7838,7 +8187,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES20.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES20.CullFaceMode)mode); #if DEBUG } #endif @@ -7860,7 +8209,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES20.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES20.CullFaceMode)mode); #if DEBUG } #endif @@ -7887,7 +8236,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[50], (DebugProc)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -7918,7 +8267,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -7954,7 +8303,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -7990,7 +8339,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -8026,7 +8375,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -8083,7 +8432,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8136,7 +8485,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8186,7 +8535,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -8239,7 +8588,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8294,7 +8643,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8345,7 +8694,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -8396,7 +8745,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8449,7 +8798,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8499,7 +8848,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -8551,7 +8900,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8605,7 +8954,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -8655,7 +9004,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -8702,7 +9051,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -8751,7 +9100,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -8798,7 +9147,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -8846,7 +9195,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -8877,7 +9226,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -8910,7 +9259,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -8942,7 +9291,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -8975,7 +9324,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -9005,7 +9354,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -9037,7 +9386,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -9071,7 +9420,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -9101,7 +9450,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[56], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -9132,7 +9481,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -9165,7 +9514,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -9197,7 +9546,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -9230,7 +9579,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -9260,7 +9609,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -9292,7 +9641,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -9326,7 +9675,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -9356,7 +9705,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[58], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -9378,7 +9727,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[60], (UInt32)program); #if DEBUG } #endif @@ -9401,7 +9750,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[60], (UInt32)program); #if DEBUG } #endif @@ -9432,7 +9781,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -9465,7 +9814,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -9497,7 +9846,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -9530,7 +9879,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -9560,7 +9909,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -9592,7 +9941,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -9626,7 +9975,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -9656,7 +10005,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[63], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -9678,7 +10027,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[64], (UInt32)shader); #if DEBUG } #endif @@ -9701,7 +10050,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[64], (UInt32)shader); #if DEBUG } #endif @@ -9732,7 +10081,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -9765,7 +10114,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -9797,7 +10146,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -9830,7 +10179,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -9860,7 +10209,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -9892,7 +10241,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -9926,7 +10275,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -9956,7 +10305,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[66], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -9979,7 +10328,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES20.DepthFunction)func); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.ES20.DepthFunction)func); #if DEBUG } #endif @@ -10001,7 +10350,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES20.DepthFunction)func); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.ES20.DepthFunction)func); #if DEBUG } #endif @@ -10023,7 +10372,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthMask((bool)flag); + InteropHelper.Call(EntryPoints[69], (bool)flag); #if DEBUG } #endif @@ -10050,7 +10399,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangef((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[70], (Single)n, (Single)f); #if DEBUG } #endif @@ -10077,7 +10426,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[71], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -10105,7 +10454,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[71], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -10121,7 +10470,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES20.EnableCap)cap); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES20.EnableCap)cap); #if DEBUG } #endif @@ -10136,7 +10485,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES20.EnableCap)cap); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES20.EnableCap)cap); #if DEBUG } #endif @@ -10151,7 +10500,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[74], (UInt32)index); #if DEBUG } #endif @@ -10167,7 +10516,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[74], (UInt32)index); #if DEBUG } #endif @@ -10200,7 +10549,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -10233,7 +10582,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -10265,7 +10614,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -10303,7 +10652,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -10345,7 +10694,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10392,7 +10741,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10439,7 +10788,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10486,7 +10835,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -10530,7 +10879,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -10572,7 +10921,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10619,7 +10968,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10666,7 +11015,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10713,7 +11062,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -10756,7 +11105,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -10797,7 +11146,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10843,7 +11192,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10889,7 +11238,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -10935,7 +11284,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -10969,7 +11318,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES20.EnableCap)cap); + InteropHelper.Call(EntryPoints[89], (OpenTK.Graphics.ES20.EnableCap)cap); #if DEBUG } #endif @@ -10996,7 +11345,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES20.EnableCap)cap); + InteropHelper.Call(EntryPoints[89], (OpenTK.Graphics.ES20.EnableCap)cap); #if DEBUG } #endif @@ -11018,7 +11367,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[91], (UInt32)index); #if DEBUG } #endif @@ -11041,7 +11390,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[91], (UInt32)index); #if DEBUG } #endif @@ -11058,7 +11407,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinish(); + InteropHelper.Call(EntryPoints[108]); #if DEBUG } #endif @@ -11075,7 +11424,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlush(); + InteropHelper.Call(EntryPoints[110]); #if DEBUG } #endif @@ -11112,7 +11461,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -11151,7 +11500,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -11188,7 +11537,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -11226,7 +11575,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -11264,7 +11613,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -11303,7 +11652,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -11318,7 +11667,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11335,7 +11684,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11351,7 +11700,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11368,7 +11717,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11383,7 +11732,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11399,7 +11748,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11415,7 +11764,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11432,7 +11781,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11455,7 +11804,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES20.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[117], (OpenTK.Graphics.ES20.FrontFaceDirection)mode); #if DEBUG } #endif @@ -11477,7 +11826,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES20.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[117], (OpenTK.Graphics.ES20.FrontFaceDirection)mode); #if DEBUG } #endif @@ -11509,7 +11858,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* buffers_ptr = &retval; - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers_ptr); return retval; } #if DEBUG @@ -11542,7 +11891,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11575,7 +11924,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -11606,7 +11955,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -11638,7 +11987,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11672,7 +12021,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -11703,7 +12052,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[118], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -11726,7 +12075,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmap((OpenTK.Graphics.ES20.TextureTarget)target); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.ES20.TextureTarget)target); #if DEBUG } #endif @@ -11748,7 +12097,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmap((OpenTK.Graphics.ES20.TextureTarget)target); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.ES20.TextureTarget)target); #if DEBUG } #endif @@ -11780,7 +12129,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* framebuffers_ptr = &retval; - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers_ptr); return retval; } #if DEBUG @@ -11813,7 +12162,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -11846,7 +12195,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -11877,7 +12226,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -11909,7 +12258,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -11943,7 +12292,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -11974,7 +12323,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -12006,7 +12355,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* renderbuffers_ptr = &retval; - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers_ptr); return retval; } #if DEBUG @@ -12039,7 +12388,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -12072,7 +12421,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -12103,7 +12452,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -12135,7 +12484,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -12169,7 +12518,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -12200,7 +12549,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[125], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -12232,7 +12581,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* textures_ptr = &retval; - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures_ptr); return retval; } #if DEBUG @@ -12265,7 +12614,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -12298,7 +12647,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -12329,7 +12678,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -12361,7 +12710,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -12395,7 +12744,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -12426,7 +12775,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[126], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -12484,7 +12833,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12547,7 +12896,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.All* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12605,7 +12954,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12658,7 +13007,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12717,7 +13066,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12782,7 +13131,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.All* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12840,7 +13189,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12894,7 +13243,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[128], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12952,7 +13301,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -13015,7 +13364,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.All* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -13073,7 +13422,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -13126,7 +13475,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -13185,7 +13534,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -13250,7 +13599,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES20.All* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES20.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -13308,7 +13657,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -13362,7 +13711,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES20.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -13404,7 +13753,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -13449,7 +13798,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -13491,7 +13840,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[130], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -13534,7 +13883,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -13580,7 +13929,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -13622,7 +13971,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[130], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -13649,7 +13998,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[131], (UInt32)program, (String)name); #if DEBUG } #endif @@ -13677,7 +14026,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[131], (UInt32)program, (String)name); #if DEBUG } #endif @@ -13697,7 +14046,7 @@ namespace OpenTK.Graphics.ES20 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -13718,7 +14067,7 @@ namespace OpenTK.Graphics.ES20 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -13740,7 +14089,7 @@ namespace OpenTK.Graphics.ES20 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -13762,7 +14111,7 @@ namespace OpenTK.Graphics.ES20 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -13782,7 +14131,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -13801,7 +14150,7 @@ namespace OpenTK.Graphics.ES20 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -13822,7 +14171,7 @@ namespace OpenTK.Graphics.ES20 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -13841,7 +14190,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.ES20.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -13878,7 +14227,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13917,7 +14266,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -13954,7 +14303,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13990,7 +14339,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14028,7 +14377,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -14064,7 +14413,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14129,7 +14478,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -14196,7 +14545,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -14262,7 +14611,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -14327,7 +14676,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -14394,7 +14743,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -14460,7 +14809,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -14527,7 +14876,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -14596,7 +14945,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -14663,7 +15012,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -14729,7 +15078,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -14797,7 +15146,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -14863,7 +15212,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[135], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -14876,7 +15225,7 @@ namespace OpenTK.Graphics.ES20 public static OpenTK.Graphics.ES20.ErrorCode GetError() { - return Delegates.glGetError(); + return InteropHelper.CallReturn(EntryPoints[139]); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -14893,7 +15242,7 @@ namespace OpenTK.Graphics.ES20 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -14914,7 +15263,7 @@ namespace OpenTK.Graphics.ES20 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -14936,7 +15285,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -14958,7 +15307,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -14978,7 +15327,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -14997,7 +15346,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -15018,7 +15367,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -15037,7 +15386,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.ES20.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -15079,7 +15428,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -15123,7 +15472,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15165,7 +15514,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -15206,7 +15555,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -15249,7 +15598,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15290,7 +15639,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -15332,7 +15681,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -15376,7 +15725,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15418,7 +15767,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES20.FramebufferTarget)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -15438,7 +15787,7 @@ namespace OpenTK.Graphics.ES20 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -15459,7 +15808,7 @@ namespace OpenTK.Graphics.ES20 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -15481,7 +15830,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -15503,7 +15852,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -15523,7 +15872,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -15542,7 +15891,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -15563,7 +15912,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -15582,7 +15931,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES20.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES20.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -15628,7 +15977,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -15676,7 +16025,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -15722,7 +16071,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -15770,7 +16119,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -15820,7 +16169,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -15867,7 +16216,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -15913,7 +16262,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -15961,7 +16310,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -16007,7 +16356,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -16054,7 +16403,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -16103,7 +16452,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -16149,7 +16498,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -16190,7 +16539,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -16233,7 +16582,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -16274,7 +16623,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -16319,7 +16668,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -16371,7 +16720,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -16421,7 +16770,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -16471,7 +16820,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -16523,7 +16872,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -16573,7 +16922,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -16623,7 +16972,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -16675,7 +17024,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -16725,7 +17074,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -16775,7 +17124,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -16828,7 +17177,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -16879,7 +17228,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[152], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -16913,7 +17262,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -16945,7 +17294,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -16982,7 +17331,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -17019,7 +17368,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -17056,7 +17405,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -17089,7 +17438,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17120,7 +17469,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -17156,7 +17505,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -17192,7 +17541,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -17228,7 +17577,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.ES20.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -17275,7 +17624,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -17316,7 +17665,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -17358,7 +17707,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -17399,7 +17748,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -17435,7 +17784,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17473,7 +17822,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17509,7 +17858,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17545,7 +17894,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17583,7 +17932,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17619,7 +17968,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17656,7 +18005,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17695,7 +18044,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17732,7 +18081,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17770,7 +18119,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17810,7 +18159,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17847,7 +18196,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17884,7 +18233,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17923,7 +18272,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17959,7 +18308,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17997,7 +18346,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18037,7 +18386,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18074,7 +18423,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (OpenTK.Graphics.ES20.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18111,7 +18460,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18150,7 +18499,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18187,7 +18536,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18223,7 +18572,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18261,7 +18610,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18297,7 +18646,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18338,7 +18687,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[173], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -18379,7 +18728,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[173], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -18421,7 +18770,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[173], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -18462,7 +18811,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[173], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -18498,7 +18847,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18536,7 +18885,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18572,7 +18921,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18608,7 +18957,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18646,7 +18995,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18682,7 +19031,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18720,7 +19069,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18760,7 +19109,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18797,7 +19146,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18834,7 +19183,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18873,7 +19222,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18909,7 +19258,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[174], (UInt32)shader, (OpenTK.Graphics.ES20.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18952,7 +19301,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* range_ptr = range) fixed (Int32* precision_ptr = precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); } } #if DEBUG @@ -18997,7 +19346,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* range_ptr = &range) fixed (Int32* precision_ptr = &precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); range = *range_ptr; precision = *precision_ptr; } @@ -19040,7 +19389,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (Int32*)range, (Int32*)precision); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (IntPtr)range, (IntPtr)precision); #if DEBUG } #endif @@ -19082,7 +19431,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* range_ptr = range) fixed (Int32* precision_ptr = precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); } } #if DEBUG @@ -19126,7 +19475,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* range_ptr = &range) fixed (Int32* precision_ptr = &precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); range = *range_ptr; precision = *precision_ptr; } @@ -19168,7 +19517,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (Int32*)range, (Int32*)precision); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.ES20.ShaderType)shadertype, (OpenTK.Graphics.ES20.ShaderPrecision)precisiontype, (IntPtr)range, (IntPtr)precision); #if DEBUG } #endif @@ -19209,7 +19558,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[176], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -19250,7 +19599,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[176], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -19292,7 +19641,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[176], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -19333,7 +19682,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[176], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -19361,7 +19710,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES20.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[177], (OpenTK.Graphics.ES20.StringName)name)); } #if DEBUG } #endif @@ -19388,7 +19737,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES20.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[177], (OpenTK.Graphics.ES20.StringName)name)); } #if DEBUG } #endif @@ -19425,7 +19774,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19464,7 +19813,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19501,7 +19850,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19538,7 +19887,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19577,7 +19926,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19614,7 +19963,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19650,7 +19999,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19688,7 +20037,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19724,7 +20073,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[179], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19761,7 +20110,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19800,7 +20149,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19837,7 +20186,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19874,7 +20223,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19913,7 +20262,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19950,7 +20299,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19986,7 +20335,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20024,7 +20373,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20060,7 +20409,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[180], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20096,7 +20445,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[182], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -20134,7 +20483,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[182], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20170,7 +20519,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[182], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -20207,7 +20556,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[182], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -20246,7 +20595,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[182], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20282,7 +20631,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[182], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -20318,7 +20667,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -20356,7 +20705,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20392,7 +20741,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[183], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -20429,7 +20778,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -20468,7 +20817,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20504,7 +20853,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[183], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -20531,7 +20880,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[184], (UInt32)program, (String)name); #if DEBUG } #endif @@ -20559,7 +20908,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[184], (UInt32)program, (String)name); #if DEBUG } #endif @@ -20595,7 +20944,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20633,7 +20982,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20669,7 +21018,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20705,7 +21054,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20743,7 +21092,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20779,7 +21128,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20817,7 +21166,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20857,7 +21206,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20894,7 +21243,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20931,7 +21280,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20970,7 +21319,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21006,7 +21355,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[185], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21042,7 +21391,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21080,7 +21429,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21116,7 +21465,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21152,7 +21501,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21190,7 +21539,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21226,7 +21575,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21264,7 +21613,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21304,7 +21653,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21341,7 +21690,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21378,7 +21727,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21417,7 +21766,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21453,7 +21802,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[186], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21485,7 +21834,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -21521,7 +21870,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21562,7 +21911,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21603,7 +21952,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21644,7 +21993,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -21682,7 +22031,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -21718,7 +22067,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21759,7 +22108,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21800,7 +22149,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21841,7 +22190,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -21881,7 +22230,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -21919,7 +22268,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -21962,7 +22311,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -22005,7 +22354,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -22048,7 +22397,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -22087,7 +22436,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -22124,7 +22473,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -22166,7 +22515,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -22208,7 +22557,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -22250,7 +22599,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[187], (UInt32)index, (OpenTK.Graphics.ES20.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -22284,7 +22633,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES20.HintTarget)target, (OpenTK.Graphics.ES20.HintMode)mode); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES20.HintTarget)target, (OpenTK.Graphics.ES20.HintMode)mode); #if DEBUG } #endif @@ -22311,7 +22660,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES20.HintTarget)target, (OpenTK.Graphics.ES20.HintMode)mode); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES20.HintTarget)target, (OpenTK.Graphics.ES20.HintMode)mode); #if DEBUG } #endif @@ -22333,7 +22682,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[190], (UInt32)buffer); #if DEBUG } #endif @@ -22356,7 +22705,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[190], (UInt32)buffer); #if DEBUG } #endif @@ -22384,7 +22733,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.ES20.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[191], (OpenTK.Graphics.ES20.EnableCap)cap); #if DEBUG } #endif @@ -22411,7 +22760,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.ES20.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[191], (OpenTK.Graphics.ES20.EnableCap)cap); #if DEBUG } #endif @@ -22433,7 +22782,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[193], (UInt32)framebuffer); #if DEBUG } #endif @@ -22456,7 +22805,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[193], (UInt32)framebuffer); #if DEBUG } #endif @@ -22478,7 +22827,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[194], (UInt32)program); #if DEBUG } #endif @@ -22501,7 +22850,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[194], (UInt32)program); #if DEBUG } #endif @@ -22523,7 +22872,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[197], (UInt32)renderbuffer); #if DEBUG } #endif @@ -22546,7 +22895,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[197], (UInt32)renderbuffer); #if DEBUG } #endif @@ -22568,7 +22917,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[198], (UInt32)shader); #if DEBUG } #endif @@ -22591,7 +22940,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[198], (UInt32)shader); #if DEBUG } #endif @@ -22613,7 +22962,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[200], (UInt32)texture); #if DEBUG } #endif @@ -22636,7 +22985,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[200], (UInt32)texture); #if DEBUG } #endif @@ -22658,7 +23007,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidth((Single)width); + InteropHelper.Call(EntryPoints[203], (Single)width); #if DEBUG } #endif @@ -22680,7 +23029,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[204], (UInt32)program); #if DEBUG } #endif @@ -22703,7 +23052,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[204], (UInt32)program); #if DEBUG } #endif @@ -22740,7 +23089,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[209], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -22779,7 +23128,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[209], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -22816,7 +23165,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[209], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -22854,7 +23203,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[209], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -22886,7 +23235,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabel((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[211], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -22922,7 +23271,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[211], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -22963,7 +23312,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[211], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -23004,7 +23353,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[211], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -23045,7 +23394,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[211], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -23079,7 +23428,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES20.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES20.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -23106,7 +23455,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES20.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES20.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -23133,7 +23482,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffset((Single)factor, (Single)units); + InteropHelper.Call(EntryPoints[214], (Single)factor, (Single)units); #if DEBUG } #endif @@ -23150,7 +23499,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroup(); + InteropHelper.Call(EntryPoints[215]); #if DEBUG } #endif @@ -23187,7 +23536,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[253], (OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -23225,7 +23574,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[253], (OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -23268,7 +23617,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -23315,7 +23664,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -23367,7 +23716,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -23419,7 +23768,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -23471,7 +23820,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -23519,7 +23868,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -23565,7 +23914,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -23616,7 +23965,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -23667,7 +24016,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -23718,7 +24067,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -23741,7 +24090,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReleaseShaderCompiler(); + InteropHelper.Call(EntryPoints[261]); #if DEBUG } #endif @@ -23779,7 +24128,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorage((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -23816,7 +24165,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorage((OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -23843,7 +24192,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverage((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[269], (Single)value, (bool)invert); #if DEBUG } #endif @@ -23870,7 +24219,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[270], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -23916,7 +24265,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -23968,7 +24317,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24025,7 +24374,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24082,7 +24431,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24139,7 +24488,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -24193,7 +24542,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -24245,7 +24594,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24302,7 +24651,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24359,7 +24708,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24416,7 +24765,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -24470,7 +24819,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -24522,7 +24871,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24579,7 +24928,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24636,7 +24985,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24693,7 +25042,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -24747,7 +25096,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -24799,7 +25148,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24856,7 +25205,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24913,7 +25262,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -24970,7 +25319,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -25021,7 +25370,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -25068,7 +25417,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25120,7 +25469,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25172,7 +25521,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25224,7 +25573,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -25273,7 +25622,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -25320,7 +25669,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25372,7 +25721,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25424,7 +25773,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25476,7 +25825,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -25530,7 +25879,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -25584,7 +25933,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25643,7 +25992,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25702,7 +26051,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25761,7 +26110,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -25816,7 +26165,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -25869,7 +26218,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25927,7 +26276,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -25985,7 +26334,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26043,7 +26392,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -26099,7 +26448,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -26153,7 +26502,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26212,7 +26561,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26271,7 +26620,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26330,7 +26679,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -26385,7 +26734,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -26438,7 +26787,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26496,7 +26845,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26554,7 +26903,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26612,7 +26961,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -26664,7 +27013,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -26712,7 +27061,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26765,7 +27114,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26818,7 +27167,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -26871,7 +27220,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -26920,7 +27269,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -26967,7 +27316,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -27019,7 +27368,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -27071,7 +27420,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -27123,7 +27472,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[273], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES20.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -27170,7 +27519,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[274], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -27213,7 +27562,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[274], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -27253,7 +27602,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[274], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -27295,7 +27644,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[274], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -27339,7 +27688,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[274], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -27379,7 +27728,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[274], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -27411,7 +27760,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27445,7 +27794,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27477,7 +27826,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27510,7 +27859,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27547,7 +27896,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[277], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27586,7 +27935,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[277], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27624,7 +27973,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[277], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27663,7 +28012,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[277], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27700,7 +28049,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[277], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27738,7 +28087,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[277], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -27760,7 +28109,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[278], (UInt32)mask); #if DEBUG } #endif @@ -27783,7 +28132,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[278], (UInt32)mask); #if DEBUG } #endif @@ -27810,7 +28159,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[279], (OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -27839,7 +28188,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[279], (OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -27867,7 +28216,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[279], (OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -27896,7 +28245,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[279], (OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -27923,7 +28272,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[279], (OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -27951,7 +28300,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[279], (OpenTK.Graphics.ES20.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -27984,7 +28333,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES20.StencilOp)fail, (OpenTK.Graphics.ES20.StencilOp)zfail, (OpenTK.Graphics.ES20.StencilOp)zpass); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.ES20.StencilOp)fail, (OpenTK.Graphics.ES20.StencilOp)zfail, (OpenTK.Graphics.ES20.StencilOp)zpass); #if DEBUG } #endif @@ -28016,7 +28365,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES20.StencilOp)fail, (OpenTK.Graphics.ES20.StencilOp)zfail, (OpenTK.Graphics.ES20.StencilOp)zpass); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.ES20.StencilOp)fail, (OpenTK.Graphics.ES20.StencilOp)zfail, (OpenTK.Graphics.ES20.StencilOp)zpass); #if DEBUG } #endif @@ -28054,7 +28403,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilOp)sfail, (OpenTK.Graphics.ES20.StencilOp)dpfail, (OpenTK.Graphics.ES20.StencilOp)dppass); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilOp)sfail, (OpenTK.Graphics.ES20.StencilOp)dpfail, (OpenTK.Graphics.ES20.StencilOp)dppass); #if DEBUG } #endif @@ -28092,7 +28441,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilOp)sfail, (OpenTK.Graphics.ES20.StencilOp)dpfail, (OpenTK.Graphics.ES20.StencilOp)dppass); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilOp)sfail, (OpenTK.Graphics.ES20.StencilOp)dpfail, (OpenTK.Graphics.ES20.StencilOp)dppass); #if DEBUG } #endif @@ -28129,7 +28478,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilOp)sfail, (OpenTK.Graphics.ES20.StencilOp)dpfail, (OpenTK.Graphics.ES20.StencilOp)dppass); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.ES20.StencilFace)face, (OpenTK.Graphics.ES20.StencilOp)sfail, (OpenTK.Graphics.ES20.StencilOp)dpfail, (OpenTK.Graphics.ES20.StencilOp)dppass); #if DEBUG } #endif @@ -28192,7 +28541,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -28259,7 +28608,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -28331,7 +28680,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -28403,7 +28752,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -28475,7 +28824,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -28544,7 +28893,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -28611,7 +28960,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -28683,7 +29032,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -28755,7 +29104,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -28827,7 +29176,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -28895,7 +29244,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -28961,7 +29310,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -29032,7 +29381,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -29103,7 +29452,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -29174,7 +29523,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -29221,7 +29570,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -29261,7 +29610,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -29306,7 +29655,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[286], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29350,7 +29699,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[286], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29394,7 +29743,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[286], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29437,7 +29786,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[286], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29478,7 +29827,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[287], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -29518,7 +29867,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[287], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -29563,7 +29912,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29607,7 +29956,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29651,7 +30000,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29694,7 +30043,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.ES20.TextureTarget)target, (OpenTK.Graphics.ES20.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29757,7 +30106,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -29824,7 +30173,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -29896,7 +30245,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -29968,7 +30317,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30040,7 +30389,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -30109,7 +30458,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -30176,7 +30525,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30248,7 +30597,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30320,7 +30669,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30392,7 +30741,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -30460,7 +30809,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -30526,7 +30875,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30597,7 +30946,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30668,7 +31017,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -30739,7 +31088,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -30790,7 +31139,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1f((Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[297], (Int32)location, (Single)v0); #if DEBUG } #endif @@ -30839,7 +31188,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[298], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -30890,7 +31239,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[298], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -30938,7 +31287,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[298], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -30983,7 +31332,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1i((Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[299], (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -31032,7 +31381,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[300], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31083,7 +31432,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[300], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31131,7 +31480,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[300], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -31176,7 +31525,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2f((Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[301], (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -31225,7 +31574,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[302], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31276,7 +31625,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[302], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31324,7 +31673,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[302], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -31369,7 +31718,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2i((Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[303], (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -31418,7 +31767,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[304], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31466,7 +31815,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[304], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -31511,7 +31860,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3f((Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[305], (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -31560,7 +31909,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[306], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31611,7 +31960,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[306], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31659,7 +32008,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[306], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -31704,7 +32053,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[307], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -31753,7 +32102,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[308], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31804,7 +32153,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[308], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31852,7 +32201,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[308], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -31897,7 +32246,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4f((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[309], (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -31946,7 +32295,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[310], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -31997,7 +32346,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[310], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -32045,7 +32394,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[310], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -32090,7 +32439,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[311], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -32139,7 +32488,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[312], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -32190,7 +32539,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[312], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -32238,7 +32587,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[312], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -32257,7 +32606,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[313], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -32278,7 +32627,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[313], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -32296,7 +32645,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[313], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -32315,7 +32664,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[316], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -32336,7 +32685,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[316], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -32354,7 +32703,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[316], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -32373,7 +32722,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[319], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -32394,7 +32743,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[319], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -32412,7 +32761,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[319], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -32434,7 +32783,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[323], (UInt32)program); #if DEBUG } #endif @@ -32457,7 +32806,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[323], (UInt32)program); #if DEBUG } #endif @@ -32479,7 +32828,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[326], (UInt32)program); #if DEBUG } #endif @@ -32502,7 +32851,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[326], (UInt32)program); #if DEBUG } #endif @@ -32549,7 +32898,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[328], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -32597,7 +32946,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[328], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -32648,7 +32997,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[329], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -32698,7 +33047,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[329], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -32750,7 +33099,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[329], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -32800,7 +33149,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[329], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -32847,7 +33196,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[330], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -32895,7 +33244,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[330], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -32946,7 +33295,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[331], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -32999,7 +33348,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[331], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33049,7 +33398,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[331], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -33101,7 +33450,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[331], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33155,7 +33504,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[331], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33205,7 +33554,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[331], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -33252,7 +33601,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[332], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -33300,7 +33649,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[332], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -33351,7 +33700,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[333], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33404,7 +33753,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[333], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33454,7 +33803,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[333], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -33506,7 +33855,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[333], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33560,7 +33909,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[333], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33610,7 +33959,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[333], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -33657,7 +34006,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[334], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -33705,7 +34054,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[334], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -33756,7 +34105,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33809,7 +34158,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33859,7 +34208,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[335], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -33911,7 +34260,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -33965,7 +34314,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -34015,7 +34364,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[335], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -34062,7 +34411,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -34113,7 +34462,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34169,7 +34518,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34225,7 +34574,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34281,7 +34630,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -34334,7 +34683,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -34385,7 +34734,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34441,7 +34790,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34497,7 +34846,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34553,7 +34902,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -34608,7 +34957,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -34661,7 +35010,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34719,7 +35068,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34777,7 +35126,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34835,7 +35184,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -34889,7 +35238,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -34941,7 +35290,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34998,7 +35347,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -35055,7 +35404,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -35112,7 +35461,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[339], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES20.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -35145,7 +35494,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[340], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -35162,7 +35511,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveProgramEXT((UInt32)program); + InteropHelper.Call(EntryPoints[0], (UInt32)program); #if DEBUG } #endif @@ -35178,7 +35527,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveProgramEXT((UInt32)program); + InteropHelper.Call(EntryPoints[0], (UInt32)program); #if DEBUG } #endif @@ -35205,7 +35554,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgramEXT((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[1], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -35233,7 +35582,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgramEXT((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[1], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -35260,7 +35609,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -35289,7 +35638,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -35316,7 +35665,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -35344,7 +35693,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES20.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -35366,7 +35715,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[10], (UInt32)pipeline); #if DEBUG } #endif @@ -35389,7 +35738,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[10], (UInt32)pipeline); #if DEBUG } #endif @@ -35417,7 +35766,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.ES20.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES20.BlendEquationMode)mode); #if DEBUG } #endif @@ -35444,7 +35793,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.ES20.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES20.BlendEquationMode)mode); #if DEBUG } #endif @@ -35476,7 +35825,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramEXT((OpenTK.Graphics.ES20.All)type, (String)@string); + return InteropHelper.CallReturn(EntryPoints[47], (OpenTK.Graphics.ES20.All)type, (String)@string); #if DEBUG } #endif @@ -35508,7 +35857,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramvEXT((OpenTK.Graphics.ES20.All)type, (Int32)count, (String[])strings); + return InteropHelper.CallReturn(EntryPoints[48], (OpenTK.Graphics.ES20.All)type, (Int32)count, (String[])strings); #if DEBUG } #endif @@ -35527,7 +35876,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -35548,7 +35897,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -35580,7 +35929,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -35613,7 +35962,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -35643,7 +35992,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -35675,7 +36024,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -35709,7 +36058,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -35739,7 +36088,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[61], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -35758,7 +36107,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -35779,7 +36128,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -35811,7 +36160,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -35844,7 +36193,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -35874,7 +36223,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -35906,7 +36255,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -35940,7 +36289,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -35970,7 +36319,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[62], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -35989,7 +36338,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.All* attachments_ptr = attachments) { - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES20.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES20.All*)attachments_ptr); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.ES20.All)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -36010,7 +36359,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.All* attachments_ptr = &attachments) { - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES20.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES20.All*)attachments_ptr); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.ES20.All)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -36028,7 +36377,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES20.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES20.All*)attachments); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.ES20.All)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -36066,7 +36415,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -36103,7 +36452,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -36135,7 +36484,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -36169,7 +36518,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -36200,7 +36549,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -36231,7 +36580,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -36264,7 +36613,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -36294,7 +36643,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -36314,7 +36663,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* location_ptr = location) fixed (Int32* indices_ptr = indices) { - Delegates.glDrawBuffersIndexedEXT((Int32)n, (OpenTK.Graphics.ES20.All*)location_ptr, (Int32*)indices_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)location_ptr, (IntPtr)indices_ptr); } } #if DEBUG @@ -36336,7 +36685,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* location_ptr = &location) fixed (Int32* indices_ptr = &indices) { - Delegates.glDrawBuffersIndexedEXT((Int32)n, (OpenTK.Graphics.ES20.All*)location_ptr, (Int32*)indices_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)location_ptr, (IntPtr)indices_ptr); } } #if DEBUG @@ -36354,7 +36703,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersIndexedEXT((Int32)n, (OpenTK.Graphics.ES20.All*)location, (Int32*)indices); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)location, (IntPtr)indices); #if DEBUG } #endif @@ -36397,7 +36746,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -36444,7 +36793,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -36496,7 +36845,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -36548,7 +36897,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -36600,7 +36949,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -36648,7 +36997,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -36694,7 +37043,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -36745,7 +37094,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -36796,7 +37145,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -36847,7 +37196,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -36869,7 +37218,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryEXT((OpenTK.Graphics.ES20.QueryTarget)target); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES20.QueryTarget)target); #if DEBUG } #endif @@ -36884,7 +37233,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryEXT((OpenTK.Graphics.ES20.QueryTarget)target); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.ES20.QueryTarget)target); #if DEBUG } #endif @@ -36917,7 +37266,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRangeEXT((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -36949,7 +37298,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRangeEXT((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -36964,7 +37313,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleEXT((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[114], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -36980,7 +37329,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleEXT((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[114], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -37000,7 +37349,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* pipelines_ptr = &retval; - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines_ptr); return retval; } #if DEBUG @@ -37033,7 +37382,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -37066,7 +37415,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -37097,7 +37446,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -37129,7 +37478,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -37163,7 +37512,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -37194,7 +37543,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[123], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -37214,7 +37563,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -37247,7 +37596,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -37280,7 +37629,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -37311,7 +37660,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -37343,7 +37692,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -37377,7 +37726,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -37408,7 +37757,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[124], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -37423,7 +37772,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetGraphicsResetStatusEXT(); + return InteropHelper.CallReturn(EntryPoints[143]); #if DEBUG } #endif @@ -37442,7 +37791,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -37463,7 +37812,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -37482,7 +37831,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -37503,7 +37852,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -37526,7 +37875,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -37546,7 +37895,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -37565,7 +37914,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -37586,7 +37935,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -37605,7 +37954,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -37625,7 +37974,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -37647,7 +37996,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -37666,7 +38015,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES20.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -37685,7 +38034,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[147], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -37706,7 +38055,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[147], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37725,7 +38074,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[147], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -37745,7 +38094,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[147], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -37767,7 +38116,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[147], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37786,7 +38135,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[147], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -37805,7 +38154,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[148], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -37826,7 +38175,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[148], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37845,7 +38194,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[148], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -37865,7 +38214,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[148], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -37887,7 +38236,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[148], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37906,7 +38255,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[148], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -37952,7 +38301,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -38000,7 +38349,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -38046,7 +38395,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -38093,7 +38442,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -38142,7 +38491,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -38188,7 +38537,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -38229,7 +38578,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[165], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); } } #if DEBUG @@ -38272,7 +38621,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[165], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -38313,7 +38662,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[165], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -38355,7 +38704,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[165], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); } } #if DEBUG @@ -38399,7 +38748,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[165], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -38440,7 +38789,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[165], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -38476,7 +38825,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[166], (UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38514,7 +38863,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[166], (UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38550,7 +38899,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[166], (UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38587,7 +38936,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[166], (UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38626,7 +38975,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[166], (UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38662,7 +39011,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[166], (UInt32)pipeline, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38682,7 +39031,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38704,7 +39053,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38724,7 +39073,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38743,7 +39092,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38764,7 +39113,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38783,7 +39132,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.ES20.QueryTarget)target, (OpenTK.Graphics.ES20.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38819,7 +39168,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38857,7 +39206,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38893,7 +39242,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38929,7 +39278,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38967,7 +39316,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39003,7 +39352,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39041,7 +39390,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39081,7 +39430,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39118,7 +39467,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39155,7 +39504,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39194,7 +39543,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39230,7 +39579,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[168], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39266,7 +39615,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39304,7 +39653,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39340,7 +39689,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39376,7 +39725,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39414,7 +39763,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39450,7 +39799,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39488,7 +39837,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39528,7 +39877,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39565,7 +39914,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39602,7 +39951,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39641,7 +39990,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39677,7 +40026,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[169], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39715,7 +40064,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39755,7 +40104,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39792,7 +40141,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[170], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39829,7 +40178,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39868,7 +40217,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[170], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39904,7 +40253,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[170], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39942,7 +40291,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39982,7 +40331,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -40019,7 +40368,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[171], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -40056,7 +40405,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -40095,7 +40444,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -40131,7 +40480,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[171], (UInt32)id, (OpenTK.Graphics.ES20.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -40146,7 +40495,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInsertEventMarkerEXT((Int32)length, (String)marker); + InteropHelper.Call(EntryPoints[189], (Int32)length, (String)marker); #if DEBUG } #endif @@ -40168,7 +40517,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipelineEXT((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[195], (UInt32)pipeline); #if DEBUG } #endif @@ -40191,7 +40540,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipelineEXT((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[195], (UInt32)pipeline); #if DEBUG } #endif @@ -40213,7 +40562,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQueryEXT((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[196], (UInt32)id); #if DEBUG } #endif @@ -40236,7 +40585,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQueryEXT((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[196], (UInt32)id); #if DEBUG } #endif @@ -40251,7 +40600,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLabelObjectEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)length, (String)label); #if DEBUG } #endif @@ -40267,7 +40616,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLabelObjectEXT((OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.ES20.All)type, (UInt32)@object, (Int32)length, (String)label); #if DEBUG } #endif @@ -40304,7 +40653,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[206], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -40343,7 +40692,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[206], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -40380,7 +40729,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[206], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -40418,7 +40767,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[206], (OpenTK.Graphics.ES20.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -40461,7 +40810,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -40506,7 +40855,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -40547,7 +40896,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -40589,7 +40938,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -40633,7 +40982,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -40673,7 +41022,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -40720,7 +41069,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -40773,7 +41122,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -40831,7 +41180,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -40889,7 +41238,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -40947,7 +41296,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -41002,7 +41351,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -41055,7 +41404,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41113,7 +41462,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41171,7 +41520,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41229,7 +41578,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -41281,7 +41630,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -41329,7 +41678,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41382,7 +41731,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41435,7 +41784,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41488,7 +41837,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -41540,7 +41889,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -41592,7 +41941,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41649,7 +41998,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41706,7 +42055,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41763,7 +42112,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -41817,7 +42166,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -41869,7 +42218,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41926,7 +42275,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -41983,7 +42332,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -42040,7 +42389,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -42091,7 +42440,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -42138,7 +42487,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -42190,7 +42539,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -42242,7 +42591,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -42294,7 +42643,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.ES20.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -42315,7 +42664,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopGroupMarkerEXT(); + InteropHelper.Call(EntryPoints[217]); #if DEBUG } #endif @@ -42347,7 +42696,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[219], (UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -42379,7 +42728,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[219], (UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -42413,7 +42762,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[219], (UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -42446,7 +42795,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[219], (UInt32)program, (OpenTK.Graphics.ES20.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -42496,7 +42845,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[220], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -42547,7 +42896,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[220], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -42601,7 +42950,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -42657,7 +43006,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -42710,7 +43059,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[221], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -42765,7 +43114,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -42822,7 +43171,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -42875,7 +43224,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[221], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -42925,7 +43274,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[222], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -42976,7 +43325,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[222], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -43030,7 +43379,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[223], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43086,7 +43435,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[223], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43139,7 +43488,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[223], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -43194,7 +43543,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[223], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43251,7 +43600,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[223], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43304,7 +43653,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[223], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -43355,7 +43704,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uiEXT((UInt32)program, (Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[224], (UInt32)program, (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -43410,7 +43759,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[225], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43467,7 +43816,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[225], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43520,7 +43869,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[225], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -43570,7 +43919,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[226], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -43621,7 +43970,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[226], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -43675,7 +44024,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[227], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43731,7 +44080,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[227], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43784,7 +44133,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[227], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -43839,7 +44188,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[227], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43896,7 +44245,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[227], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -43949,7 +44298,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[227], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -43999,7 +44348,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[228], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -44050,7 +44399,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[228], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -44104,7 +44453,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[229], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44157,7 +44506,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[229], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -44212,7 +44561,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[229], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44265,7 +44614,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[229], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -44316,7 +44665,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[230], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -44371,7 +44720,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[231], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44428,7 +44777,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[231], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44481,7 +44830,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[231], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -44531,7 +44880,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[232], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -44582,7 +44931,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[232], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -44636,7 +44985,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44692,7 +45041,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44745,7 +45094,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -44800,7 +45149,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44857,7 +45206,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -44910,7 +45259,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -44960,7 +45309,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[234], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -45011,7 +45360,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[234], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -45065,7 +45414,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[235], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45121,7 +45470,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[235], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45174,7 +45523,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[235], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -45229,7 +45578,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[235], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45286,7 +45635,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[235], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45339,7 +45688,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[235], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -45390,7 +45739,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -45445,7 +45794,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45502,7 +45851,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45555,7 +45904,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -45605,7 +45954,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -45656,7 +46005,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -45710,7 +46059,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[239], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45766,7 +46115,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[239], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45819,7 +46168,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[239], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -45874,7 +46223,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[239], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45931,7 +46280,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[239], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -45984,7 +46333,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[239], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -46034,7 +46383,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[240], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -46085,7 +46434,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[240], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -46139,7 +46488,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46195,7 +46544,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46248,7 +46597,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[241], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -46303,7 +46652,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46360,7 +46709,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46413,7 +46762,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[241], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -46464,7 +46813,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[242], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -46519,7 +46868,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[243], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46576,7 +46925,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[243], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46629,7 +46978,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[243], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -46648,7 +46997,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46669,7 +47018,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46687,7 +47036,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[244], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -46707,7 +47056,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46729,7 +47078,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46747,7 +47096,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[244], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -46766,7 +47115,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[245], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46787,7 +47136,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[245], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46805,7 +47154,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[245], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -46825,7 +47174,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[245], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46847,7 +47196,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[245], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46865,7 +47214,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[245], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -46884,7 +47233,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[246], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46905,7 +47254,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[246], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46923,7 +47272,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[246], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -46943,7 +47292,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[246], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46965,7 +47314,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[246], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -46983,7 +47332,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[246], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47002,7 +47351,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[247], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47023,7 +47372,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[247], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47041,7 +47390,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[247], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47061,7 +47410,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[247], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47083,7 +47432,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[247], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47101,7 +47450,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[247], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47120,7 +47469,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[248], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47141,7 +47490,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[248], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47159,7 +47508,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[248], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47179,7 +47528,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[248], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47201,7 +47550,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[248], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47219,7 +47568,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[248], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47238,7 +47587,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[249], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47259,7 +47608,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[249], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47277,7 +47626,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[249], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47297,7 +47646,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[249], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47319,7 +47668,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[249], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47337,7 +47686,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[249], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47356,7 +47705,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[250], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47377,7 +47726,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[250], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47395,7 +47744,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[250], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47415,7 +47764,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[250], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47437,7 +47786,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[250], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47455,7 +47804,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[250], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47474,7 +47823,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[251], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47495,7 +47844,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[251], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47513,7 +47862,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[251], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47533,7 +47882,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[251], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47555,7 +47904,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[251], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47573,7 +47922,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[251], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47592,7 +47941,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47613,7 +47962,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47631,7 +47980,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47651,7 +48000,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47673,7 +48022,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -47691,7 +48040,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -47706,7 +48055,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushGroupMarkerEXT((Int32)length, (String)marker); + InteropHelper.Call(EntryPoints[255], (Int32)length, (String)marker); #if DEBUG } #endif @@ -47733,7 +48082,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounterEXT((UInt32)id, (OpenTK.Graphics.ES20.All)target); + InteropHelper.Call(EntryPoints[256], (UInt32)id, (OpenTK.Graphics.ES20.All)target); #if DEBUG } #endif @@ -47761,7 +48110,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounterEXT((UInt32)id, (OpenTK.Graphics.ES20.All)target); + InteropHelper.Call(EntryPoints[256], (UInt32)id, (OpenTK.Graphics.ES20.All)target); #if DEBUG } #endif @@ -47776,7 +48125,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBufferIndexedEXT((OpenTK.Graphics.ES20.All)src, (Int32)index); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.ES20.All)src, (Int32)index); #if DEBUG } #endif @@ -47791,7 +48140,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[259], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data); #if DEBUG } #endif @@ -47810,7 +48159,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -47834,7 +48183,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -47858,7 +48207,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -47882,7 +48231,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -47931,7 +48280,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -47973,7 +48322,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48010,7 +48359,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage1DEXT((OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[289], (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -48053,7 +48402,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DEXT((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[290], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48095,7 +48444,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DEXT((OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[290], (OpenTK.Graphics.ES20.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48143,7 +48492,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DEXT((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[291], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -48190,7 +48539,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DEXT((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[291], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES20.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -48205,7 +48554,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[294], (UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -48221,7 +48570,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[294], (UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -48236,7 +48585,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[295], (UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48252,7 +48601,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[295], (UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48267,7 +48616,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[296], (UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -48283,7 +48632,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[296], (UInt32)texture, (OpenTK.Graphics.ES20.All)target, (Int32)levels, (OpenTK.Graphics.ES20.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -48315,7 +48664,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStagesEXT((UInt32)pipeline, (UInt32)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[324], (UInt32)pipeline, (UInt32)stages, (UInt32)program); #if DEBUG } #endif @@ -48348,7 +48697,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStagesEXT((UInt32)pipeline, (UInt32)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[324], (UInt32)pipeline, (UInt32)stages, (UInt32)program); #if DEBUG } #endif @@ -48363,7 +48712,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseShaderProgramEXT((OpenTK.Graphics.ES20.All)type, (UInt32)program); + InteropHelper.Call(EntryPoints[325], (OpenTK.Graphics.ES20.All)type, (UInt32)program); #if DEBUG } #endif @@ -48379,7 +48728,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseShaderProgramEXT((OpenTK.Graphics.ES20.All)type, (UInt32)program); + InteropHelper.Call(EntryPoints[325], (OpenTK.Graphics.ES20.All)type, (UInt32)program); #if DEBUG } #endif @@ -48401,7 +48750,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[327], (UInt32)pipeline); #if DEBUG } #endif @@ -48424,7 +48773,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[327], (UInt32)pipeline); #if DEBUG } #endif @@ -48451,7 +48800,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorEXT((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[337], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -48479,7 +48828,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorEXT((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[337], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -48498,7 +48847,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleIMG((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -48514,7 +48863,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleIMG((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -48557,7 +48906,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleIMG((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48599,7 +48948,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleIMG((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -48630,7 +48979,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[51], (DebugProcKhr)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -48661,7 +49010,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -48697,7 +49046,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -48733,7 +49082,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -48769,7 +49118,7 @@ namespace OpenTK.Graphics.ES20 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -48826,7 +49175,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -48879,7 +49228,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -48929,7 +49278,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -48982,7 +49331,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -49037,7 +49386,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -49088,7 +49437,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -49139,7 +49488,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -49192,7 +49541,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -49242,7 +49591,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -49294,7 +49643,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -49348,7 +49697,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -49398,7 +49747,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES20.DebugSourceControl)source, (OpenTK.Graphics.ES20.DebugTypeControl)type, (OpenTK.Graphics.ES20.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -49445,7 +49794,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[55], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -49494,7 +49843,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[55], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -49541,7 +49890,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[55], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -49589,7 +49938,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[55], (OpenTK.Graphics.ES20.DebugSourceExternal)source, (OpenTK.Graphics.ES20.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES20.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -49654,7 +50003,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -49721,7 +50070,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -49787,7 +50136,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -49852,7 +50201,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -49919,7 +50268,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -49985,7 +50334,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -50052,7 +50401,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -50121,7 +50470,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -50188,7 +50537,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -50254,7 +50603,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -50322,7 +50671,7 @@ namespace OpenTK.Graphics.ES20 fixed (OpenTK.Graphics.ES20.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES20.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES20.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -50388,7 +50737,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES20.DebugSourceExternal*)sources, (OpenTK.Graphics.ES20.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES20.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[136], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -50434,7 +50783,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -50482,7 +50831,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -50528,7 +50877,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -50576,7 +50925,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -50626,7 +50975,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -50673,7 +51022,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -50719,7 +51068,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -50767,7 +51116,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -50813,7 +51162,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -50860,7 +51209,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -50909,7 +51258,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -50955,7 +51304,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -50996,7 +51345,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -51039,7 +51388,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -51080,7 +51429,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -51125,7 +51474,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -51177,7 +51526,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -51227,7 +51576,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -51277,7 +51626,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -51329,7 +51678,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -51379,7 +51728,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -51429,7 +51778,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -51481,7 +51830,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -51531,7 +51880,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -51581,7 +51930,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -51634,7 +51983,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -51685,7 +52034,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[153], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -51706,7 +52055,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointervKHR((OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -51725,7 +52074,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -51749,7 +52098,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -51773,7 +52122,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -51797,7 +52146,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -51840,7 +52189,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[210], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -51879,7 +52228,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[210], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -51916,7 +52265,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[210], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -51954,7 +52303,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[210], (OpenTK.Graphics.ES20.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -51986,7 +52335,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabelKHR((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[212], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -52022,7 +52371,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[212], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -52063,7 +52412,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[212], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -52104,7 +52453,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[212], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -52145,7 +52494,7 @@ namespace OpenTK.Graphics.ES20 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[212], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -52168,7 +52517,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroupKHR(); + InteropHelper.Call(EntryPoints[216]); #if DEBUG } #endif @@ -52205,7 +52554,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[254], (OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -52243,7 +52592,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[254], (OpenTK.Graphics.ES20.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -52262,7 +52611,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendBarrierNV(); + InteropHelper.Call(EntryPoints[14]); #if DEBUG } #endif @@ -52277,7 +52626,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendParameteriNV((OpenTK.Graphics.ES20.All)pname, (Int32)value); + InteropHelper.Call(EntryPoints[21], (OpenTK.Graphics.ES20.All)pname, (Int32)value); #if DEBUG } #endif @@ -52315,7 +52664,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferNV((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[23], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -52352,7 +52701,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferNV((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[23], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES20.ClearBufferMask)mask, (OpenTK.Graphics.ES20.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -52395,7 +52744,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubDataNV((OpenTK.Graphics.ES20.BufferTarget)readTarget, (OpenTK.Graphics.ES20.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES20.BufferTarget)readTarget, (OpenTK.Graphics.ES20.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -52437,7 +52786,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubDataNV((OpenTK.Graphics.ES20.BufferTarget)readTarget, (OpenTK.Graphics.ES20.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES20.BufferTarget)readTarget, (OpenTK.Graphics.ES20.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -52452,7 +52801,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverageMaskNV((bool)mask); + InteropHelper.Call(EntryPoints[43], (bool)mask); #if DEBUG } #endif @@ -52467,7 +52816,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverageOperationNV((OpenTK.Graphics.ES20.All)operation); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.ES20.All)operation); #if DEBUG } #endif @@ -52486,7 +52835,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -52507,7 +52856,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -52527,7 +52876,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -52548,7 +52897,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -52566,7 +52915,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -52586,7 +52935,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -52608,7 +52957,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -52626,7 +52975,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[57], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -52664,7 +53013,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -52701,7 +53050,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -52733,7 +53082,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -52767,7 +53116,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -52798,7 +53147,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[82], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -52829,7 +53178,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -52862,7 +53211,7 @@ namespace OpenTK.Graphics.ES20 { fixed (OpenTK.Graphics.ES20.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -52892,7 +53241,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES20.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[82], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -52935,7 +53284,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -52982,7 +53331,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -53034,7 +53383,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -53086,7 +53435,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -53138,7 +53487,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -53186,7 +53535,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -53232,7 +53581,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -53283,7 +53632,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -53334,7 +53683,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -53385,7 +53734,7 @@ namespace OpenTK.Graphics.ES20 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.ES20.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES20.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -53406,7 +53755,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[109], (UInt32)fence); #if DEBUG } #endif @@ -53422,7 +53771,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[109], (UInt32)fence); #if DEBUG } #endif @@ -53442,7 +53791,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* fences_ptr = &retval; - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences_ptr); return retval; } #if DEBUG @@ -53463,7 +53812,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -53484,7 +53833,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -53503,7 +53852,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -53523,7 +53872,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -53545,7 +53894,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -53564,7 +53913,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -53583,7 +53932,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[140], (UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -53604,7 +53953,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[140], (UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -53623,7 +53972,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[140], (UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -53643,7 +53992,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[140], (UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -53665,7 +54014,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[140], (UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -53684,7 +54033,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[140], (UInt32)fence, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -53699,7 +54048,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[192], (UInt32)fence); #if DEBUG } #endif @@ -53715,7 +54064,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[192], (UInt32)fence); #if DEBUG } #endif @@ -53737,7 +54086,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBufferNV((OpenTK.Graphics.ES20.All)mode); + InteropHelper.Call(EntryPoints[258], (OpenTK.Graphics.ES20.All)mode); #if DEBUG } #endif @@ -53780,7 +54129,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleNV((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -53822,7 +54171,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleNV((OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.ES20.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES20.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -53837,7 +54186,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES20.All)condition); + InteropHelper.Call(EntryPoints[272], (UInt32)fence, (OpenTK.Graphics.ES20.All)condition); #if DEBUG } #endif @@ -53853,7 +54202,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES20.All)condition); + InteropHelper.Call(EntryPoints[272], (UInt32)fence, (OpenTK.Graphics.ES20.All)condition); #if DEBUG } #endif @@ -53868,7 +54217,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[282], (UInt32)fence); #if DEBUG } #endif @@ -53884,7 +54233,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[282], (UInt32)fence); #if DEBUG } #endif @@ -53903,7 +54252,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[314], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -53924,7 +54273,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[314], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -53942,7 +54291,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[314], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -53961,7 +54310,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[315], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -53982,7 +54331,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[315], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54000,7 +54349,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[315], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -54019,7 +54368,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[317], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54040,7 +54389,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[317], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54058,7 +54407,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[317], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -54077,7 +54426,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[318], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54098,7 +54447,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[318], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54116,7 +54465,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[318], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -54135,7 +54484,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[320], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54156,7 +54505,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[320], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54174,7 +54523,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[320], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -54193,7 +54542,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[321], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54214,7 +54563,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[321], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -54232,7 +54581,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[321], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -54259,7 +54608,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorNV((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[338], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -54287,7 +54636,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorNV((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[338], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -54313,7 +54662,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayOES((UInt32)array); + InteropHelper.Call(EntryPoints[13], (UInt32)array); #if DEBUG } #endif @@ -54336,7 +54685,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayOES((UInt32)array); + InteropHelper.Call(EntryPoints[13], (UInt32)array); #if DEBUG } #endif @@ -54399,7 +54748,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -54466,7 +54815,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -54538,7 +54887,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -54610,7 +54959,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -54682,7 +55031,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -54750,7 +55099,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -54816,7 +55165,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -54887,7 +55236,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -54958,7 +55307,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55029,7 +55378,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -55103,7 +55452,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -55175,7 +55524,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55252,7 +55601,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55329,7 +55678,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55406,7 +55755,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -55479,7 +55828,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -55550,7 +55899,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55626,7 +55975,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55702,7 +56051,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -55778,7 +56127,7 @@ namespace OpenTK.Graphics.ES20 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -55842,7 +56191,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[41], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -55899,7 +56248,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[41], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -55918,7 +56267,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -55939,7 +56288,7 @@ namespace OpenTK.Graphics.ES20 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -55971,7 +56320,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -56004,7 +56353,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -56034,7 +56383,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -56066,7 +56415,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -56100,7 +56449,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -56130,7 +56479,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[67], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -56145,7 +56494,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEGLImageTargetRenderbufferStorageOES((OpenTK.Graphics.ES20.All)target, (IntPtr)image); + InteropHelper.Call(EntryPoints[87], (OpenTK.Graphics.ES20.All)target, (IntPtr)image); #if DEBUG } #endif @@ -56160,7 +56509,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEGLImageTargetTexture2DOES((OpenTK.Graphics.ES20.All)target, (IntPtr)image); + InteropHelper.Call(EntryPoints[88], (OpenTK.Graphics.ES20.All)target, (IntPtr)image); #if DEBUG } #endif @@ -56175,7 +56524,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3DOES((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[116], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -56191,7 +56540,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3DOES((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[116], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)attachment, (OpenTK.Graphics.ES20.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -56211,7 +56560,7 @@ namespace OpenTK.Graphics.ES20 const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -56244,7 +56593,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -56277,7 +56626,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -56308,7 +56657,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -56340,7 +56689,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -56374,7 +56723,7 @@ namespace OpenTK.Graphics.ES20 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -56405,7 +56754,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[127], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -56421,7 +56770,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -56441,7 +56790,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -56466,7 +56815,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -56491,7 +56840,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -56516,7 +56865,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -56537,7 +56886,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -56556,7 +56905,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -56580,7 +56929,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -56604,7 +56953,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -56628,7 +56977,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES20.BufferTarget)target, (OpenTK.Graphics.ES20.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -56681,7 +57030,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = length) fixed (OpenTK.Graphics.ES20.All* binaryFormat_ptr = binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); } } #if DEBUG @@ -56734,7 +57083,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -56792,7 +57141,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -56850,7 +57199,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -56908,7 +57257,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -56963,7 +57312,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.ES20.All* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57018,7 +57367,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57078,7 +57427,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57138,7 +57487,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57198,7 +57547,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -57251,7 +57600,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -57298,7 +57647,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -57350,7 +57699,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -57402,7 +57751,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -57454,7 +57803,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -57508,7 +57857,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = length) fixed (OpenTK.Graphics.ES20.All* binaryFormat_ptr = binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); } } #if DEBUG @@ -57562,7 +57911,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -57621,7 +57970,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -57680,7 +58029,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -57739,7 +58088,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -57795,7 +58144,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.ES20.All* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57851,7 +58200,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57912,7 +58261,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -57973,7 +58322,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -58034,7 +58383,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES20.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -58087,7 +58436,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -58134,7 +58483,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -58186,7 +58535,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -58238,7 +58587,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -58290,7 +58639,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES20.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -58318,7 +58667,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayOES((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[201], (UInt32)array); #if DEBUG } #endif @@ -58341,7 +58690,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayOES((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[201], (UInt32)array); #if DEBUG } #endif @@ -58368,7 +58717,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferOES((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)access); + return InteropHelper.CallReturn(EntryPoints[205], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)access); #if DEBUG } #endif @@ -58405,7 +58754,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -58446,7 +58795,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -58492,7 +58841,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -58538,7 +58887,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -58584,7 +58933,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -58628,7 +58977,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -58670,7 +59019,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -58717,7 +59066,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -58764,7 +59113,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -58811,7 +59160,7 @@ namespace OpenTK.Graphics.ES20 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[218], (UInt32)program, (OpenTK.Graphics.ES20.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -58885,7 +59234,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -58957,7 +59306,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59034,7 +59383,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59111,7 +59460,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59188,7 +59537,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -59262,7 +59611,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -59334,7 +59683,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59411,7 +59760,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59488,7 +59837,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59565,7 +59914,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -59639,7 +59988,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -59711,7 +60060,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59788,7 +60137,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59865,7 +60214,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -59942,7 +60291,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -60015,7 +60364,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -60086,7 +60435,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60162,7 +60511,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60238,7 +60587,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60314,7 +60663,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES20.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES20.PixelFormat)format, (OpenTK.Graphics.ES20.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -60393,7 +60742,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -60470,7 +60819,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60552,7 +60901,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60634,7 +60983,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60716,7 +61065,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -60794,7 +61143,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -60870,7 +61219,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60951,7 +61300,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -61032,7 +61381,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -61113,7 +61462,7 @@ namespace OpenTK.Graphics.ES20 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.ES20.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -61135,7 +61484,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBufferOES((OpenTK.Graphics.ES20.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[322], (OpenTK.Graphics.ES20.BufferTarget)target); #if DEBUG } #endif @@ -61150,7 +61499,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBufferOES((OpenTK.Graphics.ES20.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[322], (OpenTK.Graphics.ES20.BufferTarget)target); #if DEBUG } #endif @@ -61181,7 +61530,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFuncQCOM((OpenTK.Graphics.ES20.All)func, (Single)@ref); + InteropHelper.Call(EntryPoints[3], (OpenTK.Graphics.ES20.All)func, (Single)@ref); #if DEBUG } #endif @@ -61196,7 +61545,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[73], (UInt32)driverControl); #if DEBUG } #endif @@ -61212,7 +61561,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[73], (UInt32)driverControl); #if DEBUG } #endif @@ -61227,7 +61576,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[90], (UInt32)driverControl); #if DEBUG } #endif @@ -61243,7 +61592,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[90], (UInt32)driverControl); #if DEBUG } #endif @@ -61258,7 +61607,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTilingQCOM((UInt32)preserveMask); + InteropHelper.Call(EntryPoints[94], (UInt32)preserveMask); #if DEBUG } #endif @@ -61274,7 +61623,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTilingQCOM((UInt32)preserveMask); + InteropHelper.Call(EntryPoints[94], (UInt32)preserveMask); #if DEBUG } #endif @@ -61289,7 +61638,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES20.All)target, (IntPtr)@params); + InteropHelper.Call(EntryPoints[95], (OpenTK.Graphics.ES20.All)target, (IntPtr)@params); #if DEBUG } #endif @@ -61308,7 +61657,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[95], (OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -61332,7 +61681,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[95], (OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -61356,7 +61705,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[95], (OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -61380,7 +61729,7 @@ namespace OpenTK.Graphics.ES20 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[95], (OpenTK.Graphics.ES20.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -61406,7 +61755,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* buffers_ptr = buffers) fixed (Int32* numBuffers_ptr = numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[96], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); } } #if DEBUG @@ -61428,7 +61777,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* buffers_ptr = &buffers) fixed (Int32* numBuffers_ptr = &numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[96], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); buffers = *buffers_ptr; numBuffers = *numBuffers_ptr; } @@ -61448,7 +61797,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBuffersQCOM((UInt32*)buffers, (Int32)maxBuffers, (Int32*)numBuffers); + InteropHelper.Call(EntryPoints[96], (IntPtr)buffers, (Int32)maxBuffers, (IntPtr)numBuffers); #if DEBUG } #endif @@ -61469,7 +61818,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* buffers_ptr = buffers) fixed (Int32* numBuffers_ptr = numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[96], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); } } #if DEBUG @@ -61492,7 +61841,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* buffers_ptr = &buffers) fixed (Int32* numBuffers_ptr = &numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[96], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); buffers = *buffers_ptr; numBuffers = *numBuffers_ptr; } @@ -61512,7 +61861,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBuffersQCOM((UInt32*)buffers, (Int32)maxBuffers, (Int32*)numBuffers); + InteropHelper.Call(EntryPoints[96], (IntPtr)buffers, (Int32)maxBuffers, (IntPtr)numBuffers); #if DEBUG } #endif @@ -61532,7 +61881,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* framebuffers_ptr = framebuffers) fixed (Int32* numFramebuffers_ptr = numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); } } #if DEBUG @@ -61554,7 +61903,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* framebuffers_ptr = &framebuffers) fixed (Int32* numFramebuffers_ptr = &numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); framebuffers = *framebuffers_ptr; numFramebuffers = *numFramebuffers_ptr; } @@ -61574,7 +61923,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers, (Int32)maxFramebuffers, (Int32*)numFramebuffers); + InteropHelper.Call(EntryPoints[97], (IntPtr)framebuffers, (Int32)maxFramebuffers, (IntPtr)numFramebuffers); #if DEBUG } #endif @@ -61595,7 +61944,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* framebuffers_ptr = framebuffers) fixed (Int32* numFramebuffers_ptr = numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); } } #if DEBUG @@ -61618,7 +61967,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* framebuffers_ptr = &framebuffers) fixed (Int32* numFramebuffers_ptr = &numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); framebuffers = *framebuffers_ptr; numFramebuffers = *numFramebuffers_ptr; } @@ -61638,7 +61987,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers, (Int32)maxFramebuffers, (Int32*)numFramebuffers); + InteropHelper.Call(EntryPoints[97], (IntPtr)framebuffers, (Int32)maxFramebuffers, (IntPtr)numFramebuffers); #if DEBUG } #endif @@ -61657,7 +62006,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[98], (UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); } } #if DEBUG @@ -61678,7 +62027,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[98], (UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); length = *length_ptr; } } @@ -61697,7 +62046,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (Int32*)length); + InteropHelper.Call(EntryPoints[98], (UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (IntPtr)length); #if DEBUG } #endif @@ -61717,7 +62066,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[98], (UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); } } #if DEBUG @@ -61739,7 +62088,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[98], (UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); length = *length_ptr; } } @@ -61758,7 +62107,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (Int32*)length); + InteropHelper.Call(EntryPoints[98], (UInt32)program, (OpenTK.Graphics.ES20.All)shadertype, (StringBuilder)source, (IntPtr)length); #if DEBUG } #endif @@ -61778,7 +62127,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* programs_ptr = programs) fixed (Int32* numPrograms_ptr = numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); } } #if DEBUG @@ -61800,7 +62149,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* programs_ptr = &programs) fixed (Int32* numPrograms_ptr = &numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); programs = *programs_ptr; numPrograms = *numPrograms_ptr; } @@ -61820,7 +62169,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramsQCOM((UInt32*)programs, (Int32)maxPrograms, (Int32*)numPrograms); + InteropHelper.Call(EntryPoints[99], (IntPtr)programs, (Int32)maxPrograms, (IntPtr)numPrograms); #if DEBUG } #endif @@ -61841,7 +62190,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* programs_ptr = programs) fixed (Int32* numPrograms_ptr = numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); } } #if DEBUG @@ -61864,7 +62213,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* programs_ptr = &programs) fixed (Int32* numPrograms_ptr = &numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[99], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); programs = *programs_ptr; numPrograms = *numPrograms_ptr; } @@ -61884,7 +62233,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramsQCOM((UInt32*)programs, (Int32)maxPrograms, (Int32*)numPrograms); + InteropHelper.Call(EntryPoints[99], (IntPtr)programs, (Int32)maxPrograms, (IntPtr)numPrograms); #if DEBUG } #endif @@ -61904,7 +62253,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* renderbuffers_ptr = renderbuffers) fixed (Int32* numRenderbuffers_ptr = numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[100], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); } } #if DEBUG @@ -61926,7 +62275,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* renderbuffers_ptr = &renderbuffers) fixed (Int32* numRenderbuffers_ptr = &numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[100], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); renderbuffers = *renderbuffers_ptr; numRenderbuffers = *numRenderbuffers_ptr; } @@ -61946,7 +62295,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers); + InteropHelper.Call(EntryPoints[100], (IntPtr)renderbuffers, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers); #if DEBUG } #endif @@ -61967,7 +62316,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* renderbuffers_ptr = renderbuffers) fixed (Int32* numRenderbuffers_ptr = numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[100], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); } } #if DEBUG @@ -61990,7 +62339,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* renderbuffers_ptr = &renderbuffers) fixed (Int32* numRenderbuffers_ptr = &numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[100], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); renderbuffers = *renderbuffers_ptr; numRenderbuffers = *numRenderbuffers_ptr; } @@ -62010,7 +62359,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers); + InteropHelper.Call(EntryPoints[100], (IntPtr)renderbuffers, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers); #if DEBUG } #endif @@ -62030,7 +62379,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* shaders_ptr = shaders) fixed (Int32* numShaders_ptr = numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[101], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); } } #if DEBUG @@ -62052,7 +62401,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* shaders_ptr = &shaders) fixed (Int32* numShaders_ptr = &numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[101], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); shaders = *shaders_ptr; numShaders = *numShaders_ptr; } @@ -62072,7 +62421,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetShadersQCOM((UInt32*)shaders, (Int32)maxShaders, (Int32*)numShaders); + InteropHelper.Call(EntryPoints[101], (IntPtr)shaders, (Int32)maxShaders, (IntPtr)numShaders); #if DEBUG } #endif @@ -62093,7 +62442,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* shaders_ptr = shaders) fixed (Int32* numShaders_ptr = numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[101], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); } } #if DEBUG @@ -62116,7 +62465,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* shaders_ptr = &shaders) fixed (Int32* numShaders_ptr = &numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[101], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); shaders = *shaders_ptr; numShaders = *numShaders_ptr; } @@ -62136,7 +62485,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetShadersQCOM((UInt32*)shaders, (Int32)maxShaders, (Int32*)numShaders); + InteropHelper.Call(EntryPoints[101], (IntPtr)shaders, (Int32)maxShaders, (IntPtr)numShaders); #if DEBUG } #endif @@ -62155,7 +62504,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[102], (UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -62176,7 +62525,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[102], (UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -62195,7 +62544,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[102], (UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -62215,7 +62564,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = @params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[102], (UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -62237,7 +62586,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* @params_ptr = &@params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[102], (UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -62256,7 +62605,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[102], (UInt32)texture, (OpenTK.Graphics.ES20.All)face, (Int32)level, (OpenTK.Graphics.ES20.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -62271,7 +62620,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels); + InteropHelper.Call(EntryPoints[103], (OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels); #if DEBUG } #endif @@ -62290,7 +62639,7 @@ namespace OpenTK.Graphics.ES20 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -62314,7 +62663,7 @@ namespace OpenTK.Graphics.ES20 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -62338,7 +62687,7 @@ namespace OpenTK.Graphics.ES20 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -62362,7 +62711,7 @@ namespace OpenTK.Graphics.ES20 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (OpenTK.Graphics.ES20.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES20.All)format, (OpenTK.Graphics.ES20.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); texels = (T10)texels_ptr.Target; } finally @@ -62388,7 +62737,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* textures_ptr = textures) fixed (Int32* numTextures_ptr = numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[104], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); } } #if DEBUG @@ -62410,7 +62759,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* textures_ptr = &textures) fixed (Int32* numTextures_ptr = &numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[104], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); textures = *textures_ptr; numTextures = *numTextures_ptr; } @@ -62430,7 +62779,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexturesQCOM((UInt32*)textures, (Int32)maxTextures, (Int32*)numTextures); + InteropHelper.Call(EntryPoints[104], (IntPtr)textures, (Int32)maxTextures, (IntPtr)numTextures); #if DEBUG } #endif @@ -62451,7 +62800,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* textures_ptr = textures) fixed (Int32* numTextures_ptr = numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[104], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); } } #if DEBUG @@ -62474,7 +62823,7 @@ namespace OpenTK.Graphics.ES20 fixed (UInt32* textures_ptr = &textures) fixed (Int32* numTextures_ptr = &numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[104], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); textures = *textures_ptr; numTextures = *numTextures_ptr; } @@ -62494,7 +62843,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexturesQCOM((UInt32*)textures, (Int32)maxTextures, (Int32*)numTextures); + InteropHelper.Call(EntryPoints[104], (IntPtr)textures, (Int32)maxTextures, (IntPtr)numTextures); #if DEBUG } #endif @@ -62509,7 +62858,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glExtIsProgramBinaryQCOM((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[105], (UInt32)program); #if DEBUG } #endif @@ -62525,7 +62874,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glExtIsProgramBinaryQCOM((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[105], (UInt32)program); #if DEBUG } #endif @@ -62540,7 +62889,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtTexObjectStateOverrideiQCOM((OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)pname, (Int32)param); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.ES20.All)target, (OpenTK.Graphics.ES20.All)pname, (Int32)param); #if DEBUG } #endif @@ -62560,7 +62909,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* num_ptr = num) fixed (Int32* driverControls_ptr = driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[137], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); } } #if DEBUG @@ -62583,7 +62932,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* num_ptr = num) fixed (UInt32* driverControls_ptr = driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[137], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); } } #if DEBUG @@ -62605,7 +62954,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* num_ptr = &num) fixed (Int32* driverControls_ptr = &driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[137], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); num = *num_ptr; driverControls = *driverControls_ptr; } @@ -62630,7 +62979,7 @@ namespace OpenTK.Graphics.ES20 fixed (Int32* num_ptr = &num) fixed (UInt32* driverControls_ptr = &driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[137], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); num = *num_ptr; driverControls = *driverControls_ptr; } @@ -62650,7 +62999,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls); + InteropHelper.Call(EntryPoints[137], (IntPtr)num, (Int32)size, (IntPtr)driverControls); #if DEBUG } #endif @@ -62666,7 +63015,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls); + InteropHelper.Call(EntryPoints[137], (IntPtr)num, (Int32)size, (IntPtr)driverControls); #if DEBUG } #endif @@ -62685,7 +63034,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[138], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); } } #if DEBUG @@ -62706,7 +63055,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[138], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); length = *length_ptr; } } @@ -62725,7 +63074,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[138], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length, (StringBuilder)driverControlString); #if DEBUG } #endif @@ -62745,7 +63094,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[138], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); } } #if DEBUG @@ -62767,7 +63116,7 @@ namespace OpenTK.Graphics.ES20 { fixed (Int32* length_ptr = &length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[138], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); length = *length_ptr; } } @@ -62786,7 +63135,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[138], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length, (StringBuilder)driverControlString); #if DEBUG } #endif @@ -62801,7 +63150,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartTilingQCOM((UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); + InteropHelper.Call(EntryPoints[275], (UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); #if DEBUG } #endif @@ -62817,7 +63166,7 @@ namespace OpenTK.Graphics.ES20 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartTilingQCOM((UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); + InteropHelper.Call(EntryPoints[275], (UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); #if DEBUG } #endif diff --git a/Source/OpenTK/Graphics/ES30/ES30.cs b/Source/OpenTK/Graphics/ES30/ES30.cs index eee7b02d..24eaee10 100644 --- a/Source/OpenTK/Graphics/ES30/ES30.cs +++ b/Source/OpenTK/Graphics/ES30/ES30.cs @@ -37,6 +37,459 @@ namespace OpenTK.Graphics.ES30 partial class GL { + static GL() + { + EntryPointNames = new string[] + { + "glActiveProgramEXT", + "glActiveShaderProgramEXT", + "glActiveTexture", + "glAlphaFuncQCOM", + "glAttachShader", + "glBeginPerfMonitorAMD", + "glBeginQuery", + "glBeginQueryEXT", + "glBeginTransformFeedback", + "glBindAttribLocation", + "glBindBuffer", + "glBindBufferBase", + "glBindBufferRange", + "glBindFramebuffer", + "glBindProgramPipelineEXT", + "glBindRenderbuffer", + "glBindSampler", + "glBindTexture", + "glBindTransformFeedback", + "glBindVertexArray", + "glBindVertexArrayOES", + "glBlendBarrierNV", + "glBlendColor", + "glBlendEquation", + "glBlendEquationEXT", + "glBlendEquationSeparate", + "glBlendFunc", + "glBlendFuncSeparate", + "glBlendParameteriNV", + "glBlitFramebuffer", + "glBlitFramebufferANGLE", + "glBlitFramebufferNV", + "glBufferData", + "glBufferSubData", + "glCheckFramebufferStatus", + "glClear", + "glClearBufferfi", + "glClearBufferfv", + "glClearBufferiv", + "glClearBufferuiv", + "glClearColor", + "glClearDepthf", + "glClearStencil", + "glClientWaitSync", + "glClientWaitSyncAPPLE", + "glColorMask", + "glCompileShader", + "glCompressedTexImage2D", + "glCompressedTexImage3D", + "glCompressedTexImage3DOES", + "glCompressedTexSubImage2D", + "glCompressedTexSubImage3D", + "glCompressedTexSubImage3DOES", + "glCopyBufferSubData", + "glCopyBufferSubDataNV", + "glCopyTexImage2D", + "glCopyTexSubImage2D", + "glCopyTexSubImage3D", + "glCopyTexSubImage3DOES", + "glCopyTextureLevelsAPPLE", + "glCoverageMaskNV", + "glCoverageOperationNV", + "glCreateProgram", + "glCreateShader", + "glCreateShaderProgramEXT", + "glCreateShaderProgramvEXT", + "glCullFace", + "glDebugMessageCallback", + "glDebugMessageCallbackKHR", + "glDebugMessageControl", + "glDebugMessageControlKHR", + "glDebugMessageInsert", + "glDebugMessageInsertKHR", + "glDeleteBuffers", + "glDeleteFencesNV", + "glDeleteFramebuffers", + "glDeletePerfMonitorsAMD", + "glDeleteProgram", + "glDeleteProgramPipelinesEXT", + "glDeleteQueries", + "glDeleteQueriesEXT", + "glDeleteRenderbuffers", + "glDeleteSamplers", + "glDeleteShader", + "glDeleteSync", + "glDeleteSyncAPPLE", + "glDeleteTextures", + "glDeleteTransformFeedbacks", + "glDeleteVertexArrays", + "glDeleteVertexArraysOES", + "glDepthFunc", + "glDepthMask", + "glDepthRangef", + "glDetachShader", + "glDisable", + "glDisableDriverControlQCOM", + "glDisableVertexAttribArray", + "glDiscardFramebufferEXT", + "glDrawArrays", + "glDrawArraysInstanced", + "glDrawArraysInstancedANGLE", + "glDrawArraysInstancedEXT", + "glDrawArraysInstancedNV", + "glDrawBuffers", + "glDrawBuffersEXT", + "glDrawBuffersIndexedEXT", + "glDrawBuffersNV", + "glDrawElements", + "glDrawElementsInstanced", + "glDrawElementsInstancedANGLE", + "glDrawElementsInstancedEXT", + "glDrawElementsInstancedNV", + "glDrawRangeElements", + "glEGLImageTargetRenderbufferStorageOES", + "glEGLImageTargetTexture2DOES", + "glEnable", + "glEnableDriverControlQCOM", + "glEnableVertexAttribArray", + "glEndPerfMonitorAMD", + "glEndQuery", + "glEndQueryEXT", + "glEndTilingQCOM", + "glEndTransformFeedback", + "glExtGetBufferPointervQCOM", + "glExtGetBuffersQCOM", + "glExtGetFramebuffersQCOM", + "glExtGetProgramBinarySourceQCOM", + "glExtGetProgramsQCOM", + "glExtGetRenderbuffersQCOM", + "glExtGetShadersQCOM", + "glExtGetTexLevelParameterivQCOM", + "glExtGetTexSubImageQCOM", + "glExtGetTexturesQCOM", + "glExtIsProgramBinaryQCOM", + "glExtTexObjectStateOverrideiQCOM", + "glFenceSync", + "glFenceSyncAPPLE", + "glFinish", + "glFinishFenceNV", + "glFlush", + "glFlushMappedBufferRange", + "glFlushMappedBufferRangeEXT", + "glFramebufferRenderbuffer", + "glFramebufferTexture2D", + "glFramebufferTexture2DMultisampleEXT", + "glFramebufferTexture2DMultisampleIMG", + "glFramebufferTexture3DOES", + "glFramebufferTextureLayer", + "glFrontFace", + "glGenBuffers", + "glGenerateMipmap", + "glGenFencesNV", + "glGenFramebuffers", + "glGenPerfMonitorsAMD", + "glGenProgramPipelinesEXT", + "glGenQueries", + "glGenQueriesEXT", + "glGenRenderbuffers", + "glGenSamplers", + "glGenTextures", + "glGenTransformFeedbacks", + "glGenVertexArrays", + "glGenVertexArraysOES", + "glGetActiveAttrib", + "glGetActiveUniform", + "glGetActiveUniformBlockiv", + "glGetActiveUniformBlockName", + "glGetActiveUniformsiv", + "glGetAttachedShaders", + "glGetAttribLocation", + "glGetBooleanv", + "glGetBufferParameteri64v", + "glGetBufferParameteriv", + "glGetBufferPointerv", + "glGetBufferPointervOES", + "glGetDebugMessageLog", + "glGetDebugMessageLogKHR", + "glGetDriverControlsQCOM", + "glGetDriverControlStringQCOM", + "glGetError", + "glGetFenceivNV", + "glGetFloatv", + "glGetFragDataLocation", + "glGetFramebufferAttachmentParameteriv", + "glGetGraphicsResetStatusEXT", + "glGetInteger64i_v", + "glGetInteger64v", + "glGetInteger64vAPPLE", + "glGetIntegeri_v", + "glGetIntegeri_vEXT", + "glGetIntegerv", + "glGetInternalformativ", + "glGetnUniformfvEXT", + "glGetnUniformivEXT", + "glGetObjectLabel", + "glGetObjectLabelEXT", + "glGetObjectLabelKHR", + "glGetObjectPtrLabel", + "glGetObjectPtrLabelKHR", + "glGetPerfMonitorCounterDataAMD", + "glGetPerfMonitorCounterInfoAMD", + "glGetPerfMonitorCountersAMD", + "glGetPerfMonitorCounterStringAMD", + "glGetPerfMonitorGroupsAMD", + "glGetPerfMonitorGroupStringAMD", + "glGetPointerv", + "glGetPointervKHR", + "glGetProgramBinary", + "glGetProgramBinaryOES", + "glGetProgramInfoLog", + "glGetProgramiv", + "glGetProgramPipelineInfoLogEXT", + "glGetProgramPipelineivEXT", + "glGetQueryiv", + "glGetQueryivEXT", + "glGetQueryObjecti64vEXT", + "glGetQueryObjectivEXT", + "glGetQueryObjectui64vEXT", + "glGetQueryObjectuiv", + "glGetQueryObjectuivEXT", + "glGetRenderbufferParameteriv", + "glGetSamplerParameterfv", + "glGetSamplerParameteriv", + "glGetShaderInfoLog", + "glGetShaderiv", + "glGetShaderPrecisionFormat", + "glGetShaderSource", + "glGetString", + "glGetStringi", + "glGetSynciv", + "glGetSyncivAPPLE", + "glGetTexParameterfv", + "glGetTexParameteriv", + "glGetTransformFeedbackVarying", + "glGetTranslatedShaderSourceANGLE", + "glGetUniformBlockIndex", + "glGetUniformfv", + "glGetUniformIndices", + "glGetUniformiv", + "glGetUniformLocation", + "glGetUniformuiv", + "glGetVertexAttribfv", + "glGetVertexAttribIiv", + "glGetVertexAttribIuiv", + "glGetVertexAttribiv", + "glGetVertexAttribPointerv", + "glHint", + "glInsertEventMarkerEXT", + "glInvalidateFramebuffer", + "glInvalidateSubFramebuffer", + "glIsBuffer", + "glIsEnabled", + "glIsFenceNV", + "glIsFramebuffer", + "glIsProgram", + "glIsProgramPipelineEXT", + "glIsQuery", + "glIsQueryEXT", + "glIsRenderbuffer", + "glIsSampler", + "glIsShader", + "glIsSync", + "glIsSyncAPPLE", + "glIsTexture", + "glIsTransformFeedback", + "glIsVertexArray", + "glIsVertexArrayOES", + "glLabelObjectEXT", + "glLineWidth", + "glLinkProgram", + "glMapBufferOES", + "glMapBufferRange", + "glMapBufferRangeEXT", + "glMultiDrawArraysEXT", + "glMultiDrawElementsEXT", + "glObjectLabel", + "glObjectLabelKHR", + "glObjectPtrLabel", + "glObjectPtrLabelKHR", + "glPauseTransformFeedback", + "glPixelStorei", + "glPolygonOffset", + "glPopDebugGroup", + "glPopDebugGroupKHR", + "glPopGroupMarkerEXT", + "glProgramBinary", + "glProgramBinaryOES", + "glProgramParameteri", + "glProgramParameteriEXT", + "glProgramUniform1fEXT", + "glProgramUniform1fvEXT", + "glProgramUniform1iEXT", + "glProgramUniform1ivEXT", + "glProgramUniform1uiEXT", + "glProgramUniform1uivEXT", + "glProgramUniform2fEXT", + "glProgramUniform2fvEXT", + "glProgramUniform2iEXT", + "glProgramUniform2ivEXT", + "glProgramUniform2uiEXT", + "glProgramUniform2uivEXT", + "glProgramUniform3fEXT", + "glProgramUniform3fvEXT", + "glProgramUniform3iEXT", + "glProgramUniform3ivEXT", + "glProgramUniform3uiEXT", + "glProgramUniform3uivEXT", + "glProgramUniform4fEXT", + "glProgramUniform4fvEXT", + "glProgramUniform4iEXT", + "glProgramUniform4ivEXT", + "glProgramUniform4uiEXT", + "glProgramUniform4uivEXT", + "glProgramUniformMatrix2fvEXT", + "glProgramUniformMatrix2x3fvEXT", + "glProgramUniformMatrix2x4fvEXT", + "glProgramUniformMatrix3fvEXT", + "glProgramUniformMatrix3x2fvEXT", + "glProgramUniformMatrix3x4fvEXT", + "glProgramUniformMatrix4fvEXT", + "glProgramUniformMatrix4x2fvEXT", + "glProgramUniformMatrix4x3fvEXT", + "glPushDebugGroup", + "glPushDebugGroupKHR", + "glPushGroupMarkerEXT", + "glQueryCounterEXT", + "glReadBuffer", + "glReadBufferIndexedEXT", + "glReadBufferNV", + "glReadnPixelsEXT", + "glReadPixels", + "glReleaseShaderCompiler", + "glRenderbufferStorage", + "glRenderbufferStorageMultisample", + "glRenderbufferStorageMultisampleANGLE", + "glRenderbufferStorageMultisampleAPPLE", + "glRenderbufferStorageMultisampleEXT", + "glRenderbufferStorageMultisampleIMG", + "glRenderbufferStorageMultisampleNV", + "glResolveMultisampleFramebufferAPPLE", + "glResumeTransformFeedback", + "glSampleCoverage", + "glSamplerParameterf", + "glSamplerParameterfv", + "glSamplerParameteri", + "glSamplerParameteriv", + "glScissor", + "glSelectPerfMonitorCountersAMD", + "glSetFenceNV", + "glShaderBinary", + "glShaderSource", + "glStartTilingQCOM", + "glStencilFunc", + "glStencilFuncSeparate", + "glStencilMask", + "glStencilMaskSeparate", + "glStencilOp", + "glStencilOpSeparate", + "glTestFenceNV", + "glTexImage2D", + "glTexImage3D", + "glTexImage3DOES", + "glTexParameterf", + "glTexParameterfv", + "glTexParameteri", + "glTexParameteriv", + "glTexStorage1DEXT", + "glTexStorage2D", + "glTexStorage2DEXT", + "glTexStorage3D", + "glTexStorage3DEXT", + "glTexSubImage2D", + "glTexSubImage3D", + "glTexSubImage3DOES", + "glTextureStorage1DEXT", + "glTextureStorage2DEXT", + "glTextureStorage3DEXT", + "glTransformFeedbackVaryings", + "glUniform1f", + "glUniform1fv", + "glUniform1i", + "glUniform1iv", + "glUniform1ui", + "glUniform1uiv", + "glUniform2f", + "glUniform2fv", + "glUniform2i", + "glUniform2iv", + "glUniform2ui", + "glUniform2uiv", + "glUniform3f", + "glUniform3fv", + "glUniform3i", + "glUniform3iv", + "glUniform3ui", + "glUniform3uiv", + "glUniform4f", + "glUniform4fv", + "glUniform4i", + "glUniform4iv", + "glUniform4ui", + "glUniform4uiv", + "glUniformBlockBinding", + "glUniformMatrix2fv", + "glUniformMatrix2x3fv", + "glUniformMatrix2x3fvNV", + "glUniformMatrix2x4fv", + "glUniformMatrix2x4fvNV", + "glUniformMatrix3fv", + "glUniformMatrix3x2fv", + "glUniformMatrix3x2fvNV", + "glUniformMatrix3x4fv", + "glUniformMatrix3x4fvNV", + "glUniformMatrix4fv", + "glUniformMatrix4x2fv", + "glUniformMatrix4x2fvNV", + "glUniformMatrix4x3fv", + "glUniformMatrix4x3fvNV", + "glUnmapBuffer", + "glUnmapBufferOES", + "glUseProgram", + "glUseProgramStagesEXT", + "glUseShaderProgramEXT", + "glValidateProgram", + "glValidateProgramPipelineEXT", + "glVertexAttrib1f", + "glVertexAttrib1fv", + "glVertexAttrib2f", + "glVertexAttrib2fv", + "glVertexAttrib3f", + "glVertexAttrib3fv", + "glVertexAttrib4f", + "glVertexAttrib4fv", + "glVertexAttribDivisor", + "glVertexAttribDivisorANGLE", + "glVertexAttribDivisorEXT", + "glVertexAttribDivisorNV", + "glVertexAttribI4i", + "glVertexAttribI4iv", + "glVertexAttribI4ui", + "glVertexAttribI4uiv", + "glVertexAttribIPointer", + "glVertexAttribPointer", + "glViewport", + "glWaitSync", + "glWaitSyncAPPLE", + }; + EntryPoints = new IntPtr[EntryPointNames.Length]; + } public static partial class Amd { @@ -49,7 +502,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[5], (UInt32)monitor); #if DEBUG } #endif @@ -65,7 +518,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[5], (UInt32)monitor); #if DEBUG } #endif @@ -84,7 +537,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* monitors_ptr = (UInt32*)&monitors; - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors_ptr); } #if DEBUG } @@ -105,7 +558,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* monitors_ptr = (UInt32*)&monitors; - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors_ptr); } #if DEBUG } @@ -125,7 +578,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* monitors_ptr = monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -146,7 +599,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* monitors_ptr = &monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -164,7 +617,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -184,7 +637,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* monitors_ptr = monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -206,7 +659,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* monitors_ptr = &monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -224,7 +677,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[76], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -239,7 +692,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[118], (UInt32)monitor); #if DEBUG } #endif @@ -255,7 +708,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[118], (UInt32)monitor); #if DEBUG } #endif @@ -275,7 +728,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* monitors_ptr = &retval; - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors_ptr); return retval; } #if DEBUG @@ -296,7 +749,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* monitors_ptr = monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -317,7 +770,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* monitors_ptr = &monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors_ptr); monitors = *monitors_ptr; } } @@ -336,7 +789,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -356,7 +809,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* monitors_ptr = monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -378,7 +831,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* monitors_ptr = &monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors_ptr); monitors = *monitors_ptr; } } @@ -397,7 +850,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[153], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -417,7 +870,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* data_ptr = data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[199], (UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); bytesWritten = *bytesWritten_ptr; } } @@ -440,7 +893,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* data_ptr = &data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[199], (UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); data = *data_ptr; bytesWritten = *bytesWritten_ptr; } @@ -460,7 +913,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (UInt32*)data, (Int32*)bytesWritten); + InteropHelper.Call(EntryPoints[199], (UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (IntPtr)data, (IntPtr)bytesWritten); #if DEBUG } #endif @@ -481,7 +934,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* data_ptr = data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[199], (UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); bytesWritten = *bytesWritten_ptr; } } @@ -505,7 +958,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* data_ptr = &data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[199], (UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); data = *data_ptr; bytesWritten = *bytesWritten_ptr; } @@ -525,7 +978,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (UInt32*)data, (Int32*)bytesWritten); + InteropHelper.Call(EntryPoints[199], (UInt32)monitor, (OpenTK.Graphics.ES30.All)pname, (Int32)dataSize, (IntPtr)data, (IntPtr)bytesWritten); #if DEBUG } #endif @@ -540,7 +993,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data); #if DEBUG } #endif @@ -559,7 +1012,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -583,7 +1036,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -607,7 +1060,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -631,7 +1084,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -653,7 +1106,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data); #if DEBUG } #endif @@ -673,7 +1126,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -698,7 +1151,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -723,7 +1176,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -748,7 +1201,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.ES30.All)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -775,7 +1228,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (Int32* counters_ptr = counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[201], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; } @@ -800,7 +1253,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (Int32* counters_ptr = &counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[201], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; counters = *counters_ptr; @@ -821,7 +1274,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters, (Int32*)maxActiveCounters, (Int32)counterSize, (UInt32*)counters); + InteropHelper.Call(EntryPoints[201], (UInt32)group, (IntPtr)numCounters, (IntPtr)maxActiveCounters, (Int32)counterSize, (IntPtr)counters); #if DEBUG } #endif @@ -843,7 +1296,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (UInt32* counters_ptr = counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[201], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; } @@ -869,7 +1322,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (UInt32* counters_ptr = &counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[201], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; counters = *counters_ptr; @@ -890,7 +1343,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters, (Int32*)maxActiveCounters, (Int32)counterSize, (UInt32*)counters); + InteropHelper.Call(EntryPoints[201], (UInt32)group, (IntPtr)numCounters, (IntPtr)maxActiveCounters, (Int32)counterSize, (IntPtr)counters); #if DEBUG } #endif @@ -909,7 +1362,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[202], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)counterString); length = *length_ptr; } } @@ -928,7 +1381,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[202], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length, (StringBuilder)counterString); #if DEBUG } #endif @@ -948,7 +1401,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[202], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)counterString); length = *length_ptr; } } @@ -967,7 +1420,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[202], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length, (StringBuilder)counterString); #if DEBUG } #endif @@ -987,7 +1440,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* numGroups_ptr = &numGroups) fixed (Int32* groups_ptr = groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[203], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; } } @@ -1010,7 +1463,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* numGroups_ptr = &numGroups) fixed (Int32* groups_ptr = &groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[203], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; groups = *groups_ptr; } @@ -1035,7 +1488,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* numGroups_ptr = &numGroups) fixed (UInt32* groups_ptr = groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[203], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; } } @@ -1059,7 +1512,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* numGroups_ptr = &numGroups) fixed (UInt32* groups_ptr = &groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[203], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; groups = *groups_ptr; } @@ -1079,7 +1532,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups, (Int32)groupsSize, (UInt32*)groups); + InteropHelper.Call(EntryPoints[203], (IntPtr)numGroups, (Int32)groupsSize, (IntPtr)groups); #if DEBUG } #endif @@ -1095,7 +1548,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups, (Int32)groupsSize, (UInt32*)groups); + InteropHelper.Call(EntryPoints[203], (IntPtr)numGroups, (Int32)groupsSize, (IntPtr)groups); #if DEBUG } #endif @@ -1114,7 +1567,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[204], (UInt32)group, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)groupString); length = *length_ptr; } } @@ -1133,7 +1586,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[204], (UInt32)group, (Int32)bufSize, (IntPtr)length, (StringBuilder)groupString); #if DEBUG } #endif @@ -1153,7 +1606,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[204], (UInt32)group, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)groupString); length = *length_ptr; } } @@ -1172,7 +1625,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[204], (UInt32)group, (Int32)bufSize, (IntPtr)length, (StringBuilder)groupString); #if DEBUG } #endif @@ -1191,7 +1644,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* counterList_ptr = counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[347], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); } } #if DEBUG @@ -1212,7 +1665,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* counterList_ptr = &counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[347], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); counterList = *counterList_ptr; } } @@ -1231,7 +1684,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList); + InteropHelper.Call(EntryPoints[347], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList); #if DEBUG } #endif @@ -1251,7 +1704,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* counterList_ptr = counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[347], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); } } #if DEBUG @@ -1273,7 +1726,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* counterList_ptr = &counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[347], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); counterList = *counterList_ptr; } } @@ -1292,7 +1745,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList); + InteropHelper.Call(EntryPoints[347], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList); #if DEBUG } #endif @@ -1334,7 +1787,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferANGLE((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[30], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -1371,7 +1824,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferANGLE((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[30], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -1409,7 +1862,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[100], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -1446,7 +1899,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[100], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -1489,7 +1942,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -1536,7 +1989,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1588,7 +2041,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1640,7 +2093,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1692,7 +2145,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -1740,7 +2193,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -1786,7 +2239,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1837,7 +2290,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1888,7 +2341,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -1939,7 +2392,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedANGLE((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -1964,7 +2417,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[234], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); } } #if DEBUG @@ -1985,7 +2438,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[234], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -2004,7 +2457,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[234], (UInt32)shader, (Int32)bufsize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -2024,7 +2477,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[234], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); } } #if DEBUG @@ -2046,7 +2499,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[234], (UInt32)shader, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -2065,7 +2518,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTranslatedShaderSourceANGLE((UInt32)shader, (Int32)bufsize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[234], (UInt32)shader, (Int32)bufsize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -2108,7 +2561,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleANGLE((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[334], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -2150,7 +2603,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleANGLE((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[334], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -2177,7 +2630,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorANGLE((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[434], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -2205,7 +2658,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorANGLE((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[434], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -2241,7 +2694,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[44], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2275,7 +2728,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[44], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2307,7 +2760,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[44], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2340,7 +2793,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[44], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -2355,7 +2808,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureLevelsAPPLE((UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); + InteropHelper.Call(EntryPoints[59], (UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); #if DEBUG } #endif @@ -2371,7 +2824,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureLevelsAPPLE((UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); + InteropHelper.Call(EntryPoints[59], (UInt32)destinationTexture, (UInt32)sourceTexture, (Int32)sourceBaseLevel, (Int32)sourceLevelCount); #if DEBUG } #endif @@ -2393,7 +2846,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSyncAPPLE((IntPtr)sync); + InteropHelper.Call(EntryPoints[85], (IntPtr)sync); #if DEBUG } #endif @@ -2421,7 +2874,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSyncAPPLE((OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[136], (OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); #if DEBUG } #endif @@ -2448,7 +2901,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSyncAPPLE((OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[136], (OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); #if DEBUG } #endif @@ -2468,7 +2921,7 @@ namespace OpenTK.Graphics.ES30 { Int64 retval; Int64* @params_ptr = &retval; - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -2489,7 +2942,7 @@ namespace OpenTK.Graphics.ES30 { Int64 retval; Int64* @params_ptr = &retval; - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -2511,7 +2964,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -2533,7 +2986,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -2553,7 +3006,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -2572,7 +3025,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -2593,7 +3046,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -2612,7 +3065,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64vAPPLE((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[187], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -2660,7 +3113,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = length) fixed (Int32* values_ptr = values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[230], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); } } #if DEBUG @@ -2710,7 +3163,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[230], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -2758,7 +3211,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[230], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -2805,7 +3258,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = length) fixed (Int32* values_ptr = values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[230], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); } } #if DEBUG @@ -2854,7 +3307,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[230], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -2901,7 +3354,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSyncivAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[230], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -2923,7 +3376,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSyncAPPLE((IntPtr)sync); + return InteropHelper.CallReturn(EntryPoints[262], (IntPtr)sync); #if DEBUG } #endif @@ -2966,7 +3419,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleAPPLE((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[335], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -3008,7 +3461,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleAPPLE((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[335], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -3023,7 +3476,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResolveMultisampleFramebufferAPPLE(); + InteropHelper.Call(EntryPoints[339]); #if DEBUG } #endif @@ -3055,7 +3508,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[445], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3089,7 +3542,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[445], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3121,7 +3574,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[445], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3154,7 +3607,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSyncAPPLE((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[445], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -3179,7 +3632,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES30.TextureUnit)texture); + InteropHelper.Call(EntryPoints[2], (OpenTK.Graphics.ES30.TextureUnit)texture); #if DEBUG } #endif @@ -3201,7 +3654,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.ES30.TextureUnit)texture); + InteropHelper.Call(EntryPoints[2], (OpenTK.Graphics.ES30.TextureUnit)texture); #if DEBUG } #endif @@ -3228,7 +3681,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[4], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -3256,7 +3709,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[4], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -3283,7 +3736,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -3312,7 +3765,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -3339,7 +3792,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -3367,7 +3820,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -3390,7 +3843,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedback((OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType)primitiveMode); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType)primitiveMode); #if DEBUG } #endif @@ -3412,7 +3865,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedback((OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType)primitiveMode); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.ES30.TransformFeedbackPrimitiveType)primitiveMode); #if DEBUG } #endif @@ -3444,7 +3897,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[9], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -3477,7 +3930,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[9], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -3504,7 +3957,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3533,7 +3986,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3560,7 +4013,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3588,7 +4041,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.ES30.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -3620,7 +4073,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -3654,7 +4107,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -3686,7 +4139,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -3719,7 +4172,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -3761,7 +4214,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -3805,7 +4258,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -3847,7 +4300,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -3890,7 +4343,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.ES30.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -3917,7 +4370,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[13], (OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -3946,7 +4399,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[13], (OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -3973,7 +4426,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[13], (OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -4001,7 +4454,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[13], (OpenTK.Graphics.ES30.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -4028,7 +4481,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -4057,7 +4510,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -4084,7 +4537,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -4112,7 +4565,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -4139,7 +4592,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSampler((UInt32)unit, (UInt32)sampler); + InteropHelper.Call(EntryPoints[16], (UInt32)unit, (UInt32)sampler); #if DEBUG } #endif @@ -4167,7 +4620,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSampler((UInt32)unit, (UInt32)sampler); + InteropHelper.Call(EntryPoints[16], (UInt32)unit, (UInt32)sampler); #if DEBUG } #endif @@ -4194,7 +4647,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -4223,7 +4676,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -4250,7 +4703,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -4278,7 +4731,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[17], (OpenTK.Graphics.ES30.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -4305,7 +4758,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -4334,7 +4787,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -4361,7 +4814,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -4389,7 +4842,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[18], (OpenTK.Graphics.ES30.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -4411,7 +4864,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArray((UInt32)array); + InteropHelper.Call(EntryPoints[19], (UInt32)array); #if DEBUG } #endif @@ -4434,7 +4887,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArray((UInt32)array); + InteropHelper.Call(EntryPoints[19], (UInt32)array); #if DEBUG } #endif @@ -4456,7 +4909,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[22], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -4484,7 +4937,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.ES30.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[23], (OpenTK.Graphics.ES30.BlendEquationMode)mode); #if DEBUG } #endif @@ -4511,7 +4964,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.ES30.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[23], (OpenTK.Graphics.ES30.BlendEquationMode)mode); #if DEBUG } #endif @@ -4544,7 +4997,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparate((OpenTK.Graphics.ES30.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES30.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES30.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES30.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -4576,7 +5029,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparate((OpenTK.Graphics.ES30.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES30.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[25], (OpenTK.Graphics.ES30.BlendEquationMode)modeRGB, (OpenTK.Graphics.ES30.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -4609,7 +5062,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES30.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[26], (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -4641,7 +5094,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.ES30.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[26], (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactor, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -4684,7 +5137,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[27], (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -4726,7 +5179,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[27], (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.ES30.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.ES30.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -4764,7 +5217,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebuffer((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[29], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -4801,7 +5254,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebuffer((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[29], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -4839,7 +5292,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES30.BufferUsageHint)usage); #if DEBUG } #endif @@ -4881,7 +5334,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); } finally { @@ -4928,7 +5381,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); } finally { @@ -4975,7 +5428,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); } finally { @@ -5022,7 +5475,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -5065,7 +5518,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES30.BufferUsageHint)usage); #if DEBUG } #endif @@ -5106,7 +5559,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); } finally { @@ -5152,7 +5605,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); } finally { @@ -5198,7 +5651,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); } finally { @@ -5244,7 +5697,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES30.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -5288,7 +5741,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -5330,7 +5783,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5377,7 +5830,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5424,7 +5877,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5471,7 +5924,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -5514,7 +5967,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -5555,7 +6008,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5601,7 +6054,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5647,7 +6100,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -5693,7 +6146,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -5722,7 +6175,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.ES30.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[34], (OpenTK.Graphics.ES30.FramebufferTarget)target); #if DEBUG } #endif @@ -5744,7 +6197,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.ES30.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[34], (OpenTK.Graphics.ES30.FramebufferTarget)target); #if DEBUG } #endif @@ -5767,7 +6220,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES30.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES30.ClearBufferMask)mask); #if DEBUG } #endif @@ -5789,7 +6242,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.ES30.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.ES30.ClearBufferMask)mask); #if DEBUG } #endif @@ -5832,7 +6285,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfi((OpenTK.Graphics.ES30.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES30.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); #if DEBUG } #endif @@ -5874,7 +6327,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfi((OpenTK.Graphics.ES30.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.ES30.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); #if DEBUG } #endif @@ -5921,7 +6374,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glClearBufferfv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -5970,7 +6423,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glClearBufferfv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6016,7 +6469,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -6062,7 +6515,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glClearBufferfv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6110,7 +6563,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glClearBufferfv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6155,7 +6608,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value); + InteropHelper.Call(EntryPoints[37], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -6202,7 +6655,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glClearBufferiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6251,7 +6704,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glClearBufferiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6297,7 +6750,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -6343,7 +6796,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glClearBufferiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6391,7 +6844,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glClearBufferiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6436,7 +6889,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -6484,7 +6937,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6534,7 +6987,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6580,7 +7033,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferuiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -6627,7 +7080,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6676,7 +7129,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -6721,7 +7174,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferuiv((OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value); + InteropHelper.Call(EntryPoints[39], (OpenTK.Graphics.ES30.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -6743,7 +7196,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[40], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -6765,7 +7218,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthf((Single)d); + InteropHelper.Call(EntryPoints[41], (Single)d); #if DEBUG } #endif @@ -6787,7 +7240,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearStencil((Int32)s); + InteropHelper.Call(EntryPoints[42], (Int32)s); #if DEBUG } #endif @@ -6819,7 +7272,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[43], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -6853,7 +7306,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[43], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -6885,7 +7338,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[43], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -6918,7 +7371,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[43], (IntPtr)sync, (OpenTK.Graphics.ES30.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -6945,7 +7398,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); + InteropHelper.Call(EntryPoints[45], (bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -6967,7 +7420,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[46], (UInt32)shader); #if DEBUG } #endif @@ -6990,7 +7443,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[46], (UInt32)shader); #if DEBUG } #endif @@ -7048,7 +7501,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -7110,7 +7563,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7177,7 +7630,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7244,7 +7697,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7311,7 +7764,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -7374,7 +7827,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -7435,7 +7888,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7501,7 +7954,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7567,7 +8020,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7633,7 +8086,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -7702,7 +8155,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -7769,7 +8222,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7841,7 +8294,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7913,7 +8366,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7985,7 +8438,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -8053,7 +8506,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -8119,7 +8572,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8190,7 +8643,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8261,7 +8714,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8332,7 +8785,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -8401,7 +8854,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -8468,7 +8921,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8540,7 +8993,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8612,7 +9065,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8684,7 +9137,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -8752,7 +9205,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -8818,7 +9271,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8889,7 +9342,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8960,7 +9413,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9031,7 +9484,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -9105,7 +9558,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -9177,7 +9630,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9254,7 +9707,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9331,7 +9784,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9408,7 +9861,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -9481,7 +9934,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -9552,7 +10005,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9628,7 +10081,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9704,7 +10157,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9780,7 +10233,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -9829,7 +10282,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubData((OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -9871,7 +10324,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubData((OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -9924,7 +10377,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[55], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -9976,7 +10429,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[55], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureCopyComponentCount)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -10029,7 +10482,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[56], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -10081,7 +10534,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[56], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -10139,7 +10592,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[57], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -10196,7 +10649,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[57], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -10213,7 +10666,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateProgram(); + return InteropHelper.CallReturn(EntryPoints[62]); #if DEBUG } #endif @@ -10236,7 +10689,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShader((OpenTK.Graphics.ES30.ShaderType)type); + return InteropHelper.CallReturn(EntryPoints[63], (OpenTK.Graphics.ES30.ShaderType)type); #if DEBUG } #endif @@ -10258,7 +10711,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShader((OpenTK.Graphics.ES30.ShaderType)type); + return InteropHelper.CallReturn(EntryPoints[63], (OpenTK.Graphics.ES30.ShaderType)type); #if DEBUG } #endif @@ -10281,7 +10734,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES30.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[66], (OpenTK.Graphics.ES30.CullFaceMode)mode); #if DEBUG } #endif @@ -10303,7 +10756,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.ES30.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[66], (OpenTK.Graphics.ES30.CullFaceMode)mode); #if DEBUG } #endif @@ -10330,7 +10783,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[67], (DebugProc)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -10361,7 +10814,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -10397,7 +10850,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -10433,7 +10886,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -10469,7 +10922,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -10526,7 +10979,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -10579,7 +11032,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -10629,7 +11082,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -10682,7 +11135,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -10737,7 +11190,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -10788,7 +11241,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -10839,7 +11292,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -10892,7 +11345,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -10942,7 +11395,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -10994,7 +11447,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -11048,7 +11501,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -11098,7 +11551,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -11145,7 +11598,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[71], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -11194,7 +11647,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[71], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -11241,7 +11694,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[71], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -11289,7 +11742,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[71], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -11320,7 +11773,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -11353,7 +11806,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -11385,7 +11838,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11418,7 +11871,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11448,7 +11901,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -11480,7 +11933,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11514,7 +11967,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11544,7 +11997,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[73], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -11575,7 +12028,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -11608,7 +12061,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -11640,7 +12093,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -11673,7 +12126,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -11703,7 +12156,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -11735,7 +12188,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -11769,7 +12222,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -11799,7 +12252,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[75], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -11821,7 +12274,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[77], (UInt32)program); #if DEBUG } #endif @@ -11844,7 +12297,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[77], (UInt32)program); #if DEBUG } #endif @@ -11875,7 +12328,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -11908,7 +12361,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -11940,7 +12393,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -11973,7 +12426,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -12003,7 +12456,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -12035,7 +12488,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -12069,7 +12522,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -12099,7 +12552,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[79], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -12130,7 +12583,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -12163,7 +12616,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -12195,7 +12648,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -12228,7 +12681,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -12258,7 +12711,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -12290,7 +12743,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -12324,7 +12777,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -12354,7 +12807,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[81], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -12385,7 +12838,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 count = 1; UInt32* samplers_ptr = (UInt32*)&samplers; - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers_ptr); } #if DEBUG } @@ -12418,7 +12871,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 count = 1; UInt32* samplers_ptr = (UInt32*)&samplers; - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers_ptr); } #if DEBUG } @@ -12450,7 +12903,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* samplers_ptr = samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -12483,7 +12936,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -12513,7 +12966,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -12545,7 +12998,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -12579,7 +13032,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -12609,7 +13062,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[82], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -12631,7 +13084,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[83], (UInt32)shader); #if DEBUG } #endif @@ -12654,7 +13107,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[83], (UInt32)shader); #if DEBUG } #endif @@ -12676,7 +13129,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSync((IntPtr)sync); + InteropHelper.Call(EntryPoints[84], (IntPtr)sync); #if DEBUG } #endif @@ -12707,7 +13160,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -12740,7 +13193,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -12772,7 +13225,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -12805,7 +13258,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -12835,7 +13288,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -12867,7 +13320,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -12901,7 +13354,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -12931,7 +13384,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[86], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -12962,7 +13415,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -12995,7 +13448,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -13027,7 +13480,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -13060,7 +13513,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -13090,7 +13543,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -13122,7 +13575,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -13156,7 +13609,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -13186,7 +13639,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[87], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -13217,7 +13670,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -13250,7 +13703,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -13282,7 +13735,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -13315,7 +13768,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -13345,7 +13798,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -13377,7 +13830,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -13411,7 +13864,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -13441,7 +13894,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[88], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -13464,7 +13917,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES30.DepthFunction)func); + InteropHelper.Call(EntryPoints[90], (OpenTK.Graphics.ES30.DepthFunction)func); #if DEBUG } #endif @@ -13486,7 +13939,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.ES30.DepthFunction)func); + InteropHelper.Call(EntryPoints[90], (OpenTK.Graphics.ES30.DepthFunction)func); #if DEBUG } #endif @@ -13508,7 +13961,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthMask((bool)flag); + InteropHelper.Call(EntryPoints[91], (bool)flag); #if DEBUG } #endif @@ -13535,7 +13988,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangef((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[92], (Single)n, (Single)f); #if DEBUG } #endif @@ -13562,7 +14015,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[93], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -13590,7 +14043,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[93], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -13606,7 +14059,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES30.EnableCap)cap); + InteropHelper.Call(EntryPoints[94], (OpenTK.Graphics.ES30.EnableCap)cap); #if DEBUG } #endif @@ -13621,7 +14074,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.ES30.EnableCap)cap); + InteropHelper.Call(EntryPoints[94], (OpenTK.Graphics.ES30.EnableCap)cap); #if DEBUG } #endif @@ -13636,7 +14089,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[96], (UInt32)index); #if DEBUG } #endif @@ -13652,7 +14105,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[96], (UInt32)index); #if DEBUG } #endif @@ -13685,7 +14138,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -13717,7 +14170,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -13755,7 +14208,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); + InteropHelper.Call(EntryPoints[99], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); #if DEBUG } #endif @@ -13792,7 +14245,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); + InteropHelper.Call(EntryPoints[99], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); #if DEBUG } #endif @@ -13824,7 +14277,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* bufs_ptr = bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[103], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -13858,7 +14311,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[103], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -13889,7 +14342,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[103], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -13920,7 +14373,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[103], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -13953,7 +14406,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[103], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -13983,7 +14436,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[103], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -14021,7 +14474,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -14063,7 +14516,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -14110,7 +14563,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -14157,7 +14610,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -14204,7 +14657,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -14247,7 +14700,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -14288,7 +14741,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -14334,7 +14787,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -14380,7 +14833,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -14426,7 +14879,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -14475,7 +14928,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); #if DEBUG } #endif @@ -14522,7 +14975,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -14574,7 +15027,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -14626,7 +15079,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -14678,7 +15131,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); indices = (T3)indices_ptr.Target; } finally @@ -14726,7 +15179,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); #if DEBUG } #endif @@ -14772,7 +15225,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -14823,7 +15276,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -14874,7 +15327,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -14925,7 +15378,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); indices = (T3)indices_ptr.Target; } finally @@ -14978,7 +15431,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -15029,7 +15482,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15085,7 +15538,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15141,7 +15594,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15197,7 +15650,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -15252,7 +15705,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -15305,7 +15758,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15363,7 +15816,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15421,7 +15874,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15479,7 +15932,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -15532,7 +15985,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -15583,7 +16036,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15639,7 +16092,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15695,7 +16148,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15751,7 +16204,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -15805,7 +16258,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -15857,7 +16310,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15914,7 +16367,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -15971,7 +16424,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -16028,7 +16481,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[112], (OpenTK.Graphics.ES30.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -16062,7 +16515,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES30.EnableCap)cap); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.ES30.EnableCap)cap); #if DEBUG } #endif @@ -16089,7 +16542,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.ES30.EnableCap)cap); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.ES30.EnableCap)cap); #if DEBUG } #endif @@ -16111,7 +16564,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[117], (UInt32)index); #if DEBUG } #endif @@ -16134,7 +16587,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[117], (UInt32)index); #if DEBUG } #endif @@ -16150,7 +16603,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQuery((OpenTK.Graphics.ES30.QueryTarget)target); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.ES30.QueryTarget)target); #if DEBUG } #endif @@ -16165,7 +16618,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQuery((OpenTK.Graphics.ES30.QueryTarget)target); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.ES30.QueryTarget)target); #if DEBUG } #endif @@ -16180,7 +16633,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTransformFeedback(); + InteropHelper.Call(EntryPoints[122]); #if DEBUG } #endif @@ -16208,7 +16661,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSync((OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[135], (OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); #if DEBUG } #endif @@ -16235,7 +16688,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSync((OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[135], (OpenTK.Graphics.ES30.SyncCondition)condition, (OpenTK.Graphics.ES30.WaitSyncFlags)flags); #if DEBUG } #endif @@ -16252,7 +16705,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinish(); + InteropHelper.Call(EntryPoints[137]); #if DEBUG } #endif @@ -16269,7 +16722,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlush(); + InteropHelper.Call(EntryPoints[139]); #if DEBUG } #endif @@ -16302,7 +16755,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRange((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -16334,7 +16787,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRange((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -16371,7 +16824,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -16410,7 +16863,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -16447,7 +16900,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -16485,7 +16938,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -16500,7 +16953,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -16517,7 +16970,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -16532,7 +16985,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -16548,7 +17001,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.TextureTarget2d)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -16590,7 +17043,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -16634,7 +17087,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -16676,7 +17129,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -16719,7 +17172,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -16742,7 +17195,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES30.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.ES30.FrontFaceDirection)mode); #if DEBUG } #endif @@ -16764,7 +17217,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.ES30.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.ES30.FrontFaceDirection)mode); #if DEBUG } #endif @@ -16796,7 +17249,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* buffers_ptr = &retval; - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers_ptr); return retval; } #if DEBUG @@ -16829,7 +17282,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -16862,7 +17315,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -16893,7 +17346,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -16925,7 +17378,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -16959,7 +17412,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -16990,7 +17443,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[149], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -17013,7 +17466,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmap((OpenTK.Graphics.ES30.TextureTarget)target); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES30.TextureTarget)target); #if DEBUG } #endif @@ -17035,7 +17488,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmap((OpenTK.Graphics.ES30.TextureTarget)target); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.ES30.TextureTarget)target); #if DEBUG } #endif @@ -17067,7 +17520,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* framebuffers_ptr = &retval; - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers_ptr); return retval; } #if DEBUG @@ -17100,7 +17553,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -17133,7 +17586,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -17164,7 +17617,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -17196,7 +17649,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -17230,7 +17683,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -17261,7 +17714,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[152], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -17293,7 +17746,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -17326,7 +17779,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -17359,7 +17812,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -17390,7 +17843,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -17422,7 +17875,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -17456,7 +17909,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -17487,7 +17940,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[155], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -17519,7 +17972,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* renderbuffers_ptr = &retval; - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers_ptr); return retval; } #if DEBUG @@ -17552,7 +18005,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -17585,7 +18038,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -17616,7 +18069,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -17648,7 +18101,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -17682,7 +18135,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -17713,7 +18166,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[157], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -17745,7 +18198,7 @@ namespace OpenTK.Graphics.ES30 const Int32 count = 1; Int32 retval; Int32* samplers_ptr = &retval; - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers_ptr); return retval; } #if DEBUG @@ -17778,7 +18231,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* samplers_ptr = samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -17811,7 +18264,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers_ptr); samplers = *samplers_ptr; } } @@ -17842,7 +18295,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -17874,7 +18327,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -17908,7 +18361,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers_ptr); samplers = *samplers_ptr; } } @@ -17939,7 +18392,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[158], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -17971,7 +18424,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* textures_ptr = &retval; - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures_ptr); return retval; } #if DEBUG @@ -18004,7 +18457,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -18037,7 +18490,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -18068,7 +18521,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -18100,7 +18553,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -18134,7 +18587,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -18165,7 +18618,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[159], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -18197,7 +18650,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -18230,7 +18683,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -18263,7 +18716,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -18294,7 +18747,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -18326,7 +18779,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -18360,7 +18813,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -18391,7 +18844,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[160], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -18423,7 +18876,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -18456,7 +18909,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -18489,7 +18942,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -18520,7 +18973,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -18552,7 +19005,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -18586,7 +19039,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -18617,7 +19070,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[161], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -18675,7 +19128,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -18738,7 +19191,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.All* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -18796,7 +19249,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -18849,7 +19302,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -18908,7 +19361,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -18973,7 +19426,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.All* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -19031,7 +19484,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -19085,7 +19538,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[163], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -19143,7 +19596,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -19206,7 +19659,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.All* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -19264,7 +19717,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -19317,7 +19770,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -19376,7 +19829,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -19441,7 +19894,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.All* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -19499,7 +19952,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -19553,7 +20006,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[164], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -19594,7 +20047,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19637,7 +20090,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19678,7 +20131,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19719,7 +20172,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19762,7 +20215,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19803,7 +20256,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19845,7 +20298,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19889,7 +20342,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19930,7 +20383,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19973,7 +20426,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20018,7 +20471,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20060,7 +20513,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[165], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.ES30.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20106,7 +20559,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[166], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformBlockName); length = *length_ptr; } } @@ -20152,7 +20605,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[166], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformBlockName); #if DEBUG } #endif @@ -20199,7 +20652,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[166], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformBlockName); length = *length_ptr; } } @@ -20245,7 +20698,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[166], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformBlockName); #if DEBUG } #endif @@ -20292,7 +20745,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20341,7 +20794,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20390,7 +20843,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20440,7 +20893,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20486,7 +20939,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20529,7 +20982,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20577,7 +21030,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20628,7 +21081,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -20678,7 +21131,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20730,7 +21183,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -20776,7 +21229,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20820,7 +21273,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[167], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.ES30.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -20862,7 +21315,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -20907,7 +21360,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -20949,7 +21402,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[168], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -20992,7 +21445,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -21038,7 +21491,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[168], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -21080,7 +21533,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[168], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -21107,7 +21560,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[169], (UInt32)program, (String)name); #if DEBUG } #endif @@ -21135,7 +21588,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[169], (UInt32)program, (String)name); #if DEBUG } #endif @@ -21155,7 +21608,7 @@ namespace OpenTK.Graphics.ES30 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -21176,7 +21629,7 @@ namespace OpenTK.Graphics.ES30 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -21198,7 +21651,7 @@ namespace OpenTK.Graphics.ES30 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -21220,7 +21673,7 @@ namespace OpenTK.Graphics.ES30 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -21240,7 +21693,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -21259,7 +21712,7 @@ namespace OpenTK.Graphics.ES30 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -21280,7 +21733,7 @@ namespace OpenTK.Graphics.ES30 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -21299,7 +21752,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.ES30.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -21336,7 +21789,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21375,7 +21828,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21412,7 +21865,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21448,7 +21901,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21486,7 +21939,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21522,7 +21975,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21559,7 +22012,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21598,7 +22051,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21635,7 +22088,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21671,7 +22124,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -21709,7 +22162,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -21745,7 +22198,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21778,7 +22231,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -21815,7 +22268,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -21857,7 +22310,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -21899,7 +22352,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -21941,7 +22394,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -21979,7 +22432,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22015,7 +22468,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -22056,7 +22509,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -22097,7 +22550,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -22138,7 +22591,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -22209,7 +22662,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -22276,7 +22729,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -22342,7 +22795,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -22407,7 +22860,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -22474,7 +22927,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -22540,7 +22993,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -22607,7 +23060,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -22676,7 +23129,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -22743,7 +23196,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -22809,7 +23262,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -22877,7 +23330,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -22943,7 +23396,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[175], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -22956,7 +23409,7 @@ namespace OpenTK.Graphics.ES30 public static OpenTK.Graphics.ES30.ErrorCode GetError() { - return Delegates.glGetError(); + return InteropHelper.CallReturn(EntryPoints[179]); } /// [requires: v2.0 and ES_VERSION_2_0] @@ -22973,7 +23426,7 @@ namespace OpenTK.Graphics.ES30 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -22994,7 +23447,7 @@ namespace OpenTK.Graphics.ES30 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -23016,7 +23469,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -23038,7 +23491,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23058,7 +23511,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -23077,7 +23530,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -23098,7 +23551,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23117,7 +23570,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.ES30.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[181], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -23144,7 +23597,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[182], (UInt32)program, (String)name); #if DEBUG } #endif @@ -23172,7 +23625,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[182], (UInt32)program, (String)name); #if DEBUG } #endif @@ -23214,7 +23667,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23258,7 +23711,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23300,7 +23753,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[183], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23341,7 +23794,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -23384,7 +23837,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[183], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -23425,7 +23878,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[183], (OpenTK.Graphics.ES30.FramebufferTarget)target, (OpenTK.Graphics.ES30.FramebufferAttachment)attachment, (OpenTK.Graphics.ES30.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -23444,7 +23897,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23465,7 +23918,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23484,7 +23937,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -23505,7 +23958,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23528,7 +23981,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23548,7 +24001,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -23567,7 +24020,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23588,7 +24041,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23607,7 +24060,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -23627,7 +24080,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23649,7 +24102,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23668,7 +24121,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[185], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -23688,7 +24141,7 @@ namespace OpenTK.Graphics.ES30 { Int64 retval; Int64* data_ptr = &retval; - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -23709,7 +24162,7 @@ namespace OpenTK.Graphics.ES30 { Int64 retval; Int64* data_ptr = &retval; - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -23731,7 +24184,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -23753,7 +24206,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23773,7 +24226,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -23792,7 +24245,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -23813,7 +24266,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23832,7 +24285,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64v((OpenTK.Graphics.ES30.GetPName)pname, (Int64*)data); + InteropHelper.Call(EntryPoints[186], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -23851,7 +24304,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23872,7 +24325,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23891,7 +24344,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -23912,7 +24365,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23935,7 +24388,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -23955,7 +24408,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -23974,7 +24427,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -23995,7 +24448,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -24014,7 +24467,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -24034,7 +24487,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -24056,7 +24509,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -24075,7 +24528,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[188], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -24095,7 +24548,7 @@ namespace OpenTK.Graphics.ES30 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -24116,7 +24569,7 @@ namespace OpenTK.Graphics.ES30 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -24138,7 +24591,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -24160,7 +24613,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -24180,7 +24633,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -24199,7 +24652,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -24220,7 +24673,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -24239,7 +24692,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.ES30.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[190], (OpenTK.Graphics.ES30.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -24286,7 +24739,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[191], (OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -24335,7 +24788,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[191], (OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -24382,7 +24835,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInternalformativ((OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[191], (OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -24428,7 +24881,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[191], (OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -24476,7 +24929,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[191], (OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -24522,7 +24975,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInternalformativ((OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[191], (OpenTK.Graphics.ES30.ImageTarget)target, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (OpenTK.Graphics.ES30.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -24568,7 +25021,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -24616,7 +25069,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -24662,7 +25115,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -24710,7 +25163,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -24760,7 +25213,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -24807,7 +25260,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -24853,7 +25306,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -24901,7 +25354,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -24947,7 +25400,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -24994,7 +25447,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -25043,7 +25496,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -25089,7 +25542,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[194], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -25130,7 +25583,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -25173,7 +25626,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -25214,7 +25667,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -25259,7 +25712,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -25311,7 +25764,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -25361,7 +25814,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -25411,7 +25864,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -25463,7 +25916,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -25513,7 +25966,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -25563,7 +26016,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -25615,7 +26068,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -25665,7 +26118,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -25715,7 +26168,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -25768,7 +26221,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -25819,7 +26272,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[197], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -25853,7 +26306,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -25885,7 +26338,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -25922,7 +26375,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -25959,7 +26412,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -25996,7 +26449,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -26029,7 +26482,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -26060,7 +26513,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -26096,7 +26549,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -26132,7 +26585,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -26168,7 +26621,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.ES30.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -26221,7 +26674,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.ES30.All* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26276,7 +26729,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26336,7 +26789,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26396,7 +26849,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26456,7 +26909,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -26509,7 +26962,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -26556,7 +27009,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -26608,7 +27061,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -26660,7 +27113,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -26712,7 +27165,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -26766,7 +27219,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.ES30.All* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26822,7 +27275,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26883,7 +27336,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -26944,7 +27397,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -27005,7 +27458,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -27058,7 +27511,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -27105,7 +27558,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -27157,7 +27610,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -27209,7 +27662,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -27261,7 +27714,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[207], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -27308,7 +27761,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[209], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -27349,7 +27802,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[209], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -27391,7 +27844,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[209], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -27432,7 +27885,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[209], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -27468,7 +27921,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27506,7 +27959,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27542,7 +27995,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27578,7 +28031,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27616,7 +28069,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27652,7 +28105,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27690,7 +28143,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27730,7 +28183,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27767,7 +28220,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27804,7 +28257,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27843,7 +28296,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27879,7 +28332,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[210], (UInt32)program, (OpenTK.Graphics.ES30.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27916,7 +28369,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryiv((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27955,7 +28408,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryiv((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27992,7 +28445,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryiv((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28028,7 +28481,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryiv((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28066,7 +28519,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryiv((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28102,7 +28555,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryiv((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28138,7 +28591,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28176,7 +28629,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28212,7 +28665,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28248,7 +28701,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28286,7 +28739,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28322,7 +28775,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28360,7 +28813,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28400,7 +28853,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28437,7 +28890,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28474,7 +28927,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28513,7 +28966,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28549,7 +29002,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[218], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28586,7 +29039,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28625,7 +29078,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28662,7 +29115,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28698,7 +29151,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28736,7 +29189,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28772,7 +29225,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28808,7 +29261,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28846,7 +29299,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28882,7 +29335,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28918,7 +29371,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28956,7 +29409,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28992,7 +29445,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29030,7 +29483,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29070,7 +29523,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29107,7 +29560,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29144,7 +29597,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29183,7 +29636,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29219,7 +29672,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[221], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29255,7 +29708,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29293,7 +29746,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29329,7 +29782,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29365,7 +29818,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29403,7 +29856,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29439,7 +29892,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29477,7 +29930,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29517,7 +29970,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29554,7 +30007,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29591,7 +30044,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29630,7 +30083,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29666,7 +30119,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[222], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29707,7 +30160,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[223], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -29748,7 +30201,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[223], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -29790,7 +30243,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[223], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -29831,7 +30284,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[223], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -29867,7 +30320,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29905,7 +30358,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29941,7 +30394,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29977,7 +30430,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -30015,7 +30468,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -30051,7 +30504,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -30089,7 +30542,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -30129,7 +30582,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -30166,7 +30619,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -30203,7 +30656,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -30242,7 +30695,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -30278,7 +30731,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[224], (UInt32)shader, (OpenTK.Graphics.ES30.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -30321,7 +30774,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* range_ptr = range) fixed (Int32* precision_ptr = precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); } } #if DEBUG @@ -30366,7 +30819,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* range_ptr = &range) fixed (Int32* precision_ptr = &precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); range = *range_ptr; precision = *precision_ptr; } @@ -30409,7 +30862,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (Int32*)range, (Int32*)precision); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (IntPtr)range, (IntPtr)precision); #if DEBUG } #endif @@ -30451,7 +30904,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* range_ptr = range) fixed (Int32* precision_ptr = precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); } } #if DEBUG @@ -30495,7 +30948,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* range_ptr = &range) fixed (Int32* precision_ptr = &precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); range = *range_ptr; precision = *precision_ptr; } @@ -30537,7 +30990,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (Int32*)range, (Int32*)precision); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.ES30.ShaderType)shadertype, (OpenTK.Graphics.ES30.ShaderPrecision)precisiontype, (IntPtr)range, (IntPtr)precision); #if DEBUG } #endif @@ -30578,7 +31031,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[226], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -30619,7 +31072,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[226], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -30661,7 +31114,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[226], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -30702,7 +31155,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[226], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -30730,7 +31183,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES30.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[227], (OpenTK.Graphics.ES30.StringName)name)); } #if DEBUG } #endif @@ -30757,7 +31210,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES30.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[227], (OpenTK.Graphics.ES30.StringName)name)); } #if DEBUG } #endif @@ -30784,7 +31237,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[228], (OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -30813,7 +31266,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[228], (OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -30840,7 +31293,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[228], (OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -30868,7 +31321,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[228], (OpenTK.Graphics.ES30.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -30916,7 +31369,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[229], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; } } @@ -30967,7 +31420,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[229], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -31015,7 +31468,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[229], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -31062,7 +31515,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[229], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; } } @@ -31112,7 +31565,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[229], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -31159,7 +31612,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[229], (IntPtr)sync, (OpenTK.Graphics.ES30.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -31196,7 +31649,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31235,7 +31688,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31272,7 +31725,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -31308,7 +31761,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31346,7 +31799,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31382,7 +31835,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -31419,7 +31872,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31458,7 +31911,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31495,7 +31948,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -31531,7 +31984,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31569,7 +32022,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31605,7 +32058,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.GetTextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -31663,7 +32116,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.All* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -31726,7 +32179,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.TransformFeedbackType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -31784,7 +32237,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -31837,7 +32290,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -31897,7 +32350,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.All* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -31961,7 +32414,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.ES30.TransformFeedbackType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.ES30.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -32020,7 +32473,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -32073,7 +32526,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.ES30.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[233], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -32100,7 +32553,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBlockIndex((UInt32)program, (String)uniformBlockName); + return InteropHelper.CallReturn(EntryPoints[235], (UInt32)program, (String)uniformBlockName); #if DEBUG } #endif @@ -32128,7 +32581,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBlockIndex((UInt32)program, (String)uniformBlockName); + return InteropHelper.CallReturn(EntryPoints[235], (UInt32)program, (String)uniformBlockName); #if DEBUG } #endif @@ -32164,7 +32617,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -32202,7 +32655,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32238,7 +32691,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -32275,7 +32728,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -32314,7 +32767,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32350,7 +32803,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[236], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -32391,7 +32844,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* uniformIndices_ptr = uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); } } #if DEBUG @@ -32434,7 +32887,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* uniformIndices_ptr = &uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); uniformIndices = *uniformIndices_ptr; } } @@ -32475,7 +32928,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices); #if DEBUG } #endif @@ -32517,7 +32970,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* uniformIndices_ptr = uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); } } #if DEBUG @@ -32561,7 +33014,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* uniformIndices_ptr = &uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); uniformIndices = *uniformIndices_ptr; } } @@ -32602,7 +33055,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices); + InteropHelper.Call(EntryPoints[237], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices); #if DEBUG } #endif @@ -32638,7 +33091,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -32676,7 +33129,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32712,7 +33165,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -32749,7 +33202,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -32788,7 +33241,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32824,7 +33277,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[238], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -32851,7 +33304,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[239], (UInt32)program, (String)name); #if DEBUG } #endif @@ -32879,7 +33332,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[239], (UInt32)program, (String)name); #if DEBUG } #endif @@ -32916,7 +33369,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[240], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -32955,7 +33408,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[240], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32991,7 +33444,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[240], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -33027,7 +33480,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33065,7 +33518,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33101,7 +33554,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33137,7 +33590,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33175,7 +33628,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33211,7 +33664,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33249,7 +33702,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33289,7 +33742,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33326,7 +33779,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33363,7 +33816,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33402,7 +33855,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33438,7 +33891,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[241], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33457,7 +33910,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[242], (UInt32)index, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33476,7 +33929,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[242], (UInt32)index, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33496,7 +33949,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[242], (UInt32)index, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33515,7 +33968,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[242], (UInt32)index, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33535,7 +33988,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.ES30.All)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[243], (UInt32)index, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33554,7 +34007,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.ES30.All)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[243], (UInt32)index, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33590,7 +34043,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33628,7 +34081,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33664,7 +34117,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33700,7 +34153,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33738,7 +34191,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33774,7 +34227,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33812,7 +34265,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33852,7 +34305,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33889,7 +34342,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33926,7 +34379,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33965,7 +34418,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34001,7 +34454,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[244], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34033,7 +34486,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -34069,7 +34522,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34110,7 +34563,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34151,7 +34604,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34192,7 +34645,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -34230,7 +34683,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -34266,7 +34719,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34307,7 +34760,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34348,7 +34801,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34389,7 +34842,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -34429,7 +34882,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -34467,7 +34920,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34510,7 +34963,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34553,7 +35006,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34596,7 +35049,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -34635,7 +35088,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -34672,7 +35125,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34714,7 +35167,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34756,7 +35209,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34798,7 +35251,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (UInt32)index, (OpenTK.Graphics.ES30.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -34832,7 +35285,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES30.HintTarget)target, (OpenTK.Graphics.ES30.HintMode)mode); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.ES30.HintTarget)target, (OpenTK.Graphics.ES30.HintMode)mode); #if DEBUG } #endif @@ -34859,7 +35312,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.ES30.HintTarget)target, (OpenTK.Graphics.ES30.HintMode)mode); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.ES30.HintTarget)target, (OpenTK.Graphics.ES30.HintMode)mode); #if DEBUG } #endif @@ -34896,7 +35349,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* attachments_ptr = attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -34935,7 +35388,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* attachments_ptr = &attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -34971,7 +35424,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -35007,7 +35460,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.FramebufferAttachment* attachments_ptr = attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -35045,7 +35498,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.FramebufferAttachment* attachments_ptr = &attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -35080,7 +35533,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -35137,7 +35590,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* attachments_ptr = attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -35196,7 +35649,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* attachments_ptr = &attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -35252,7 +35705,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -35308,7 +35761,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.FramebufferAttachment* attachments_ptr = attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -35366,7 +35819,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.FramebufferAttachment* attachments_ptr = &attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -35421,7 +35874,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.FramebufferAttachment*)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.ES30.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -35443,7 +35896,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[250], (UInt32)buffer); #if DEBUG } #endif @@ -35466,7 +35919,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[250], (UInt32)buffer); #if DEBUG } #endif @@ -35494,7 +35947,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.ES30.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[251], (OpenTK.Graphics.ES30.EnableCap)cap); #if DEBUG } #endif @@ -35521,7 +35974,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.ES30.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[251], (OpenTK.Graphics.ES30.EnableCap)cap); #if DEBUG } #endif @@ -35543,7 +35996,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[253], (UInt32)framebuffer); #if DEBUG } #endif @@ -35566,7 +36019,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[253], (UInt32)framebuffer); #if DEBUG } #endif @@ -35588,7 +36041,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[254], (UInt32)program); #if DEBUG } #endif @@ -35611,7 +36064,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[254], (UInt32)program); #if DEBUG } #endif @@ -35633,7 +36086,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQuery((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[256], (UInt32)id); #if DEBUG } #endif @@ -35656,7 +36109,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQuery((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[256], (UInt32)id); #if DEBUG } #endif @@ -35678,7 +36131,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[258], (UInt32)renderbuffer); #if DEBUG } #endif @@ -35701,7 +36154,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[258], (UInt32)renderbuffer); #if DEBUG } #endif @@ -35723,7 +36176,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSampler((UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[259], (UInt32)sampler); #if DEBUG } #endif @@ -35746,7 +36199,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSampler((UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[259], (UInt32)sampler); #if DEBUG } #endif @@ -35768,7 +36221,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[260], (UInt32)shader); #if DEBUG } #endif @@ -35791,7 +36244,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[260], (UInt32)shader); #if DEBUG } #endif @@ -35813,7 +36266,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSync((IntPtr)sync); + return InteropHelper.CallReturn(EntryPoints[261], (IntPtr)sync); #if DEBUG } #endif @@ -35835,7 +36288,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[263], (UInt32)texture); #if DEBUG } #endif @@ -35858,7 +36311,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[263], (UInt32)texture); #if DEBUG } #endif @@ -35880,7 +36333,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedback((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[264], (UInt32)id); #if DEBUG } #endif @@ -35903,7 +36356,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedback((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[264], (UInt32)id); #if DEBUG } #endif @@ -35925,7 +36378,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArray((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[265], (UInt32)array); #if DEBUG } #endif @@ -35948,7 +36401,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArray((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[265], (UInt32)array); #if DEBUG } #endif @@ -35970,7 +36423,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidth((Single)width); + InteropHelper.Call(EntryPoints[268], (Single)width); #if DEBUG } #endif @@ -35992,7 +36445,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[269], (UInt32)program); #if DEBUG } #endif @@ -36015,7 +36468,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[269], (UInt32)program); #if DEBUG } #endif @@ -36053,7 +36506,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRange((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.ES30.BufferAccessMask)access); + return InteropHelper.CallReturn(EntryPoints[271], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.ES30.BufferAccessMask)access); #if DEBUG } #endif @@ -36090,7 +36543,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRange((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.ES30.BufferAccessMask)access); + return InteropHelper.CallReturn(EntryPoints[271], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.ES30.BufferAccessMask)access); #if DEBUG } #endif @@ -36127,7 +36580,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -36166,7 +36619,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -36203,7 +36656,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -36241,7 +36694,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -36273,7 +36726,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabel((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[277], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -36309,7 +36762,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[277], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -36350,7 +36803,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[277], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -36391,7 +36844,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[277], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -36432,7 +36885,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[277], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -36455,7 +36908,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPauseTransformFeedback(); + InteropHelper.Call(EntryPoints[279]); #if DEBUG } #endif @@ -36483,7 +36936,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES30.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.ES30.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -36510,7 +36963,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.ES30.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.ES30.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -36537,7 +36990,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffset((Single)factor, (Single)units); + InteropHelper.Call(EntryPoints[281], (Single)factor, (Single)units); #if DEBUG } #endif @@ -36554,7 +37007,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroup(); + InteropHelper.Call(EntryPoints[282]); #if DEBUG } #endif @@ -36591,7 +37044,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -36632,7 +37085,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -36678,7 +37131,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -36724,7 +37177,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -36770,7 +37223,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -36814,7 +37267,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -36856,7 +37309,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -36903,7 +37356,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -36950,7 +37403,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -36997,7 +37450,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[285], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -37035,7 +37488,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[287], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -37067,7 +37520,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[287], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -37101,7 +37554,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[287], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -37134,7 +37587,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[287], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -37171,7 +37624,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[322], (OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -37209,7 +37662,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[322], (OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -37232,7 +37685,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBuffer((OpenTK.Graphics.ES30.ReadBufferMode)mode); + InteropHelper.Call(EntryPoints[326], (OpenTK.Graphics.ES30.ReadBufferMode)mode); #if DEBUG } #endif @@ -37254,7 +37707,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBuffer((OpenTK.Graphics.ES30.ReadBufferMode)mode); + InteropHelper.Call(EntryPoints[326], (OpenTK.Graphics.ES30.ReadBufferMode)mode); #if DEBUG } #endif @@ -37297,7 +37750,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -37344,7 +37797,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -37396,7 +37849,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -37448,7 +37901,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -37500,7 +37953,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -37548,7 +38001,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -37594,7 +38047,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -37645,7 +38098,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -37696,7 +38149,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -37747,7 +38200,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[330], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -37770,7 +38223,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReleaseShaderCompiler(); + InteropHelper.Call(EntryPoints[331]); #if DEBUG } #endif @@ -37808,7 +38261,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorage((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[332], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -37845,7 +38298,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorage((OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[332], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -37888,7 +38341,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisample((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[333], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -37930,7 +38383,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisample((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[333], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -37947,7 +38400,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResumeTransformFeedback(); + InteropHelper.Call(EntryPoints[340]); #if DEBUG } #endif @@ -37974,7 +38427,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverage((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[341], (Single)value, (bool)invert); #if DEBUG } #endif @@ -38011,7 +38464,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[342], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -38048,7 +38501,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[342], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -38087,7 +38540,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[342], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -38125,7 +38578,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[342], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -38166,7 +38619,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38206,7 +38659,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38247,7 +38700,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38287,7 +38740,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38330,7 +38783,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38371,7 +38824,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38413,7 +38866,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38453,7 +38906,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[343], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38490,7 +38943,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[344], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -38527,7 +38980,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[344], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -38566,7 +39019,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[344], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -38604,7 +39057,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[344], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -38645,7 +39098,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38685,7 +39138,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38726,7 +39179,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38766,7 +39219,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38809,7 +39262,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38850,7 +39303,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38892,7 +39345,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -38932,7 +39385,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[345], (UInt32)sampler, (OpenTK.Graphics.ES30.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -38959,7 +39412,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[346], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -39005,7 +39458,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -39057,7 +39510,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39114,7 +39567,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39171,7 +39624,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39228,7 +39681,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -39282,7 +39735,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -39334,7 +39787,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39391,7 +39844,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39448,7 +39901,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39505,7 +39958,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -39559,7 +40012,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -39611,7 +40064,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39668,7 +40121,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39725,7 +40178,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39782,7 +40235,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -39836,7 +40289,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -39888,7 +40341,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -39945,7 +40398,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40002,7 +40455,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40059,7 +40512,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -40110,7 +40563,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -40157,7 +40610,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40209,7 +40662,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40261,7 +40714,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40313,7 +40766,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -40362,7 +40815,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -40409,7 +40862,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40461,7 +40914,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40513,7 +40966,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40565,7 +41018,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -40619,7 +41072,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -40673,7 +41126,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40732,7 +41185,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40791,7 +41244,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -40850,7 +41303,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -40905,7 +41358,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -40958,7 +41411,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41016,7 +41469,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41074,7 +41527,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41132,7 +41585,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -41188,7 +41641,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -41242,7 +41695,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41301,7 +41754,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41360,7 +41813,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41419,7 +41872,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -41474,7 +41927,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -41527,7 +41980,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41585,7 +42038,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41643,7 +42096,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41701,7 +42154,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -41753,7 +42206,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -41801,7 +42254,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41854,7 +42307,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41907,7 +42360,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -41960,7 +42413,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -42009,7 +42462,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -42056,7 +42509,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -42108,7 +42561,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -42160,7 +42613,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -42212,7 +42665,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[349], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.ES30.ShaderBinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -42259,7 +42712,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[350], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -42302,7 +42755,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[350], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -42342,7 +42795,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[350], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -42384,7 +42837,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[350], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -42428,7 +42881,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[350], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -42468,7 +42921,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[350], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -42500,7 +42953,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42534,7 +42987,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42566,7 +43019,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42599,7 +43052,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42636,7 +43089,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42675,7 +43128,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42712,7 +43165,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42750,7 +43203,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -42772,7 +43225,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[354], (UInt32)mask); #if DEBUG } #endif @@ -42795,7 +43248,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[354], (UInt32)mask); #if DEBUG } #endif @@ -42822,7 +43275,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -42851,7 +43304,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -42878,7 +43331,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -42906,7 +43359,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.ES30.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -42939,7 +43392,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES30.StencilOp)fail, (OpenTK.Graphics.ES30.StencilOp)zfail, (OpenTK.Graphics.ES30.StencilOp)zpass); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.ES30.StencilOp)fail, (OpenTK.Graphics.ES30.StencilOp)zfail, (OpenTK.Graphics.ES30.StencilOp)zpass); #if DEBUG } #endif @@ -42971,7 +43424,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.ES30.StencilOp)fail, (OpenTK.Graphics.ES30.StencilOp)zfail, (OpenTK.Graphics.ES30.StencilOp)zpass); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.ES30.StencilOp)fail, (OpenTK.Graphics.ES30.StencilOp)zfail, (OpenTK.Graphics.ES30.StencilOp)zpass); #if DEBUG } #endif @@ -43009,7 +43462,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilOp)sfail, (OpenTK.Graphics.ES30.StencilOp)dpfail, (OpenTK.Graphics.ES30.StencilOp)dppass); + InteropHelper.Call(EntryPoints[357], (OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilOp)sfail, (OpenTK.Graphics.ES30.StencilOp)dpfail, (OpenTK.Graphics.ES30.StencilOp)dppass); #if DEBUG } #endif @@ -43046,7 +43499,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilOp)sfail, (OpenTK.Graphics.ES30.StencilOp)dpfail, (OpenTK.Graphics.ES30.StencilOp)dppass); + InteropHelper.Call(EntryPoints[357], (OpenTK.Graphics.ES30.StencilFace)face, (OpenTK.Graphics.ES30.StencilOp)sfail, (OpenTK.Graphics.ES30.StencilOp)dpfail, (OpenTK.Graphics.ES30.StencilOp)dppass); #if DEBUG } #endif @@ -43109,7 +43562,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -43176,7 +43629,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43248,7 +43701,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43320,7 +43773,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43392,7 +43845,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -43460,7 +43913,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -43526,7 +43979,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43597,7 +44050,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43668,7 +44121,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43739,7 +44192,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -43813,7 +44266,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -43885,7 +44338,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -43962,7 +44415,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -44039,7 +44492,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -44116,7 +44569,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -44189,7 +44642,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -44260,7 +44713,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -44336,7 +44789,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -44412,7 +44865,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -44488,7 +44941,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -44535,7 +44988,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -44575,7 +45028,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -44620,7 +45073,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -44664,7 +45117,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -44708,7 +45161,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -44751,7 +45204,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -44792,7 +45245,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -44832,7 +45285,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -44877,7 +45330,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[365], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -44921,7 +45374,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[365], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -44965,7 +45418,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[365], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -45008,7 +45461,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[365], (OpenTK.Graphics.ES30.TextureTarget)target, (OpenTK.Graphics.ES30.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -45051,7 +45504,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[367], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -45093,7 +45546,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[367], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -45141,7 +45594,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -45188,7 +45641,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -45251,7 +45704,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -45318,7 +45771,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -45390,7 +45843,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -45462,7 +45915,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -45534,7 +45987,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -45602,7 +46055,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -45668,7 +46121,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -45739,7 +46192,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -45810,7 +46263,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -45881,7 +46334,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -45960,7 +46413,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -46037,7 +46490,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -46119,7 +46572,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -46201,7 +46654,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -46283,7 +46736,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -46361,7 +46814,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -46437,7 +46890,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -46518,7 +46971,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -46599,7 +47052,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -46680,7 +47133,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -46723,7 +47176,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[377], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -46760,7 +47213,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[377], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -46799,7 +47252,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[377], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -46837,7 +47290,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[377], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.ES30.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -46882,7 +47335,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1f((Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[378], (Int32)location, (Single)v0); #if DEBUG } #endif @@ -46931,7 +47384,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -46982,7 +47435,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47030,7 +47483,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[379], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -47075,7 +47528,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1i((Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[380], (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -47124,7 +47577,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47175,7 +47628,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47223,7 +47676,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[381], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -47269,7 +47722,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1ui((Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[382], (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -47319,7 +47772,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47371,7 +47824,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47419,7 +47872,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[383], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -47464,7 +47917,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2f((Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[384], (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -47513,7 +47966,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[385], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47564,7 +48017,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[385], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47612,7 +48065,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[385], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -47657,7 +48110,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2i((Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[386], (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -47706,7 +48159,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47754,7 +48207,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[387], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -47800,7 +48253,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2ui((Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[388], (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -47850,7 +48303,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47902,7 +48355,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -47950,7 +48403,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[389], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -47995,7 +48448,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3f((Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[390], (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -48044,7 +48497,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48095,7 +48548,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48143,7 +48596,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[391], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -48188,7 +48641,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[392], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -48237,7 +48690,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[393], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48288,7 +48741,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[393], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48336,7 +48789,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[393], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -48382,7 +48835,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[394], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -48432,7 +48885,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[395], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48484,7 +48937,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[395], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48532,7 +48985,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[395], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -48577,7 +49030,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4f((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[396], (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -48626,7 +49079,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[397], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48677,7 +49130,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[397], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48725,7 +49178,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[397], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -48770,7 +49223,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[398], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -48819,7 +49272,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[399], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48870,7 +49323,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[399], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -48918,7 +49371,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[399], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -48964,7 +49417,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[400], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -49014,7 +49467,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[401], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -49066,7 +49519,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[401], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -49114,7 +49567,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[401], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -49146,7 +49599,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBlockBinding((UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); + InteropHelper.Call(EntryPoints[402], (UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); #if DEBUG } #endif @@ -49179,7 +49632,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBlockBinding((UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); + InteropHelper.Call(EntryPoints[402], (UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); #if DEBUG } #endif @@ -49198,7 +49651,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[403], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49219,7 +49672,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[403], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49237,7 +49690,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[403], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49256,7 +49709,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[404], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49277,7 +49730,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[404], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49295,7 +49748,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[404], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49314,7 +49767,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[406], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49335,7 +49788,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[406], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49353,7 +49806,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[406], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49372,7 +49825,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[408], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49393,7 +49846,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[408], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49411,7 +49864,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[408], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49430,7 +49883,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[409], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49451,7 +49904,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[409], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49469,7 +49922,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[409], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49488,7 +49941,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[411], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49509,7 +49962,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[411], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49527,7 +49980,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[411], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49546,7 +49999,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[413], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49567,7 +50020,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[413], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49585,7 +50038,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[413], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49604,7 +50057,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[414], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49625,7 +50078,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[414], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49643,7 +50096,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[414], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49662,7 +50115,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[416], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49683,7 +50136,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[416], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -49701,7 +50154,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[416], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -49717,7 +50170,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBuffer((OpenTK.Graphics.ES30.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[418], (OpenTK.Graphics.ES30.BufferTarget)target); #if DEBUG } #endif @@ -49732,7 +50185,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBuffer((OpenTK.Graphics.ES30.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[418], (OpenTK.Graphics.ES30.BufferTarget)target); #if DEBUG } #endif @@ -49754,7 +50207,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[420], (UInt32)program); #if DEBUG } #endif @@ -49777,7 +50230,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[420], (UInt32)program); #if DEBUG } #endif @@ -49799,7 +50252,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[423], (UInt32)program); #if DEBUG } #endif @@ -49822,7 +50275,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[423], (UInt32)program); #if DEBUG } #endif @@ -49869,7 +50322,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[425], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -49917,7 +50370,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[425], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -49965,7 +50418,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[426], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -50013,7 +50466,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[426], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -50060,7 +50513,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[427], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -50108,7 +50561,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[427], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -50159,7 +50612,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50212,7 +50665,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50262,7 +50715,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[428], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -50314,7 +50767,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50368,7 +50821,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50418,7 +50871,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[428], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -50465,7 +50918,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[429], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -50513,7 +50966,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[429], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -50564,7 +51017,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[430], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50617,7 +51070,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[430], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50667,7 +51120,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[430], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -50719,7 +51172,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[430], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50773,7 +51226,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[430], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -50823,7 +51276,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[430], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -50870,7 +51323,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[431], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -50918,7 +51371,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[431], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -50969,7 +51422,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51022,7 +51475,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51072,7 +51525,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[432], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -51124,7 +51577,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51178,7 +51631,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51228,7 +51681,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[432], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -51255,7 +51708,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[433], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -51283,7 +51736,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[433], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -51298,7 +51751,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[437], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -51314,7 +51767,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[437], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -51333,7 +51786,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51354,7 +51807,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51372,7 +51825,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[438], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -51392,7 +51845,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51414,7 +51867,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51432,7 +51885,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[438], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -51448,7 +51901,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[439], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -51468,7 +51921,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[440], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51490,7 +51943,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[440], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -51508,7 +51961,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[440], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -51523,7 +51976,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -51542,7 +51995,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51566,7 +52019,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51590,7 +52043,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51614,7 +52067,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -51635,7 +52088,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -51654,7 +52107,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51678,7 +52131,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51702,7 +52155,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51726,7 +52179,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -51749,7 +52202,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -51770,7 +52223,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51796,7 +52249,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51822,7 +52275,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51848,7 +52301,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -51870,7 +52323,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -51890,7 +52343,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51915,7 +52368,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51940,7 +52393,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -51965,7 +52418,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[441], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -52018,7 +52471,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -52069,7 +52522,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52125,7 +52578,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52181,7 +52634,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52237,7 +52690,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -52290,7 +52743,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -52341,7 +52794,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52397,7 +52850,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52453,7 +52906,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52509,7 +52962,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -52564,7 +53017,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -52617,7 +53070,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52675,7 +53128,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52733,7 +53186,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52791,7 +53244,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -52845,7 +53298,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -52897,7 +53350,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -52954,7 +53407,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -53011,7 +53464,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -53068,7 +53521,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[442], (UInt32)index, (Int32)size, (OpenTK.Graphics.ES30.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -53101,7 +53554,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[443], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -53133,7 +53586,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[444], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -53167,7 +53620,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[444], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -53199,7 +53652,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[444], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -53232,7 +53685,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); + InteropHelper.Call(EntryPoints[444], (IntPtr)sync, (OpenTK.Graphics.ES30.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -53249,7 +53702,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveProgramEXT((UInt32)program); + InteropHelper.Call(EntryPoints[0], (UInt32)program); #if DEBUG } #endif @@ -53265,7 +53718,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveProgramEXT((UInt32)program); + InteropHelper.Call(EntryPoints[0], (UInt32)program); #if DEBUG } #endif @@ -53292,7 +53745,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgramEXT((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[1], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -53320,7 +53773,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgramEXT((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[1], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -53347,7 +53800,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -53376,7 +53829,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -53403,7 +53856,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -53431,7 +53884,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryEXT((OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.ES30.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -53453,7 +53906,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[14], (UInt32)pipeline); #if DEBUG } #endif @@ -53476,7 +53929,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[14], (UInt32)pipeline); #if DEBUG } #endif @@ -53504,7 +53957,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.ES30.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES30.BlendEquationMode)mode); #if DEBUG } #endif @@ -53531,7 +53984,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.ES30.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.ES30.BlendEquationMode)mode); #if DEBUG } #endif @@ -53563,7 +54016,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramEXT((OpenTK.Graphics.ES30.All)type, (String)@string); + return InteropHelper.CallReturn(EntryPoints[64], (OpenTK.Graphics.ES30.All)type, (String)@string); #if DEBUG } #endif @@ -53595,7 +54048,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramvEXT((OpenTK.Graphics.ES30.All)type, (Int32)count, (String[])strings); + return InteropHelper.CallReturn(EntryPoints[65], (OpenTK.Graphics.ES30.All)type, (Int32)count, (String[])strings); #if DEBUG } #endif @@ -53614,7 +54067,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -53635,7 +54088,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -53667,7 +54120,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53700,7 +54153,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53730,7 +54183,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -53762,7 +54215,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53796,7 +54249,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53826,7 +54279,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[78], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -53845,7 +54298,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -53866,7 +54319,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -53898,7 +54351,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -53931,7 +54384,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -53961,7 +54414,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -53993,7 +54446,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -54027,7 +54480,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -54057,7 +54510,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[80], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -54076,7 +54529,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* attachments_ptr = attachments) { - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES30.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.All*)attachments_ptr); + InteropHelper.Call(EntryPoints[97], (OpenTK.Graphics.ES30.All)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -54097,7 +54550,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* attachments_ptr = &attachments) { - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES30.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.All*)attachments_ptr); + InteropHelper.Call(EntryPoints[97], (OpenTK.Graphics.ES30.All)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -54115,7 +54568,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDiscardFramebufferEXT((OpenTK.Graphics.ES30.All)target, (Int32)numAttachments, (OpenTK.Graphics.ES30.All*)attachments); + InteropHelper.Call(EntryPoints[97], (OpenTK.Graphics.ES30.All)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -54153,7 +54606,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -54190,7 +54643,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[101], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -54222,7 +54675,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[104], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -54256,7 +54709,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[104], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -54287,7 +54740,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[104], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -54318,7 +54771,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[104], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -54351,7 +54804,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[104], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -54381,7 +54834,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersEXT((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[104], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -54401,7 +54854,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* location_ptr = location) fixed (Int32* indices_ptr = indices) { - Delegates.glDrawBuffersIndexedEXT((Int32)n, (OpenTK.Graphics.ES30.All*)location_ptr, (Int32*)indices_ptr); + InteropHelper.Call(EntryPoints[105], (Int32)n, (IntPtr)location_ptr, (IntPtr)indices_ptr); } } #if DEBUG @@ -54423,7 +54876,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* location_ptr = &location) fixed (Int32* indices_ptr = &indices) { - Delegates.glDrawBuffersIndexedEXT((Int32)n, (OpenTK.Graphics.ES30.All*)location_ptr, (Int32*)indices_ptr); + InteropHelper.Call(EntryPoints[105], (Int32)n, (IntPtr)location_ptr, (IntPtr)indices_ptr); } } #if DEBUG @@ -54441,7 +54894,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersIndexedEXT((Int32)n, (OpenTK.Graphics.ES30.All*)location, (Int32*)indices); + InteropHelper.Call(EntryPoints[105], (Int32)n, (IntPtr)location, (IntPtr)indices); #if DEBUG } #endif @@ -54484,7 +54937,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -54531,7 +54984,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -54583,7 +55036,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -54635,7 +55088,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -54687,7 +55140,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -54735,7 +55188,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -54781,7 +55234,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -54832,7 +55285,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -54883,7 +55336,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -54934,7 +55387,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -54956,7 +55409,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryEXT((OpenTK.Graphics.ES30.QueryTarget)target); + InteropHelper.Call(EntryPoints[120], (OpenTK.Graphics.ES30.QueryTarget)target); #if DEBUG } #endif @@ -54971,7 +55424,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryEXT((OpenTK.Graphics.ES30.QueryTarget)target); + InteropHelper.Call(EntryPoints[120], (OpenTK.Graphics.ES30.QueryTarget)target); #if DEBUG } #endif @@ -55004,7 +55457,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRangeEXT((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -55036,7 +55489,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRangeEXT((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -55051,7 +55504,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleEXT((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -55067,7 +55520,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleEXT((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -55087,7 +55540,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* pipelines_ptr = &retval; - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines_ptr); return retval; } #if DEBUG @@ -55120,7 +55573,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -55153,7 +55606,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -55184,7 +55637,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -55216,7 +55669,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -55250,7 +55703,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -55281,7 +55734,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[154], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -55301,7 +55754,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -55334,7 +55787,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -55367,7 +55820,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -55398,7 +55851,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -55430,7 +55883,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -55464,7 +55917,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -55495,7 +55948,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueriesEXT((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[156], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -55510,7 +55963,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetGraphicsResetStatusEXT(); + return InteropHelper.CallReturn(EntryPoints[184]); #if DEBUG } #endif @@ -55529,7 +55982,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -55550,7 +56003,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -55569,7 +56022,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -55590,7 +56043,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -55613,7 +56066,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -55633,7 +56086,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -55652,7 +56105,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -55673,7 +56126,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -55692,7 +56145,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -55712,7 +56165,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -55734,7 +56187,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -55753,7 +56206,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_vEXT((OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[189], (OpenTK.Graphics.ES30.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -55772,7 +56225,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -55793,7 +56246,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -55812,7 +56265,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -55832,7 +56285,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -55854,7 +56307,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -55873,7 +56326,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -55892,7 +56345,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -55913,7 +56366,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -55932,7 +56385,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -55952,7 +56405,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -55974,7 +56427,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -55993,7 +56446,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivEXT((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -56039,7 +56492,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -56087,7 +56540,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -56133,7 +56586,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -56180,7 +56633,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -56229,7 +56682,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -56275,7 +56728,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[195], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -56316,7 +56769,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[211], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); } } #if DEBUG @@ -56359,7 +56812,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[211], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -56400,7 +56853,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[211], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -56442,7 +56895,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[211], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); } } #if DEBUG @@ -56486,7 +56939,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[211], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -56527,7 +56980,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[211], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -56563,7 +57016,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[212], (UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -56601,7 +57054,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[212], (UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -56637,7 +57090,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[212], (UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -56674,7 +57127,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[212], (UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -56713,7 +57166,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[212], (UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -56749,7 +57202,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[212], (UInt32)pipeline, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -56769,7 +57222,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -56791,7 +57244,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -56811,7 +57264,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -56830,7 +57283,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -56851,7 +57304,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -56870,7 +57323,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryivEXT((OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[214], (OpenTK.Graphics.ES30.QueryTarget)target, (OpenTK.Graphics.ES30.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -56906,7 +57359,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -56944,7 +57397,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -56980,7 +57433,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57016,7 +57469,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57054,7 +57507,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57090,7 +57543,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57128,7 +57581,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57168,7 +57621,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57205,7 +57658,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57242,7 +57695,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57281,7 +57734,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57317,7 +57770,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[215], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57353,7 +57806,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57391,7 +57844,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57427,7 +57880,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57463,7 +57916,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57501,7 +57954,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57537,7 +57990,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57575,7 +58028,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57615,7 +58068,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57652,7 +58105,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57689,7 +58142,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57728,7 +58181,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57764,7 +58217,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[216], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57802,7 +58255,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[217], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57842,7 +58295,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[217], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57879,7 +58332,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[217], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -57916,7 +58369,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[217], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -57955,7 +58408,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[217], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -57991,7 +58444,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[217], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -58029,7 +58482,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[219], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -58069,7 +58522,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[219], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -58106,7 +58559,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[219], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -58143,7 +58596,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[219], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -58182,7 +58635,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[219], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -58218,7 +58671,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuivEXT((UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[219], (UInt32)id, (OpenTK.Graphics.ES30.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -58233,7 +58686,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInsertEventMarkerEXT((Int32)length, (String)marker); + InteropHelper.Call(EntryPoints[247], (Int32)length, (String)marker); #if DEBUG } #endif @@ -58255,7 +58708,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipelineEXT((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[255], (UInt32)pipeline); #if DEBUG } #endif @@ -58278,7 +58731,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipelineEXT((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[255], (UInt32)pipeline); #if DEBUG } #endif @@ -58300,7 +58753,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQueryEXT((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[257], (UInt32)id); #if DEBUG } #endif @@ -58323,7 +58776,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQueryEXT((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[257], (UInt32)id); #if DEBUG } #endif @@ -58338,7 +58791,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLabelObjectEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)length, (String)label); #if DEBUG } #endif @@ -58354,7 +58807,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLabelObjectEXT((OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.ES30.All)type, (UInt32)@object, (Int32)length, (String)label); #if DEBUG } #endif @@ -58391,7 +58844,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[272], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -58430,7 +58883,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[272], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -58467,7 +58920,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[272], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -58505,7 +58958,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRangeEXT((OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); + return InteropHelper.CallReturn(EntryPoints[272], (OpenTK.Graphics.ES30.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (UInt32)access); #if DEBUG } #endif @@ -58548,7 +59001,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -58593,7 +59046,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -58634,7 +59087,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -58676,7 +59129,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -58720,7 +59173,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -58760,7 +59213,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -58807,7 +59260,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -58860,7 +59313,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -58918,7 +59371,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -58976,7 +59429,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59034,7 +59487,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -59089,7 +59542,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -59142,7 +59595,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59200,7 +59653,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59258,7 +59711,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59316,7 +59769,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -59368,7 +59821,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -59416,7 +59869,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59469,7 +59922,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59522,7 +59975,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59575,7 +60028,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -59627,7 +60080,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -59679,7 +60132,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59736,7 +60189,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59793,7 +60246,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -59850,7 +60303,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -59904,7 +60357,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -59956,7 +60409,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -60013,7 +60466,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -60070,7 +60523,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -60127,7 +60580,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -60178,7 +60631,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -60225,7 +60678,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -60277,7 +60730,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -60329,7 +60782,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -60381,7 +60834,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.ES30.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -60402,7 +60855,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopGroupMarkerEXT(); + InteropHelper.Call(EntryPoints[284]); #if DEBUG } #endif @@ -60434,7 +60887,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[288], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -60466,7 +60919,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[288], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -60500,7 +60953,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[288], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -60533,7 +60986,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[288], (UInt32)program, (OpenTK.Graphics.ES30.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -60583,7 +61036,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[289], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -60634,7 +61087,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[289], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -60688,7 +61141,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[290], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -60744,7 +61197,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[290], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -60797,7 +61250,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[290], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -60852,7 +61305,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[290], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -60909,7 +61362,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[290], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -60962,7 +61415,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[290], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -61012,7 +61465,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[291], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -61063,7 +61516,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[291], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -61117,7 +61570,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[292], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61173,7 +61626,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[292], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61226,7 +61679,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[292], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -61281,7 +61734,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[292], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61338,7 +61791,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[292], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61391,7 +61844,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[292], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -61442,7 +61895,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uiEXT((UInt32)program, (Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[293], (UInt32)program, (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -61497,7 +61950,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[294], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61554,7 +62007,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[294], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61607,7 +62060,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[294], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -61657,7 +62110,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[295], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -61708,7 +62161,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[295], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -61762,7 +62215,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[296], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61818,7 +62271,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[296], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61871,7 +62324,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[296], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -61926,7 +62379,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[296], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -61983,7 +62436,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[296], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62036,7 +62489,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[296], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -62086,7 +62539,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[297], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -62137,7 +62590,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[297], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -62191,7 +62644,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[298], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62244,7 +62697,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[298], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -62299,7 +62752,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[298], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62352,7 +62805,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[298], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -62403,7 +62856,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[299], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -62458,7 +62911,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[300], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62515,7 +62968,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[300], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62568,7 +63021,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[300], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -62618,7 +63071,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[301], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -62669,7 +63122,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[301], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -62723,7 +63176,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[302], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62779,7 +63232,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[302], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62832,7 +63285,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[302], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -62887,7 +63340,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[302], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62944,7 +63397,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[302], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -62997,7 +63450,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[302], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -63047,7 +63500,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[303], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -63098,7 +63551,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[303], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -63152,7 +63605,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63208,7 +63661,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63261,7 +63714,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -63316,7 +63769,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63373,7 +63826,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63426,7 +63879,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -63477,7 +63930,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[305], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -63532,7 +63985,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63589,7 +64042,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63642,7 +64095,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -63692,7 +64145,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -63743,7 +64196,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -63797,7 +64250,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63853,7 +64306,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -63906,7 +64359,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -63961,7 +64414,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64018,7 +64471,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64071,7 +64524,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -64121,7 +64574,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -64172,7 +64625,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -64226,7 +64679,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[310], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64282,7 +64735,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[310], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64335,7 +64788,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[310], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -64390,7 +64843,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[310], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64447,7 +64900,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[310], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64500,7 +64953,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[310], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -64551,7 +65004,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[311], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -64606,7 +65059,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[312], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64663,7 +65116,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[312], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -64716,7 +65169,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[312], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -64735,7 +65188,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64756,7 +65209,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64774,7 +65227,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[313], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -64794,7 +65247,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64816,7 +65269,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64834,7 +65287,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[313], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -64853,7 +65306,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64874,7 +65327,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64892,7 +65345,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[314], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -64912,7 +65365,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64934,7 +65387,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64952,7 +65405,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[314], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -64971,7 +65424,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[315], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -64992,7 +65445,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[315], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65010,7 +65463,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[315], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65030,7 +65483,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[315], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65052,7 +65505,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[315], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65070,7 +65523,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[315], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65089,7 +65542,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[316], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65110,7 +65563,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[316], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65128,7 +65581,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[316], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65148,7 +65601,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[316], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65170,7 +65623,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[316], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65188,7 +65641,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[316], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65207,7 +65660,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65228,7 +65681,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65246,7 +65699,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[317], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65266,7 +65719,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65288,7 +65741,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65306,7 +65759,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[317], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65325,7 +65778,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65346,7 +65799,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65364,7 +65817,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[318], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65384,7 +65837,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65406,7 +65859,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65424,7 +65877,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[318], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65443,7 +65896,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65464,7 +65917,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65482,7 +65935,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[319], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65502,7 +65955,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65524,7 +65977,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65542,7 +65995,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[319], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65561,7 +66014,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[320], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65582,7 +66035,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[320], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65600,7 +66053,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[320], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65620,7 +66073,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[320], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65642,7 +66095,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[320], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65660,7 +66113,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[320], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65679,7 +66132,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[321], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65700,7 +66153,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[321], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65718,7 +66171,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[321], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65738,7 +66191,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[321], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65760,7 +66213,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[321], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -65778,7 +66231,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[321], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -65793,7 +66246,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushGroupMarkerEXT((Int32)length, (String)marker); + InteropHelper.Call(EntryPoints[324], (Int32)length, (String)marker); #if DEBUG } #endif @@ -65820,7 +66273,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounterEXT((UInt32)id, (OpenTK.Graphics.ES30.All)target); + InteropHelper.Call(EntryPoints[325], (UInt32)id, (OpenTK.Graphics.ES30.All)target); #if DEBUG } #endif @@ -65848,7 +66301,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounterEXT((UInt32)id, (OpenTK.Graphics.ES30.All)target); + InteropHelper.Call(EntryPoints[325], (UInt32)id, (OpenTK.Graphics.ES30.All)target); #if DEBUG } #endif @@ -65863,7 +66316,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBufferIndexedEXT((OpenTK.Graphics.ES30.All)src, (Int32)index); + InteropHelper.Call(EntryPoints[327], (OpenTK.Graphics.ES30.All)src, (Int32)index); #if DEBUG } #endif @@ -65878,7 +66331,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[329], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data); #if DEBUG } #endif @@ -65897,7 +66350,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[329], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -65921,7 +66374,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[329], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -65945,7 +66398,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[329], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -65969,7 +66422,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsEXT((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[329], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -66018,7 +66471,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[336], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66060,7 +66513,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[336], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66097,7 +66550,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage1DEXT((OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[366], (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -66140,7 +66593,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DEXT((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[368], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66182,7 +66635,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DEXT((OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[368], (OpenTK.Graphics.ES30.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66230,7 +66683,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DEXT((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[370], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -66277,7 +66730,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DEXT((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[370], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.ES30.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -66292,7 +66745,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[374], (UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -66308,7 +66761,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[374], (UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width); #if DEBUG } #endif @@ -66323,7 +66776,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[375], (UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66339,7 +66792,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[375], (UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66354,7 +66807,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[376], (UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -66370,7 +66823,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[376], (UInt32)texture, (OpenTK.Graphics.ES30.All)target, (Int32)levels, (OpenTK.Graphics.ES30.All)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -66402,7 +66855,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStagesEXT((UInt32)pipeline, (UInt32)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[421], (UInt32)pipeline, (UInt32)stages, (UInt32)program); #if DEBUG } #endif @@ -66435,7 +66888,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStagesEXT((UInt32)pipeline, (UInt32)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[421], (UInt32)pipeline, (UInt32)stages, (UInt32)program); #if DEBUG } #endif @@ -66450,7 +66903,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseShaderProgramEXT((OpenTK.Graphics.ES30.All)type, (UInt32)program); + InteropHelper.Call(EntryPoints[422], (OpenTK.Graphics.ES30.All)type, (UInt32)program); #if DEBUG } #endif @@ -66466,7 +66919,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseShaderProgramEXT((OpenTK.Graphics.ES30.All)type, (UInt32)program); + InteropHelper.Call(EntryPoints[422], (OpenTK.Graphics.ES30.All)type, (UInt32)program); #if DEBUG } #endif @@ -66488,7 +66941,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[424], (UInt32)pipeline); #if DEBUG } #endif @@ -66511,7 +66964,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[424], (UInt32)pipeline); #if DEBUG } #endif @@ -66538,7 +66991,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorEXT((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[435], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -66566,7 +67019,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorEXT((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[435], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -66585,7 +67038,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleIMG((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -66601,7 +67054,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DMultisampleIMG((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)samples); #if DEBUG } #endif @@ -66644,7 +67097,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleIMG((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[337], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66686,7 +67139,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleIMG((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[337], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -66717,7 +67170,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[68], (DebugProcKhr)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -66748,7 +67201,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -66784,7 +67237,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -66820,7 +67273,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -66856,7 +67309,7 @@ namespace OpenTK.Graphics.ES30 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -66913,7 +67366,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -66966,7 +67419,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67016,7 +67469,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -67069,7 +67522,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67124,7 +67577,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67175,7 +67628,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -67226,7 +67679,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67279,7 +67732,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67329,7 +67782,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -67381,7 +67834,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67435,7 +67888,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -67485,7 +67938,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.ES30.DebugSourceControl)source, (OpenTK.Graphics.ES30.DebugTypeControl)type, (OpenTK.Graphics.ES30.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -67532,7 +67985,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -67581,7 +68034,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -67628,7 +68081,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -67676,7 +68129,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[72], (OpenTK.Graphics.ES30.DebugSourceExternal)source, (OpenTK.Graphics.ES30.DebugType)type, (UInt32)id, (OpenTK.Graphics.ES30.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -67741,7 +68194,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -67808,7 +68261,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -67874,7 +68327,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -67939,7 +68392,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -68006,7 +68459,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -68072,7 +68525,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -68139,7 +68592,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -68208,7 +68661,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -68275,7 +68728,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -68341,7 +68794,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -68409,7 +68862,7 @@ namespace OpenTK.Graphics.ES30 fixed (OpenTK.Graphics.ES30.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources_ptr, (OpenTK.Graphics.ES30.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.ES30.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -68475,7 +68928,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.ES30.DebugSourceExternal*)sources, (OpenTK.Graphics.ES30.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.ES30.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[176], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -68521,7 +68974,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -68569,7 +69022,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -68615,7 +69068,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -68663,7 +69116,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -68713,7 +69166,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -68760,7 +69213,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -68806,7 +69259,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -68854,7 +69307,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -68900,7 +69353,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -68947,7 +69400,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -68996,7 +69449,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -69042,7 +69495,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -69083,7 +69536,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -69126,7 +69579,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -69167,7 +69620,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -69212,7 +69665,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -69264,7 +69717,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -69314,7 +69767,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -69364,7 +69817,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -69416,7 +69869,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -69466,7 +69919,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -69516,7 +69969,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -69568,7 +70021,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -69618,7 +70071,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -69668,7 +70121,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -69721,7 +70174,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -69772,7 +70225,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[198], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -69793,7 +70246,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointervKHR((OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -69812,7 +70265,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -69836,7 +70289,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -69860,7 +70313,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -69884,7 +70337,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -69927,7 +70380,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -69966,7 +70419,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -70003,7 +70456,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -70041,7 +70494,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[276], (OpenTK.Graphics.ES30.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -70073,7 +70526,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabelKHR((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[278], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -70109,7 +70562,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[278], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -70150,7 +70603,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[278], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -70191,7 +70644,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[278], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -70232,7 +70685,7 @@ namespace OpenTK.Graphics.ES30 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[278], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -70255,7 +70708,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroupKHR(); + InteropHelper.Call(EntryPoints[283]); #if DEBUG } #endif @@ -70292,7 +70745,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[323], (OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -70330,7 +70783,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[323], (OpenTK.Graphics.ES30.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -70349,7 +70802,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendBarrierNV(); + InteropHelper.Call(EntryPoints[21]); #if DEBUG } #endif @@ -70364,7 +70817,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendParameteriNV((OpenTK.Graphics.ES30.All)pname, (Int32)value); + InteropHelper.Call(EntryPoints[28], (OpenTK.Graphics.ES30.All)pname, (Int32)value); #if DEBUG } #endif @@ -70402,7 +70855,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferNV((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[31], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -70439,7 +70892,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferNV((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[31], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.ES30.ClearBufferMask)mask, (OpenTK.Graphics.ES30.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -70482,7 +70935,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubDataNV((OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -70524,7 +70977,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubDataNV((OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[54], (OpenTK.Graphics.ES30.BufferTarget)readTarget, (OpenTK.Graphics.ES30.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -70539,7 +70992,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverageMaskNV((bool)mask); + InteropHelper.Call(EntryPoints[60], (bool)mask); #if DEBUG } #endif @@ -70554,7 +71007,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverageOperationNV((OpenTK.Graphics.ES30.All)operation); + InteropHelper.Call(EntryPoints[61], (OpenTK.Graphics.ES30.All)operation); #if DEBUG } #endif @@ -70573,7 +71026,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -70594,7 +71047,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -70614,7 +71067,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -70635,7 +71088,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -70653,7 +71106,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -70673,7 +71126,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -70695,7 +71148,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -70713,7 +71166,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[74], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -70751,7 +71204,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[102], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -70788,7 +71241,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[102], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -70820,7 +71273,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* bufs_ptr = bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[106], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -70854,7 +71307,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.All* bufs_ptr = &bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[106], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -70885,7 +71338,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[106], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -70916,7 +71369,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[106], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -70949,7 +71402,7 @@ namespace OpenTK.Graphics.ES30 { fixed (OpenTK.Graphics.ES30.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[106], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -70979,7 +71432,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersNV((Int32)n, (OpenTK.Graphics.ES30.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[106], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -71022,7 +71475,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -71069,7 +71522,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -71121,7 +71574,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -71173,7 +71626,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -71225,7 +71678,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -71273,7 +71726,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -71319,7 +71772,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -71370,7 +71823,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -71421,7 +71874,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -71472,7 +71925,7 @@ namespace OpenTK.Graphics.ES30 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedNV((OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.ES30.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.ES30.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -71493,7 +71946,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[138], (UInt32)fence); #if DEBUG } #endif @@ -71509,7 +71962,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[138], (UInt32)fence); #if DEBUG } #endif @@ -71529,7 +71982,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* fences_ptr = &retval; - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences_ptr); return retval; } #if DEBUG @@ -71550,7 +72003,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -71571,7 +72024,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -71590,7 +72043,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -71610,7 +72063,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -71632,7 +72085,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -71651,7 +72104,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[151], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -71670,7 +72123,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -71691,7 +72144,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -71710,7 +72163,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[180], (UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -71730,7 +72183,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -71752,7 +72205,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[180], (UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -71771,7 +72224,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[180], (UInt32)fence, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -71786,7 +72239,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[252], (UInt32)fence); #if DEBUG } #endif @@ -71802,7 +72255,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[252], (UInt32)fence); #if DEBUG } #endif @@ -71824,7 +72277,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBufferNV((OpenTK.Graphics.ES30.All)mode); + InteropHelper.Call(EntryPoints[328], (OpenTK.Graphics.ES30.All)mode); #if DEBUG } #endif @@ -71867,7 +72320,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleNV((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[338], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -71909,7 +72362,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleNV((OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[338], (OpenTK.Graphics.ES30.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.ES30.RenderbufferInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -71924,7 +72377,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES30.All)condition); + InteropHelper.Call(EntryPoints[348], (UInt32)fence, (OpenTK.Graphics.ES30.All)condition); #if DEBUG } #endif @@ -71940,7 +72393,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES30.All)condition); + InteropHelper.Call(EntryPoints[348], (UInt32)fence, (OpenTK.Graphics.ES30.All)condition); #if DEBUG } #endif @@ -71955,7 +72408,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[358], (UInt32)fence); #if DEBUG } #endif @@ -71971,7 +72424,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[358], (UInt32)fence); #if DEBUG } #endif @@ -71990,7 +72443,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[405], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72011,7 +72464,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[405], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72029,7 +72482,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[405], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -72048,7 +72501,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[407], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72069,7 +72522,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[407], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72087,7 +72540,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[407], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -72106,7 +72559,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[410], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72127,7 +72580,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[410], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72145,7 +72598,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[410], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -72164,7 +72617,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[412], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72185,7 +72638,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[412], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72203,7 +72656,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[412], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -72222,7 +72675,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[415], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72243,7 +72696,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[415], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72261,7 +72714,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[415], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -72280,7 +72733,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[417], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72301,7 +72754,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[417], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -72319,7 +72772,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3fvNV((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[417], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -72346,7 +72799,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorNV((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[436], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -72374,7 +72827,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorNV((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[436], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -72400,7 +72853,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayOES((UInt32)array); + InteropHelper.Call(EntryPoints[20], (UInt32)array); #if DEBUG } #endif @@ -72423,7 +72876,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayOES((UInt32)array); + InteropHelper.Call(EntryPoints[20], (UInt32)array); #if DEBUG } #endif @@ -72486,7 +72939,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -72553,7 +73006,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -72625,7 +73078,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -72697,7 +73150,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -72769,7 +73222,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -72837,7 +73290,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -72903,7 +73356,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -72974,7 +73427,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73045,7 +73498,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73116,7 +73569,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.CompressedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -73190,7 +73643,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -73262,7 +73715,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73339,7 +73792,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73416,7 +73869,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73493,7 +73946,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -73566,7 +74019,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -73637,7 +74090,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73713,7 +74166,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73789,7 +74242,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -73865,7 +74318,7 @@ namespace OpenTK.Graphics.ES30 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -73929,7 +74382,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[58], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -73986,7 +74439,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[58], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -74005,7 +74458,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -74026,7 +74479,7 @@ namespace OpenTK.Graphics.ES30 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -74058,7 +74511,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -74091,7 +74544,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -74121,7 +74574,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -74153,7 +74606,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -74187,7 +74640,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -74217,7 +74670,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[89], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -74232,7 +74685,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEGLImageTargetRenderbufferStorageOES((OpenTK.Graphics.ES30.All)target, (IntPtr)image); + InteropHelper.Call(EntryPoints[113], (OpenTK.Graphics.ES30.All)target, (IntPtr)image); #if DEBUG } #endif @@ -74247,7 +74700,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEGLImageTargetTexture2DOES((OpenTK.Graphics.ES30.All)target, (IntPtr)image); + InteropHelper.Call(EntryPoints[114], (OpenTK.Graphics.ES30.All)target, (IntPtr)image); #if DEBUG } #endif @@ -74262,7 +74715,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3DOES((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -74278,7 +74731,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3DOES((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)attachment, (OpenTK.Graphics.ES30.All)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -74298,7 +74751,7 @@ namespace OpenTK.Graphics.ES30 const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -74331,7 +74784,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -74364,7 +74817,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -74395,7 +74848,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -74427,7 +74880,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -74461,7 +74914,7 @@ namespace OpenTK.Graphics.ES30 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -74492,7 +74945,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysOES((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[162], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -74508,7 +74961,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -74528,7 +74981,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -74553,7 +75006,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -74578,7 +75031,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -74603,7 +75056,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -74624,7 +75077,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -74643,7 +75096,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -74667,7 +75120,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -74691,7 +75144,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -74715,7 +75168,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[174], (OpenTK.Graphics.ES30.BufferTarget)target, (OpenTK.Graphics.ES30.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -74768,7 +75221,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = length) fixed (OpenTK.Graphics.ES30.All* binaryFormat_ptr = binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); } } #if DEBUG @@ -74821,7 +75274,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -74879,7 +75332,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -74937,7 +75390,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -74995,7 +75448,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -75050,7 +75503,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.ES30.All* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -75105,7 +75558,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -75165,7 +75618,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -75225,7 +75678,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -75285,7 +75738,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -75338,7 +75791,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -75385,7 +75838,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -75437,7 +75890,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -75489,7 +75942,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -75541,7 +75994,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -75595,7 +76048,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = length) fixed (OpenTK.Graphics.ES30.All* binaryFormat_ptr = binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); } } #if DEBUG @@ -75649,7 +76102,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -75708,7 +76161,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -75767,7 +76220,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -75826,7 +76279,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -75882,7 +76335,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.ES30.All* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -75938,7 +76391,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -75999,7 +76452,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -76060,7 +76513,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -76121,7 +76574,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.ES30.All*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -76174,7 +76627,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -76221,7 +76674,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -76273,7 +76726,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -76325,7 +76778,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -76377,7 +76830,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinaryOES((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.ES30.All*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[208], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -76405,7 +76858,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayOES((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[266], (UInt32)array); #if DEBUG } #endif @@ -76428,7 +76881,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayOES((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[266], (UInt32)array); #if DEBUG } #endif @@ -76455,7 +76908,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferOES((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)access); + return InteropHelper.CallReturn(EntryPoints[270], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)access); #if DEBUG } #endif @@ -76492,7 +76945,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -76533,7 +76986,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -76579,7 +77032,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -76625,7 +77078,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -76671,7 +77124,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -76715,7 +77168,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -76757,7 +77210,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -76804,7 +77257,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -76851,7 +77304,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -76898,7 +77351,7 @@ namespace OpenTK.Graphics.ES30 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinaryOES((UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[286], (UInt32)program, (OpenTK.Graphics.ES30.All)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -76972,7 +77425,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -77044,7 +77497,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77121,7 +77574,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77198,7 +77651,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77275,7 +77728,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -77348,7 +77801,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -77419,7 +77872,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77495,7 +77948,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77571,7 +78024,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77647,7 +78100,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (OpenTK.Graphics.ES30.TextureComponentCount)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.ES30.PixelFormat)format, (OpenTK.Graphics.ES30.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -77726,7 +78179,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -77803,7 +78256,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77885,7 +78338,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -77967,7 +78420,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -78049,7 +78502,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -78127,7 +78580,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels); #if DEBUG } #endif @@ -78203,7 +78656,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -78284,7 +78737,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -78365,7 +78818,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -78446,7 +78899,7 @@ namespace OpenTK.Graphics.ES30 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DOES((OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.ES30.TextureTarget3d)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -78468,7 +78921,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBufferOES((OpenTK.Graphics.ES30.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[419], (OpenTK.Graphics.ES30.BufferTarget)target); #if DEBUG } #endif @@ -78483,7 +78936,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBufferOES((OpenTK.Graphics.ES30.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[419], (OpenTK.Graphics.ES30.BufferTarget)target); #if DEBUG } #endif @@ -78514,7 +78967,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFuncQCOM((OpenTK.Graphics.ES30.All)func, (Single)@ref); + InteropHelper.Call(EntryPoints[3], (OpenTK.Graphics.ES30.All)func, (Single)@ref); #if DEBUG } #endif @@ -78529,7 +78982,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[95], (UInt32)driverControl); #if DEBUG } #endif @@ -78545,7 +78998,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[95], (UInt32)driverControl); #if DEBUG } #endif @@ -78560,7 +79013,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[116], (UInt32)driverControl); #if DEBUG } #endif @@ -78576,7 +79029,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableDriverControlQCOM((UInt32)driverControl); + InteropHelper.Call(EntryPoints[116], (UInt32)driverControl); #if DEBUG } #endif @@ -78591,7 +79044,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTilingQCOM((UInt32)preserveMask); + InteropHelper.Call(EntryPoints[121], (UInt32)preserveMask); #if DEBUG } #endif @@ -78607,7 +79060,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTilingQCOM((UInt32)preserveMask); + InteropHelper.Call(EntryPoints[121], (UInt32)preserveMask); #if DEBUG } #endif @@ -78622,7 +79075,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES30.All)target, (IntPtr)@params); + InteropHelper.Call(EntryPoints[123], (OpenTK.Graphics.ES30.All)target, (IntPtr)@params); #if DEBUG } #endif @@ -78641,7 +79094,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[123], (OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -78665,7 +79118,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[123], (OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -78689,7 +79142,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[123], (OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -78713,7 +79166,7 @@ namespace OpenTK.Graphics.ES30 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glExtGetBufferPointervQCOM((OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[123], (OpenTK.Graphics.ES30.All)target, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -78739,7 +79192,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* buffers_ptr = buffers) fixed (Int32* numBuffers_ptr = numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[124], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); } } #if DEBUG @@ -78761,7 +79214,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* buffers_ptr = &buffers) fixed (Int32* numBuffers_ptr = &numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[124], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); buffers = *buffers_ptr; numBuffers = *numBuffers_ptr; } @@ -78781,7 +79234,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBuffersQCOM((UInt32*)buffers, (Int32)maxBuffers, (Int32*)numBuffers); + InteropHelper.Call(EntryPoints[124], (IntPtr)buffers, (Int32)maxBuffers, (IntPtr)numBuffers); #if DEBUG } #endif @@ -78802,7 +79255,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* buffers_ptr = buffers) fixed (Int32* numBuffers_ptr = numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[124], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); } } #if DEBUG @@ -78825,7 +79278,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* buffers_ptr = &buffers) fixed (Int32* numBuffers_ptr = &numBuffers) { - Delegates.glExtGetBuffersQCOM((UInt32*)buffers_ptr, (Int32)maxBuffers, (Int32*)numBuffers_ptr); + InteropHelper.Call(EntryPoints[124], (IntPtr)buffers_ptr, (Int32)maxBuffers, (IntPtr)numBuffers_ptr); buffers = *buffers_ptr; numBuffers = *numBuffers_ptr; } @@ -78845,7 +79298,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetBuffersQCOM((UInt32*)buffers, (Int32)maxBuffers, (Int32*)numBuffers); + InteropHelper.Call(EntryPoints[124], (IntPtr)buffers, (Int32)maxBuffers, (IntPtr)numBuffers); #if DEBUG } #endif @@ -78865,7 +79318,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* framebuffers_ptr = framebuffers) fixed (Int32* numFramebuffers_ptr = numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[125], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); } } #if DEBUG @@ -78887,7 +79340,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* framebuffers_ptr = &framebuffers) fixed (Int32* numFramebuffers_ptr = &numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[125], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); framebuffers = *framebuffers_ptr; numFramebuffers = *numFramebuffers_ptr; } @@ -78907,7 +79360,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers, (Int32)maxFramebuffers, (Int32*)numFramebuffers); + InteropHelper.Call(EntryPoints[125], (IntPtr)framebuffers, (Int32)maxFramebuffers, (IntPtr)numFramebuffers); #if DEBUG } #endif @@ -78928,7 +79381,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* framebuffers_ptr = framebuffers) fixed (Int32* numFramebuffers_ptr = numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[125], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); } } #if DEBUG @@ -78951,7 +79404,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* framebuffers_ptr = &framebuffers) fixed (Int32* numFramebuffers_ptr = &numFramebuffers) { - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers_ptr, (Int32)maxFramebuffers, (Int32*)numFramebuffers_ptr); + InteropHelper.Call(EntryPoints[125], (IntPtr)framebuffers_ptr, (Int32)maxFramebuffers, (IntPtr)numFramebuffers_ptr); framebuffers = *framebuffers_ptr; numFramebuffers = *numFramebuffers_ptr; } @@ -78971,7 +79424,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetFramebuffersQCOM((UInt32*)framebuffers, (Int32)maxFramebuffers, (Int32*)numFramebuffers); + InteropHelper.Call(EntryPoints[125], (IntPtr)framebuffers, (Int32)maxFramebuffers, (IntPtr)numFramebuffers); #if DEBUG } #endif @@ -78990,7 +79443,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); } } #if DEBUG @@ -79011,7 +79464,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); length = *length_ptr; } } @@ -79030,7 +79483,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (Int32*)length); + InteropHelper.Call(EntryPoints[126], (UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (IntPtr)length); #if DEBUG } #endif @@ -79050,7 +79503,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); } } #if DEBUG @@ -79072,7 +79525,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (IntPtr)length_ptr); length = *length_ptr; } } @@ -79091,7 +79544,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramBinarySourceQCOM((UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (Int32*)length); + InteropHelper.Call(EntryPoints[126], (UInt32)program, (OpenTK.Graphics.ES30.All)shadertype, (StringBuilder)source, (IntPtr)length); #if DEBUG } #endif @@ -79111,7 +79564,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* programs_ptr = programs) fixed (Int32* numPrograms_ptr = numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[127], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); } } #if DEBUG @@ -79133,7 +79586,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* programs_ptr = &programs) fixed (Int32* numPrograms_ptr = &numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[127], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); programs = *programs_ptr; numPrograms = *numPrograms_ptr; } @@ -79153,7 +79606,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramsQCOM((UInt32*)programs, (Int32)maxPrograms, (Int32*)numPrograms); + InteropHelper.Call(EntryPoints[127], (IntPtr)programs, (Int32)maxPrograms, (IntPtr)numPrograms); #if DEBUG } #endif @@ -79174,7 +79627,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* programs_ptr = programs) fixed (Int32* numPrograms_ptr = numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[127], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); } } #if DEBUG @@ -79197,7 +79650,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* programs_ptr = &programs) fixed (Int32* numPrograms_ptr = &numPrograms) { - Delegates.glExtGetProgramsQCOM((UInt32*)programs_ptr, (Int32)maxPrograms, (Int32*)numPrograms_ptr); + InteropHelper.Call(EntryPoints[127], (IntPtr)programs_ptr, (Int32)maxPrograms, (IntPtr)numPrograms_ptr); programs = *programs_ptr; numPrograms = *numPrograms_ptr; } @@ -79217,7 +79670,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetProgramsQCOM((UInt32*)programs, (Int32)maxPrograms, (Int32*)numPrograms); + InteropHelper.Call(EntryPoints[127], (IntPtr)programs, (Int32)maxPrograms, (IntPtr)numPrograms); #if DEBUG } #endif @@ -79237,7 +79690,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* renderbuffers_ptr = renderbuffers) fixed (Int32* numRenderbuffers_ptr = numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[128], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); } } #if DEBUG @@ -79259,7 +79712,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* renderbuffers_ptr = &renderbuffers) fixed (Int32* numRenderbuffers_ptr = &numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[128], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); renderbuffers = *renderbuffers_ptr; numRenderbuffers = *numRenderbuffers_ptr; } @@ -79279,7 +79732,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers); + InteropHelper.Call(EntryPoints[128], (IntPtr)renderbuffers, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers); #if DEBUG } #endif @@ -79300,7 +79753,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* renderbuffers_ptr = renderbuffers) fixed (Int32* numRenderbuffers_ptr = numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[128], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); } } #if DEBUG @@ -79323,7 +79776,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* renderbuffers_ptr = &renderbuffers) fixed (Int32* numRenderbuffers_ptr = &numRenderbuffers) { - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers_ptr, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers_ptr); + InteropHelper.Call(EntryPoints[128], (IntPtr)renderbuffers_ptr, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers_ptr); renderbuffers = *renderbuffers_ptr; numRenderbuffers = *numRenderbuffers_ptr; } @@ -79343,7 +79796,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetRenderbuffersQCOM((UInt32*)renderbuffers, (Int32)maxRenderbuffers, (Int32*)numRenderbuffers); + InteropHelper.Call(EntryPoints[128], (IntPtr)renderbuffers, (Int32)maxRenderbuffers, (IntPtr)numRenderbuffers); #if DEBUG } #endif @@ -79363,7 +79816,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* shaders_ptr = shaders) fixed (Int32* numShaders_ptr = numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[129], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); } } #if DEBUG @@ -79385,7 +79838,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* shaders_ptr = &shaders) fixed (Int32* numShaders_ptr = &numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[129], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); shaders = *shaders_ptr; numShaders = *numShaders_ptr; } @@ -79405,7 +79858,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetShadersQCOM((UInt32*)shaders, (Int32)maxShaders, (Int32*)numShaders); + InteropHelper.Call(EntryPoints[129], (IntPtr)shaders, (Int32)maxShaders, (IntPtr)numShaders); #if DEBUG } #endif @@ -79426,7 +79879,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* shaders_ptr = shaders) fixed (Int32* numShaders_ptr = numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[129], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); } } #if DEBUG @@ -79449,7 +79902,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* shaders_ptr = &shaders) fixed (Int32* numShaders_ptr = &numShaders) { - Delegates.glExtGetShadersQCOM((UInt32*)shaders_ptr, (Int32)maxShaders, (Int32*)numShaders_ptr); + InteropHelper.Call(EntryPoints[129], (IntPtr)shaders_ptr, (Int32)maxShaders, (IntPtr)numShaders_ptr); shaders = *shaders_ptr; numShaders = *numShaders_ptr; } @@ -79469,7 +79922,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetShadersQCOM((UInt32*)shaders, (Int32)maxShaders, (Int32*)numShaders); + InteropHelper.Call(EntryPoints[129], (IntPtr)shaders, (Int32)maxShaders, (IntPtr)numShaders); #if DEBUG } #endif @@ -79488,7 +79941,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79509,7 +79962,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79528,7 +79981,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[130], (UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79548,7 +80001,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = @params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79570,7 +80023,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* @params_ptr = &@params) { - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[130], (UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79589,7 +80042,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexLevelParameterivQCOM((UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[130], (UInt32)texture, (OpenTK.Graphics.ES30.All)face, (Int32)level, (OpenTK.Graphics.ES30.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79604,7 +80057,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels); #if DEBUG } #endif @@ -79623,7 +80076,7 @@ namespace OpenTK.Graphics.ES30 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -79647,7 +80100,7 @@ namespace OpenTK.Graphics.ES30 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -79671,7 +80124,7 @@ namespace OpenTK.Graphics.ES30 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); } finally { @@ -79695,7 +80148,7 @@ namespace OpenTK.Graphics.ES30 GCHandle texels_ptr = GCHandle.Alloc(texels, GCHandleType.Pinned); try { - Delegates.glExtGetTexSubImageQCOM((OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.ES30.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.ES30.All)format, (OpenTK.Graphics.ES30.All)type, (IntPtr)texels_ptr.AddrOfPinnedObject()); texels = (T10)texels_ptr.Target; } finally @@ -79721,7 +80174,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* textures_ptr = textures) fixed (Int32* numTextures_ptr = numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[132], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); } } #if DEBUG @@ -79743,7 +80196,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* textures_ptr = &textures) fixed (Int32* numTextures_ptr = &numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[132], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); textures = *textures_ptr; numTextures = *numTextures_ptr; } @@ -79763,7 +80216,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexturesQCOM((UInt32*)textures, (Int32)maxTextures, (Int32*)numTextures); + InteropHelper.Call(EntryPoints[132], (IntPtr)textures, (Int32)maxTextures, (IntPtr)numTextures); #if DEBUG } #endif @@ -79784,7 +80237,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* textures_ptr = textures) fixed (Int32* numTextures_ptr = numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[132], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); } } #if DEBUG @@ -79807,7 +80260,7 @@ namespace OpenTK.Graphics.ES30 fixed (UInt32* textures_ptr = &textures) fixed (Int32* numTextures_ptr = &numTextures) { - Delegates.glExtGetTexturesQCOM((UInt32*)textures_ptr, (Int32)maxTextures, (Int32*)numTextures_ptr); + InteropHelper.Call(EntryPoints[132], (IntPtr)textures_ptr, (Int32)maxTextures, (IntPtr)numTextures_ptr); textures = *textures_ptr; numTextures = *numTextures_ptr; } @@ -79827,7 +80280,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtGetTexturesQCOM((UInt32*)textures, (Int32)maxTextures, (Int32*)numTextures); + InteropHelper.Call(EntryPoints[132], (IntPtr)textures, (Int32)maxTextures, (IntPtr)numTextures); #if DEBUG } #endif @@ -79842,7 +80295,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glExtIsProgramBinaryQCOM((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[133], (UInt32)program); #if DEBUG } #endif @@ -79858,7 +80311,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glExtIsProgramBinaryQCOM((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[133], (UInt32)program); #if DEBUG } #endif @@ -79873,7 +80326,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtTexObjectStateOverrideiQCOM((OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)pname, (Int32)param); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.ES30.All)target, (OpenTK.Graphics.ES30.All)pname, (Int32)param); #if DEBUG } #endif @@ -79893,7 +80346,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* num_ptr = num) fixed (Int32* driverControls_ptr = driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[177], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); } } #if DEBUG @@ -79916,7 +80369,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* num_ptr = num) fixed (UInt32* driverControls_ptr = driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[177], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); } } #if DEBUG @@ -79938,7 +80391,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* num_ptr = &num) fixed (Int32* driverControls_ptr = &driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[177], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); num = *num_ptr; driverControls = *driverControls_ptr; } @@ -79963,7 +80416,7 @@ namespace OpenTK.Graphics.ES30 fixed (Int32* num_ptr = &num) fixed (UInt32* driverControls_ptr = &driverControls) { - Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr); + InteropHelper.Call(EntryPoints[177], (IntPtr)num_ptr, (Int32)size, (IntPtr)driverControls_ptr); num = *num_ptr; driverControls = *driverControls_ptr; } @@ -79983,7 +80436,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls); + InteropHelper.Call(EntryPoints[177], (IntPtr)num, (Int32)size, (IntPtr)driverControls); #if DEBUG } #endif @@ -79999,7 +80452,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls); + InteropHelper.Call(EntryPoints[177], (IntPtr)num, (Int32)size, (IntPtr)driverControls); #if DEBUG } #endif @@ -80018,7 +80471,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[178], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); } } #if DEBUG @@ -80039,7 +80492,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[178], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); length = *length_ptr; } } @@ -80058,7 +80511,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[178], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length, (StringBuilder)driverControlString); #if DEBUG } #endif @@ -80078,7 +80531,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[178], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); } } #if DEBUG @@ -80100,7 +80553,7 @@ namespace OpenTK.Graphics.ES30 { fixed (Int32* length_ptr = &length) { - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[178], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)driverControlString); length = *length_ptr; } } @@ -80119,7 +80572,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (StringBuilder)driverControlString); + InteropHelper.Call(EntryPoints[178], (UInt32)driverControl, (Int32)bufSize, (IntPtr)length, (StringBuilder)driverControlString); #if DEBUG } #endif @@ -80134,7 +80587,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartTilingQCOM((UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); + InteropHelper.Call(EntryPoints[351], (UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); #if DEBUG } #endif @@ -80150,7 +80603,7 @@ namespace OpenTK.Graphics.ES30 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartTilingQCOM((UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); + InteropHelper.Call(EntryPoints[351], (UInt32)x, (UInt32)y, (UInt32)width, (UInt32)height, (UInt32)preserveMask); #if DEBUG } #endif diff --git a/Source/OpenTK/Graphics/OpenGL/GL.cs b/Source/OpenTK/Graphics/OpenGL/GL.cs index b5ad1df3..2b59a011 100644 --- a/Source/OpenTK/Graphics/OpenGL/GL.cs +++ b/Source/OpenTK/Graphics/OpenGL/GL.cs @@ -37,6 +37,2661 @@ namespace OpenTK.Graphics.OpenGL partial class GL { + static GL() + { + EntryPointNames = new string[] + { + "glAccum", + "glAccumxOES", + "glActiveProgramEXT", + "glActiveShaderProgram", + "glActiveShaderProgramEXT", + "glActiveStencilFaceEXT", + "glActiveTexture", + "glActiveTextureARB", + "glActiveVaryingNV", + "glAlphaFragmentOp1ATI", + "glAlphaFragmentOp2ATI", + "glAlphaFragmentOp3ATI", + "glAlphaFunc", + "glAlphaFuncxOES", + "glApplyTextureEXT", + "glAreProgramsResidentNV", + "glAreTexturesResident", + "glAreTexturesResidentEXT", + "glArrayElement", + "glArrayElementEXT", + "glArrayObjectATI", + "glAsyncMarkerSGIX", + "glAttachObjectARB", + "glAttachShader", + "glBegin", + "glBeginConditionalRender", + "glBeginConditionalRenderNV", + "glBeginConditionalRenderNVX", + "glBeginFragmentShaderATI", + "glBeginOcclusionQueryNV", + "glBeginPerfMonitorAMD", + "glBeginQuery", + "glBeginQueryARB", + "glBeginQueryIndexed", + "glBeginTransformFeedback", + "glBeginTransformFeedbackEXT", + "glBeginTransformFeedbackNV", + "glBeginVertexShaderEXT", + "glBeginVideoCaptureNV", + "glBindAttribLocation", + "glBindAttribLocationARB", + "glBindBuffer", + "glBindBufferARB", + "glBindBufferBase", + "glBindBufferBaseEXT", + "glBindBufferBaseNV", + "glBindBufferOffsetEXT", + "glBindBufferOffsetNV", + "glBindBufferRange", + "glBindBufferRangeEXT", + "glBindBufferRangeNV", + "glBindBuffersBase", + "glBindBuffersRange", + "glBindFragDataLocation", + "glBindFragDataLocationEXT", + "glBindFragDataLocationIndexed", + "glBindFragmentShaderATI", + "glBindFramebuffer", + "glBindFramebufferEXT", + "glBindImageTexture", + "glBindImageTextureEXT", + "glBindImageTextures", + "glBindLightParameterEXT", + "glBindMaterialParameterEXT", + "glBindMultiTextureEXT", + "glBindParameterEXT", + "glBindProgramARB", + "glBindProgramNV", + "glBindProgramPipeline", + "glBindProgramPipelineEXT", + "glBindRenderbuffer", + "glBindRenderbufferEXT", + "glBindSampler", + "glBindSamplers", + "glBindTexGenParameterEXT", + "glBindTexture", + "glBindTextureEXT", + "glBindTextures", + "glBindTextureUnitParameterEXT", + "glBindTransformFeedback", + "glBindTransformFeedbackNV", + "glBindVertexArray", + "glBindVertexArrayAPPLE", + "glBindVertexBuffer", + "glBindVertexBuffers", + "glBindVertexShaderEXT", + "glBindVideoCaptureStreamBufferNV", + "glBindVideoCaptureStreamTextureNV", + "glBinormal3bEXT", + "glBinormal3bvEXT", + "glBinormal3dEXT", + "glBinormal3dvEXT", + "glBinormal3fEXT", + "glBinormal3fvEXT", + "glBinormal3iEXT", + "glBinormal3ivEXT", + "glBinormal3sEXT", + "glBinormal3svEXT", + "glBinormalPointerEXT", + "glBitmap", + "glBitmapxOES", + "glBlendBarrierNV", + "glBlendColor", + "glBlendColorEXT", + "glBlendColorxOES", + "glBlendEquation", + "glBlendEquationEXT", + "glBlendEquationi", + "glBlendEquationiARB", + "glBlendEquationIndexedAMD", + "glBlendEquationSeparate", + "glBlendEquationSeparateEXT", + "glBlendEquationSeparatei", + "glBlendEquationSeparateiARB", + "glBlendEquationSeparateIndexedAMD", + "glBlendFunc", + "glBlendFunci", + "glBlendFunciARB", + "glBlendFuncIndexedAMD", + "glBlendFuncSeparate", + "glBlendFuncSeparateEXT", + "glBlendFuncSeparatei", + "glBlendFuncSeparateiARB", + "glBlendFuncSeparateIndexedAMD", + "glBlendFuncSeparateINGR", + "glBlendParameteriNV", + "glBlitFramebuffer", + "glBlitFramebufferEXT", + "glBufferAddressRangeNV", + "glBufferData", + "glBufferDataARB", + "glBufferParameteriAPPLE", + "glBufferStorage", + "glBufferSubData", + "glBufferSubDataARB", + "glCallList", + "glCallLists", + "glCheckFramebufferStatus", + "glCheckFramebufferStatusEXT", + "glCheckNamedFramebufferStatusEXT", + "glClampColor", + "glClampColorARB", + "glClear", + "glClearAccum", + "glClearAccumxOES", + "glClearBufferData", + "glClearBufferfi", + "glClearBufferfv", + "glClearBufferiv", + "glClearBufferSubData", + "glClearBufferuiv", + "glClearColor", + "glClearColorIiEXT", + "glClearColorIuiEXT", + "glClearColorxOES", + "glClearDepth", + "glClearDepthdNV", + "glClearDepthf", + "glClearDepthfOES", + "glClearDepthxOES", + "glClearIndex", + "glClearNamedBufferDataEXT", + "glClearNamedBufferSubDataEXT", + "glClearStencil", + "glClearTexImage", + "glClearTexSubImage", + "glClientActiveTexture", + "glClientActiveTextureARB", + "glClientActiveVertexStreamATI", + "glClientAttribDefaultEXT", + "glClientWaitSync", + "glClipPlane", + "glClipPlanefOES", + "glClipPlanexOES", + "glColor3b", + "glColor3bv", + "glColor3d", + "glColor3dv", + "glColor3f", + "glColor3fv", + "glColor3fVertex3fSUN", + "glColor3fVertex3fvSUN", + "glColor3hNV", + "glColor3hvNV", + "glColor3i", + "glColor3iv", + "glColor3s", + "glColor3sv", + "glColor3ub", + "glColor3ubv", + "glColor3ui", + "glColor3uiv", + "glColor3us", + "glColor3usv", + "glColor3xOES", + "glColor3xvOES", + "glColor4b", + "glColor4bv", + "glColor4d", + "glColor4dv", + "glColor4f", + "glColor4fNormal3fVertex3fSUN", + "glColor4fNormal3fVertex3fvSUN", + "glColor4fv", + "glColor4hNV", + "glColor4hvNV", + "glColor4i", + "glColor4iv", + "glColor4s", + "glColor4sv", + "glColor4ub", + "glColor4ubv", + "glColor4ubVertex2fSUN", + "glColor4ubVertex2fvSUN", + "glColor4ubVertex3fSUN", + "glColor4ubVertex3fvSUN", + "glColor4ui", + "glColor4uiv", + "glColor4us", + "glColor4usv", + "glColor4xOES", + "glColor4xvOES", + "glColorFormatNV", + "glColorFragmentOp1ATI", + "glColorFragmentOp2ATI", + "glColorFragmentOp3ATI", + "glColorMask", + "glColorMaski", + "glColorMaskIndexedEXT", + "glColorMaterial", + "glColorP3ui", + "glColorP3uiv", + "glColorP4ui", + "glColorP4uiv", + "glColorPointer", + "glColorPointerEXT", + "glColorPointerListIBM", + "glColorPointervINTEL", + "glColorSubTable", + "glColorSubTableEXT", + "glColorTable", + "glColorTableEXT", + "glColorTableParameterfv", + "glColorTableParameterfvSGI", + "glColorTableParameteriv", + "glColorTableParameterivSGI", + "glColorTableSGI", + "glCombinerInputNV", + "glCombinerOutputNV", + "glCombinerParameterfNV", + "glCombinerParameterfvNV", + "glCombinerParameteriNV", + "glCombinerParameterivNV", + "glCombinerStageParameterfvNV", + "glCompileShader", + "glCompileShaderARB", + "glCompileShaderIncludeARB", + "glCompressedMultiTexImage1DEXT", + "glCompressedMultiTexImage2DEXT", + "glCompressedMultiTexImage3DEXT", + "glCompressedMultiTexSubImage1DEXT", + "glCompressedMultiTexSubImage2DEXT", + "glCompressedMultiTexSubImage3DEXT", + "glCompressedTexImage1D", + "glCompressedTexImage1DARB", + "glCompressedTexImage2D", + "glCompressedTexImage2DARB", + "glCompressedTexImage3D", + "glCompressedTexImage3DARB", + "glCompressedTexSubImage1D", + "glCompressedTexSubImage1DARB", + "glCompressedTexSubImage2D", + "glCompressedTexSubImage2DARB", + "glCompressedTexSubImage3D", + "glCompressedTexSubImage3DARB", + "glCompressedTextureImage1DEXT", + "glCompressedTextureImage2DEXT", + "glCompressedTextureImage3DEXT", + "glCompressedTextureSubImage1DEXT", + "glCompressedTextureSubImage2DEXT", + "glCompressedTextureSubImage3DEXT", + "glConvolutionFilter1D", + "glConvolutionFilter1DEXT", + "glConvolutionFilter2D", + "glConvolutionFilter2DEXT", + "glConvolutionParameterf", + "glConvolutionParameterfEXT", + "glConvolutionParameterfv", + "glConvolutionParameterfvEXT", + "glConvolutionParameteri", + "glConvolutionParameteriEXT", + "glConvolutionParameteriv", + "glConvolutionParameterivEXT", + "glConvolutionParameterxOES", + "glConvolutionParameterxvOES", + "glCopyBufferSubData", + "glCopyColorSubTable", + "glCopyColorSubTableEXT", + "glCopyColorTable", + "glCopyColorTableSGI", + "glCopyConvolutionFilter1D", + "glCopyConvolutionFilter1DEXT", + "glCopyConvolutionFilter2D", + "glCopyConvolutionFilter2DEXT", + "glCopyImageSubData", + "glCopyImageSubDataNV", + "glCopyMultiTexImage1DEXT", + "glCopyMultiTexImage2DEXT", + "glCopyMultiTexSubImage1DEXT", + "glCopyMultiTexSubImage2DEXT", + "glCopyMultiTexSubImage3DEXT", + "glCopyPathNV", + "glCopyPixels", + "glCopyTexImage1D", + "glCopyTexImage1DEXT", + "glCopyTexImage2D", + "glCopyTexImage2DEXT", + "glCopyTexSubImage1D", + "glCopyTexSubImage1DEXT", + "glCopyTexSubImage2D", + "glCopyTexSubImage2DEXT", + "glCopyTexSubImage3D", + "glCopyTexSubImage3DEXT", + "glCopyTextureImage1DEXT", + "glCopyTextureImage2DEXT", + "glCopyTextureSubImage1DEXT", + "glCopyTextureSubImage2DEXT", + "glCopyTextureSubImage3DEXT", + "glCoverFillPathInstancedNV", + "glCoverFillPathNV", + "glCoverStrokePathInstancedNV", + "glCoverStrokePathNV", + "glCreateProgram", + "glCreateProgramObjectARB", + "glCreateShader", + "glCreateShaderObjectARB", + "glCreateShaderProgramEXT", + "glCreateShaderProgramv", + "glCreateShaderProgramvEXT", + "glCreateSyncFromCLeventARB", + "glCullFace", + "glCullParameterdvEXT", + "glCullParameterfvEXT", + "glCurrentPaletteMatrixARB", + "glDebugMessageCallback", + "glDebugMessageCallbackAMD", + "glDebugMessageCallbackARB", + "glDebugMessageCallbackKHR", + "glDebugMessageControl", + "glDebugMessageControlARB", + "glDebugMessageControlKHR", + "glDebugMessageEnableAMD", + "glDebugMessageInsert", + "glDebugMessageInsertAMD", + "glDebugMessageInsertARB", + "glDebugMessageInsertKHR", + "glDeformationMap3dSGIX", + "glDeformationMap3fSGIX", + "glDeformSGIX", + "glDeleteAsyncMarkersSGIX", + "glDeleteBuffers", + "glDeleteBuffersARB", + "glDeleteFencesAPPLE", + "glDeleteFencesNV", + "glDeleteFragmentShaderATI", + "glDeleteFramebuffers", + "glDeleteFramebuffersEXT", + "glDeleteLists", + "glDeleteNamedStringARB", + "glDeleteNamesAMD", + "glDeleteObjectARB", + "glDeleteOcclusionQueriesNV", + "glDeletePathsNV", + "glDeletePerfMonitorsAMD", + "glDeleteProgram", + "glDeleteProgramPipelines", + "glDeleteProgramPipelinesEXT", + "glDeleteProgramsARB", + "glDeleteProgramsNV", + "glDeleteQueries", + "glDeleteQueriesARB", + "glDeleteRenderbuffers", + "glDeleteRenderbuffersEXT", + "glDeleteSamplers", + "glDeleteShader", + "glDeleteSync", + "glDeleteTextures", + "glDeleteTexturesEXT", + "glDeleteTransformFeedbacks", + "glDeleteTransformFeedbacksNV", + "glDeleteVertexArrays", + "glDeleteVertexArraysAPPLE", + "glDeleteVertexShaderEXT", + "glDepthBoundsdNV", + "glDepthBoundsEXT", + "glDepthFunc", + "glDepthMask", + "glDepthRange", + "glDepthRangeArrayv", + "glDepthRangedNV", + "glDepthRangef", + "glDepthRangefOES", + "glDepthRangeIndexed", + "glDepthRangexOES", + "glDetachObjectARB", + "glDetachShader", + "glDetailTexFuncSGIS", + "glDisable", + "glDisableClientState", + "glDisableClientStateiEXT", + "glDisableClientStateIndexedEXT", + "glDisablei", + "glDisableIndexedEXT", + "glDisableVariantClientStateEXT", + "glDisableVertexArrayAttribEXT", + "glDisableVertexArrayEXT", + "glDisableVertexAttribAPPLE", + "glDisableVertexAttribArray", + "glDisableVertexAttribArrayARB", + "glDispatchCompute", + "glDispatchComputeGroupSizeARB", + "glDispatchComputeIndirect", + "glDrawArrays", + "glDrawArraysEXT", + "glDrawArraysIndirect", + "glDrawArraysInstanced", + "glDrawArraysInstancedARB", + "glDrawArraysInstancedBaseInstance", + "glDrawArraysInstancedEXT", + "glDrawBuffer", + "glDrawBuffers", + "glDrawBuffersARB", + "glDrawBuffersATI", + "glDrawElementArrayAPPLE", + "glDrawElementArrayATI", + "glDrawElements", + "glDrawElementsBaseVertex", + "glDrawElementsIndirect", + "glDrawElementsInstanced", + "glDrawElementsInstancedARB", + "glDrawElementsInstancedBaseInstance", + "glDrawElementsInstancedBaseVertex", + "glDrawElementsInstancedBaseVertexBaseInstance", + "glDrawElementsInstancedEXT", + "glDrawMeshArraysSUN", + "glDrawPixels", + "glDrawRangeElementArrayAPPLE", + "glDrawRangeElementArrayATI", + "glDrawRangeElements", + "glDrawRangeElementsBaseVertex", + "glDrawRangeElementsEXT", + "glDrawTextureNV", + "glDrawTransformFeedback", + "glDrawTransformFeedbackInstanced", + "glDrawTransformFeedbackNV", + "glDrawTransformFeedbackStream", + "glDrawTransformFeedbackStreamInstanced", + "glEdgeFlag", + "glEdgeFlagFormatNV", + "glEdgeFlagPointer", + "glEdgeFlagPointerEXT", + "glEdgeFlagPointerListIBM", + "glEdgeFlagv", + "glElementPointerAPPLE", + "glElementPointerATI", + "glEnable", + "glEnableClientState", + "glEnableClientStateiEXT", + "glEnableClientStateIndexedEXT", + "glEnablei", + "glEnableIndexedEXT", + "glEnableVariantClientStateEXT", + "glEnableVertexArrayAttribEXT", + "glEnableVertexArrayEXT", + "glEnableVertexAttribAPPLE", + "glEnableVertexAttribArray", + "glEnableVertexAttribArrayARB", + "glEnd", + "glEndConditionalRender", + "glEndConditionalRenderNV", + "glEndConditionalRenderNVX", + "glEndFragmentShaderATI", + "glEndList", + "glEndOcclusionQueryNV", + "glEndPerfMonitorAMD", + "glEndQuery", + "glEndQueryARB", + "glEndQueryIndexed", + "glEndTransformFeedback", + "glEndTransformFeedbackEXT", + "glEndTransformFeedbackNV", + "glEndVertexShaderEXT", + "glEndVideoCaptureNV", + "glEvalCoord1d", + "glEvalCoord1dv", + "glEvalCoord1f", + "glEvalCoord1fv", + "glEvalCoord1xOES", + "glEvalCoord1xvOES", + "glEvalCoord2d", + "glEvalCoord2dv", + "glEvalCoord2f", + "glEvalCoord2fv", + "glEvalCoord2xOES", + "glEvalCoord2xvOES", + "glEvalMapsNV", + "glEvalMesh1", + "glEvalMesh2", + "glEvalPoint1", + "glEvalPoint2", + "glExecuteProgramNV", + "glExtractComponentEXT", + "glFeedbackBuffer", + "glFeedbackBufferxOES", + "glFenceSync", + "glFinalCombinerInputNV", + "glFinish", + "glFinishAsyncSGIX", + "glFinishFenceAPPLE", + "glFinishFenceNV", + "glFinishObjectAPPLE", + "glFinishTextureSUNX", + "glFlush", + "glFlushMappedBufferRange", + "glFlushMappedBufferRangeAPPLE", + "glFlushMappedNamedBufferRangeEXT", + "glFlushPixelDataRangeNV", + "glFlushRasterSGIX", + "glFlushStaticDataIBM", + "glFlushVertexArrayRangeAPPLE", + "glFlushVertexArrayRangeNV", + "glFogCoordd", + "glFogCoorddEXT", + "glFogCoorddv", + "glFogCoorddvEXT", + "glFogCoordf", + "glFogCoordfEXT", + "glFogCoordFormatNV", + "glFogCoordfv", + "glFogCoordfvEXT", + "glFogCoordhNV", + "glFogCoordhvNV", + "glFogCoordPointer", + "glFogCoordPointerEXT", + "glFogCoordPointerListIBM", + "glFogf", + "glFogFuncSGIS", + "glFogfv", + "glFogi", + "glFogiv", + "glFogxOES", + "glFogxvOES", + "glFragmentColorMaterialSGIX", + "glFragmentLightfSGIX", + "glFragmentLightfvSGIX", + "glFragmentLightiSGIX", + "glFragmentLightivSGIX", + "glFragmentLightModelfSGIX", + "glFragmentLightModelfvSGIX", + "glFragmentLightModeliSGIX", + "glFragmentLightModelivSGIX", + "glFragmentMaterialfSGIX", + "glFragmentMaterialfvSGIX", + "glFragmentMaterialiSGIX", + "glFragmentMaterialivSGIX", + "glFramebufferDrawBufferEXT", + "glFramebufferDrawBuffersEXT", + "glFramebufferParameteri", + "glFramebufferReadBufferEXT", + "glFramebufferRenderbuffer", + "glFramebufferRenderbufferEXT", + "glFramebufferTexture", + "glFramebufferTexture1D", + "glFramebufferTexture1DEXT", + "glFramebufferTexture2D", + "glFramebufferTexture2DEXT", + "glFramebufferTexture3D", + "glFramebufferTexture3DEXT", + "glFramebufferTextureARB", + "glFramebufferTextureEXT", + "glFramebufferTextureFaceARB", + "glFramebufferTextureFaceEXT", + "glFramebufferTextureLayer", + "glFramebufferTextureLayerARB", + "glFramebufferTextureLayerEXT", + "glFrameTerminatorGREMEDY", + "glFrameZoomSGIX", + "glFreeObjectBufferATI", + "glFrontFace", + "glFrustum", + "glFrustumfOES", + "glFrustumxOES", + "glGenAsyncMarkersSGIX", + "glGenBuffers", + "glGenBuffersARB", + "glGenerateMipmap", + "glGenerateMipmapEXT", + "glGenerateMultiTexMipmapEXT", + "glGenerateTextureMipmapEXT", + "glGenFencesAPPLE", + "glGenFencesNV", + "glGenFragmentShadersATI", + "glGenFramebuffers", + "glGenFramebuffersEXT", + "glGenLists", + "glGenNamesAMD", + "glGenOcclusionQueriesNV", + "glGenPathsNV", + "glGenPerfMonitorsAMD", + "glGenProgramPipelines", + "glGenProgramPipelinesEXT", + "glGenProgramsARB", + "glGenProgramsNV", + "glGenQueries", + "glGenQueriesARB", + "glGenRenderbuffers", + "glGenRenderbuffersEXT", + "glGenSamplers", + "glGenSymbolsEXT", + "glGenTextures", + "glGenTexturesEXT", + "glGenTransformFeedbacks", + "glGenTransformFeedbacksNV", + "glGenVertexArrays", + "glGenVertexArraysAPPLE", + "glGenVertexShadersEXT", + "glGetActiveAtomicCounterBufferiv", + "glGetActiveAttrib", + "glGetActiveAttribARB", + "glGetActiveSubroutineName", + "glGetActiveSubroutineUniformiv", + "glGetActiveSubroutineUniformName", + "glGetActiveUniform", + "glGetActiveUniformARB", + "glGetActiveUniformBlockiv", + "glGetActiveUniformBlockName", + "glGetActiveUniformName", + "glGetActiveUniformsiv", + "glGetActiveVaryingNV", + "glGetArrayObjectfvATI", + "glGetArrayObjectivATI", + "glGetAttachedObjectsARB", + "glGetAttachedShaders", + "glGetAttribLocation", + "glGetAttribLocationARB", + "glGetBooleani_v", + "glGetBooleanIndexedvEXT", + "glGetBooleanv", + "glGetBufferParameteri64v", + "glGetBufferParameteriv", + "glGetBufferParameterivARB", + "glGetBufferParameterui64vNV", + "glGetBufferPointerv", + "glGetBufferPointervARB", + "glGetBufferSubData", + "glGetBufferSubDataARB", + "glGetClipPlane", + "glGetClipPlanefOES", + "glGetClipPlanexOES", + "glGetColorTable", + "glGetColorTableEXT", + "glGetColorTableParameterfv", + "glGetColorTableParameterfvEXT", + "glGetColorTableParameterfvSGI", + "glGetColorTableParameteriv", + "glGetColorTableParameterivEXT", + "glGetColorTableParameterivSGI", + "glGetColorTableSGI", + "glGetCombinerInputParameterfvNV", + "glGetCombinerInputParameterivNV", + "glGetCombinerOutputParameterfvNV", + "glGetCombinerOutputParameterivNV", + "glGetCombinerStageParameterfvNV", + "glGetCompressedMultiTexImageEXT", + "glGetCompressedTexImage", + "glGetCompressedTexImageARB", + "glGetCompressedTextureImageEXT", + "glGetConvolutionFilter", + "glGetConvolutionFilterEXT", + "glGetConvolutionParameterfv", + "glGetConvolutionParameterfvEXT", + "glGetConvolutionParameteriv", + "glGetConvolutionParameterivEXT", + "glGetConvolutionParameterxvOES", + "glGetDebugMessageLog", + "glGetDebugMessageLogAMD", + "glGetDebugMessageLogARB", + "glGetDebugMessageLogKHR", + "glGetDetailTexFuncSGIS", + "glGetDoublei_v", + "glGetDoublei_vEXT", + "glGetDoubleIndexedvEXT", + "glGetDoublev", + "glGetError", + "glGetFenceivNV", + "glGetFinalCombinerInputParameterfvNV", + "glGetFinalCombinerInputParameterivNV", + "glGetFixedvOES", + "glGetFloati_v", + "glGetFloati_vEXT", + "glGetFloatIndexedvEXT", + "glGetFloatv", + "glGetFogFuncSGIS", + "glGetFragDataIndex", + "glGetFragDataLocation", + "glGetFragDataLocationEXT", + "glGetFragmentLightfvSGIX", + "glGetFragmentLightivSGIX", + "glGetFragmentMaterialfvSGIX", + "glGetFragmentMaterialivSGIX", + "glGetFramebufferAttachmentParameteriv", + "glGetFramebufferAttachmentParameterivEXT", + "glGetFramebufferParameteriv", + "glGetFramebufferParameterivEXT", + "glGetGraphicsResetStatusARB", + "glGetHandleARB", + "glGetHistogram", + "glGetHistogramEXT", + "glGetHistogramParameterfv", + "glGetHistogramParameterfvEXT", + "glGetHistogramParameteriv", + "glGetHistogramParameterivEXT", + "glGetHistogramParameterxvOES", + "glGetImageHandleARB", + "glGetImageHandleNV", + "glGetImageTransformParameterfvHP", + "glGetImageTransformParameterivHP", + "glGetInfoLogARB", + "glGetInstrumentsSGIX", + "glGetInteger64i_v", + "glGetInteger64v", + "glGetIntegeri_v", + "glGetIntegerIndexedvEXT", + "glGetIntegerui64i_vNV", + "glGetIntegerui64vNV", + "glGetIntegerv", + "glGetInternalformati64v", + "glGetInternalformativ", + "glGetInvariantBooleanvEXT", + "glGetInvariantFloatvEXT", + "glGetInvariantIntegervEXT", + "glGetLightfv", + "glGetLightiv", + "glGetLightxOES", + "glGetLightxvOES", + "glGetListParameterfvSGIX", + "glGetListParameterivSGIX", + "glGetLocalConstantBooleanvEXT", + "glGetLocalConstantFloatvEXT", + "glGetLocalConstantIntegervEXT", + "glGetMapAttribParameterfvNV", + "glGetMapAttribParameterivNV", + "glGetMapControlPointsNV", + "glGetMapdv", + "glGetMapfv", + "glGetMapiv", + "glGetMapParameterfvNV", + "glGetMapParameterivNV", + "glGetMapxvOES", + "glGetMaterialfv", + "glGetMaterialiv", + "glGetMaterialxOES", + "glGetMaterialxvOES", + "glGetMinmax", + "glGetMinmaxEXT", + "glGetMinmaxParameterfv", + "glGetMinmaxParameterfvEXT", + "glGetMinmaxParameteriv", + "glGetMinmaxParameterivEXT", + "glGetMultisamplefv", + "glGetMultisamplefvNV", + "glGetMultiTexEnvfvEXT", + "glGetMultiTexEnvivEXT", + "glGetMultiTexGendvEXT", + "glGetMultiTexGenfvEXT", + "glGetMultiTexGenivEXT", + "glGetMultiTexImageEXT", + "glGetMultiTexLevelParameterfvEXT", + "glGetMultiTexLevelParameterivEXT", + "glGetMultiTexParameterfvEXT", + "glGetMultiTexParameterIivEXT", + "glGetMultiTexParameterIuivEXT", + "glGetMultiTexParameterivEXT", + "glGetNamedBufferParameterivEXT", + "glGetNamedBufferParameterui64vNV", + "glGetNamedBufferPointervEXT", + "glGetNamedBufferSubDataEXT", + "glGetNamedFramebufferAttachmentParameterivEXT", + "glGetNamedFramebufferParameterivEXT", + "glGetNamedProgramivEXT", + "glGetNamedProgramLocalParameterdvEXT", + "glGetNamedProgramLocalParameterfvEXT", + "glGetNamedProgramLocalParameterIivEXT", + "glGetNamedProgramLocalParameterIuivEXT", + "glGetNamedProgramStringEXT", + "glGetNamedRenderbufferParameterivEXT", + "glGetNamedStringARB", + "glGetNamedStringivARB", + "glGetnColorTableARB", + "glGetnCompressedTexImageARB", + "glGetnConvolutionFilterARB", + "glGetnHistogramARB", + "glGetnMapdvARB", + "glGetnMapfvARB", + "glGetnMapivARB", + "glGetnMinmaxARB", + "glGetnPixelMapfvARB", + "glGetnPixelMapuivARB", + "glGetnPixelMapusvARB", + "glGetnPolygonStippleARB", + "glGetnSeparableFilterARB", + "glGetnTexImageARB", + "glGetnUniformdvARB", + "glGetnUniformfvARB", + "glGetnUniformivARB", + "glGetnUniformuivARB", + "glGetObjectBufferfvATI", + "glGetObjectBufferivATI", + "glGetObjectLabel", + "glGetObjectLabelEXT", + "glGetObjectLabelKHR", + "glGetObjectParameterfvARB", + "glGetObjectParameterivAPPLE", + "glGetObjectParameterivARB", + "glGetObjectPtrLabel", + "glGetObjectPtrLabelKHR", + "glGetOcclusionQueryivNV", + "glGetOcclusionQueryuivNV", + "glGetPathColorGenfvNV", + "glGetPathColorGenivNV", + "glGetPathCommandsNV", + "glGetPathCoordsNV", + "glGetPathDashArrayNV", + "glGetPathLengthNV", + "glGetPathMetricRangeNV", + "glGetPathMetricsNV", + "glGetPathParameterfvNV", + "glGetPathParameterivNV", + "glGetPathSpacingNV", + "glGetPathTexGenfvNV", + "glGetPathTexGenivNV", + "glGetPerfMonitorCounterDataAMD", + "glGetPerfMonitorCounterInfoAMD", + "glGetPerfMonitorCountersAMD", + "glGetPerfMonitorCounterStringAMD", + "glGetPerfMonitorGroupsAMD", + "glGetPerfMonitorGroupStringAMD", + "glGetPixelMapfv", + "glGetPixelMapuiv", + "glGetPixelMapusv", + "glGetPixelMapxv", + "glGetPixelTexGenParameterfvSGIS", + "glGetPixelTexGenParameterivSGIS", + "glGetPixelTransformParameterfvEXT", + "glGetPixelTransformParameterivEXT", + "glGetPointeri_vEXT", + "glGetPointerIndexedvEXT", + "glGetPointerv", + "glGetPointervEXT", + "glGetPointervKHR", + "glGetPolygonStipple", + "glGetProgramBinary", + "glGetProgramEnvParameterdvARB", + "glGetProgramEnvParameterfvARB", + "glGetProgramEnvParameterIivNV", + "glGetProgramEnvParameterIuivNV", + "glGetProgramInfoLog", + "glGetProgramInterfaceiv", + "glGetProgramiv", + "glGetProgramivARB", + "glGetProgramivNV", + "glGetProgramLocalParameterdvARB", + "glGetProgramLocalParameterfvARB", + "glGetProgramLocalParameterIivNV", + "glGetProgramLocalParameterIuivNV", + "glGetProgramNamedParameterdvNV", + "glGetProgramNamedParameterfvNV", + "glGetProgramParameterdvNV", + "glGetProgramParameterfvNV", + "glGetProgramPipelineInfoLog", + "glGetProgramPipelineInfoLogEXT", + "glGetProgramPipelineiv", + "glGetProgramPipelineivEXT", + "glGetProgramResourceIndex", + "glGetProgramResourceiv", + "glGetProgramResourceLocation", + "glGetProgramResourceLocationIndex", + "glGetProgramResourceName", + "glGetProgramStageiv", + "glGetProgramStringARB", + "glGetProgramStringNV", + "glGetProgramSubroutineParameteruivNV", + "glGetQueryIndexediv", + "glGetQueryiv", + "glGetQueryivARB", + "glGetQueryObjecti64v", + "glGetQueryObjecti64vEXT", + "glGetQueryObjectiv", + "glGetQueryObjectivARB", + "glGetQueryObjectui64v", + "glGetQueryObjectui64vEXT", + "glGetQueryObjectuiv", + "glGetQueryObjectuivARB", + "glGetRenderbufferParameteriv", + "glGetRenderbufferParameterivEXT", + "glGetSamplerParameterfv", + "glGetSamplerParameterIiv", + "glGetSamplerParameterIuiv", + "glGetSamplerParameteriv", + "glGetSeparableFilter", + "glGetSeparableFilterEXT", + "glGetShaderInfoLog", + "glGetShaderiv", + "glGetShaderPrecisionFormat", + "glGetShaderSource", + "glGetShaderSourceARB", + "glGetSharpenTexFuncSGIS", + "glGetString", + "glGetStringi", + "glGetSubroutineIndex", + "glGetSubroutineUniformLocation", + "glGetSynciv", + "glGetTexBumpParameterfvATI", + "glGetTexBumpParameterivATI", + "glGetTexEnvfv", + "glGetTexEnviv", + "glGetTexEnvxvOES", + "glGetTexFilterFuncSGIS", + "glGetTexGendv", + "glGetTexGenfv", + "glGetTexGeniv", + "glGetTexGenxvOES", + "glGetTexImage", + "glGetTexLevelParameterfv", + "glGetTexLevelParameteriv", + "glGetTexLevelParameterxvOES", + "glGetTexParameterfv", + "glGetTexParameterIiv", + "glGetTexParameterIivEXT", + "glGetTexParameterIuiv", + "glGetTexParameterIuivEXT", + "glGetTexParameteriv", + "glGetTexParameterPointervAPPLE", + "glGetTexParameterxvOES", + "glGetTextureHandleARB", + "glGetTextureHandleNV", + "glGetTextureImageEXT", + "glGetTextureLevelParameterfvEXT", + "glGetTextureLevelParameterivEXT", + "glGetTextureParameterfvEXT", + "glGetTextureParameterIivEXT", + "glGetTextureParameterIuivEXT", + "glGetTextureParameterivEXT", + "glGetTextureSamplerHandleARB", + "glGetTextureSamplerHandleNV", + "glGetTrackMatrixivNV", + "glGetTransformFeedbackVarying", + "glGetTransformFeedbackVaryingEXT", + "glGetTransformFeedbackVaryingNV", + "glGetUniformBlockIndex", + "glGetUniformBufferSizeEXT", + "glGetUniformdv", + "glGetUniformfv", + "glGetUniformfvARB", + "glGetUniformi64vNV", + "glGetUniformIndices", + "glGetUniformiv", + "glGetUniformivARB", + "glGetUniformLocation", + "glGetUniformLocationARB", + "glGetUniformOffsetEXT", + "glGetUniformSubroutineuiv", + "glGetUniformui64vNV", + "glGetUniformuiv", + "glGetUniformuivEXT", + "glGetVariantArrayObjectfvATI", + "glGetVariantArrayObjectivATI", + "glGetVariantBooleanvEXT", + "glGetVariantFloatvEXT", + "glGetVariantIntegervEXT", + "glGetVariantPointervEXT", + "glGetVaryingLocationNV", + "glGetVertexArrayIntegeri_vEXT", + "glGetVertexArrayIntegervEXT", + "glGetVertexArrayPointeri_vEXT", + "glGetVertexArrayPointervEXT", + "glGetVertexAttribArrayObjectfvATI", + "glGetVertexAttribArrayObjectivATI", + "glGetVertexAttribdv", + "glGetVertexAttribdvARB", + "glGetVertexAttribdvNV", + "glGetVertexAttribfv", + "glGetVertexAttribfvARB", + "glGetVertexAttribfvNV", + "glGetVertexAttribIiv", + "glGetVertexAttribIivEXT", + "glGetVertexAttribIuiv", + "glGetVertexAttribIuivEXT", + "glGetVertexAttribiv", + "glGetVertexAttribivARB", + "glGetVertexAttribivNV", + "glGetVertexAttribLdv", + "glGetVertexAttribLdvEXT", + "glGetVertexAttribLi64vNV", + "glGetVertexAttribLui64vARB", + "glGetVertexAttribLui64vNV", + "glGetVertexAttribPointerv", + "glGetVertexAttribPointervARB", + "glGetVertexAttribPointervNV", + "glGetVideoCaptureivNV", + "glGetVideoCaptureStreamdvNV", + "glGetVideoCaptureStreamfvNV", + "glGetVideoCaptureStreamivNV", + "glGetVideoi64vNV", + "glGetVideoivNV", + "glGetVideoui64vNV", + "glGetVideouivNV", + "glGlobalAlphaFactorbSUN", + "glGlobalAlphaFactordSUN", + "glGlobalAlphaFactorfSUN", + "glGlobalAlphaFactoriSUN", + "glGlobalAlphaFactorsSUN", + "glGlobalAlphaFactorubSUN", + "glGlobalAlphaFactoruiSUN", + "glGlobalAlphaFactorusSUN", + "glHint", + "glHintPGI", + "glHistogram", + "glHistogramEXT", + "glIglooInterfaceSGIX", + "glImageTransformParameterfHP", + "glImageTransformParameterfvHP", + "glImageTransformParameteriHP", + "glImageTransformParameterivHP", + "glImportSyncEXT", + "glIndexd", + "glIndexdv", + "glIndexf", + "glIndexFormatNV", + "glIndexFuncEXT", + "glIndexfv", + "glIndexi", + "glIndexiv", + "glIndexMask", + "glIndexMaterialEXT", + "glIndexPointer", + "glIndexPointerEXT", + "glIndexPointerListIBM", + "glIndexs", + "glIndexsv", + "glIndexub", + "glIndexubv", + "glIndexxOES", + "glIndexxvOES", + "glInitNames", + "glInsertComponentEXT", + "glInsertEventMarkerEXT", + "glInstrumentsBufferSGIX", + "glInterleavedArrays", + "glInterpolatePathsNV", + "glInvalidateBufferData", + "glInvalidateBufferSubData", + "glInvalidateFramebuffer", + "glInvalidateSubFramebuffer", + "glInvalidateTexImage", + "glInvalidateTexSubImage", + "glIsAsyncMarkerSGIX", + "glIsBuffer", + "glIsBufferARB", + "glIsBufferResidentNV", + "glIsEnabled", + "glIsEnabledi", + "glIsEnabledIndexedEXT", + "glIsFenceAPPLE", + "glIsFenceNV", + "glIsFramebuffer", + "glIsFramebufferEXT", + "glIsImageHandleResidentARB", + "glIsImageHandleResidentNV", + "glIsList", + "glIsNameAMD", + "glIsNamedBufferResidentNV", + "glIsNamedStringARB", + "glIsObjectBufferATI", + "glIsOcclusionQueryNV", + "glIsPathNV", + "glIsPointInFillPathNV", + "glIsPointInStrokePathNV", + "glIsProgram", + "glIsProgramARB", + "glIsProgramNV", + "glIsProgramPipeline", + "glIsProgramPipelineEXT", + "glIsQuery", + "glIsQueryARB", + "glIsRenderbuffer", + "glIsRenderbufferEXT", + "glIsSampler", + "glIsShader", + "glIsSync", + "glIsTexture", + "glIsTextureEXT", + "glIsTextureHandleResidentARB", + "glIsTextureHandleResidentNV", + "glIsTransformFeedback", + "glIsTransformFeedbackNV", + "glIsVariantEnabledEXT", + "glIsVertexArray", + "glIsVertexArrayAPPLE", + "glIsVertexAttribEnabledAPPLE", + "glLabelObjectEXT", + "glLightEnviSGIX", + "glLightf", + "glLightfv", + "glLighti", + "glLightiv", + "glLightModelf", + "glLightModelfv", + "glLightModeli", + "glLightModeliv", + "glLightModelxOES", + "glLightModelxvOES", + "glLightxOES", + "glLightxvOES", + "glLineStipple", + "glLineWidth", + "glLineWidthxOES", + "glLinkProgram", + "glLinkProgramARB", + "glListBase", + "glListParameterfSGIX", + "glListParameterfvSGIX", + "glListParameteriSGIX", + "glListParameterivSGIX", + "glLoadIdentity", + "glLoadIdentityDeformationMapSGIX", + "glLoadMatrixd", + "glLoadMatrixf", + "glLoadMatrixxOES", + "glLoadName", + "glLoadProgramNV", + "glLoadTransposeMatrixd", + "glLoadTransposeMatrixdARB", + "glLoadTransposeMatrixf", + "glLoadTransposeMatrixfARB", + "glLoadTransposeMatrixxOES", + "glLockArraysEXT", + "glLogicOp", + "glMakeBufferNonResidentNV", + "glMakeBufferResidentNV", + "glMakeImageHandleNonResidentARB", + "glMakeImageHandleNonResidentNV", + "glMakeImageHandleResidentARB", + "glMakeImageHandleResidentNV", + "glMakeNamedBufferNonResidentNV", + "glMakeNamedBufferResidentNV", + "glMakeTextureHandleNonResidentARB", + "glMakeTextureHandleNonResidentNV", + "glMakeTextureHandleResidentARB", + "glMakeTextureHandleResidentNV", + "glMap1d", + "glMap1f", + "glMap1xOES", + "glMap2d", + "glMap2f", + "glMap2xOES", + "glMapBuffer", + "glMapBufferARB", + "glMapBufferRange", + "glMapControlPointsNV", + "glMapGrid1d", + "glMapGrid1f", + "glMapGrid1xOES", + "glMapGrid2d", + "glMapGrid2f", + "glMapGrid2xOES", + "glMapNamedBufferEXT", + "glMapNamedBufferRangeEXT", + "glMapObjectBufferATI", + "glMapParameterfvNV", + "glMapParameterivNV", + "glMapTexture2DINTEL", + "glMapVertexAttrib1dAPPLE", + "glMapVertexAttrib1fAPPLE", + "glMapVertexAttrib2dAPPLE", + "glMapVertexAttrib2fAPPLE", + "glMaterialf", + "glMaterialfv", + "glMateriali", + "glMaterialiv", + "glMaterialxOES", + "glMaterialxvOES", + "glMatrixFrustumEXT", + "glMatrixIndexPointerARB", + "glMatrixIndexubvARB", + "glMatrixIndexuivARB", + "glMatrixIndexusvARB", + "glMatrixLoaddEXT", + "glMatrixLoadfEXT", + "glMatrixLoadIdentityEXT", + "glMatrixLoadTransposedEXT", + "glMatrixLoadTransposefEXT", + "glMatrixMode", + "glMatrixMultdEXT", + "glMatrixMultfEXT", + "glMatrixMultTransposedEXT", + "glMatrixMultTransposefEXT", + "glMatrixOrthoEXT", + "glMatrixPopEXT", + "glMatrixPushEXT", + "glMatrixRotatedEXT", + "glMatrixRotatefEXT", + "glMatrixScaledEXT", + "glMatrixScalefEXT", + "glMatrixTranslatedEXT", + "glMatrixTranslatefEXT", + "glMemoryBarrier", + "glMemoryBarrierEXT", + "glMinmax", + "glMinmaxEXT", + "glMinSampleShading", + "glMinSampleShadingARB", + "glMultiDrawArrays", + "glMultiDrawArraysEXT", + "glMultiDrawArraysIndirect", + "glMultiDrawArraysIndirectAMD", + "glMultiDrawArraysIndirectBindlessNV", + "glMultiDrawArraysIndirectCountARB", + "glMultiDrawElementArrayAPPLE", + "glMultiDrawElements", + "glMultiDrawElementsBaseVertex", + "glMultiDrawElementsEXT", + "glMultiDrawElementsIndirect", + "glMultiDrawElementsIndirectAMD", + "glMultiDrawElementsIndirectBindlessNV", + "glMultiDrawElementsIndirectCountARB", + "glMultiDrawRangeElementArrayAPPLE", + "glMultiModeDrawArraysIBM", + "glMultiModeDrawElementsIBM", + "glMultiTexBufferEXT", + "glMultiTexCoord1bOES", + "glMultiTexCoord1bvOES", + "glMultiTexCoord1d", + "glMultiTexCoord1dARB", + "glMultiTexCoord1dv", + "glMultiTexCoord1dvARB", + "glMultiTexCoord1f", + "glMultiTexCoord1fARB", + "glMultiTexCoord1fv", + "glMultiTexCoord1fvARB", + "glMultiTexCoord1hNV", + "glMultiTexCoord1hvNV", + "glMultiTexCoord1i", + "glMultiTexCoord1iARB", + "glMultiTexCoord1iv", + "glMultiTexCoord1ivARB", + "glMultiTexCoord1s", + "glMultiTexCoord1sARB", + "glMultiTexCoord1sv", + "glMultiTexCoord1svARB", + "glMultiTexCoord1xOES", + "glMultiTexCoord1xvOES", + "glMultiTexCoord2bOES", + "glMultiTexCoord2bvOES", + "glMultiTexCoord2d", + "glMultiTexCoord2dARB", + "glMultiTexCoord2dv", + "glMultiTexCoord2dvARB", + "glMultiTexCoord2f", + "glMultiTexCoord2fARB", + "glMultiTexCoord2fv", + "glMultiTexCoord2fvARB", + "glMultiTexCoord2hNV", + "glMultiTexCoord2hvNV", + "glMultiTexCoord2i", + "glMultiTexCoord2iARB", + "glMultiTexCoord2iv", + "glMultiTexCoord2ivARB", + "glMultiTexCoord2s", + "glMultiTexCoord2sARB", + "glMultiTexCoord2sv", + "glMultiTexCoord2svARB", + "glMultiTexCoord2xOES", + "glMultiTexCoord2xvOES", + "glMultiTexCoord3bOES", + "glMultiTexCoord3bvOES", + "glMultiTexCoord3d", + "glMultiTexCoord3dARB", + "glMultiTexCoord3dv", + "glMultiTexCoord3dvARB", + "glMultiTexCoord3f", + "glMultiTexCoord3fARB", + "glMultiTexCoord3fv", + "glMultiTexCoord3fvARB", + "glMultiTexCoord3hNV", + "glMultiTexCoord3hvNV", + "glMultiTexCoord3i", + "glMultiTexCoord3iARB", + "glMultiTexCoord3iv", + "glMultiTexCoord3ivARB", + "glMultiTexCoord3s", + "glMultiTexCoord3sARB", + "glMultiTexCoord3sv", + "glMultiTexCoord3svARB", + "glMultiTexCoord3xOES", + "glMultiTexCoord3xvOES", + "glMultiTexCoord4bOES", + "glMultiTexCoord4bvOES", + "glMultiTexCoord4d", + "glMultiTexCoord4dARB", + "glMultiTexCoord4dv", + "glMultiTexCoord4dvARB", + "glMultiTexCoord4f", + "glMultiTexCoord4fARB", + "glMultiTexCoord4fv", + "glMultiTexCoord4fvARB", + "glMultiTexCoord4hNV", + "glMultiTexCoord4hvNV", + "glMultiTexCoord4i", + "glMultiTexCoord4iARB", + "glMultiTexCoord4iv", + "glMultiTexCoord4ivARB", + "glMultiTexCoord4s", + "glMultiTexCoord4sARB", + "glMultiTexCoord4sv", + "glMultiTexCoord4svARB", + "glMultiTexCoord4xOES", + "glMultiTexCoord4xvOES", + "glMultiTexCoordP1ui", + "glMultiTexCoordP1uiv", + "glMultiTexCoordP2ui", + "glMultiTexCoordP2uiv", + "glMultiTexCoordP3ui", + "glMultiTexCoordP3uiv", + "glMultiTexCoordP4ui", + "glMultiTexCoordP4uiv", + "glMultiTexCoordPointerEXT", + "glMultiTexEnvfEXT", + "glMultiTexEnvfvEXT", + "glMultiTexEnviEXT", + "glMultiTexEnvivEXT", + "glMultiTexGendEXT", + "glMultiTexGendvEXT", + "glMultiTexGenfEXT", + "glMultiTexGenfvEXT", + "glMultiTexGeniEXT", + "glMultiTexGenivEXT", + "glMultiTexImage1DEXT", + "glMultiTexImage2DEXT", + "glMultiTexImage3DEXT", + "glMultiTexParameterfEXT", + "glMultiTexParameterfvEXT", + "glMultiTexParameteriEXT", + "glMultiTexParameterIivEXT", + "glMultiTexParameterIuivEXT", + "glMultiTexParameterivEXT", + "glMultiTexRenderbufferEXT", + "glMultiTexSubImage1DEXT", + "glMultiTexSubImage2DEXT", + "glMultiTexSubImage3DEXT", + "glMultMatrixd", + "glMultMatrixf", + "glMultMatrixxOES", + "glMultTransposeMatrixd", + "glMultTransposeMatrixdARB", + "glMultTransposeMatrixf", + "glMultTransposeMatrixfARB", + "glMultTransposeMatrixxOES", + "glNamedBufferDataEXT", + "glNamedBufferStorageEXT", + "glNamedBufferSubDataEXT", + "glNamedCopyBufferSubDataEXT", + "glNamedFramebufferParameteriEXT", + "glNamedFramebufferRenderbufferEXT", + "glNamedFramebufferTexture1DEXT", + "glNamedFramebufferTexture2DEXT", + "glNamedFramebufferTexture3DEXT", + "glNamedFramebufferTextureEXT", + "glNamedFramebufferTextureFaceEXT", + "glNamedFramebufferTextureLayerEXT", + "glNamedProgramLocalParameter4dEXT", + "glNamedProgramLocalParameter4dvEXT", + "glNamedProgramLocalParameter4fEXT", + "glNamedProgramLocalParameter4fvEXT", + "glNamedProgramLocalParameterI4iEXT", + "glNamedProgramLocalParameterI4ivEXT", + "glNamedProgramLocalParameterI4uiEXT", + "glNamedProgramLocalParameterI4uivEXT", + "glNamedProgramLocalParameters4fvEXT", + "glNamedProgramLocalParametersI4ivEXT", + "glNamedProgramLocalParametersI4uivEXT", + "glNamedProgramStringEXT", + "glNamedRenderbufferStorageEXT", + "glNamedRenderbufferStorageMultisampleCoverageEXT", + "glNamedRenderbufferStorageMultisampleEXT", + "glNamedStringARB", + "glNewList", + "glNewObjectBufferATI", + "glNormal3b", + "glNormal3bv", + "glNormal3d", + "glNormal3dv", + "glNormal3f", + "glNormal3fv", + "glNormal3fVertex3fSUN", + "glNormal3fVertex3fvSUN", + "glNormal3hNV", + "glNormal3hvNV", + "glNormal3i", + "glNormal3iv", + "glNormal3s", + "glNormal3sv", + "glNormal3xOES", + "glNormal3xvOES", + "glNormalFormatNV", + "glNormalP3ui", + "glNormalP3uiv", + "glNormalPointer", + "glNormalPointerEXT", + "glNormalPointerListIBM", + "glNormalPointervINTEL", + "glNormalStream3bATI", + "glNormalStream3bvATI", + "glNormalStream3dATI", + "glNormalStream3dvATI", + "glNormalStream3fATI", + "glNormalStream3fvATI", + "glNormalStream3iATI", + "glNormalStream3ivATI", + "glNormalStream3sATI", + "glNormalStream3svATI", + "glObjectLabel", + "glObjectLabelKHR", + "glObjectPtrLabel", + "glObjectPtrLabelKHR", + "glObjectPurgeableAPPLE", + "glObjectUnpurgeableAPPLE", + "glOrtho", + "glOrthofOES", + "glOrthoxOES", + "glPassTexCoordATI", + "glPassThrough", + "glPassThroughxOES", + "glPatchParameterfv", + "glPatchParameteri", + "glPathColorGenNV", + "glPathCommandsNV", + "glPathCoordsNV", + "glPathCoverDepthFuncNV", + "glPathDashArrayNV", + "glPathFogGenNV", + "glPathGlyphRangeNV", + "glPathGlyphsNV", + "glPathParameterfNV", + "glPathParameterfvNV", + "glPathParameteriNV", + "glPathParameterivNV", + "glPathStencilDepthOffsetNV", + "glPathStencilFuncNV", + "glPathStringNV", + "glPathSubCommandsNV", + "glPathSubCoordsNV", + "glPathTexGenNV", + "glPauseTransformFeedback", + "glPauseTransformFeedbackNV", + "glPixelDataRangeNV", + "glPixelMapfv", + "glPixelMapuiv", + "glPixelMapusv", + "glPixelMapx", + "glPixelStoref", + "glPixelStorei", + "glPixelStorex", + "glPixelTexGenParameterfSGIS", + "glPixelTexGenParameterfvSGIS", + "glPixelTexGenParameteriSGIS", + "glPixelTexGenParameterivSGIS", + "glPixelTexGenSGIX", + "glPixelTransferf", + "glPixelTransferi", + "glPixelTransferxOES", + "glPixelTransformParameterfEXT", + "glPixelTransformParameterfvEXT", + "glPixelTransformParameteriEXT", + "glPixelTransformParameterivEXT", + "glPixelZoom", + "glPixelZoomxOES", + "glPNTrianglesfATI", + "glPNTrianglesiATI", + "glPointAlongPathNV", + "glPointParameterf", + "glPointParameterfARB", + "glPointParameterfEXT", + "glPointParameterfSGIS", + "glPointParameterfv", + "glPointParameterfvARB", + "glPointParameterfvEXT", + "glPointParameterfvSGIS", + "glPointParameteri", + "glPointParameteriNV", + "glPointParameteriv", + "glPointParameterivNV", + "glPointParameterxOES", + "glPointParameterxvOES", + "glPointSize", + "glPointSizexOES", + "glPollAsyncSGIX", + "glPollInstrumentsSGIX", + "glPolygonMode", + "glPolygonOffset", + "glPolygonOffsetEXT", + "glPolygonOffsetxOES", + "glPolygonStipple", + "glPopAttrib", + "glPopClientAttrib", + "glPopDebugGroup", + "glPopDebugGroupKHR", + "glPopGroupMarkerEXT", + "glPopMatrix", + "glPopName", + "glPresentFrameDualFillNV", + "glPresentFrameKeyedNV", + "glPrimitiveRestartIndex", + "glPrimitiveRestartIndexNV", + "glPrimitiveRestartNV", + "glPrioritizeTextures", + "glPrioritizeTexturesEXT", + "glPrioritizeTexturesxOES", + "glProgramBinary", + "glProgramBufferParametersfvNV", + "glProgramBufferParametersIivNV", + "glProgramBufferParametersIuivNV", + "glProgramEnvParameter4dARB", + "glProgramEnvParameter4dvARB", + "glProgramEnvParameter4fARB", + "glProgramEnvParameter4fvARB", + "glProgramEnvParameterI4iNV", + "glProgramEnvParameterI4ivNV", + "glProgramEnvParameterI4uiNV", + "glProgramEnvParameterI4uivNV", + "glProgramEnvParameters4fvEXT", + "glProgramEnvParametersI4ivNV", + "glProgramEnvParametersI4uivNV", + "glProgramLocalParameter4dARB", + "glProgramLocalParameter4dvARB", + "glProgramLocalParameter4fARB", + "glProgramLocalParameter4fvARB", + "glProgramLocalParameterI4iNV", + "glProgramLocalParameterI4ivNV", + "glProgramLocalParameterI4uiNV", + "glProgramLocalParameterI4uivNV", + "glProgramLocalParameters4fvEXT", + "glProgramLocalParametersI4ivNV", + "glProgramLocalParametersI4uivNV", + "glProgramNamedParameter4dNV", + "glProgramNamedParameter4dvNV", + "glProgramNamedParameter4fNV", + "glProgramNamedParameter4fvNV", + "glProgramParameter4dNV", + "glProgramParameter4dvNV", + "glProgramParameter4fNV", + "glProgramParameter4fvNV", + "glProgramParameteri", + "glProgramParameteriARB", + "glProgramParameteriEXT", + "glProgramParameters4dvNV", + "glProgramParameters4fvNV", + "glProgramStringARB", + "glProgramSubroutineParametersuivNV", + "glProgramUniform1d", + "glProgramUniform1dEXT", + "glProgramUniform1dv", + "glProgramUniform1dvEXT", + "glProgramUniform1f", + "glProgramUniform1fEXT", + "glProgramUniform1fv", + "glProgramUniform1fvEXT", + "glProgramUniform1i", + "glProgramUniform1i64NV", + "glProgramUniform1i64vNV", + "glProgramUniform1iEXT", + "glProgramUniform1iv", + "glProgramUniform1ivEXT", + "glProgramUniform1ui", + "glProgramUniform1ui64NV", + "glProgramUniform1ui64vNV", + "glProgramUniform1uiEXT", + "glProgramUniform1uiv", + "glProgramUniform1uivEXT", + "glProgramUniform2d", + "glProgramUniform2dEXT", + "glProgramUniform2dv", + "glProgramUniform2dvEXT", + "glProgramUniform2f", + "glProgramUniform2fEXT", + "glProgramUniform2fv", + "glProgramUniform2fvEXT", + "glProgramUniform2i", + "glProgramUniform2i64NV", + "glProgramUniform2i64vNV", + "glProgramUniform2iEXT", + "glProgramUniform2iv", + "glProgramUniform2ivEXT", + "glProgramUniform2ui", + "glProgramUniform2ui64NV", + "glProgramUniform2ui64vNV", + "glProgramUniform2uiEXT", + "glProgramUniform2uiv", + "glProgramUniform2uivEXT", + "glProgramUniform3d", + "glProgramUniform3dEXT", + "glProgramUniform3dv", + "glProgramUniform3dvEXT", + "glProgramUniform3f", + "glProgramUniform3fEXT", + "glProgramUniform3fv", + "glProgramUniform3fvEXT", + "glProgramUniform3i", + "glProgramUniform3i64NV", + "glProgramUniform3i64vNV", + "glProgramUniform3iEXT", + "glProgramUniform3iv", + "glProgramUniform3ivEXT", + "glProgramUniform3ui", + "glProgramUniform3ui64NV", + "glProgramUniform3ui64vNV", + "glProgramUniform3uiEXT", + "glProgramUniform3uiv", + "glProgramUniform3uivEXT", + "glProgramUniform4d", + "glProgramUniform4dEXT", + "glProgramUniform4dv", + "glProgramUniform4dvEXT", + "glProgramUniform4f", + "glProgramUniform4fEXT", + "glProgramUniform4fv", + "glProgramUniform4fvEXT", + "glProgramUniform4i", + "glProgramUniform4i64NV", + "glProgramUniform4i64vNV", + "glProgramUniform4iEXT", + "glProgramUniform4iv", + "glProgramUniform4ivEXT", + "glProgramUniform4ui", + "glProgramUniform4ui64NV", + "glProgramUniform4ui64vNV", + "glProgramUniform4uiEXT", + "glProgramUniform4uiv", + "glProgramUniform4uivEXT", + "glProgramUniformHandleui64ARB", + "glProgramUniformHandleui64NV", + "glProgramUniformHandleui64vARB", + "glProgramUniformHandleui64vNV", + "glProgramUniformMatrix2dv", + "glProgramUniformMatrix2dvEXT", + "glProgramUniformMatrix2fv", + "glProgramUniformMatrix2fvEXT", + "glProgramUniformMatrix2x3dv", + "glProgramUniformMatrix2x3dvEXT", + "glProgramUniformMatrix2x3fv", + "glProgramUniformMatrix2x3fvEXT", + "glProgramUniformMatrix2x4dv", + "glProgramUniformMatrix2x4dvEXT", + "glProgramUniformMatrix2x4fv", + "glProgramUniformMatrix2x4fvEXT", + "glProgramUniformMatrix3dv", + "glProgramUniformMatrix3dvEXT", + "glProgramUniformMatrix3fv", + "glProgramUniformMatrix3fvEXT", + "glProgramUniformMatrix3x2dv", + "glProgramUniformMatrix3x2dvEXT", + "glProgramUniformMatrix3x2fv", + "glProgramUniformMatrix3x2fvEXT", + "glProgramUniformMatrix3x4dv", + "glProgramUniformMatrix3x4dvEXT", + "glProgramUniformMatrix3x4fv", + "glProgramUniformMatrix3x4fvEXT", + "glProgramUniformMatrix4dv", + "glProgramUniformMatrix4dvEXT", + "glProgramUniformMatrix4fv", + "glProgramUniformMatrix4fvEXT", + "glProgramUniformMatrix4x2dv", + "glProgramUniformMatrix4x2dvEXT", + "glProgramUniformMatrix4x2fv", + "glProgramUniformMatrix4x2fvEXT", + "glProgramUniformMatrix4x3dv", + "glProgramUniformMatrix4x3dvEXT", + "glProgramUniformMatrix4x3fv", + "glProgramUniformMatrix4x3fvEXT", + "glProgramUniformui64NV", + "glProgramUniformui64vNV", + "glProgramVertexLimitNV", + "glProvokingVertex", + "glProvokingVertexEXT", + "glPushAttrib", + "glPushClientAttrib", + "glPushClientAttribDefaultEXT", + "glPushDebugGroup", + "glPushDebugGroupKHR", + "glPushGroupMarkerEXT", + "glPushMatrix", + "glPushName", + "glQueryCounter", + "glQueryMatrixxOES", + "glRasterPos2d", + "glRasterPos2dv", + "glRasterPos2f", + "glRasterPos2fv", + "glRasterPos2i", + "glRasterPos2iv", + "glRasterPos2s", + "glRasterPos2sv", + "glRasterPos2xOES", + "glRasterPos2xvOES", + "glRasterPos3d", + "glRasterPos3dv", + "glRasterPos3f", + "glRasterPos3fv", + "glRasterPos3i", + "glRasterPos3iv", + "glRasterPos3s", + "glRasterPos3sv", + "glRasterPos3xOES", + "glRasterPos3xvOES", + "glRasterPos4d", + "glRasterPos4dv", + "glRasterPos4f", + "glRasterPos4fv", + "glRasterPos4i", + "glRasterPos4iv", + "glRasterPos4s", + "glRasterPos4sv", + "glRasterPos4xOES", + "glRasterPos4xvOES", + "glReadBuffer", + "glReadInstrumentsSGIX", + "glReadnPixelsARB", + "glReadPixels", + "glRectd", + "glRectdv", + "glRectf", + "glRectfv", + "glRecti", + "glRectiv", + "glRects", + "glRectsv", + "glRectxOES", + "glRectxvOES", + "glReferencePlaneSGIX", + "glReleaseShaderCompiler", + "glRenderbufferStorage", + "glRenderbufferStorageEXT", + "glRenderbufferStorageMultisample", + "glRenderbufferStorageMultisampleCoverageNV", + "glRenderbufferStorageMultisampleEXT", + "glRenderMode", + "glReplacementCodePointerSUN", + "glReplacementCodeubSUN", + "glReplacementCodeubvSUN", + "glReplacementCodeuiColor3fVertex3fSUN", + "glReplacementCodeuiColor3fVertex3fvSUN", + "glReplacementCodeuiColor4fNormal3fVertex3fSUN", + "glReplacementCodeuiColor4fNormal3fVertex3fvSUN", + "glReplacementCodeuiColor4ubVertex3fSUN", + "glReplacementCodeuiColor4ubVertex3fvSUN", + "glReplacementCodeuiNormal3fVertex3fSUN", + "glReplacementCodeuiNormal3fVertex3fvSUN", + "glReplacementCodeuiSUN", + "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN", + "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN", + "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN", + "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN", + "glReplacementCodeuiTexCoord2fVertex3fSUN", + "glReplacementCodeuiTexCoord2fVertex3fvSUN", + "glReplacementCodeuiVertex3fSUN", + "glReplacementCodeuiVertex3fvSUN", + "glReplacementCodeuivSUN", + "glReplacementCodeusSUN", + "glReplacementCodeusvSUN", + "glRequestResidentProgramsNV", + "glResetHistogram", + "glResetHistogramEXT", + "glResetMinmax", + "glResetMinmaxEXT", + "glResizeBuffersMESA", + "glResumeTransformFeedback", + "glResumeTransformFeedbackNV", + "glRotated", + "glRotatef", + "glRotatexOES", + "glSampleCoverage", + "glSampleCoverageARB", + "glSampleCoverageOES", + "glSampleCoveragexOES", + "glSampleMapATI", + "glSampleMaskEXT", + "glSampleMaski", + "glSampleMaskIndexedNV", + "glSampleMaskSGIS", + "glSamplePatternEXT", + "glSamplePatternSGIS", + "glSamplerParameterf", + "glSamplerParameterfv", + "glSamplerParameteri", + "glSamplerParameterIiv", + "glSamplerParameterIuiv", + "glSamplerParameteriv", + "glScaled", + "glScalef", + "glScalexOES", + "glScissor", + "glScissorArrayv", + "glScissorIndexed", + "glScissorIndexedv", + "glSecondaryColor3b", + "glSecondaryColor3bEXT", + "glSecondaryColor3bv", + "glSecondaryColor3bvEXT", + "glSecondaryColor3d", + "glSecondaryColor3dEXT", + "glSecondaryColor3dv", + "glSecondaryColor3dvEXT", + "glSecondaryColor3f", + "glSecondaryColor3fEXT", + "glSecondaryColor3fv", + "glSecondaryColor3fvEXT", + "glSecondaryColor3hNV", + "glSecondaryColor3hvNV", + "glSecondaryColor3i", + "glSecondaryColor3iEXT", + "glSecondaryColor3iv", + "glSecondaryColor3ivEXT", + "glSecondaryColor3s", + "glSecondaryColor3sEXT", + "glSecondaryColor3sv", + "glSecondaryColor3svEXT", + "glSecondaryColor3ub", + "glSecondaryColor3ubEXT", + "glSecondaryColor3ubv", + "glSecondaryColor3ubvEXT", + "glSecondaryColor3ui", + "glSecondaryColor3uiEXT", + "glSecondaryColor3uiv", + "glSecondaryColor3uivEXT", + "glSecondaryColor3us", + "glSecondaryColor3usEXT", + "glSecondaryColor3usv", + "glSecondaryColor3usvEXT", + "glSecondaryColorFormatNV", + "glSecondaryColorP3ui", + "glSecondaryColorP3uiv", + "glSecondaryColorPointer", + "glSecondaryColorPointerEXT", + "glSecondaryColorPointerListIBM", + "glSelectBuffer", + "glSelectPerfMonitorCountersAMD", + "glSeparableFilter2D", + "glSeparableFilter2DEXT", + "glSetFenceAPPLE", + "glSetFenceNV", + "glSetFragmentShaderConstantATI", + "glSetInvariantEXT", + "glSetLocalConstantEXT", + "glSetMultisamplefvAMD", + "glShadeModel", + "glShaderBinary", + "glShaderOp1EXT", + "glShaderOp2EXT", + "glShaderOp3EXT", + "glShaderSource", + "glShaderSourceARB", + "glShaderStorageBlockBinding", + "glSharpenTexFuncSGIS", + "glSpriteParameterfSGIX", + "glSpriteParameterfvSGIX", + "glSpriteParameteriSGIX", + "glSpriteParameterivSGIX", + "glStartInstrumentsSGIX", + "glStencilClearTagEXT", + "glStencilFillPathInstancedNV", + "glStencilFillPathNV", + "glStencilFunc", + "glStencilFuncSeparate", + "glStencilFuncSeparateATI", + "glStencilMask", + "glStencilMaskSeparate", + "glStencilOp", + "glStencilOpSeparate", + "glStencilOpSeparateATI", + "glStencilOpValueAMD", + "glStencilStrokePathInstancedNV", + "glStencilStrokePathNV", + "glStopInstrumentsSGIX", + "glStringMarkerGREMEDY", + "glSwizzleEXT", + "glSyncTextureINTEL", + "glTagSampleBufferSGIX", + "glTangent3bEXT", + "glTangent3bvEXT", + "glTangent3dEXT", + "glTangent3dvEXT", + "glTangent3fEXT", + "glTangent3fvEXT", + "glTangent3iEXT", + "glTangent3ivEXT", + "glTangent3sEXT", + "glTangent3svEXT", + "glTangentPointerEXT", + "glTbufferMask3DFX", + "glTessellationFactorAMD", + "glTessellationModeAMD", + "glTestFenceAPPLE", + "glTestFenceNV", + "glTestObjectAPPLE", + "glTexBuffer", + "glTexBufferARB", + "glTexBufferEXT", + "glTexBufferRange", + "glTexBumpParameterfvATI", + "glTexBumpParameterivATI", + "glTexCoord1bOES", + "glTexCoord1bvOES", + "glTexCoord1d", + "glTexCoord1dv", + "glTexCoord1f", + "glTexCoord1fv", + "glTexCoord1hNV", + "glTexCoord1hvNV", + "glTexCoord1i", + "glTexCoord1iv", + "glTexCoord1s", + "glTexCoord1sv", + "glTexCoord1xOES", + "glTexCoord1xvOES", + "glTexCoord2bOES", + "glTexCoord2bvOES", + "glTexCoord2d", + "glTexCoord2dv", + "glTexCoord2f", + "glTexCoord2fColor3fVertex3fSUN", + "glTexCoord2fColor3fVertex3fvSUN", + "glTexCoord2fColor4fNormal3fVertex3fSUN", + "glTexCoord2fColor4fNormal3fVertex3fvSUN", + "glTexCoord2fColor4ubVertex3fSUN", + "glTexCoord2fColor4ubVertex3fvSUN", + "glTexCoord2fNormal3fVertex3fSUN", + "glTexCoord2fNormal3fVertex3fvSUN", + "glTexCoord2fv", + "glTexCoord2fVertex3fSUN", + "glTexCoord2fVertex3fvSUN", + "glTexCoord2hNV", + "glTexCoord2hvNV", + "glTexCoord2i", + "glTexCoord2iv", + "glTexCoord2s", + "glTexCoord2sv", + "glTexCoord2xOES", + "glTexCoord2xvOES", + "glTexCoord3bOES", + "glTexCoord3bvOES", + "glTexCoord3d", + "glTexCoord3dv", + "glTexCoord3f", + "glTexCoord3fv", + "glTexCoord3hNV", + "glTexCoord3hvNV", + "glTexCoord3i", + "glTexCoord3iv", + "glTexCoord3s", + "glTexCoord3sv", + "glTexCoord3xOES", + "glTexCoord3xvOES", + "glTexCoord4bOES", + "glTexCoord4bvOES", + "glTexCoord4d", + "glTexCoord4dv", + "glTexCoord4f", + "glTexCoord4fColor4fNormal3fVertex4fSUN", + "glTexCoord4fColor4fNormal3fVertex4fvSUN", + "glTexCoord4fv", + "glTexCoord4fVertex4fSUN", + "glTexCoord4fVertex4fvSUN", + "glTexCoord4hNV", + "glTexCoord4hvNV", + "glTexCoord4i", + "glTexCoord4iv", + "glTexCoord4s", + "glTexCoord4sv", + "glTexCoord4xOES", + "glTexCoord4xvOES", + "glTexCoordFormatNV", + "glTexCoordP1ui", + "glTexCoordP1uiv", + "glTexCoordP2ui", + "glTexCoordP2uiv", + "glTexCoordP3ui", + "glTexCoordP3uiv", + "glTexCoordP4ui", + "glTexCoordP4uiv", + "glTexCoordPointer", + "glTexCoordPointerEXT", + "glTexCoordPointerListIBM", + "glTexCoordPointervINTEL", + "glTexEnvf", + "glTexEnvfv", + "glTexEnvi", + "glTexEnviv", + "glTexEnvxOES", + "glTexEnvxvOES", + "glTexFilterFuncSGIS", + "glTexGend", + "glTexGendv", + "glTexGenf", + "glTexGenfv", + "glTexGeni", + "glTexGeniv", + "glTexGenxOES", + "glTexGenxvOES", + "glTexImage1D", + "glTexImage2D", + "glTexImage2DMultisample", + "glTexImage2DMultisampleCoverageNV", + "glTexImage3D", + "glTexImage3DEXT", + "glTexImage3DMultisample", + "glTexImage3DMultisampleCoverageNV", + "glTexImage4DSGIS", + "glTexPageCommitmentARB", + "glTexParameterf", + "glTexParameterfv", + "glTexParameteri", + "glTexParameterIiv", + "glTexParameterIivEXT", + "glTexParameterIuiv", + "glTexParameterIuivEXT", + "glTexParameteriv", + "glTexParameterxOES", + "glTexParameterxvOES", + "glTexRenderbufferNV", + "glTexStorage1D", + "glTexStorage2D", + "glTexStorage2DMultisample", + "glTexStorage3D", + "glTexStorage3DMultisample", + "glTexStorageSparseAMD", + "glTexSubImage1D", + "glTexSubImage1DEXT", + "glTexSubImage2D", + "glTexSubImage2DEXT", + "glTexSubImage3D", + "glTexSubImage3DEXT", + "glTexSubImage4DSGIS", + "glTextureBarrierNV", + "glTextureBufferEXT", + "glTextureBufferRangeEXT", + "glTextureColorMaskSGIS", + "glTextureImage1DEXT", + "glTextureImage2DEXT", + "glTextureImage2DMultisampleCoverageNV", + "glTextureImage2DMultisampleNV", + "glTextureImage3DEXT", + "glTextureImage3DMultisampleCoverageNV", + "glTextureImage3DMultisampleNV", + "glTextureLightEXT", + "glTextureMaterialEXT", + "glTextureNormalEXT", + "glTexturePageCommitmentEXT", + "glTextureParameterfEXT", + "glTextureParameterfvEXT", + "glTextureParameteriEXT", + "glTextureParameterIivEXT", + "glTextureParameterIuivEXT", + "glTextureParameterivEXT", + "glTextureRangeAPPLE", + "glTextureRenderbufferEXT", + "glTextureStorage1DEXT", + "glTextureStorage2DEXT", + "glTextureStorage2DMultisampleEXT", + "glTextureStorage3DEXT", + "glTextureStorage3DMultisampleEXT", + "glTextureStorageSparseAMD", + "glTextureSubImage1DEXT", + "glTextureSubImage2DEXT", + "glTextureSubImage3DEXT", + "glTextureView", + "glTrackMatrixNV", + "glTransformFeedbackAttribsNV", + "glTransformFeedbackStreamAttribsNV", + "glTransformFeedbackVaryings", + "glTransformFeedbackVaryingsEXT", + "glTransformFeedbackVaryingsNV", + "glTransformPathNV", + "glTranslated", + "glTranslatef", + "glTranslatexOES", + "glUniform1d", + "glUniform1dv", + "glUniform1f", + "glUniform1fARB", + "glUniform1fv", + "glUniform1fvARB", + "glUniform1i", + "glUniform1i64NV", + "glUniform1i64vNV", + "glUniform1iARB", + "glUniform1iv", + "glUniform1ivARB", + "glUniform1ui", + "glUniform1ui64NV", + "glUniform1ui64vNV", + "glUniform1uiEXT", + "glUniform1uiv", + "glUniform1uivEXT", + "glUniform2d", + "glUniform2dv", + "glUniform2f", + "glUniform2fARB", + "glUniform2fv", + "glUniform2fvARB", + "glUniform2i", + "glUniform2i64NV", + "glUniform2i64vNV", + "glUniform2iARB", + "glUniform2iv", + "glUniform2ivARB", + "glUniform2ui", + "glUniform2ui64NV", + "glUniform2ui64vNV", + "glUniform2uiEXT", + "glUniform2uiv", + "glUniform2uivEXT", + "glUniform3d", + "glUniform3dv", + "glUniform3f", + "glUniform3fARB", + "glUniform3fv", + "glUniform3fvARB", + "glUniform3i", + "glUniform3i64NV", + "glUniform3i64vNV", + "glUniform3iARB", + "glUniform3iv", + "glUniform3ivARB", + "glUniform3ui", + "glUniform3ui64NV", + "glUniform3ui64vNV", + "glUniform3uiEXT", + "glUniform3uiv", + "glUniform3uivEXT", + "glUniform4d", + "glUniform4dv", + "glUniform4f", + "glUniform4fARB", + "glUniform4fv", + "glUniform4fvARB", + "glUniform4i", + "glUniform4i64NV", + "glUniform4i64vNV", + "glUniform4iARB", + "glUniform4iv", + "glUniform4ivARB", + "glUniform4ui", + "glUniform4ui64NV", + "glUniform4ui64vNV", + "glUniform4uiEXT", + "glUniform4uiv", + "glUniform4uivEXT", + "glUniformBlockBinding", + "glUniformBufferEXT", + "glUniformHandleui64ARB", + "glUniformHandleui64NV", + "glUniformHandleui64vARB", + "glUniformHandleui64vNV", + "glUniformMatrix2dv", + "glUniformMatrix2fv", + "glUniformMatrix2fvARB", + "glUniformMatrix2x3dv", + "glUniformMatrix2x3fv", + "glUniformMatrix2x4dv", + "glUniformMatrix2x4fv", + "glUniformMatrix3dv", + "glUniformMatrix3fv", + "glUniformMatrix3fvARB", + "glUniformMatrix3x2dv", + "glUniformMatrix3x2fv", + "glUniformMatrix3x4dv", + "glUniformMatrix3x4fv", + "glUniformMatrix4dv", + "glUniformMatrix4fv", + "glUniformMatrix4fvARB", + "glUniformMatrix4x2dv", + "glUniformMatrix4x2fv", + "glUniformMatrix4x3dv", + "glUniformMatrix4x3fv", + "glUniformSubroutinesuiv", + "glUniformui64NV", + "glUniformui64vNV", + "glUnlockArraysEXT", + "glUnmapBuffer", + "glUnmapBufferARB", + "glUnmapNamedBufferEXT", + "glUnmapObjectBufferATI", + "glUnmapTexture2DINTEL", + "glUpdateObjectBufferATI", + "glUseProgram", + "glUseProgramObjectARB", + "glUseProgramStages", + "glUseProgramStagesEXT", + "glUseShaderProgramEXT", + "glValidateProgram", + "glValidateProgramARB", + "glValidateProgramPipeline", + "glValidateProgramPipelineEXT", + "glVariantArrayObjectATI", + "glVariantbvEXT", + "glVariantdvEXT", + "glVariantfvEXT", + "glVariantivEXT", + "glVariantPointerEXT", + "glVariantsvEXT", + "glVariantubvEXT", + "glVariantuivEXT", + "glVariantusvEXT", + "glVDPAUFiniNV", + "glVDPAUGetSurfaceivNV", + "glVDPAUInitNV", + "glVDPAUIsSurfaceNV", + "glVDPAUMapSurfacesNV", + "glVDPAURegisterOutputSurfaceNV", + "glVDPAURegisterVideoSurfaceNV", + "glVDPAUSurfaceAccessNV", + "glVDPAUUnmapSurfacesNV", + "glVDPAUUnregisterSurfaceNV", + "glVertex2bOES", + "glVertex2bvOES", + "glVertex2d", + "glVertex2dv", + "glVertex2f", + "glVertex2fv", + "glVertex2hNV", + "glVertex2hvNV", + "glVertex2i", + "glVertex2iv", + "glVertex2s", + "glVertex2sv", + "glVertex2xOES", + "glVertex2xvOES", + "glVertex3bOES", + "glVertex3bvOES", + "glVertex3d", + "glVertex3dv", + "glVertex3f", + "glVertex3fv", + "glVertex3hNV", + "glVertex3hvNV", + "glVertex3i", + "glVertex3iv", + "glVertex3s", + "glVertex3sv", + "glVertex3xOES", + "glVertex3xvOES", + "glVertex4bOES", + "glVertex4bvOES", + "glVertex4d", + "glVertex4dv", + "glVertex4f", + "glVertex4fv", + "glVertex4hNV", + "glVertex4hvNV", + "glVertex4i", + "glVertex4iv", + "glVertex4s", + "glVertex4sv", + "glVertex4xOES", + "glVertex4xvOES", + "glVertexArrayBindVertexBufferEXT", + "glVertexArrayColorOffsetEXT", + "glVertexArrayEdgeFlagOffsetEXT", + "glVertexArrayFogCoordOffsetEXT", + "glVertexArrayIndexOffsetEXT", + "glVertexArrayMultiTexCoordOffsetEXT", + "glVertexArrayNormalOffsetEXT", + "glVertexArrayParameteriAPPLE", + "glVertexArrayRangeAPPLE", + "glVertexArrayRangeNV", + "glVertexArraySecondaryColorOffsetEXT", + "glVertexArrayTexCoordOffsetEXT", + "glVertexArrayVertexAttribBindingEXT", + "glVertexArrayVertexAttribDivisorEXT", + "glVertexArrayVertexAttribFormatEXT", + "glVertexArrayVertexAttribIFormatEXT", + "glVertexArrayVertexAttribIOffsetEXT", + "glVertexArrayVertexAttribLFormatEXT", + "glVertexArrayVertexAttribLOffsetEXT", + "glVertexArrayVertexAttribOffsetEXT", + "glVertexArrayVertexBindingDivisorEXT", + "glVertexArrayVertexOffsetEXT", + "glVertexAttrib1d", + "glVertexAttrib1dARB", + "glVertexAttrib1dNV", + "glVertexAttrib1dv", + "glVertexAttrib1dvARB", + "glVertexAttrib1dvNV", + "glVertexAttrib1f", + "glVertexAttrib1fARB", + "glVertexAttrib1fNV", + "glVertexAttrib1fv", + "glVertexAttrib1fvARB", + "glVertexAttrib1fvNV", + "glVertexAttrib1hNV", + "glVertexAttrib1hvNV", + "glVertexAttrib1s", + "glVertexAttrib1sARB", + "glVertexAttrib1sNV", + "glVertexAttrib1sv", + "glVertexAttrib1svARB", + "glVertexAttrib1svNV", + "glVertexAttrib2d", + "glVertexAttrib2dARB", + "glVertexAttrib2dNV", + "glVertexAttrib2dv", + "glVertexAttrib2dvARB", + "glVertexAttrib2dvNV", + "glVertexAttrib2f", + "glVertexAttrib2fARB", + "glVertexAttrib2fNV", + "glVertexAttrib2fv", + "glVertexAttrib2fvARB", + "glVertexAttrib2fvNV", + "glVertexAttrib2hNV", + "glVertexAttrib2hvNV", + "glVertexAttrib2s", + "glVertexAttrib2sARB", + "glVertexAttrib2sNV", + "glVertexAttrib2sv", + "glVertexAttrib2svARB", + "glVertexAttrib2svNV", + "glVertexAttrib3d", + "glVertexAttrib3dARB", + "glVertexAttrib3dNV", + "glVertexAttrib3dv", + "glVertexAttrib3dvARB", + "glVertexAttrib3dvNV", + "glVertexAttrib3f", + "glVertexAttrib3fARB", + "glVertexAttrib3fNV", + "glVertexAttrib3fv", + "glVertexAttrib3fvARB", + "glVertexAttrib3fvNV", + "glVertexAttrib3hNV", + "glVertexAttrib3hvNV", + "glVertexAttrib3s", + "glVertexAttrib3sARB", + "glVertexAttrib3sNV", + "glVertexAttrib3sv", + "glVertexAttrib3svARB", + "glVertexAttrib3svNV", + "glVertexAttrib4bv", + "glVertexAttrib4bvARB", + "glVertexAttrib4d", + "glVertexAttrib4dARB", + "glVertexAttrib4dNV", + "glVertexAttrib4dv", + "glVertexAttrib4dvARB", + "glVertexAttrib4dvNV", + "glVertexAttrib4f", + "glVertexAttrib4fARB", + "glVertexAttrib4fNV", + "glVertexAttrib4fv", + "glVertexAttrib4fvARB", + "glVertexAttrib4fvNV", + "glVertexAttrib4hNV", + "glVertexAttrib4hvNV", + "glVertexAttrib4iv", + "glVertexAttrib4ivARB", + "glVertexAttrib4Nbv", + "glVertexAttrib4NbvARB", + "glVertexAttrib4Niv", + "glVertexAttrib4NivARB", + "glVertexAttrib4Nsv", + "glVertexAttrib4NsvARB", + "glVertexAttrib4Nub", + "glVertexAttrib4NubARB", + "glVertexAttrib4Nubv", + "glVertexAttrib4NubvARB", + "glVertexAttrib4Nuiv", + "glVertexAttrib4NuivARB", + "glVertexAttrib4Nusv", + "glVertexAttrib4NusvARB", + "glVertexAttrib4s", + "glVertexAttrib4sARB", + "glVertexAttrib4sNV", + "glVertexAttrib4sv", + "glVertexAttrib4svARB", + "glVertexAttrib4svNV", + "glVertexAttrib4ubNV", + "glVertexAttrib4ubv", + "glVertexAttrib4ubvARB", + "glVertexAttrib4ubvNV", + "glVertexAttrib4uiv", + "glVertexAttrib4uivARB", + "glVertexAttrib4usv", + "glVertexAttrib4usvARB", + "glVertexAttribArrayObjectATI", + "glVertexAttribBinding", + "glVertexAttribDivisor", + "glVertexAttribDivisorARB", + "glVertexAttribFormat", + "glVertexAttribFormatNV", + "glVertexAttribI1i", + "glVertexAttribI1iEXT", + "glVertexAttribI1iv", + "glVertexAttribI1ivEXT", + "glVertexAttribI1ui", + "glVertexAttribI1uiEXT", + "glVertexAttribI1uiv", + "glVertexAttribI1uivEXT", + "glVertexAttribI2i", + "glVertexAttribI2iEXT", + "glVertexAttribI2iv", + "glVertexAttribI2ivEXT", + "glVertexAttribI2ui", + "glVertexAttribI2uiEXT", + "glVertexAttribI2uiv", + "glVertexAttribI2uivEXT", + "glVertexAttribI3i", + "glVertexAttribI3iEXT", + "glVertexAttribI3iv", + "glVertexAttribI3ivEXT", + "glVertexAttribI3ui", + "glVertexAttribI3uiEXT", + "glVertexAttribI3uiv", + "glVertexAttribI3uivEXT", + "glVertexAttribI4bv", + "glVertexAttribI4bvEXT", + "glVertexAttribI4i", + "glVertexAttribI4iEXT", + "glVertexAttribI4iv", + "glVertexAttribI4ivEXT", + "glVertexAttribI4sv", + "glVertexAttribI4svEXT", + "glVertexAttribI4ubv", + "glVertexAttribI4ubvEXT", + "glVertexAttribI4ui", + "glVertexAttribI4uiEXT", + "glVertexAttribI4uiv", + "glVertexAttribI4uivEXT", + "glVertexAttribI4usv", + "glVertexAttribI4usvEXT", + "glVertexAttribIFormat", + "glVertexAttribIFormatNV", + "glVertexAttribIPointer", + "glVertexAttribIPointerEXT", + "glVertexAttribL1d", + "glVertexAttribL1dEXT", + "glVertexAttribL1dv", + "glVertexAttribL1dvEXT", + "glVertexAttribL1i64NV", + "glVertexAttribL1i64vNV", + "glVertexAttribL1ui64ARB", + "glVertexAttribL1ui64NV", + "glVertexAttribL1ui64vARB", + "glVertexAttribL1ui64vNV", + "glVertexAttribL2d", + "glVertexAttribL2dEXT", + "glVertexAttribL2dv", + "glVertexAttribL2dvEXT", + "glVertexAttribL2i64NV", + "glVertexAttribL2i64vNV", + "glVertexAttribL2ui64NV", + "glVertexAttribL2ui64vNV", + "glVertexAttribL3d", + "glVertexAttribL3dEXT", + "glVertexAttribL3dv", + "glVertexAttribL3dvEXT", + "glVertexAttribL3i64NV", + "glVertexAttribL3i64vNV", + "glVertexAttribL3ui64NV", + "glVertexAttribL3ui64vNV", + "glVertexAttribL4d", + "glVertexAttribL4dEXT", + "glVertexAttribL4dv", + "glVertexAttribL4dvEXT", + "glVertexAttribL4i64NV", + "glVertexAttribL4i64vNV", + "glVertexAttribL4ui64NV", + "glVertexAttribL4ui64vNV", + "glVertexAttribLFormat", + "glVertexAttribLFormatNV", + "glVertexAttribLPointer", + "glVertexAttribLPointerEXT", + "glVertexAttribP1ui", + "glVertexAttribP1uiv", + "glVertexAttribP2ui", + "glVertexAttribP2uiv", + "glVertexAttribP3ui", + "glVertexAttribP3uiv", + "glVertexAttribP4ui", + "glVertexAttribP4uiv", + "glVertexAttribParameteriAMD", + "glVertexAttribPointer", + "glVertexAttribPointerARB", + "glVertexAttribPointerNV", + "glVertexAttribs1dvNV", + "glVertexAttribs1fvNV", + "glVertexAttribs1hvNV", + "glVertexAttribs1svNV", + "glVertexAttribs2dvNV", + "glVertexAttribs2fvNV", + "glVertexAttribs2hvNV", + "glVertexAttribs2svNV", + "glVertexAttribs3dvNV", + "glVertexAttribs3fvNV", + "glVertexAttribs3hvNV", + "glVertexAttribs3svNV", + "glVertexAttribs4dvNV", + "glVertexAttribs4fvNV", + "glVertexAttribs4hvNV", + "glVertexAttribs4svNV", + "glVertexAttribs4ubvNV", + "glVertexBindingDivisor", + "glVertexBlendARB", + "glVertexBlendEnvfATI", + "glVertexBlendEnviATI", + "glVertexFormatNV", + "glVertexP2ui", + "glVertexP2uiv", + "glVertexP3ui", + "glVertexP3uiv", + "glVertexP4ui", + "glVertexP4uiv", + "glVertexPointer", + "glVertexPointerEXT", + "glVertexPointerListIBM", + "glVertexPointervINTEL", + "glVertexStream1dATI", + "glVertexStream1dvATI", + "glVertexStream1fATI", + "glVertexStream1fvATI", + "glVertexStream1iATI", + "glVertexStream1ivATI", + "glVertexStream1sATI", + "glVertexStream1svATI", + "glVertexStream2dATI", + "glVertexStream2dvATI", + "glVertexStream2fATI", + "glVertexStream2fvATI", + "glVertexStream2iATI", + "glVertexStream2ivATI", + "glVertexStream2sATI", + "glVertexStream2svATI", + "glVertexStream3dATI", + "glVertexStream3dvATI", + "glVertexStream3fATI", + "glVertexStream3fvATI", + "glVertexStream3iATI", + "glVertexStream3ivATI", + "glVertexStream3sATI", + "glVertexStream3svATI", + "glVertexStream4dATI", + "glVertexStream4dvATI", + "glVertexStream4fATI", + "glVertexStream4fvATI", + "glVertexStream4iATI", + "glVertexStream4ivATI", + "glVertexStream4sATI", + "glVertexStream4svATI", + "glVertexWeightfEXT", + "glVertexWeightfvEXT", + "glVertexWeighthNV", + "glVertexWeighthvNV", + "glVertexWeightPointerEXT", + "glVideoCaptureNV", + "glVideoCaptureStreamParameterdvNV", + "glVideoCaptureStreamParameterfvNV", + "glVideoCaptureStreamParameterivNV", + "glViewport", + "glViewportArrayv", + "glViewportIndexedf", + "glViewportIndexedfv", + "glWaitSync", + "glWeightbvARB", + "glWeightdvARB", + "glWeightfvARB", + "glWeightivARB", + "glWeightPathsNV", + "glWeightPointerARB", + "glWeightsvARB", + "glWeightubvARB", + "glWeightuivARB", + "glWeightusvARB", + "glWindowPos2d", + "glWindowPos2dARB", + "glWindowPos2dMESA", + "glWindowPos2dv", + "glWindowPos2dvARB", + "glWindowPos2dvMESA", + "glWindowPos2f", + "glWindowPos2fARB", + "glWindowPos2fMESA", + "glWindowPos2fv", + "glWindowPos2fvARB", + "glWindowPos2fvMESA", + "glWindowPos2i", + "glWindowPos2iARB", + "glWindowPos2iMESA", + "glWindowPos2iv", + "glWindowPos2ivARB", + "glWindowPos2ivMESA", + "glWindowPos2s", + "glWindowPos2sARB", + "glWindowPos2sMESA", + "glWindowPos2sv", + "glWindowPos2svARB", + "glWindowPos2svMESA", + "glWindowPos3d", + "glWindowPos3dARB", + "glWindowPos3dMESA", + "glWindowPos3dv", + "glWindowPos3dvARB", + "glWindowPos3dvMESA", + "glWindowPos3f", + "glWindowPos3fARB", + "glWindowPos3fMESA", + "glWindowPos3fv", + "glWindowPos3fvARB", + "glWindowPos3fvMESA", + "glWindowPos3i", + "glWindowPos3iARB", + "glWindowPos3iMESA", + "glWindowPos3iv", + "glWindowPos3ivARB", + "glWindowPos3ivMESA", + "glWindowPos3s", + "glWindowPos3sARB", + "glWindowPos3sMESA", + "glWindowPos3sv", + "glWindowPos3svARB", + "glWindowPos3svMESA", + "glWindowPos4dMESA", + "glWindowPos4dvMESA", + "glWindowPos4fMESA", + "glWindowPos4fvMESA", + "glWindowPos4iMESA", + "glWindowPos4ivMESA", + "glWindowPos4sMESA", + "glWindowPos4svMESA", + "glWriteMaskEXT", + }; + EntryPoints = new IntPtr[EntryPointNames.Length]; + } public static partial class GL_3dfx { @@ -49,7 +2704,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTbufferMask3DFX((UInt32)mask); + InteropHelper.Call(EntryPoints[1908], (UInt32)mask); #if DEBUG } #endif @@ -65,7 +2720,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTbufferMask3DFX((UInt32)mask); + InteropHelper.Call(EntryPoints[1908], (UInt32)mask); #if DEBUG } #endif @@ -84,7 +2739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[30], (UInt32)monitor); #if DEBUG } #endif @@ -100,7 +2755,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[30], (UInt32)monitor); #if DEBUG } #endif @@ -115,7 +2770,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)mode); + InteropHelper.Call(EntryPoints[109], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)mode); #if DEBUG } #endif @@ -131,7 +2786,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)mode); + InteropHelper.Call(EntryPoints[109], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)mode); #if DEBUG } #endif @@ -146,7 +2801,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeAlpha); + InteropHelper.Call(EntryPoints[114], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeAlpha); #if DEBUG } #endif @@ -162,7 +2817,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeAlpha); + InteropHelper.Call(EntryPoints[114], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)modeAlpha); #if DEBUG } #endif @@ -177,7 +2832,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dst); + InteropHelper.Call(EntryPoints[118], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dst); #if DEBUG } #endif @@ -193,7 +2848,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dst); + InteropHelper.Call(EntryPoints[118], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dst); #if DEBUG } #endif @@ -208,7 +2863,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstAlpha); + InteropHelper.Call(EntryPoints[123], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstAlpha); #if DEBUG } #endif @@ -224,7 +2879,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateIndexedAMD((UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstAlpha); + InteropHelper.Call(EntryPoints[123], (UInt32)buf, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend)dstAlpha); #if DEBUG } #endif @@ -251,7 +2906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackAMD((DebugProcAmd)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[345], (DebugProcAmd)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -282,7 +2937,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackAMD((DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[345], (DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -318,7 +2973,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackAMD((DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[345], (DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -354,7 +3009,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackAMD((DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[345], (DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -390,7 +3045,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackAMD((DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[345], (DebugProcAmd)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -415,7 +3070,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageEnableAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -436,7 +3091,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageEnableAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -454,7 +3109,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageEnableAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -474,7 +3129,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageEnableAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -496,7 +3151,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageEnableAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -514,7 +3169,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageEnableAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[351], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -561,7 +3216,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (UInt32)id, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (UInt32)id, (Int32)length, (String)buf); #if DEBUG } #endif @@ -609,7 +3264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertAMD((OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (UInt32)id, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[353], (OpenTK.Graphics.OpenGL.AmdDebugOutput)category, (OpenTK.Graphics.OpenGL.AmdDebugOutput)severity, (UInt32)id, (Int32)length, (String)buf); #if DEBUG } #endif @@ -628,7 +3283,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* names_ptr = names) { - Delegates.glDeleteNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); } } #if DEBUG @@ -649,7 +3304,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* names_ptr = &names) { - Delegates.glDeleteNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); } } #if DEBUG @@ -667,7 +3322,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names); #if DEBUG } #endif @@ -687,7 +3342,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* names_ptr = names) { - Delegates.glDeleteNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); } } #if DEBUG @@ -709,7 +3364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* names_ptr = &names) { - Delegates.glDeleteNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); } } #if DEBUG @@ -727,7 +3382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names); #if DEBUG } #endif @@ -746,7 +3401,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* monitors_ptr = (UInt32*)&monitors; - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors_ptr); } #if DEBUG } @@ -767,7 +3422,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* monitors_ptr = (UInt32*)&monitors; - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors_ptr); } #if DEBUG } @@ -787,7 +3442,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* monitors_ptr = monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -808,7 +3463,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* monitors_ptr = &monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -826,7 +3481,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -846,7 +3501,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* monitors_ptr = monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -868,7 +3523,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* monitors_ptr = &monitors) { - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -886,7 +3541,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[373], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -901,7 +3556,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[484], (UInt32)monitor); #if DEBUG } #endif @@ -917,7 +3572,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndPerfMonitorAMD((UInt32)monitor); + InteropHelper.Call(EntryPoints[484], (UInt32)monitor); #if DEBUG } #endif @@ -936,7 +3591,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* names_ptr = names) { - Delegates.glGenNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[605], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); } } #if DEBUG @@ -957,7 +3612,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* names_ptr = &names) { - Delegates.glGenNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[605], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); names = *names_ptr; } } @@ -976,7 +3631,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names); + InteropHelper.Call(EntryPoints[605], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names); #if DEBUG } #endif @@ -996,7 +3651,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* names_ptr = names) { - Delegates.glGenNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[605], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); } } #if DEBUG @@ -1018,7 +3673,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* names_ptr = &names) { - Delegates.glGenNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names_ptr); + InteropHelper.Call(EntryPoints[605], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names_ptr); names = *names_ptr; } } @@ -1037,7 +3692,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenNamesAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (UInt32*)names); + InteropHelper.Call(EntryPoints[605], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)num, (IntPtr)names); #if DEBUG } #endif @@ -1057,7 +3712,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* monitors_ptr = &retval; - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors_ptr); return retval; } #if DEBUG @@ -1078,7 +3733,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* monitors_ptr = monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -1099,7 +3754,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* monitors_ptr = &monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors_ptr); monitors = *monitors_ptr; } } @@ -1118,7 +3773,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -1138,7 +3793,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* monitors_ptr = monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors_ptr); } } #if DEBUG @@ -1160,7 +3815,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* monitors_ptr = &monitors) { - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors_ptr); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors_ptr); monitors = *monitors_ptr; } } @@ -1179,7 +3834,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenPerfMonitorsAMD((Int32)n, (UInt32*)monitors); + InteropHelper.Call(EntryPoints[608], (Int32)n, (IntPtr)monitors); #if DEBUG } #endif @@ -1243,7 +3898,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* ids_ptr = ids) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogAMD((UInt32)count, (Int32)bufsize, (OpenTK.Graphics.OpenGL.AmdDebugOutput*)categories_ptr, (UInt32*)severities_ptr, (UInt32*)ids_ptr, (Int32*)lengths_ptr, (StringBuilder)message); + return InteropHelper.CallReturn(EntryPoints[685], (UInt32)count, (Int32)bufsize, (IntPtr)categories_ptr, (IntPtr)severities_ptr, (IntPtr)ids_ptr, (IntPtr)lengths_ptr, (StringBuilder)message); } } #if DEBUG @@ -1309,7 +3964,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* ids_ptr = &ids) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogAMD((UInt32)count, (Int32)bufsize, (OpenTK.Graphics.OpenGL.AmdDebugOutput*)categories_ptr, (UInt32*)severities_ptr, (UInt32*)ids_ptr, (Int32*)lengths_ptr, (StringBuilder)message); + Int32 retval = InteropHelper.CallReturn(EntryPoints[685], (UInt32)count, (Int32)bufsize, (IntPtr)categories_ptr, (IntPtr)severities_ptr, (IntPtr)ids_ptr, (IntPtr)lengths_ptr, (StringBuilder)message); categories = *categories_ptr; severities = *severities_ptr; ids = *ids_ptr; @@ -1374,7 +4029,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogAMD((UInt32)count, (Int32)bufsize, (OpenTK.Graphics.OpenGL.AmdDebugOutput*)categories, (UInt32*)severities, (UInt32*)ids, (Int32*)lengths, (StringBuilder)message); + return InteropHelper.CallReturn(EntryPoints[685], (UInt32)count, (Int32)bufsize, (IntPtr)categories, (IntPtr)severities, (IntPtr)ids, (IntPtr)lengths, (StringBuilder)message); #if DEBUG } #endif @@ -1439,7 +4094,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* ids_ptr = ids) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogAMD((UInt32)count, (Int32)bufsize, (OpenTK.Graphics.OpenGL.AmdDebugOutput*)categories_ptr, (UInt32*)severities_ptr, (UInt32*)ids_ptr, (Int32*)lengths_ptr, (StringBuilder)message); + return InteropHelper.CallReturn(EntryPoints[685], (UInt32)count, (Int32)bufsize, (IntPtr)categories_ptr, (IntPtr)severities_ptr, (IntPtr)ids_ptr, (IntPtr)lengths_ptr, (StringBuilder)message); } } #if DEBUG @@ -1506,7 +4161,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* ids_ptr = &ids) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogAMD((UInt32)count, (Int32)bufsize, (OpenTK.Graphics.OpenGL.AmdDebugOutput*)categories_ptr, (UInt32*)severities_ptr, (UInt32*)ids_ptr, (Int32*)lengths_ptr, (StringBuilder)message); + Int32 retval = InteropHelper.CallReturn(EntryPoints[685], (UInt32)count, (Int32)bufsize, (IntPtr)categories_ptr, (IntPtr)severities_ptr, (IntPtr)ids_ptr, (IntPtr)lengths_ptr, (StringBuilder)message); categories = *categories_ptr; severities = *severities_ptr; ids = *ids_ptr; @@ -1571,7 +4226,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogAMD((UInt32)count, (Int32)bufsize, (OpenTK.Graphics.OpenGL.AmdDebugOutput*)categories, (UInt32*)severities, (UInt32*)ids, (Int32*)lengths, (StringBuilder)message); + return InteropHelper.CallReturn(EntryPoints[685], (UInt32)count, (Int32)bufsize, (IntPtr)categories, (IntPtr)severities, (IntPtr)ids, (IntPtr)lengths, (StringBuilder)message); #if DEBUG } #endif @@ -1591,7 +4246,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* data_ptr = data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[841], (UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); bytesWritten = *bytesWritten_ptr; } } @@ -1614,7 +4269,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* data_ptr = &data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[841], (UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); data = *data_ptr; bytesWritten = *bytesWritten_ptr; } @@ -1634,7 +4289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (UInt32*)data, (Int32*)bytesWritten); + InteropHelper.Call(EntryPoints[841], (UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (IntPtr)data, (IntPtr)bytesWritten); #if DEBUG } #endif @@ -1655,7 +4310,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* data_ptr = data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[841], (UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); bytesWritten = *bytesWritten_ptr; } } @@ -1679,7 +4334,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* data_ptr = &data) fixed (Int32* bytesWritten_ptr = &bytesWritten) { - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (UInt32*)data_ptr, (Int32*)bytesWritten_ptr); + InteropHelper.Call(EntryPoints[841], (UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (IntPtr)data_ptr, (IntPtr)bytesWritten_ptr); data = *data_ptr; bytesWritten = *bytesWritten_ptr; } @@ -1699,7 +4354,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterDataAMD((UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (UInt32*)data, (Int32*)bytesWritten); + InteropHelper.Call(EntryPoints[841], (UInt32)monitor, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (Int32)dataSize, (IntPtr)data, (IntPtr)bytesWritten); #if DEBUG } #endif @@ -1714,7 +4369,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data); #if DEBUG } #endif @@ -1733,7 +4388,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1757,7 +4412,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1781,7 +4436,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1805,7 +4460,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -1827,7 +4482,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data); #if DEBUG } #endif @@ -1847,7 +4502,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1872,7 +4527,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1897,7 +4552,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -1922,7 +4577,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPerfMonitorCounterInfoAMD((UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[842], (UInt32)group, (UInt32)counter, (OpenTK.Graphics.OpenGL.AmdPerformanceMonitor)pname, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -1949,7 +4604,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (Int32* counters_ptr = counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[843], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; } @@ -1974,7 +4629,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (Int32* counters_ptr = &counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[843], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; counters = *counters_ptr; @@ -1995,7 +4650,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters, (Int32*)maxActiveCounters, (Int32)counterSize, (UInt32*)counters); + InteropHelper.Call(EntryPoints[843], (UInt32)group, (IntPtr)numCounters, (IntPtr)maxActiveCounters, (Int32)counterSize, (IntPtr)counters); #if DEBUG } #endif @@ -2017,7 +4672,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (UInt32* counters_ptr = counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[843], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; } @@ -2043,7 +4698,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* maxActiveCounters_ptr = &maxActiveCounters) fixed (UInt32* counters_ptr = &counters) { - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters_ptr, (Int32*)maxActiveCounters_ptr, (Int32)counterSize, (UInt32*)counters_ptr); + InteropHelper.Call(EntryPoints[843], (UInt32)group, (IntPtr)numCounters_ptr, (IntPtr)maxActiveCounters_ptr, (Int32)counterSize, (IntPtr)counters_ptr); numCounters = *numCounters_ptr; maxActiveCounters = *maxActiveCounters_ptr; counters = *counters_ptr; @@ -2064,7 +4719,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCountersAMD((UInt32)group, (Int32*)numCounters, (Int32*)maxActiveCounters, (Int32)counterSize, (UInt32*)counters); + InteropHelper.Call(EntryPoints[843], (UInt32)group, (IntPtr)numCounters, (IntPtr)maxActiveCounters, (Int32)counterSize, (IntPtr)counters); #if DEBUG } #endif @@ -2083,7 +4738,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[844], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)counterString); length = *length_ptr; } } @@ -2102,7 +4757,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[844], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length, (StringBuilder)counterString); #if DEBUG } #endif @@ -2122,7 +4777,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[844], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)counterString); length = *length_ptr; } } @@ -2141,7 +4796,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorCounterStringAMD((UInt32)group, (UInt32)counter, (Int32)bufSize, (Int32*)length, (StringBuilder)counterString); + InteropHelper.Call(EntryPoints[844], (UInt32)group, (UInt32)counter, (Int32)bufSize, (IntPtr)length, (StringBuilder)counterString); #if DEBUG } #endif @@ -2161,7 +4816,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* numGroups_ptr = &numGroups) fixed (Int32* groups_ptr = groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[845], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; } } @@ -2184,7 +4839,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* numGroups_ptr = &numGroups) fixed (Int32* groups_ptr = &groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[845], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; groups = *groups_ptr; } @@ -2209,7 +4864,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* numGroups_ptr = &numGroups) fixed (UInt32* groups_ptr = groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[845], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; } } @@ -2233,7 +4888,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* numGroups_ptr = &numGroups) fixed (UInt32* groups_ptr = &groups) { - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups_ptr, (Int32)groupsSize, (UInt32*)groups_ptr); + InteropHelper.Call(EntryPoints[845], (IntPtr)numGroups_ptr, (Int32)groupsSize, (IntPtr)groups_ptr); numGroups = *numGroups_ptr; groups = *groups_ptr; } @@ -2253,7 +4908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups, (Int32)groupsSize, (UInt32*)groups); + InteropHelper.Call(EntryPoints[845], (IntPtr)numGroups, (Int32)groupsSize, (IntPtr)groups); #if DEBUG } #endif @@ -2269,7 +4924,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupsAMD((Int32*)numGroups, (Int32)groupsSize, (UInt32*)groups); + InteropHelper.Call(EntryPoints[845], (IntPtr)numGroups, (Int32)groupsSize, (IntPtr)groups); #if DEBUG } #endif @@ -2288,7 +4943,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[846], (UInt32)group, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)groupString); length = *length_ptr; } } @@ -2307,7 +4962,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[846], (UInt32)group, (Int32)bufSize, (IntPtr)length, (StringBuilder)groupString); #if DEBUG } #endif @@ -2327,7 +4982,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[846], (UInt32)group, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)groupString); length = *length_ptr; } } @@ -2346,7 +5001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPerfMonitorGroupStringAMD((UInt32)group, (Int32)bufSize, (Int32*)length, (StringBuilder)groupString); + InteropHelper.Call(EntryPoints[846], (UInt32)group, (Int32)bufSize, (IntPtr)length, (StringBuilder)groupString); #if DEBUG } #endif @@ -2361,7 +5016,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsNameAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)name); + return InteropHelper.CallReturn(EntryPoints[1080], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)name); #if DEBUG } #endif @@ -2377,7 +5032,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsNameAMD((OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)name); + return InteropHelper.CallReturn(EntryPoints[1080], (OpenTK.Graphics.OpenGL.AmdNameGenDelete)identifier, (UInt32)name); #if DEBUG } #endif @@ -2414,7 +5069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect, (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1225], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect, (Int32)primcount, (Int32)stride); #if DEBUG } #endif @@ -2455,7 +5110,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1225], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); } finally { @@ -2501,7 +5156,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1225], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); } finally { @@ -2547,7 +5202,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1225], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); } finally { @@ -2593,7 +5248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1225], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); indirect = (T1)indirect_ptr.Target; } finally @@ -2641,7 +5296,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect, (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1233], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect, (Int32)primcount, (Int32)stride); #if DEBUG } #endif @@ -2687,7 +5342,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1233], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); } finally { @@ -2738,7 +5393,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1233], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); } finally { @@ -2789,7 +5444,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1233], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); } finally { @@ -2840,7 +5495,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectAMD((OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1233], (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.AmdMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)stride); indirect = (T2)indirect_ptr.Target; } finally @@ -2865,7 +5520,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* counterList_ptr = counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[1855], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); } } #if DEBUG @@ -2886,7 +5541,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* counterList_ptr = &counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[1855], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); counterList = *counterList_ptr; } } @@ -2905,7 +5560,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList); + InteropHelper.Call(EntryPoints[1855], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList); #if DEBUG } #endif @@ -2925,7 +5580,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* counterList_ptr = counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[1855], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); } } #if DEBUG @@ -2947,7 +5602,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* counterList_ptr = &counterList) { - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList_ptr); + InteropHelper.Call(EntryPoints[1855], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList_ptr); counterList = *counterList_ptr; } } @@ -2966,7 +5621,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectPerfMonitorCountersAMD((UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (UInt32*)counterList); + InteropHelper.Call(EntryPoints[1855], (UInt32)monitor, (bool)enable, (UInt32)group, (Int32)numCounters, (IntPtr)counterList); #if DEBUG } #endif @@ -2985,7 +5640,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = val) { - Delegates.glSetMultisamplefvAMD((OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[1863], (OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -3006,7 +5661,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = &val) { - Delegates.glSetMultisamplefvAMD((OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[1863], (OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -3024,7 +5679,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetMultisamplefvAMD((OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[1863], (OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -3044,7 +5699,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = val) { - Delegates.glSetMultisamplefvAMD((OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[1863], (OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -3066,7 +5721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = &val) { - Delegates.glSetMultisamplefvAMD((OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[1863], (OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -3084,7 +5739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetMultisamplefvAMD((OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[1863], (OpenTK.Graphics.OpenGL.AmdSamplePositions)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -3099,7 +5754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpValueAMD((OpenTK.Graphics.OpenGL.AmdStencilOperationExtended)face, (UInt32)value); + InteropHelper.Call(EntryPoints[1889], (OpenTK.Graphics.OpenGL.AmdStencilOperationExtended)face, (UInt32)value); #if DEBUG } #endif @@ -3115,7 +5770,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpValueAMD((OpenTK.Graphics.OpenGL.AmdStencilOperationExtended)face, (UInt32)value); + InteropHelper.Call(EntryPoints[1889], (OpenTK.Graphics.OpenGL.AmdStencilOperationExtended)face, (UInt32)value); #if DEBUG } #endif @@ -3130,7 +5785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTessellationFactorAMD((Single)factor); + InteropHelper.Call(EntryPoints[1909], (Single)factor); #if DEBUG } #endif @@ -3146,7 +5801,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTessellationModeAMD((OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator)mode); + InteropHelper.Call(EntryPoints[1910], (OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator)mode); #if DEBUG } #endif @@ -3161,7 +5816,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTessellationModeAMD((OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator)mode); + InteropHelper.Call(EntryPoints[1910], (OpenTK.Graphics.OpenGL.AmdVertexShaderTessellator)mode); #if DEBUG } #endif @@ -3176,7 +5831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorageSparseAMD((OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); + InteropHelper.Call(EntryPoints[2044], (OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); #if DEBUG } #endif @@ -3192,7 +5847,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorageSparseAMD((OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); + InteropHelper.Call(EntryPoints[2044], (OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); #if DEBUG } #endif @@ -3207,7 +5862,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorageSparseAMD((UInt32)texture, (OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); + InteropHelper.Call(EntryPoints[2080], (UInt32)texture, (OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); #if DEBUG } #endif @@ -3223,7 +5878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorageSparseAMD((UInt32)texture, (OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); + InteropHelper.Call(EntryPoints[2080], (UInt32)texture, (OpenTK.Graphics.OpenGL.AmdSparseTexture)target, (OpenTK.Graphics.OpenGL.AmdSparseTexture)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (Int32)layers, (UInt32)flags); #if DEBUG } #endif @@ -3238,7 +5893,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribParameteriAMD((UInt32)index, (OpenTK.Graphics.OpenGL.AmdInterleavedElements)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2499], (UInt32)index, (OpenTK.Graphics.OpenGL.AmdInterleavedElements)pname, (Int32)param); #if DEBUG } #endif @@ -3254,7 +5909,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribParameteriAMD((UInt32)index, (OpenTK.Graphics.OpenGL.AmdInterleavedElements)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2499], (UInt32)index, (OpenTK.Graphics.OpenGL.AmdInterleavedElements)pname, (Int32)param); #if DEBUG } #endif @@ -3280,7 +5935,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayAPPLE((UInt32)array); + InteropHelper.Call(EntryPoints[82], (UInt32)array); #if DEBUG } #endif @@ -3303,7 +5958,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArrayAPPLE((UInt32)array); + InteropHelper.Call(EntryPoints[82], (UInt32)array); #if DEBUG } #endif @@ -3318,7 +5973,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferParameteriAPPLE((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterApple)pname, (Int32)param); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterApple)pname, (Int32)param); #if DEBUG } #endif @@ -3337,7 +5992,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -3358,7 +6013,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -3378,7 +6033,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = fences) { - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -3399,7 +6054,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = &fences) { - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -3417,7 +6072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -3437,7 +6092,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = fences) { - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -3459,7 +6114,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = &fences) { - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -3477,7 +6132,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesAPPLE((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[362], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -3496,7 +6151,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -3517,7 +6172,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -3549,7 +6204,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -3582,7 +6237,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -3612,7 +6267,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -3644,7 +6299,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -3678,7 +6333,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -3708,7 +6363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArraysAPPLE((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[391], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -3723,7 +6378,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribAPPLE((UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); + InteropHelper.Call(EntryPoints[416], (UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); #if DEBUG } #endif @@ -3739,7 +6394,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribAPPLE((UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); + InteropHelper.Call(EntryPoints[416], (UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); #if DEBUG } #endif @@ -3755,7 +6410,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[433], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -3770,7 +6425,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[433], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -3786,7 +6441,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[446], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -3803,7 +6458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[446], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -3818,7 +6473,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[446], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -3834,7 +6489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[446], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -3849,7 +6504,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glElementPointerAPPLE((OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[463], (OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer); #if DEBUG } #endif @@ -3868,7 +6523,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerAPPLE((OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[463], (OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -3892,7 +6547,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerAPPLE((OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[463], (OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -3916,7 +6571,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerAPPLE((OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[463], (OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -3940,7 +6595,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerAPPLE((OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[463], (OpenTK.Graphics.OpenGL.AppleElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -3961,7 +6616,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribAPPLE((UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); #if DEBUG } #endif @@ -3977,7 +6632,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribAPPLE((UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); #if DEBUG } #endif @@ -3992,7 +6647,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceAPPLE((UInt32)fence); + InteropHelper.Call(EntryPoints[518], (UInt32)fence); #if DEBUG } #endif @@ -4008,7 +6663,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceAPPLE((UInt32)fence); + InteropHelper.Call(EntryPoints[518], (UInt32)fence); #if DEBUG } #endif @@ -4023,7 +6678,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishObjectAPPLE((OpenTK.Graphics.OpenGL.AppleFence)@object, (Int32)name); + InteropHelper.Call(EntryPoints[520], (OpenTK.Graphics.OpenGL.AppleFence)@object, (Int32)name); #if DEBUG } #endif @@ -4055,7 +6710,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRangeAPPLE((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[524], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -4070,7 +6725,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[529], (Int32)length, (IntPtr)pointer); #if DEBUG } #endif @@ -4089,7 +6744,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFlushVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[529], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -4113,7 +6768,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFlushVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[529], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -4137,7 +6792,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFlushVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[529], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -4161,7 +6816,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFlushVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[529], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -4187,7 +6842,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* fences_ptr = &retval; - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences_ptr); return retval; } #if DEBUG @@ -4208,7 +6863,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = fences) { - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -4229,7 +6884,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = &fences) { - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -4248,7 +6903,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -4268,7 +6923,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = fences) { - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -4290,7 +6945,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = &fences) { - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -4309,7 +6964,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesAPPLE((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[599], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -4329,7 +6984,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -4362,7 +7017,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -4395,7 +7050,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -4426,7 +7081,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -4458,7 +7113,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -4492,7 +7147,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -4523,7 +7178,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArraysAPPLE((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[624], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -4542,7 +7197,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectParameterivAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[822], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -4563,7 +7218,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectParameterivAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[822], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -4582,7 +7237,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectParameterivAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[822], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (IntPtr)@params); #if DEBUG } #endif @@ -4602,7 +7257,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectParameterivAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[822], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -4624,7 +7279,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectParameterivAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[822], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -4643,7 +7298,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectParameterivAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[822], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)pname, (IntPtr)@params); #if DEBUG } #endif @@ -4658,7 +7313,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterPointervAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[942], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params); #if DEBUG } #endif @@ -4677,7 +7332,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetTexParameterPointervAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[942], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -4701,7 +7356,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetTexParameterPointervAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[942], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -4725,7 +7380,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetTexParameterPointervAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[942], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -4749,7 +7404,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetTexParameterPointervAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[942], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (OpenTK.Graphics.OpenGL.AppleTextureRange)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -4770,7 +7425,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceAPPLE((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1073], (UInt32)fence); #if DEBUG } #endif @@ -4786,7 +7441,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceAPPLE((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1073], (UInt32)fence); #if DEBUG } #endif @@ -4808,7 +7463,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayAPPLE((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[1108], (UInt32)array); #if DEBUG } #endif @@ -4831,7 +7486,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArrayAPPLE((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[1108], (UInt32)array); #if DEBUG } #endif @@ -4846,7 +7501,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexAttribEnabledAPPLE((UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); + return InteropHelper.CallReturn(EntryPoints[1109], (UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); #if DEBUG } #endif @@ -4862,7 +7517,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexAttribEnabledAPPLE((UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); + return InteropHelper.CallReturn(EntryPoints[1109], (UInt32)index, (OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators)pname); #if DEBUG } #endif @@ -4881,7 +7536,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glMapVertexAttrib1dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1182], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -4902,7 +7557,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glMapVertexAttrib1dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1182], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -4920,7 +7575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib1dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points); + InteropHelper.Call(EntryPoints[1182], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points); #if DEBUG } #endif @@ -4940,7 +7595,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glMapVertexAttrib1dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1182], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -4962,7 +7617,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glMapVertexAttrib1dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1182], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -4980,7 +7635,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib1dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points); + InteropHelper.Call(EntryPoints[1182], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points); #if DEBUG } #endif @@ -4999,7 +7654,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glMapVertexAttrib1fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1183], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -5020,7 +7675,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glMapVertexAttrib1fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1183], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -5038,7 +7693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib1fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points); + InteropHelper.Call(EntryPoints[1183], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points); #if DEBUG } #endif @@ -5058,7 +7713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glMapVertexAttrib1fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1183], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -5080,7 +7735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glMapVertexAttrib1fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1183], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -5098,7 +7753,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib1fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points); + InteropHelper.Call(EntryPoints[1183], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points); #if DEBUG } #endif @@ -5117,7 +7772,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glMapVertexAttrib2dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1184], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5138,7 +7793,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glMapVertexAttrib2dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1184], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5156,7 +7811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib2dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points); + InteropHelper.Call(EntryPoints[1184], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points); #if DEBUG } #endif @@ -5176,7 +7831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glMapVertexAttrib2dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1184], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5198,7 +7853,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glMapVertexAttrib2dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1184], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5216,7 +7871,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib2dAPPLE((UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points); + InteropHelper.Call(EntryPoints[1184], (UInt32)index, (UInt32)size, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points); #if DEBUG } #endif @@ -5235,7 +7890,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glMapVertexAttrib2fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1185], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5256,7 +7911,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glMapVertexAttrib2fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1185], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5274,7 +7929,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib2fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points); + InteropHelper.Call(EntryPoints[1185], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points); #if DEBUG } #endif @@ -5294,7 +7949,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glMapVertexAttrib2fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1185], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5316,7 +7971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glMapVertexAttrib2fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1185], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -5334,7 +7989,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapVertexAttrib2fAPPLE((UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points); + InteropHelper.Call(EntryPoints[1185], (UInt32)index, (UInt32)size, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points); #if DEBUG } #endif @@ -5355,7 +8010,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1228], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5378,7 +8033,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1228], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5397,7 +8052,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1228], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -5417,7 +8072,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1228], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5439,7 +8094,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1228], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5457,7 +8112,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1228], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -5478,7 +8133,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5501,7 +8156,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5520,7 +8175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -5542,7 +8197,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5566,7 +8221,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5585,7 +8240,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -5605,7 +8260,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5627,7 +8282,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5645,7 +8300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -5666,7 +8321,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5689,7 +8344,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -5707,7 +8362,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawRangeElementArrayAPPLE((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1236], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -5722,7 +8377,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glObjectPurgeableAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); + return InteropHelper.CallReturn(EntryPoints[1435], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); #if DEBUG } #endif @@ -5738,7 +8393,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glObjectPurgeableAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); + return InteropHelper.CallReturn(EntryPoints[1435], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); #if DEBUG } #endif @@ -5753,7 +8408,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glObjectUnpurgeableAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); + return InteropHelper.CallReturn(EntryPoints[1436], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); #if DEBUG } #endif @@ -5769,7 +8424,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glObjectUnpurgeableAPPLE((OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); + return InteropHelper.CallReturn(EntryPoints[1436], (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)objectType, (UInt32)name, (OpenTK.Graphics.OpenGL.AppleObjectPurgeable)option); #if DEBUG } #endif @@ -5784,7 +8439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceAPPLE((UInt32)fence); + InteropHelper.Call(EntryPoints[1858], (UInt32)fence); #if DEBUG } #endif @@ -5800,7 +8455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceAPPLE((UInt32)fence); + InteropHelper.Call(EntryPoints[1858], (UInt32)fence); #if DEBUG } #endif @@ -5815,7 +8470,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceAPPLE((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1911], (UInt32)fence); #if DEBUG } #endif @@ -5831,7 +8486,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceAPPLE((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1911], (UInt32)fence); #if DEBUG } #endif @@ -5846,7 +8501,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestObjectAPPLE((OpenTK.Graphics.OpenGL.AppleFence)@object, (UInt32)name); + return InteropHelper.CallReturn(EntryPoints[1913], (OpenTK.Graphics.OpenGL.AppleFence)@object, (UInt32)name); #if DEBUG } #endif @@ -5862,7 +8517,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestObjectAPPLE((OpenTK.Graphics.OpenGL.AppleFence)@object, (UInt32)name); + return InteropHelper.CallReturn(EntryPoints[1913], (OpenTK.Graphics.OpenGL.AppleFence)@object, (UInt32)name); #if DEBUG } #endif @@ -5877,7 +8532,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureRangeAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2073], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer); #if DEBUG } #endif @@ -5896,7 +8551,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTextureRangeAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2073], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5920,7 +8575,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTextureRangeAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2073], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5944,7 +8599,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTextureRangeAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2073], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -5968,7 +8623,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTextureRangeAPPLE((OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2073], (OpenTK.Graphics.OpenGL.AppleTextureRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -5989,7 +8644,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayParameteriAPPLE((OpenTK.Graphics.OpenGL.AppleVertexArrayRange)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2282], (OpenTK.Graphics.OpenGL.AppleVertexArrayRange)pname, (Int32)param); #if DEBUG } #endif @@ -6004,7 +8659,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2283], (Int32)length, (IntPtr)pointer); #if DEBUG } #endif @@ -6023,7 +8678,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2283], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -6047,7 +8702,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2283], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -6071,7 +8726,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2283], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -6095,7 +8750,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeAPPLE((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2283], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -6127,7 +8782,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTextureARB((OpenTK.Graphics.OpenGL.TextureUnit)texture); + InteropHelper.Call(EntryPoints[7], (OpenTK.Graphics.OpenGL.TextureUnit)texture); #if DEBUG } #endif @@ -6142,7 +8797,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); + InteropHelper.Call(EntryPoints[22], (UInt32)containerObj, (UInt32)obj); #if DEBUG } #endif @@ -6158,7 +8813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachObjectARB((UInt32)containerObj, (UInt32)obj); + InteropHelper.Call(EntryPoints[22], (UInt32)containerObj, (UInt32)obj); #if DEBUG } #endif @@ -6185,7 +8840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryARB((OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (UInt32)id); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (UInt32)id); #if DEBUG } #endif @@ -6213,7 +8868,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryARB((OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (UInt32)id); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (UInt32)id); #if DEBUG } #endif @@ -6245,7 +8900,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[40], (UInt32)programObj, (UInt32)index, (String)name); #if DEBUG } #endif @@ -6278,7 +8933,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocationARB((UInt32)programObj, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[40], (UInt32)programObj, (UInt32)index, (String)name); #if DEBUG } #endif @@ -6305,7 +8960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (UInt32)buffer); #if DEBUG } #endif @@ -6333,7 +8988,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (UInt32)buffer); #if DEBUG } #endif @@ -6348,7 +9003,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)program); + InteropHelper.Call(EntryPoints[66], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)program); #if DEBUG } #endif @@ -6364,7 +9019,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)program); + InteropHelper.Call(EntryPoints[66], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)program); #if DEBUG } #endif @@ -6391,7 +9046,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationiARB((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[108], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -6419,7 +9074,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationiARB((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[108], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -6451,7 +9106,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeAlpha); + InteropHelper.Call(EntryPoints[113], (UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeAlpha); #if DEBUG } #endif @@ -6484,7 +9139,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeAlpha); + InteropHelper.Call(EntryPoints[113], (UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)modeAlpha); #if DEBUG } #endif @@ -6516,7 +9171,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunciARB((UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dst); + InteropHelper.Call(EntryPoints[117], (UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dst); #if DEBUG } #endif @@ -6549,7 +9204,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunciARB((UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dst); + InteropHelper.Call(EntryPoints[117], (UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)src, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dst); #if DEBUG } #endif @@ -6591,7 +9246,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstAlpha); + InteropHelper.Call(EntryPoints[122], (UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstAlpha); #if DEBUG } #endif @@ -6634,7 +9289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstAlpha); + InteropHelper.Call(EntryPoints[122], (UInt32)buf, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstRGB, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)srcAlpha, (OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend)dstAlpha); #if DEBUG } #endif @@ -6671,7 +9326,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + InteropHelper.Call(EntryPoints[130], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); #if DEBUG } #endif @@ -6712,7 +9367,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + InteropHelper.Call(EntryPoints[130], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); } finally { @@ -6758,7 +9413,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + InteropHelper.Call(EntryPoints[130], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); } finally { @@ -6804,7 +9459,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + InteropHelper.Call(EntryPoints[130], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); } finally { @@ -6850,7 +9505,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); + InteropHelper.Call(EntryPoints[130], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageArb)usage); data = (T2)data_ptr.Target; } finally @@ -6893,7 +9548,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -6934,7 +9589,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -6980,7 +9635,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7026,7 +9681,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7072,7 +9727,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[134], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -7105,7 +9760,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClampColorARB((OpenTK.Graphics.OpenGL.ArbColorBufferFloat)target, (OpenTK.Graphics.OpenGL.ArbColorBufferFloat)clamp); + InteropHelper.Call(EntryPoints[141], (OpenTK.Graphics.OpenGL.ArbColorBufferFloat)target, (OpenTK.Graphics.OpenGL.ArbColorBufferFloat)clamp); #if DEBUG } #endif @@ -7127,7 +9782,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientActiveTextureARB((OpenTK.Graphics.OpenGL.TextureUnit)texture); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.OpenGL.TextureUnit)texture); #if DEBUG } #endif @@ -7149,7 +9804,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShaderARB((UInt32)shaderObj); + InteropHelper.Call(EntryPoints[255], (UInt32)shaderObj); #if DEBUG } #endif @@ -7172,7 +9827,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShaderARB((UInt32)shaderObj); + InteropHelper.Call(EntryPoints[255], (UInt32)shaderObj); #if DEBUG } #endif @@ -7191,7 +9846,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[256], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -7212,7 +9867,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[256], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -7230,7 +9885,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length); + InteropHelper.Call(EntryPoints[256], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length); #if DEBUG } #endif @@ -7250,7 +9905,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[256], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -7272,7 +9927,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[256], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -7290,7 +9945,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length); + InteropHelper.Call(EntryPoints[256], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length); #if DEBUG } #endif @@ -7342,7 +9997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -7398,7 +10053,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7459,7 +10114,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7520,7 +10175,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7581,7 +10236,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[264], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -7644,7 +10299,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -7705,7 +10360,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7771,7 +10426,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7837,7 +10492,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -7903,7 +10558,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[266], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -7971,7 +10626,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -8037,7 +10692,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8108,7 +10763,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8179,7 +10834,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8250,7 +10905,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[268], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -8308,7 +10963,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[270], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -8364,7 +11019,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[270], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8425,7 +11080,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[270], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8486,7 +11141,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[270], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8547,7 +11202,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[270], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -8615,7 +11270,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -8681,7 +11336,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8752,7 +11407,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8823,7 +11478,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8894,7 +11549,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[272], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -8967,7 +11622,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -9038,7 +11693,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9114,7 +11769,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9190,7 +11845,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9266,7 +11921,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3DARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -9287,7 +11942,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateProgramObjectARB(); + return InteropHelper.CallReturn(EntryPoints[333]); #if DEBUG } #endif @@ -9302,7 +11957,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderObjectARB((OpenTK.Graphics.OpenGL.ArbShaderObjects)shaderType); + return InteropHelper.CallReturn(EntryPoints[335], (OpenTK.Graphics.OpenGL.ArbShaderObjects)shaderType); #if DEBUG } #endif @@ -9322,7 +11977,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* context_ptr = context) fixed (IntPtr* @event_ptr = @event) { - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[339], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); } } #if DEBUG @@ -9345,7 +12000,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* context_ptr = context) fixed (IntPtr* @event_ptr = @event) { - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[339], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); } } #if DEBUG @@ -9367,7 +12022,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* context_ptr = &context) fixed (IntPtr* @event_ptr = &@event) { - IntPtr retval = Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[339], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); context = *context_ptr; @event = *@event_ptr; return retval; @@ -9393,7 +12048,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* context_ptr = &context) fixed (IntPtr* @event_ptr = &@event) { - IntPtr retval = Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[339], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); context = *context_ptr; @event = *@event_ptr; return retval; @@ -9414,7 +12069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context, (IntPtr*)@event, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[339], (IntPtr)context, (IntPtr)@event, (UInt32)flags); #if DEBUG } #endif @@ -9430,7 +12085,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context, (IntPtr*)@event, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[339], (IntPtr)context, (IntPtr)@event, (UInt32)flags); #if DEBUG } #endif @@ -9445,7 +12100,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCurrentPaletteMatrixARB((Int32)index); + InteropHelper.Call(EntryPoints[343], (Int32)index); #if DEBUG } #endif @@ -9472,7 +12127,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[346], (DebugProcArb)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -9503,7 +12158,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[346], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -9539,7 +12194,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[346], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -9575,7 +12230,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[346], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -9611,7 +12266,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[346], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -9668,7 +12323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -9721,7 +12376,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -9771,7 +12426,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -9823,7 +12478,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -9877,7 +12532,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -9927,7 +12582,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[349], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -9974,7 +12629,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (UInt32)id, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[354], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (UInt32)id, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -10022,7 +12677,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertARB((OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (UInt32)id, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[354], (OpenTK.Graphics.OpenGL.ArbDebugOutput)source, (OpenTK.Graphics.OpenGL.ArbDebugOutput)type, (UInt32)id, (OpenTK.Graphics.OpenGL.ArbDebugOutput)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -10041,7 +12696,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -10062,7 +12717,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -10094,7 +12749,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = buffers) { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -10127,7 +12782,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -10157,7 +12812,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -10189,7 +12844,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -10223,7 +12878,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -10253,7 +12908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffersARB((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[361], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -10268,7 +12923,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteNamedStringARB((Int32)namelen, (String)name); + InteropHelper.Call(EntryPoints[368], (Int32)namelen, (String)name); #if DEBUG } #endif @@ -10283,7 +12938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteObjectARB((UInt32)obj); + InteropHelper.Call(EntryPoints[370], (UInt32)obj); #if DEBUG } #endif @@ -10299,7 +12954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteObjectARB((UInt32)obj); + InteropHelper.Call(EntryPoints[370], (UInt32)obj); #if DEBUG } #endif @@ -10325,7 +12980,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* programs_ptr = (UInt32*)&programs; - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs_ptr); } #if DEBUG } @@ -10353,7 +13008,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* programs_ptr = (UInt32*)&programs; - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs_ptr); } #if DEBUG } @@ -10380,7 +13035,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = programs) { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -10408,7 +13063,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = &programs) { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -10433,7 +13088,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -10460,7 +13115,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = programs) { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -10489,7 +13144,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = &programs) { - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -10514,7 +13169,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramsARB((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[377], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -10533,7 +13188,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -10554,7 +13209,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -10586,7 +13241,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -10619,7 +13274,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -10649,7 +13304,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -10681,7 +13336,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -10715,7 +13370,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -10745,7 +13400,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueriesARB((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[380], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -10760,7 +13415,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); + InteropHelper.Call(EntryPoints[404], (UInt32)containerObj, (UInt32)attachedObj); #if DEBUG } #endif @@ -10776,7 +13431,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachObjectARB((UInt32)containerObj, (UInt32)attachedObj); + InteropHelper.Call(EntryPoints[404], (UInt32)containerObj, (UInt32)attachedObj); #if DEBUG } #endif @@ -10791,7 +13446,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArrayARB((UInt32)index); + InteropHelper.Call(EntryPoints[418], (UInt32)index); #if DEBUG } #endif @@ -10807,7 +13462,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArrayARB((UInt32)index); + InteropHelper.Call(EntryPoints[418], (UInt32)index); #if DEBUG } #endif @@ -10822,7 +13477,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchComputeGroupSizeARB((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); + InteropHelper.Call(EntryPoints[420], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); #if DEBUG } #endif @@ -10838,7 +13493,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchComputeGroupSizeARB((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); + InteropHelper.Call(EntryPoints[420], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); #if DEBUG } #endif @@ -10876,7 +13531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[426], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -10913,7 +13568,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[426], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -10944,7 +13599,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs_ptr = bufs) { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.OpenGL.ArbDrawBuffers*)bufs_ptr); + InteropHelper.Call(EntryPoints[431], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -10977,7 +13632,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs_ptr = &bufs) { - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.OpenGL.ArbDrawBuffers*)bufs_ptr); + InteropHelper.Call(EntryPoints[431], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -11007,7 +13662,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersARB((Int32)n, (OpenTK.Graphics.OpenGL.ArbDrawBuffers*)bufs); + InteropHelper.Call(EntryPoints[431], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -11050,7 +13705,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -11097,7 +13752,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -11149,7 +13804,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -11201,7 +13856,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -11253,7 +13908,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -11301,7 +13956,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -11347,7 +14002,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -11398,7 +14053,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -11449,7 +14104,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -11500,7 +14155,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedARB((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[439], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -11528,7 +14183,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArrayARB((UInt32)index); + InteropHelper.Call(EntryPoints[476], (UInt32)index); #if DEBUG } #endif @@ -11551,7 +14206,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArrayARB((UInt32)index); + InteropHelper.Call(EntryPoints[476], (UInt32)index); #if DEBUG } #endif @@ -11566,7 +14221,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryARB((OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target); + InteropHelper.Call(EntryPoints[486], (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target); #if DEBUG } #endif @@ -11608,7 +14263,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureARB((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[578], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11651,7 +14306,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureARB((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[578], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -11693,7 +14348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureFaceARB((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + InteropHelper.Call(EntryPoints[580], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); #if DEBUG } #endif @@ -11736,7 +14391,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureFaceARB((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + InteropHelper.Call(EntryPoints[580], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); #if DEBUG } #endif @@ -11778,7 +14433,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayerARB((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[583], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -11821,7 +14476,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayerARB((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[583], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -11841,7 +14496,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* buffers_ptr = &retval; - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers_ptr); return retval; } #if DEBUG @@ -11874,7 +14529,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = buffers) { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -11907,7 +14562,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -11938,7 +14593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -11970,7 +14625,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -12004,7 +14659,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -12035,7 +14690,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffersARB((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[594], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -12055,7 +14710,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* programs_ptr = &retval; - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs_ptr); return retval; } #if DEBUG @@ -12076,7 +14731,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = programs) { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -12097,7 +14752,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = &programs) { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs_ptr); programs = *programs_ptr; } } @@ -12116,7 +14771,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -12136,7 +14791,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = programs) { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -12158,7 +14813,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = &programs) { - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs_ptr); programs = *programs_ptr; } } @@ -12177,7 +14832,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramsARB((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[611], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -12197,7 +14852,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -12230,7 +14885,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -12263,7 +14918,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -12294,7 +14949,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -12326,7 +14981,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -12360,7 +15015,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -12391,7 +15046,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueriesARB((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[614], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -12449,7 +15104,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ArbVertexShader* type_ptr = &type) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ArbVertexShader*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[628], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12507,7 +15162,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ArbVertexShader*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[628], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12566,7 +15221,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ArbVertexShader* type_ptr = &type) { - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ArbVertexShader*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[628], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12624,7 +15279,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttribARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ArbVertexShader*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[628], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12682,7 +15337,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ArbShaderObjects* type_ptr = &type) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ArbShaderObjects*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[633], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12740,7 +15395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ArbShaderObjects*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[633], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12799,7 +15454,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ArbShaderObjects* type_ptr = &type) { - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ArbShaderObjects*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[633], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -12857,7 +15512,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformARB((UInt32)programObj, (UInt32)index, (Int32)maxLength, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ArbShaderObjects*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[633], (UInt32)programObj, (UInt32)index, (Int32)maxLength, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -12877,7 +15532,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (Int32* obj_ptr = obj) { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + InteropHelper.Call(EntryPoints[641], (UInt32)containerObj, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)obj_ptr); count = *count_ptr; } } @@ -12900,7 +15555,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (Int32* obj_ptr = &obj) { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + InteropHelper.Call(EntryPoints[641], (UInt32)containerObj, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)obj_ptr); count = *count_ptr; obj = *obj_ptr; } @@ -12920,7 +15575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); + InteropHelper.Call(EntryPoints[641], (UInt32)containerObj, (Int32)maxCount, (IntPtr)count, (IntPtr)obj); #if DEBUG } #endif @@ -12941,7 +15596,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (UInt32* obj_ptr = obj) { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + InteropHelper.Call(EntryPoints[641], (UInt32)containerObj, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)obj_ptr); count = *count_ptr; } } @@ -12965,7 +15620,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (UInt32* obj_ptr = &obj) { - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)obj_ptr); + InteropHelper.Call(EntryPoints[641], (UInt32)containerObj, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)obj_ptr); count = *count_ptr; obj = *obj_ptr; } @@ -12985,7 +15640,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedObjectsARB((UInt32)containerObj, (Int32)maxCount, (Int32*)count, (UInt32*)obj); + InteropHelper.Call(EntryPoints[641], (UInt32)containerObj, (Int32)maxCount, (IntPtr)count, (IntPtr)obj); #if DEBUG } #endif @@ -13012,7 +15667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocationARB((UInt32)programObj, (String)name); + return InteropHelper.CallReturn(EntryPoints[644], (UInt32)programObj, (String)name); #if DEBUG } #endif @@ -13040,7 +15695,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocationARB((UInt32)programObj, (String)name); + return InteropHelper.CallReturn(EntryPoints[644], (UInt32)programObj, (String)name); #if DEBUG } #endif @@ -13076,7 +15731,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameterivARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[650], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -13114,7 +15769,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameterivARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[650], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -13150,7 +15805,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameterivARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[650], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferParameterNameArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13165,7 +15820,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointervARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[653], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -13184,7 +15839,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[653], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -13208,7 +15863,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[653], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -13232,7 +15887,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[653], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -13256,7 +15911,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointervARB((OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[653], (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)target, (OpenTK.Graphics.OpenGL.BufferPointerNameArb)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -13299,7 +15954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[655], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -13340,7 +15995,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[655], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13386,7 +16041,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[655], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13432,7 +16087,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[655], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13478,7 +16133,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubDataARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[655], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -13516,7 +16171,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img); + InteropHelper.Call(EntryPoints[675], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img); #if DEBUG } #endif @@ -13552,7 +16207,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[675], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -13593,7 +16248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[675], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -13634,7 +16289,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[675], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -13675,7 +16330,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImageARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[675], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T2)img_ptr.Target; } finally @@ -13746,7 +16401,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.ArbDebugOutput* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)sources_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[686], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -13813,7 +16468,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.ArbDebugOutput* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)sources_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[686], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -13879,7 +16534,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)sources, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[686], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -13945,7 +16600,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.ArbDebugOutput* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)sources_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[686], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -14013,7 +16668,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.ArbDebugOutput* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)sources_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[686], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -14079,7 +16734,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)sources, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL.ArbDebugOutput*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[686], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -14094,7 +16749,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetGraphicsResetStatusARB(); + return InteropHelper.CallReturn(EntryPoints[714]); #if DEBUG } #endif @@ -14109,7 +16764,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetHandleARB((OpenTK.Graphics.OpenGL.ArbShaderObjects)pname); + return InteropHelper.CallReturn(EntryPoints[715], (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname); #if DEBUG } #endif @@ -14124,7 +16779,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetImageHandleARB((UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)format); + return InteropHelper.CallReturn(EntryPoints[723], (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)format); #if DEBUG } #endif @@ -14140,7 +16795,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetImageHandleARB((UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)format); + return InteropHelper.CallReturn(EntryPoints[723], (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)format); #if DEBUG } #endif @@ -14159,7 +16814,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[727], (UInt32)obj, (Int32)maxLength, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -14178,7 +16833,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[727], (UInt32)obj, (Int32)maxLength, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -14198,7 +16853,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[727], (UInt32)obj, (Int32)maxLength, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -14217,7 +16872,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInfoLogARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[727], (UInt32)obj, (Int32)maxLength, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -14236,7 +16891,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* stringlen_ptr = &stringlen) { - Delegates.glGetNamedStringARB((Int32)namelen, (String)name, (Int32)bufSize, (Int32*)stringlen_ptr, (StringBuilder)@string); + InteropHelper.Call(EntryPoints[796], (Int32)namelen, (String)name, (Int32)bufSize, (IntPtr)stringlen_ptr, (StringBuilder)@string); stringlen = *stringlen_ptr; } } @@ -14255,7 +16910,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedStringARB((Int32)namelen, (String)name, (Int32)bufSize, (Int32*)stringlen, (StringBuilder)@string); + InteropHelper.Call(EntryPoints[796], (Int32)namelen, (String)name, (Int32)bufSize, (IntPtr)stringlen, (StringBuilder)@string); #if DEBUG } #endif @@ -14274,7 +16929,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedStringivARB((Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[797], (Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14295,7 +16950,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedStringivARB((Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[797], (Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -14314,7 +16969,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedStringivARB((Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[797], (Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14329,7 +16984,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table); + InteropHelper.Call(EntryPoints[798], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table); #if DEBUG } #endif @@ -14348,7 +17003,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[798], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -14372,7 +17027,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[798], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -14396,7 +17051,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[798], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -14420,7 +17075,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[798], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T4)table_ptr.Target; } finally @@ -14441,7 +17096,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img); + InteropHelper.Call(EntryPoints[799], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img); #if DEBUG } #endif @@ -14460,7 +17115,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[799], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -14484,7 +17139,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[799], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -14508,7 +17163,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[799], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -14532,7 +17187,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[799], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T3)img_ptr.Target; } finally @@ -14553,7 +17208,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image); + InteropHelper.Call(EntryPoints[800], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image); #if DEBUG } #endif @@ -14572,7 +17227,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[800], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14596,7 +17251,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[800], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14620,7 +17275,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[800], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14644,7 +17299,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[800], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T4)image_ptr.Target; } finally @@ -14665,7 +17320,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values); + InteropHelper.Call(EntryPoints[801], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -14684,7 +17339,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[801], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -14708,7 +17363,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[801], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -14732,7 +17387,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[801], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -14756,7 +17411,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[801], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T5)values_ptr.Target; } finally @@ -14781,7 +17436,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glGetnMapdvARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[802], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v_ptr); } } #if DEBUG @@ -14802,7 +17457,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glGetnMapdvARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[802], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v_ptr); v = *v_ptr; } } @@ -14821,7 +17476,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMapdvARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Double*)v); + InteropHelper.Call(EntryPoints[802], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v); #if DEBUG } #endif @@ -14840,7 +17495,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glGetnMapfvARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[803], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v_ptr); } } #if DEBUG @@ -14861,7 +17516,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glGetnMapfvARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[803], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v_ptr); v = *v_ptr; } } @@ -14880,7 +17535,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMapfvARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Single*)v); + InteropHelper.Call(EntryPoints[803], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v); #if DEBUG } #endif @@ -14899,7 +17554,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glGetnMapivARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[804], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v_ptr); } } #if DEBUG @@ -14920,7 +17575,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glGetnMapivARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[804], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v_ptr); v = *v_ptr; } } @@ -14939,7 +17594,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMapivARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (Int32*)v); + InteropHelper.Call(EntryPoints[804], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)query, (Int32)bufSize, (IntPtr)v); #if DEBUG } #endif @@ -14954,7 +17609,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values); + InteropHelper.Call(EntryPoints[805], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -14973,7 +17628,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[805], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -14997,7 +17652,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[805], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -15021,7 +17676,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[805], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -15045,7 +17700,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[805], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (bool)reset, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T5)values_ptr.Target; } finally @@ -15070,7 +17725,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = values) { - Delegates.glGetnPixelMapfvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[806], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -15091,7 +17746,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = &values) { - Delegates.glGetnPixelMapfvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[806], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -15110,7 +17765,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapfvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (Single*)values); + InteropHelper.Call(EntryPoints[806], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -15129,7 +17784,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[807], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -15150,7 +17805,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[807], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -15169,7 +17824,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt32*)values); + InteropHelper.Call(EntryPoints[807], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -15189,7 +17844,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* values_ptr = values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[807], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -15211,7 +17866,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* values_ptr = &values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[807], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -15230,7 +17885,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt32*)values); + InteropHelper.Call(EntryPoints[807], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -15249,7 +17904,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* values_ptr = values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[808], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -15270,7 +17925,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* values_ptr = &values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[808], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -15289,7 +17944,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt16*)values); + InteropHelper.Call(EntryPoints[808], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -15309,7 +17964,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* values_ptr = values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[808], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -15331,7 +17986,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* values_ptr = &values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[808], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -15350,7 +18005,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (UInt16*)values); + InteropHelper.Call(EntryPoints[808], (OpenTK.Graphics.OpenGL.ArbRobustness)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -15370,7 +18025,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 bufSize = 1; Byte retval; Byte* pattern_ptr = &retval; - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern_ptr); + InteropHelper.Call(EntryPoints[809], (Int32)bufSize, (IntPtr)pattern_ptr); return retval; } #if DEBUG @@ -15391,7 +18046,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* pattern_ptr = pattern) { - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern_ptr); + InteropHelper.Call(EntryPoints[809], (Int32)bufSize, (IntPtr)pattern_ptr); } } #if DEBUG @@ -15412,7 +18067,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* pattern_ptr = &pattern) { - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern_ptr); + InteropHelper.Call(EntryPoints[809], (Int32)bufSize, (IntPtr)pattern_ptr); pattern = *pattern_ptr; } } @@ -15431,7 +18086,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern); + InteropHelper.Call(EntryPoints[809], (Int32)bufSize, (IntPtr)pattern); #if DEBUG } #endif @@ -15446,7 +18101,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row, (Int32)columnBufSize, (IntPtr)column, (IntPtr)span); + InteropHelper.Call(EntryPoints[810], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row, (Int32)columnBufSize, (IntPtr)column, (IntPtr)span); #if DEBUG } #endif @@ -15469,7 +18124,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[810], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -15499,7 +18154,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[810], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -15529,7 +18184,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[810], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -15559,7 +18214,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[810], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); row = (T4)row_ptr.Target; column = (T6)column_ptr.Target; span = (T7)span_ptr.Target; @@ -15584,7 +18239,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img); + InteropHelper.Call(EntryPoints[811], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img); #if DEBUG } #endif @@ -15603,7 +18258,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[811], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -15627,7 +18282,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[811], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -15651,7 +18306,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[811], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -15675,7 +18330,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[811], (OpenTK.Graphics.OpenGL.ArbRobustness)target, (Int32)level, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T5)img_ptr.Target; } finally @@ -15700,7 +18355,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[812], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -15721,7 +18376,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[812], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15740,7 +18395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params); + InteropHelper.Call(EntryPoints[812], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -15760,7 +18415,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[812], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -15782,7 +18437,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[812], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15801,7 +18456,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params); + InteropHelper.Call(EntryPoints[812], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -15820,7 +18475,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[813], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -15841,7 +18496,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[813], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15860,7 +18515,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[813], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -15880,7 +18535,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[813], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -15902,7 +18557,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[813], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15921,7 +18576,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[813], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -15940,7 +18595,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[814], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -15961,7 +18616,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[814], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -15980,7 +18635,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[814], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16000,7 +18655,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[814], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -16022,7 +18677,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[814], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16041,7 +18696,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[814], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16061,7 +18716,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetnUniformuivARB((UInt32)program, (Int32)location, (Int32)bufSize, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[815], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -16083,7 +18738,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetnUniformuivARB((UInt32)program, (Int32)location, (Int32)bufSize, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[815], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16102,7 +18757,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformuivARB((UInt32)program, (Int32)location, (Int32)bufSize, (UInt32*)@params); + InteropHelper.Call(EntryPoints[815], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -16121,7 +18776,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[821], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -16142,7 +18797,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[821], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16161,7 +18816,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[821], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params); #if DEBUG } #endif @@ -16181,7 +18836,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[821], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -16203,7 +18858,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[821], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16222,7 +18877,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectParameterfvARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[821], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params); #if DEBUG } #endif @@ -16241,7 +18896,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[823], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -16262,7 +18917,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[823], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16281,7 +18936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[823], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params); #if DEBUG } #endif @@ -16301,7 +18956,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[823], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -16323,7 +18978,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[823], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16342,7 +18997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectParameterivARB((UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[823], (UInt32)obj, (OpenTK.Graphics.OpenGL.ArbShaderObjects)pname, (IntPtr)@params); #if DEBUG } #endif @@ -16361,7 +19016,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16382,7 +19037,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16401,7 +19056,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16421,7 +19076,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16443,7 +19098,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16462,7 +19117,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16482,7 +19137,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16504,7 +19159,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16524,7 +19179,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16545,7 +19200,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16568,7 +19223,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16588,7 +19243,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[862], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16607,7 +19262,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16628,7 +19283,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16647,7 +19302,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16667,7 +19322,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16689,7 +19344,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16708,7 +19363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16728,7 +19383,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16750,7 +19405,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16770,7 +19425,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16791,7 +19446,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16814,7 +19469,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16834,7 +19489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[863], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16870,7 +19525,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[869], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16906,7 +19561,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramivARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[869], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -16925,7 +19580,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -16946,7 +19601,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -16965,7 +19620,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -16985,7 +19640,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17007,7 +19662,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17026,7 +19681,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17046,7 +19701,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17068,7 +19723,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17088,7 +19743,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17109,7 +19764,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17132,7 +19787,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17152,7 +19807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterdvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[871], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17171,7 +19826,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17192,7 +19847,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17211,7 +19866,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17231,7 +19886,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17253,7 +19908,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17272,7 +19927,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17292,7 +19947,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17314,7 +19969,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17334,7 +19989,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17355,7 +20010,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -17378,7 +20033,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17398,7 +20053,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterfvARB((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[872], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -17413,7 +20068,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string); + InteropHelper.Call(EntryPoints[889], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string); #if DEBUG } #endif @@ -17432,7 +20087,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[889], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -17456,7 +20111,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[889], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -17480,7 +20135,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[889], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -17504,7 +20159,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[889], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T2)@string_ptr.Target; } finally @@ -17529,7 +20184,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryivARB((OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[894], (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17550,7 +20205,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryivARB((OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[894], (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17569,7 +20224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryivARB((OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[894], (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)target, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17605,7 +20260,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[898], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17643,7 +20298,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[898], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17679,7 +20334,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[898], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17716,7 +20371,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[898], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17755,7 +20410,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[898], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17791,7 +20446,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[898], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17828,7 +20483,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[902], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -17867,7 +20522,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[902], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -17903,7 +20558,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuivARB((UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[902], (UInt32)id, (OpenTK.Graphics.OpenGL.ArbOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -17944,7 +20599,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[915], (UInt32)obj, (Int32)maxLength, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -17985,7 +20640,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[915], (UInt32)obj, (Int32)maxLength, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -18027,7 +20682,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[915], (UInt32)obj, (Int32)maxLength, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -18068,7 +20723,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSourceARB((UInt32)obj, (Int32)maxLength, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[915], (UInt32)obj, (Int32)maxLength, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -18083,7 +20738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureHandleARB((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[944], (UInt32)texture); #if DEBUG } #endif @@ -18099,7 +20754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureHandleARB((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[944], (UInt32)texture); #if DEBUG } #endif @@ -18114,7 +20769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureSamplerHandleARB((UInt32)texture, (UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[953], (UInt32)texture, (UInt32)sampler); #if DEBUG } #endif @@ -18130,7 +20785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureSamplerHandleARB((UInt32)texture, (UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[953], (UInt32)texture, (UInt32)sampler); #if DEBUG } #endif @@ -18166,7 +20821,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[963], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -18204,7 +20859,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[963], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18240,7 +20895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[963], (UInt32)programObj, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -18277,7 +20932,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[963], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -18316,7 +20971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[963], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18352,7 +21007,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfvARB((UInt32)programObj, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[963], (UInt32)programObj, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -18388,7 +21043,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[967], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -18426,7 +21081,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[967], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18462,7 +21117,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[967], (UInt32)programObj, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -18499,7 +21154,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[967], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -18538,7 +21193,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[967], (UInt32)programObj, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18574,7 +21229,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformivARB((UInt32)programObj, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[967], (UInt32)programObj, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -18601,7 +21256,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocationARB((UInt32)programObj, (String)name); + return InteropHelper.CallReturn(EntryPoints[969], (UInt32)programObj, (String)name); #if DEBUG } #endif @@ -18629,7 +21284,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocationARB((UInt32)programObj, (String)name); + return InteropHelper.CallReturn(EntryPoints[969], (UInt32)programObj, (String)name); #if DEBUG } #endif @@ -18665,7 +21320,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[989], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18703,7 +21358,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[989], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18739,7 +21394,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[989], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18776,7 +21431,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[989], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18815,7 +21470,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[989], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18851,7 +21506,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[989], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18887,7 +21542,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[992], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -18925,7 +21580,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[992], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -18961,7 +21616,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[992], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -18998,7 +21653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[992], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19037,7 +21692,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[992], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19073,7 +21728,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfvARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[992], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19109,7 +21764,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[999], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19147,7 +21802,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[999], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19183,7 +21838,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[999], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19220,7 +21875,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[999], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19259,7 +21914,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[999], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19295,7 +21950,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribivARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[999], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19314,7 +21969,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1004], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19335,7 +21990,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1004], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19354,7 +22009,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[1004], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19374,7 +22029,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1004], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -19396,7 +22051,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1004], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -19415,7 +22070,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[1004], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -19430,7 +22085,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -19449,7 +22104,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19473,7 +22128,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19497,7 +22152,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19521,7 +22176,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -19543,7 +22198,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -19563,7 +22218,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19588,7 +22243,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19613,7 +22268,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -19638,7 +22293,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervARB((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1007], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -19666,7 +22321,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBufferARB((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1068], (UInt32)buffer); #if DEBUG } #endif @@ -19689,7 +22344,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBufferARB((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1068], (UInt32)buffer); #if DEBUG } #endif @@ -19704,7 +22359,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsImageHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1077], (UInt64)handle); #if DEBUG } #endif @@ -19720,7 +22375,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsImageHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1077], (UInt64)handle); #if DEBUG } #endif @@ -19735,7 +22390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsNamedStringARB((Int32)namelen, (String)name); + return InteropHelper.CallReturn(EntryPoints[1082], (Int32)namelen, (String)name); #if DEBUG } #endif @@ -19757,7 +22412,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramARB((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[1089], (UInt32)program); #if DEBUG } #endif @@ -19780,7 +22435,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramARB((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[1089], (UInt32)program); #if DEBUG } #endif @@ -19802,7 +22457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQueryARB((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1094], (UInt32)id); #if DEBUG } #endif @@ -19825,7 +22480,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQueryARB((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1094], (UInt32)id); #if DEBUG } #endif @@ -19840,7 +22495,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1102], (UInt64)handle); #if DEBUG } #endif @@ -19856,7 +22511,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1102], (UInt64)handle); #if DEBUG } #endif @@ -19878,7 +22533,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgramARB((UInt32)programObj); + InteropHelper.Call(EntryPoints[1128], (UInt32)programObj); #if DEBUG } #endif @@ -19901,7 +22556,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgramARB((UInt32)programObj); + InteropHelper.Call(EntryPoints[1128], (UInt32)programObj); #if DEBUG } #endif @@ -19927,7 +22582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glLoadTransposeMatrixdARB((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1142], (IntPtr)m_ptr); } } #if DEBUG @@ -19955,7 +22610,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glLoadTransposeMatrixdARB((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1142], (IntPtr)m_ptr); } } #if DEBUG @@ -19980,7 +22635,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadTransposeMatrixdARB((Double*)m); + InteropHelper.Call(EntryPoints[1142], (IntPtr)m); #if DEBUG } #endif @@ -20006,7 +22661,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glLoadTransposeMatrixfARB((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1144], (IntPtr)m_ptr); } } #if DEBUG @@ -20034,7 +22689,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glLoadTransposeMatrixfARB((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1144], (IntPtr)m_ptr); } } #if DEBUG @@ -20059,7 +22714,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadTransposeMatrixfARB((Single*)m); + InteropHelper.Call(EntryPoints[1144], (IntPtr)m); #if DEBUG } #endif @@ -20074,7 +22729,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[1150], (UInt64)handle); #if DEBUG } #endif @@ -20090,7 +22745,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[1150], (UInt64)handle); #if DEBUG } #endif @@ -20105,7 +22760,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleResidentARB((UInt64)handle, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)access); + InteropHelper.Call(EntryPoints[1152], (UInt64)handle, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)access); #if DEBUG } #endif @@ -20121,7 +22776,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleResidentARB((UInt64)handle, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)access); + InteropHelper.Call(EntryPoints[1152], (UInt64)handle, (OpenTK.Graphics.OpenGL.ArbBindlessTexture)access); #if DEBUG } #endif @@ -20136,7 +22791,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[1156], (UInt64)handle); #if DEBUG } #endif @@ -20152,7 +22807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[1156], (UInt64)handle); #if DEBUG } #endif @@ -20167,7 +22822,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[1158], (UInt64)handle); #if DEBUG } #endif @@ -20183,7 +22838,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[1158], (UInt64)handle); #if DEBUG } #endif @@ -20210,7 +22865,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target, (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)access); + return InteropHelper.CallReturn(EntryPoints[1167], (OpenTK.Graphics.OpenGL.BufferTargetArb)target, (OpenTK.Graphics.OpenGL.ArbVertexBufferObject)access); #if DEBUG } #endif @@ -20225,7 +22880,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1193], (Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -20244,7 +22899,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1193], (Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -20268,7 +22923,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1193], (Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -20292,7 +22947,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1193], (Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -20316,7 +22971,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMatrixIndexPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1193], (Int32)size, (OpenTK.Graphics.OpenGL.ArbMatrixPalette)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -20341,7 +22996,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* indices_ptr = indices) { - Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices_ptr); + InteropHelper.Call(EntryPoints[1194], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20362,7 +23017,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* indices_ptr = &indices) { - Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices_ptr); + InteropHelper.Call(EntryPoints[1194], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20380,7 +23035,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexubvARB((Int32)size, (Byte*)indices); + InteropHelper.Call(EntryPoints[1194], (Int32)size, (IntPtr)indices); #if DEBUG } #endif @@ -20399,7 +23054,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* indices_ptr = indices) { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[1195], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20420,7 +23075,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* indices_ptr = &indices) { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[1195], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20438,7 +23093,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); + InteropHelper.Call(EntryPoints[1195], (Int32)size, (IntPtr)indices); #if DEBUG } #endif @@ -20458,7 +23113,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* indices_ptr = indices) { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[1195], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20480,7 +23135,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* indices_ptr = &indices) { - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[1195], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20498,7 +23153,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexuivARB((Int32)size, (UInt32*)indices); + InteropHelper.Call(EntryPoints[1195], (Int32)size, (IntPtr)indices); #if DEBUG } #endif @@ -20517,7 +23172,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* indices_ptr = indices) { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + InteropHelper.Call(EntryPoints[1196], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20538,7 +23193,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* indices_ptr = &indices) { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + InteropHelper.Call(EntryPoints[1196], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20556,7 +23211,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); + InteropHelper.Call(EntryPoints[1196], (Int32)size, (IntPtr)indices); #if DEBUG } #endif @@ -20576,7 +23231,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* indices_ptr = indices) { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + InteropHelper.Call(EntryPoints[1196], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20598,7 +23253,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* indices_ptr = &indices) { - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices_ptr); + InteropHelper.Call(EntryPoints[1196], (Int32)size, (IntPtr)indices_ptr); } } #if DEBUG @@ -20616,7 +23271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixIndexusvARB((Int32)size, (UInt16*)indices); + InteropHelper.Call(EntryPoints[1196], (Int32)size, (IntPtr)indices); #if DEBUG } #endif @@ -20638,7 +23293,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinSampleShadingARB((Single)value); + InteropHelper.Call(EntryPoints[1221], (Single)value); #if DEBUG } #endif @@ -20653,7 +23308,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysIndirectCountARB((OpenTK.Graphics.OpenGL.ArbIndirectParameters)mode, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1227], (OpenTK.Graphics.OpenGL.ArbIndirectParameters)mode, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); #if DEBUG } #endif @@ -20668,7 +23323,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsIndirectCountARB((OpenTK.Graphics.OpenGL.ArbIndirectParameters)mode, (OpenTK.Graphics.OpenGL.ArbIndirectParameters)type, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1235], (OpenTK.Graphics.OpenGL.ArbIndirectParameters)mode, (OpenTK.Graphics.OpenGL.ArbIndirectParameters)type, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); #if DEBUG } #endif @@ -20695,7 +23350,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s); + InteropHelper.Call(EntryPoints[1243], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s); #if DEBUG } #endif @@ -20723,7 +23378,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1245], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -20750,7 +23405,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s); + InteropHelper.Call(EntryPoints[1247], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s); #if DEBUG } #endif @@ -20778,7 +23433,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1249], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -20805,7 +23460,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s); + InteropHelper.Call(EntryPoints[1253], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s); #if DEBUG } #endif @@ -20833,7 +23488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1255], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -20860,7 +23515,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s); + InteropHelper.Call(EntryPoints[1257], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s); #if DEBUG } #endif @@ -20888,7 +23543,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1259], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -20915,7 +23570,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t); + InteropHelper.Call(EntryPoints[1265], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t); #if DEBUG } #endif @@ -20946,7 +23601,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1267], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -20979,7 +23634,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1267], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21009,7 +23664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1267], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21036,7 +23691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t); + InteropHelper.Call(EntryPoints[1269], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t); #if DEBUG } #endif @@ -21067,7 +23722,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1271], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21100,7 +23755,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1271], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21130,7 +23785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1271], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21157,7 +23812,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t); + InteropHelper.Call(EntryPoints[1275], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t); #if DEBUG } #endif @@ -21188,7 +23843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1277], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21221,7 +23876,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1277], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21251,7 +23906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1277], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21278,7 +23933,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t); + InteropHelper.Call(EntryPoints[1279], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t); #if DEBUG } #endif @@ -21309,7 +23964,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1281], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21342,7 +23997,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1281], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21372,7 +24027,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1281], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21399,7 +24054,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r); + InteropHelper.Call(EntryPoints[1287], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r); #if DEBUG } #endif @@ -21430,7 +24085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1289], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21463,7 +24118,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1289], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21493,7 +24148,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1289], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21520,7 +24175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r); + InteropHelper.Call(EntryPoints[1291], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r); #if DEBUG } #endif @@ -21551,7 +24206,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1293], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21584,7 +24239,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1293], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21614,7 +24269,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1293], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21641,7 +24296,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); + InteropHelper.Call(EntryPoints[1297], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); #if DEBUG } #endif @@ -21672,7 +24327,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1299], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21705,7 +24360,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1299], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21735,7 +24390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1299], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21762,7 +24417,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); + InteropHelper.Call(EntryPoints[1301], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); #if DEBUG } #endif @@ -21793,7 +24448,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1303], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21826,7 +24481,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1303], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21856,7 +24511,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1303], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -21883,7 +24538,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4dARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); + InteropHelper.Call(EntryPoints[1309], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); #if DEBUG } #endif @@ -21914,7 +24569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1311], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21947,7 +24602,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1311], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -21977,7 +24632,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4dvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1311], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -22004,7 +24659,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4fARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + InteropHelper.Call(EntryPoints[1313], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); #if DEBUG } #endif @@ -22035,7 +24690,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1315], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -22068,7 +24723,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1315], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -22098,7 +24753,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4fvARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1315], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -22125,7 +24780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4iARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); + InteropHelper.Call(EntryPoints[1319], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); #if DEBUG } #endif @@ -22156,7 +24811,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1321], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -22189,7 +24844,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1321], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -22219,7 +24874,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4ivARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1321], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -22246,7 +24901,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4sARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); + InteropHelper.Call(EntryPoints[1323], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); #if DEBUG } #endif @@ -22277,7 +24932,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1325], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -22310,7 +24965,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1325], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -22340,7 +24995,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4svARB((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1325], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -22366,7 +25021,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMultTransposeMatrixdARB((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1364], (IntPtr)m_ptr); } } #if DEBUG @@ -22394,7 +25049,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMultTransposeMatrixdARB((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1364], (IntPtr)m_ptr); } } #if DEBUG @@ -22419,7 +25074,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultTransposeMatrixdARB((Double*)m); + InteropHelper.Call(EntryPoints[1364], (IntPtr)m); #if DEBUG } #endif @@ -22445,7 +25100,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMultTransposeMatrixfARB((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1366], (IntPtr)m_ptr); } } #if DEBUG @@ -22473,7 +25128,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMultTransposeMatrixfARB((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1366], (IntPtr)m_ptr); } } #if DEBUG @@ -22498,7 +25153,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultTransposeMatrixfARB((Single*)m); + InteropHelper.Call(EntryPoints[1366], (IntPtr)m); #if DEBUG } #endif @@ -22513,7 +25168,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedStringARB((OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)type, (Int32)namelen, (String)name, (Int32)stringlen, (String)@string); + InteropHelper.Call(EntryPoints[1395], (OpenTK.Graphics.OpenGL.ArbShadingLanguageInclude)type, (Int32)namelen, (String)name, (Int32)stringlen, (String)@string); #if DEBUG } #endif @@ -22545,7 +25200,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfARB((OpenTK.Graphics.OpenGL.ArbPointParameters)pname, (Single)param); + InteropHelper.Call(EntryPoints[1491], (OpenTK.Graphics.OpenGL.ArbPointParameters)pname, (Single)param); #if DEBUG } #endif @@ -22581,7 +25236,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfvARB((OpenTK.Graphics.OpenGL.ArbPointParameters)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1495], (OpenTK.Graphics.OpenGL.ArbPointParameters)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -22616,7 +25271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfvARB((OpenTK.Graphics.OpenGL.ArbPointParameters)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1495], (OpenTK.Graphics.OpenGL.ArbPointParameters)pname, (IntPtr)@params); #if DEBUG } #endif @@ -22631,7 +25286,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1532], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -22647,7 +25302,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1532], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -22666,7 +25321,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1533], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22687,7 +25342,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1533], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22705,7 +25360,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[1533], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -22725,7 +25380,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1533], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22747,7 +25402,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1533], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22765,7 +25420,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[1533], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -22780,7 +25435,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1534], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -22796,7 +25451,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1534], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -22815,7 +25470,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1535], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22836,7 +25491,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1535], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22854,7 +25509,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[1535], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -22874,7 +25529,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1535], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22896,7 +25551,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1535], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22914,7 +25569,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[1535], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -22929,7 +25584,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1543], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -22945,7 +25600,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4dARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1543], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -22964,7 +25619,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1544], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -22985,7 +25640,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1544], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23003,7 +25658,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[1544], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -23023,7 +25678,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1544], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23045,7 +25700,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1544], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23063,7 +25718,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4dvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[1544], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -23078,7 +25733,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1545], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -23094,7 +25749,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4fARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1545], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -23113,7 +25768,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1546], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23134,7 +25789,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1546], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23152,7 +25807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[1546], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -23172,7 +25827,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1546], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23194,7 +25849,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1546], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -23212,7 +25867,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameter4fvARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[1546], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -23244,7 +25899,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1563], (UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); #if DEBUG } #endif @@ -23277,7 +25932,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriARB((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1563], (UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); #if DEBUG } #endif @@ -23292,7 +25947,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string); #if DEBUG } #endif @@ -23311,7 +25966,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -23335,7 +25990,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -23359,7 +26014,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -23383,7 +26038,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T3)@string_ptr.Target; } finally @@ -23405,7 +26060,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string); #if DEBUG } #endif @@ -23425,7 +26080,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -23450,7 +26105,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -23475,7 +26130,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -23500,7 +26155,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glProgramStringARB((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1567], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (OpenTK.Graphics.OpenGL.All)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T3)@string_ptr.Target; } finally @@ -23521,7 +26176,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64ARB((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[1649], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -23537,7 +26192,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64ARB((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[1649], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -23556,7 +26211,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* values_ptr = values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1651], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -23577,7 +26232,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* values_ptr = &values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1651], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -23595,7 +26250,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values); + InteropHelper.Call(EntryPoints[1651], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values); #if DEBUG } #endif @@ -23615,7 +26270,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* values_ptr = values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1651], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -23637,7 +26292,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* values_ptr = &values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1651], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -23655,7 +26310,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values); + InteropHelper.Call(EntryPoints[1651], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values); #if DEBUG } #endif @@ -23670,7 +26325,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[1736], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data); #if DEBUG } #endif @@ -23689,7 +26344,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1736], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -23713,7 +26368,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1736], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -23737,7 +26392,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1736], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -23761,7 +26416,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1736], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.ArbRobustness)format, (OpenTK.Graphics.OpenGL.ArbRobustness)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -23794,7 +26449,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverageARB((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[1791], (Single)value, (bool)invert); #if DEBUG } #endif @@ -23835,7 +26490,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1870], (UInt32)shaderObj, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -23878,7 +26533,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1870], (UInt32)shaderObj, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -23918,7 +26573,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[1870], (UInt32)shaderObj, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -23960,7 +26615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1870], (UInt32)shaderObj, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -24004,7 +26659,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1870], (UInt32)shaderObj, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -24044,7 +26699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSourceARB((UInt32)shaderObj, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[1870], (UInt32)shaderObj, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -24076,7 +26731,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ArbTextureBufferObject)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1915], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ArbTextureBufferObject)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -24109,7 +26764,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferARB((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ArbTextureBufferObject)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1915], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ArbTextureBufferObject)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -24124,7 +26779,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexPageCommitmentARB((OpenTK.Graphics.OpenGL.ArbSparseTexture)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); + InteropHelper.Call(EntryPoints[2027], (OpenTK.Graphics.OpenGL.ArbSparseTexture)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); #if DEBUG } #endif @@ -24169,7 +26824,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1fARB((Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[2098], (Int32)location, (Single)v0); #if DEBUG } #endif @@ -24218,7 +26873,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2100], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24269,7 +26924,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2100], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24317,7 +26972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1fvARB((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2100], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -24362,7 +27017,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1iARB((Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[2104], (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -24411,7 +27066,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2106], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24462,7 +27117,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2106], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24510,7 +27165,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1ivARB((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2106], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -24555,7 +27210,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2fARB((Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[2116], (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -24604,7 +27259,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2118], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24655,7 +27310,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2118], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24703,7 +27358,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2fvARB((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2118], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -24748,7 +27403,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2iARB((Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[2122], (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -24797,7 +27452,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2124], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24845,7 +27500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2ivARB((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2124], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -24890,7 +27545,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[2134], (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -24939,7 +27594,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2136], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -24990,7 +27645,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2136], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25038,7 +27693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3fvARB((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2136], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -25083,7 +27738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[2140], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -25132,7 +27787,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2142], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25183,7 +27838,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2142], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25231,7 +27886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3ivARB((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2142], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -25276,7 +27931,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4fARB((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[2152], (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -25325,7 +27980,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2154], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25376,7 +28031,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2154], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25424,7 +28079,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4fvARB((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2154], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -25469,7 +28124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4iARB((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[2158], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -25518,7 +28173,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2160], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25569,7 +28224,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2160], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25617,7 +28272,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4ivARB((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2160], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -25632,7 +28287,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64ARB((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[2169], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -25648,7 +28303,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64ARB((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[2169], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -25667,7 +28322,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2171], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25688,7 +28343,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2171], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25706,7 +28361,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2171], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -25726,7 +28381,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2171], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25748,7 +28403,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2171], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -25766,7 +28421,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2171], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -25785,7 +28440,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2175], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -25806,7 +28461,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2175], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -25824,7 +28479,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2175], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -25843,7 +28498,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2182], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -25864,7 +28519,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2182], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -25882,7 +28537,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2182], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -25901,7 +28556,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2189], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -25922,7 +28577,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2189], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -25940,7 +28595,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4fvARB((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2189], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -25955,7 +28610,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBufferARB((OpenTK.Graphics.OpenGL.BufferTargetArb)target); + return InteropHelper.CallReturn(EntryPoints[2199], (OpenTK.Graphics.OpenGL.BufferTargetArb)target); #if DEBUG } #endif @@ -25970,7 +28625,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramObjectARB((UInt32)programObj); + InteropHelper.Call(EntryPoints[2205], (UInt32)programObj); #if DEBUG } #endif @@ -25986,7 +28641,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramObjectARB((UInt32)programObj); + InteropHelper.Call(EntryPoints[2205], (UInt32)programObj); #if DEBUG } #endif @@ -26008,7 +28663,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramARB((UInt32)programObj); + InteropHelper.Call(EntryPoints[2210], (UInt32)programObj); #if DEBUG } #endif @@ -26031,7 +28686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramARB((UInt32)programObj); + InteropHelper.Call(EntryPoints[2210], (UInt32)programObj); #if DEBUG } #endif @@ -26078,7 +28733,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2298], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -26126,7 +28781,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dARB((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2298], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -26174,7 +28829,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2301], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26222,7 +28877,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2301], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26269,7 +28924,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[2304], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -26317,7 +28972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fARB((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[2304], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -26365,7 +29020,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2307], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26413,7 +29068,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2307], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26460,7 +29115,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[2312], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -26508,7 +29163,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sARB((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[2312], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -26556,7 +29211,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2315], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26604,7 +29259,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2315], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26651,7 +29306,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2318], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -26699,7 +29354,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dARB((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2318], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -26750,7 +29405,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2321], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -26803,7 +29458,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2321], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -26853,7 +29508,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2321], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -26905,7 +29560,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2321], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -26959,7 +29614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2321], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27009,7 +29664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2321], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -27056,7 +29711,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2324], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -27104,7 +29759,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fARB((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2324], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -27155,7 +29810,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2327], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27208,7 +29863,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2327], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27258,7 +29913,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2327], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -27310,7 +29965,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2327], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27364,7 +30019,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2327], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27414,7 +30069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2327], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -27461,7 +30116,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2332], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -27509,7 +30164,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sARB((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2332], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -27560,7 +30215,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27613,7 +30268,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27663,7 +30318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2335], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -27715,7 +30370,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27769,7 +30424,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2335], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -27819,7 +30474,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2335], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -27866,7 +30521,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2338], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -27914,7 +30569,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dARB((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2338], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -27965,7 +30620,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2341], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28018,7 +30673,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2341], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28068,7 +30723,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2341], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -28120,7 +30775,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2341], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28174,7 +30829,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2341], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28224,7 +30879,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2341], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -28271,7 +30926,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2344], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -28319,7 +30974,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fARB((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2344], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -28370,7 +31025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2347], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28423,7 +31078,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2347], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28473,7 +31128,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2347], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -28525,7 +31180,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2347], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28579,7 +31234,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2347], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28629,7 +31284,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2347], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -28676,7 +31331,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2352], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -28724,7 +31379,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2352], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -28775,7 +31430,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2355], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28828,7 +31483,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2355], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28878,7 +31533,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2355], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -28930,7 +31585,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2355], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -28984,7 +31639,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2355], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29034,7 +31689,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2355], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -29086,7 +31741,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2358], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29140,7 +31795,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2358], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29190,7 +31845,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4bvARB((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[2358], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -29237,7 +31892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2360], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -29285,7 +31940,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dARB((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2360], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -29336,7 +31991,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2363], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29389,7 +32044,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2363], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29439,7 +32094,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2363], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -29491,7 +32146,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2363], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29545,7 +32200,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2363], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29595,7 +32250,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dvARB((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2363], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -29642,7 +32297,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2366], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -29690,7 +32345,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fARB((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2366], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -29741,7 +32396,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2369], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29794,7 +32449,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2369], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29844,7 +32499,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2369], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -29896,7 +32551,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2369], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -29950,7 +32605,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2369], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30000,7 +32655,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fvARB((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2369], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30051,7 +32706,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2374], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30104,7 +32759,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2374], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30154,7 +32809,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2374], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30206,7 +32861,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2374], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30260,7 +32915,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2374], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30310,7 +32965,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ivARB((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2374], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30330,7 +32985,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2376], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30352,7 +33007,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2376], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30370,7 +33025,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NbvARB((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[2376], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30389,7 +33044,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2378], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30410,7 +33065,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2378], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30428,7 +33083,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2378], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30448,7 +33103,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2378], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30470,7 +33125,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2378], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30488,7 +33143,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NivARB((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2378], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30507,7 +33162,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2380], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30528,7 +33183,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2380], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30546,7 +33201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2380], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30566,7 +33221,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2380], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30588,7 +33243,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2380], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30606,7 +33261,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NsvARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2380], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30621,7 +33276,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[2382], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -30637,7 +33292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NubARB((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[2382], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -30656,7 +33311,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2384], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30677,7 +33332,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2384], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30695,7 +33350,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2384], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30715,7 +33370,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2384], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30737,7 +33392,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2384], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30755,7 +33410,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NubvARB((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2384], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30775,7 +33430,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2386], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30797,7 +33452,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2386], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30815,7 +33470,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NuivARB((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2386], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30835,7 +33490,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2388], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30857,7 +33512,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2388], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -30875,7 +33530,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4NusvARB((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[2388], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -30922,7 +33577,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2390], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -30970,7 +33625,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sARB((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2390], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -31021,7 +33676,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2393], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31074,7 +33729,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2393], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31124,7 +33779,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2393], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -31176,7 +33831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2393], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31230,7 +33885,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2393], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31280,7 +33935,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4svARB((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2393], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -31331,7 +33986,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2397], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31384,7 +34039,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2397], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31434,7 +34089,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2397], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -31486,7 +34141,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2397], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31540,7 +34195,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2397], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31590,7 +34245,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubvARB((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2397], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -31642,7 +34297,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2400], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31696,7 +34351,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2400], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31746,7 +34401,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4uivARB((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2400], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -31798,7 +34453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2402], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31852,7 +34507,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2402], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -31902,7 +34557,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4usvARB((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[2402], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -31929,7 +34584,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorARB((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2406], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -31957,7 +34612,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisorARB((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2406], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -31972,7 +34627,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64ARB((UInt32)index, (UInt64)x); + InteropHelper.Call(EntryPoints[2459], (UInt32)index, (UInt64)x); #if DEBUG } #endif @@ -31988,7 +34643,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64ARB((UInt32)index, (UInt64)x); + InteropHelper.Call(EntryPoints[2459], (UInt32)index, (UInt64)x); #if DEBUG } #endif @@ -32007,7 +34662,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2461], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -32025,7 +34680,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[2461], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -32045,7 +34700,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = v) { - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2461], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -32063,7 +34718,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[2461], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -32110,7 +34765,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -32161,7 +34816,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32217,7 +34872,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32273,7 +34928,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32329,7 +34984,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -32383,7 +35038,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -32435,7 +35090,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32492,7 +35147,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32549,7 +35204,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32606,7 +35261,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerARB((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2501], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerTypeArb)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -32627,7 +35282,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBlendARB((Int32)count); + InteropHelper.Call(EntryPoints[2521], (Int32)count); #if DEBUG } #endif @@ -32647,7 +35302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* weights_ptr = weights) { - Delegates.glWeightbvARB((Int32)size, (SByte*)weights_ptr); + InteropHelper.Call(EntryPoints[2581], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32669,7 +35324,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* weights_ptr = &weights) { - Delegates.glWeightbvARB((Int32)size, (SByte*)weights_ptr); + InteropHelper.Call(EntryPoints[2581], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32687,7 +35342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightbvARB((Int32)size, (SByte*)weights); + InteropHelper.Call(EntryPoints[2581], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -32706,7 +35361,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* weights_ptr = weights) { - Delegates.glWeightdvARB((Int32)size, (Double*)weights_ptr); + InteropHelper.Call(EntryPoints[2582], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32727,7 +35382,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* weights_ptr = &weights) { - Delegates.glWeightdvARB((Int32)size, (Double*)weights_ptr); + InteropHelper.Call(EntryPoints[2582], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32745,7 +35400,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightdvARB((Int32)size, (Double*)weights); + InteropHelper.Call(EntryPoints[2582], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -32764,7 +35419,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* weights_ptr = weights) { - Delegates.glWeightfvARB((Int32)size, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2583], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32785,7 +35440,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* weights_ptr = &weights) { - Delegates.glWeightfvARB((Int32)size, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2583], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32803,7 +35458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightfvARB((Int32)size, (Single*)weights); + InteropHelper.Call(EntryPoints[2583], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -32822,7 +35477,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* weights_ptr = weights) { - Delegates.glWeightivARB((Int32)size, (Int32*)weights_ptr); + InteropHelper.Call(EntryPoints[2584], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32843,7 +35498,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* weights_ptr = &weights) { - Delegates.glWeightivARB((Int32)size, (Int32*)weights_ptr); + InteropHelper.Call(EntryPoints[2584], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -32861,7 +35516,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightivARB((Int32)size, (Int32*)weights); + InteropHelper.Call(EntryPoints[2584], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -32876,7 +35531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2586], (Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -32895,7 +35550,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2586], (Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32919,7 +35574,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2586], (Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32943,7 +35598,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2586], (Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -32967,7 +35622,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glWeightPointerARB((Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2586], (Int32)size, (OpenTK.Graphics.OpenGL.ArbVertexBlend)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -32992,7 +35647,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* weights_ptr = weights) { - Delegates.glWeightsvARB((Int32)size, (Int16*)weights_ptr); + InteropHelper.Call(EntryPoints[2587], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33013,7 +35668,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* weights_ptr = &weights) { - Delegates.glWeightsvARB((Int32)size, (Int16*)weights_ptr); + InteropHelper.Call(EntryPoints[2587], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33031,7 +35686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightsvARB((Int32)size, (Int16*)weights); + InteropHelper.Call(EntryPoints[2587], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -33050,7 +35705,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* weights_ptr = weights) { - Delegates.glWeightubvARB((Int32)size, (Byte*)weights_ptr); + InteropHelper.Call(EntryPoints[2588], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33071,7 +35726,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* weights_ptr = &weights) { - Delegates.glWeightubvARB((Int32)size, (Byte*)weights_ptr); + InteropHelper.Call(EntryPoints[2588], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33089,7 +35744,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightubvARB((Int32)size, (Byte*)weights); + InteropHelper.Call(EntryPoints[2588], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -33109,7 +35764,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* weights_ptr = weights) { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); + InteropHelper.Call(EntryPoints[2589], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33131,7 +35786,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* weights_ptr = &weights) { - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights_ptr); + InteropHelper.Call(EntryPoints[2589], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33149,7 +35804,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightuivARB((Int32)size, (UInt32*)weights); + InteropHelper.Call(EntryPoints[2589], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -33169,7 +35824,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* weights_ptr = weights) { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); + InteropHelper.Call(EntryPoints[2590], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33191,7 +35846,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* weights_ptr = &weights) { - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights_ptr); + InteropHelper.Call(EntryPoints[2590], (Int32)size, (IntPtr)weights_ptr); } } #if DEBUG @@ -33209,7 +35864,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightusvARB((Int32)size, (UInt16*)weights); + InteropHelper.Call(EntryPoints[2590], (Int32)size, (IntPtr)weights); #if DEBUG } #endif @@ -33231,7 +35886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2dARB((Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2592], (Double)x, (Double)y); #if DEBUG } #endif @@ -33257,7 +35912,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos2dvARB((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2595], (IntPtr)v_ptr); } } #if DEBUG @@ -33285,7 +35940,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos2dvARB((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2595], (IntPtr)v_ptr); } } #if DEBUG @@ -33310,7 +35965,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2dvARB((Double*)v); + InteropHelper.Call(EntryPoints[2595], (IntPtr)v); #if DEBUG } #endif @@ -33332,7 +35987,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2fARB((Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2598], (Single)x, (Single)y); #if DEBUG } #endif @@ -33358,7 +36013,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos2fvARB((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2601], (IntPtr)v_ptr); } } #if DEBUG @@ -33386,7 +36041,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos2fvARB((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2601], (IntPtr)v_ptr); } } #if DEBUG @@ -33411,7 +36066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2fvARB((Single*)v); + InteropHelper.Call(EntryPoints[2601], (IntPtr)v); #if DEBUG } #endif @@ -33433,7 +36088,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2iARB((Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2604], (Int32)x, (Int32)y); #if DEBUG } #endif @@ -33459,7 +36114,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos2ivARB((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2607], (IntPtr)v_ptr); } } #if DEBUG @@ -33487,7 +36142,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos2ivARB((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2607], (IntPtr)v_ptr); } } #if DEBUG @@ -33512,7 +36167,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2ivARB((Int32*)v); + InteropHelper.Call(EntryPoints[2607], (IntPtr)v); #if DEBUG } #endif @@ -33534,7 +36189,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2sARB((Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2610], (Int16)x, (Int16)y); #if DEBUG } #endif @@ -33560,7 +36215,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos2svARB((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2613], (IntPtr)v_ptr); } } #if DEBUG @@ -33588,7 +36243,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos2svARB((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2613], (IntPtr)v_ptr); } } #if DEBUG @@ -33613,7 +36268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2svARB((Int16*)v); + InteropHelper.Call(EntryPoints[2613], (IntPtr)v); #if DEBUG } #endif @@ -33635,7 +36290,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3dARB((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2616], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -33661,7 +36316,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos3dvARB((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2619], (IntPtr)v_ptr); } } #if DEBUG @@ -33689,7 +36344,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos3dvARB((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2619], (IntPtr)v_ptr); } } #if DEBUG @@ -33714,7 +36369,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3dvARB((Double*)v); + InteropHelper.Call(EntryPoints[2619], (IntPtr)v); #if DEBUG } #endif @@ -33736,7 +36391,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3fARB((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2622], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -33762,7 +36417,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos3fvARB((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2625], (IntPtr)v_ptr); } } #if DEBUG @@ -33790,7 +36445,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos3fvARB((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2625], (IntPtr)v_ptr); } } #if DEBUG @@ -33815,7 +36470,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3fvARB((Single*)v); + InteropHelper.Call(EntryPoints[2625], (IntPtr)v); #if DEBUG } #endif @@ -33837,7 +36492,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3iARB((Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2628], (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -33863,7 +36518,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos3ivARB((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2631], (IntPtr)v_ptr); } } #if DEBUG @@ -33891,7 +36546,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos3ivARB((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2631], (IntPtr)v_ptr); } } #if DEBUG @@ -33916,7 +36571,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3ivARB((Int32*)v); + InteropHelper.Call(EntryPoints[2631], (IntPtr)v); #if DEBUG } #endif @@ -33938,7 +36593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3sARB((Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2634], (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -33964,7 +36619,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos3svARB((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2637], (IntPtr)v_ptr); } } #if DEBUG @@ -33992,7 +36647,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos3svARB((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2637], (IntPtr)v_ptr); } } #if DEBUG @@ -34017,7 +36672,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3svARB((Int16*)v); + InteropHelper.Call(EntryPoints[2637], (IntPtr)v); #if DEBUG } #endif @@ -34036,7 +36691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); #if DEBUG } #endif @@ -34052,7 +36707,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFragmentOp1ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); #if DEBUG } #endif @@ -34067,7 +36722,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); #if DEBUG } #endif @@ -34083,7 +36738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFragmentOp2ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); #if DEBUG } #endif @@ -34098,7 +36753,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFragmentOp3ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); #if DEBUG } #endif @@ -34114,7 +36769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFragmentOp3ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); #if DEBUG } #endif @@ -34129,7 +36784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glArrayObjectATI((OpenTK.Graphics.OpenGL.EnableCap)array, (Int32)size, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.OpenGL.EnableCap)array, (Int32)size, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -34145,7 +36800,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glArrayObjectATI((OpenTK.Graphics.OpenGL.EnableCap)array, (Int32)size, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[20], (OpenTK.Graphics.OpenGL.EnableCap)array, (Int32)size, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -34160,7 +36815,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginFragmentShaderATI(); + InteropHelper.Call(EntryPoints[28]); #if DEBUG } #endif @@ -34175,7 +36830,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragmentShaderATI((UInt32)id); + InteropHelper.Call(EntryPoints[56], (UInt32)id); #if DEBUG } #endif @@ -34191,7 +36846,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragmentShaderATI((UInt32)id); + InteropHelper.Call(EntryPoints[56], (UInt32)id); #if DEBUG } #endif @@ -34206,7 +36861,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientActiveVertexStreamATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream); + InteropHelper.Call(EntryPoints[168], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream); #if DEBUG } #endif @@ -34221,7 +36876,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + InteropHelper.Call(EntryPoints[223], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); #if DEBUG } #endif @@ -34237,7 +36892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFragmentOp1ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); + InteropHelper.Call(EntryPoints[223], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod); #if DEBUG } #endif @@ -34252,7 +36907,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); #if DEBUG } #endif @@ -34268,7 +36923,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFragmentOp2ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod); #if DEBUG } #endif @@ -34283,7 +36938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFragmentOp3ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); #if DEBUG } #endif @@ -34299,7 +36954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFragmentOp3ATI((OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); + InteropHelper.Call(EntryPoints[225], (OpenTK.Graphics.OpenGL.AtiFragmentShader)op, (UInt32)dst, (UInt32)dstMask, (UInt32)dstMod, (UInt32)arg1, (UInt32)arg1Rep, (UInt32)arg1Mod, (UInt32)arg2, (UInt32)arg2Rep, (UInt32)arg2Mod, (UInt32)arg3, (UInt32)arg3Rep, (UInt32)arg3Mod); #if DEBUG } #endif @@ -34314,7 +36969,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFragmentShaderATI((UInt32)id); + InteropHelper.Call(EntryPoints[364], (UInt32)id); #if DEBUG } #endif @@ -34330,7 +36985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFragmentShaderATI((UInt32)id); + InteropHelper.Call(EntryPoints[364], (UInt32)id); #if DEBUG } #endif @@ -34361,7 +37016,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs_ptr = bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.OpenGL.AtiDrawBuffers*)bufs_ptr); + InteropHelper.Call(EntryPoints[432], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -34394,7 +37049,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs_ptr = &bufs) { - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.OpenGL.AtiDrawBuffers*)bufs_ptr); + InteropHelper.Call(EntryPoints[432], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -34424,7 +37079,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffersATI((Int32)n, (OpenTK.Graphics.OpenGL.AtiDrawBuffers*)bufs); + InteropHelper.Call(EntryPoints[432], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -34440,7 +37095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementArrayATI((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count); + InteropHelper.Call(EntryPoints[434], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count); #if DEBUG } #endif @@ -34455,7 +37110,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementArrayATI((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count); + InteropHelper.Call(EntryPoints[434], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count); #if DEBUG } #endif @@ -34471,7 +37126,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); + InteropHelper.Call(EntryPoints[447], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); #if DEBUG } #endif @@ -34488,7 +37143,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); + InteropHelper.Call(EntryPoints[447], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); #if DEBUG } #endif @@ -34503,7 +37158,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); + InteropHelper.Call(EntryPoints[447], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); #if DEBUG } #endif @@ -34519,7 +37174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementArrayATI((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); + InteropHelper.Call(EntryPoints[447], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count); #if DEBUG } #endif @@ -34534,7 +37189,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glElementPointerATI((OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[464], (OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer); #if DEBUG } #endif @@ -34553,7 +37208,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerATI((OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[464], (OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34577,7 +37232,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerATI((OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[464], (OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34601,7 +37256,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerATI((OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[464], (OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -34625,7 +37280,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glElementPointerATI((OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[464], (OpenTK.Graphics.OpenGL.AtiElementArray)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -34646,7 +37301,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndFragmentShaderATI(); + InteropHelper.Call(EntryPoints[481]); #if DEBUG } #endif @@ -34661,7 +37316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFreeObjectBufferATI((UInt32)buffer); + InteropHelper.Call(EntryPoints[587], (UInt32)buffer); #if DEBUG } #endif @@ -34677,7 +37332,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFreeObjectBufferATI((UInt32)buffer); + InteropHelper.Call(EntryPoints[587], (UInt32)buffer); #if DEBUG } #endif @@ -34692,7 +37347,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenFragmentShadersATI((UInt32)range); + return InteropHelper.CallReturn(EntryPoints[601], (UInt32)range); #if DEBUG } #endif @@ -34708,7 +37363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenFragmentShadersATI((UInt32)range); + return InteropHelper.CallReturn(EntryPoints[601], (UInt32)range); #if DEBUG } #endif @@ -34727,7 +37382,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[639], (OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34746,7 +37401,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetArrayObjectfvATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[639], (OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34765,7 +37420,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetArrayObjectivATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[640], (OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34784,7 +37439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetArrayObjectivATI((OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[640], (OpenTK.Graphics.OpenGL.EnableCap)array, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34803,7 +37458,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[816], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34822,7 +37477,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[816], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34842,7 +37497,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[816], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34861,7 +37516,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectBufferfvATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[816], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34880,7 +37535,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[817], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34899,7 +37554,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[817], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34919,7 +37574,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[817], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -34938,7 +37593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectBufferivATI((UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[817], (UInt32)buffer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34957,7 +37612,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* param_ptr = &retval; - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[922], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); return retval; } #if DEBUG @@ -34978,7 +37633,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* param_ptr = param) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[922], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -34999,7 +37654,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* param_ptr = ¶m) { - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[922], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); param = *param_ptr; } } @@ -35018,7 +37673,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param); + InteropHelper.Call(EntryPoints[922], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param); #if DEBUG } #endif @@ -35037,7 +37692,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[923], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -35058,7 +37713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[923], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); param = *param_ptr; } } @@ -35077,7 +37732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexBumpParameterivATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[923], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param); #if DEBUG } #endif @@ -35096,7 +37751,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[975], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35115,7 +37770,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[975], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35135,7 +37790,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[975], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35154,7 +37809,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantArrayObjectfvATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[975], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35173,7 +37828,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[976], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35192,7 +37847,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[976], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35212,7 +37867,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[976], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35231,7 +37886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantArrayObjectivATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[976], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35250,7 +37905,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[986], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -35271,7 +37926,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[986], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35290,7 +37945,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[986], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35310,7 +37965,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[986], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -35332,7 +37987,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[986], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35351,7 +38006,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribArrayObjectfvATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[986], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35370,7 +38025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[987], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -35391,7 +38046,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[987], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35410,7 +38065,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[987], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35430,7 +38085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[987], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -35452,7 +38107,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[987], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35471,7 +38126,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribArrayObjectivATI((UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[987], (UInt32)index, (OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject)pname, (IntPtr)@params); #if DEBUG } #endif @@ -35486,7 +38141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsObjectBufferATI((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1083], (UInt32)buffer); #if DEBUG } #endif @@ -35502,7 +38157,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsObjectBufferATI((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1083], (UInt32)buffer); #if DEBUG } #endif @@ -35517,7 +38172,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapObjectBufferATI((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1178], (UInt32)buffer); #if DEBUG } #endif @@ -35533,7 +38188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapObjectBufferATI((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1178], (UInt32)buffer); #if DEBUG } #endif @@ -35548,7 +38203,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); + return InteropHelper.CallReturn(EntryPoints[1397], (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); #if DEBUG } #endif @@ -35567,7 +38222,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); + return InteropHelper.CallReturn(EntryPoints[1397], (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); } finally { @@ -35591,7 +38246,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); + return InteropHelper.CallReturn(EntryPoints[1397], (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); } finally { @@ -35615,7 +38270,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - return Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); + return InteropHelper.CallReturn(EntryPoints[1397], (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); } finally { @@ -35639,7 +38294,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Int32 retval = Delegates.glNewObjectBufferATI((Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); + Int32 retval = InteropHelper.CallReturn(EntryPoints[1397], (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)usage); pointer = (T1)pointer_ptr.Target; return retval; } @@ -35661,7 +38316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3bATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz); + InteropHelper.Call(EntryPoints[1421], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz); #if DEBUG } #endif @@ -35677,7 +38332,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3bATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz); + InteropHelper.Call(EntryPoints[1421], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte)nx, (SByte)ny, (SByte)nz); #if DEBUG } #endif @@ -35696,7 +38351,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1422], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35717,7 +38372,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1422], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35735,7 +38390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte*)coords); + InteropHelper.Call(EntryPoints[1422], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -35755,7 +38410,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1422], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35777,7 +38432,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1422], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35795,7 +38450,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3bvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (SByte*)coords); + InteropHelper.Call(EntryPoints[1422], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -35810,7 +38465,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3dATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)nx, (Double)ny, (Double)nz); + InteropHelper.Call(EntryPoints[1423], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)nx, (Double)ny, (Double)nz); #if DEBUG } #endif @@ -35829,7 +38484,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = coords) { - Delegates.glNormalStream3dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[1424], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35850,7 +38505,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = &coords) { - Delegates.glNormalStream3dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[1424], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35868,7 +38523,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords); + InteropHelper.Call(EntryPoints[1424], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -35883,7 +38538,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3fATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)nx, (Single)ny, (Single)nz); + InteropHelper.Call(EntryPoints[1425], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)nx, (Single)ny, (Single)nz); #if DEBUG } #endif @@ -35902,7 +38557,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = coords) { - Delegates.glNormalStream3fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[1426], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35923,7 +38578,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = &coords) { - Delegates.glNormalStream3fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[1426], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35941,7 +38596,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords); + InteropHelper.Call(EntryPoints[1426], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -35956,7 +38611,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3iATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)nx, (Int32)ny, (Int32)nz); + InteropHelper.Call(EntryPoints[1427], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)nx, (Int32)ny, (Int32)nz); #if DEBUG } #endif @@ -35975,7 +38630,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = coords) { - Delegates.glNormalStream3ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[1428], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -35996,7 +38651,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = &coords) { - Delegates.glNormalStream3ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[1428], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -36014,7 +38669,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords); + InteropHelper.Call(EntryPoints[1428], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -36029,7 +38684,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3sATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)nx, (Int16)ny, (Int16)nz); + InteropHelper.Call(EntryPoints[1429], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)nx, (Int16)ny, (Int16)nz); #if DEBUG } #endif @@ -36048,7 +38703,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = coords) { - Delegates.glNormalStream3svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[1430], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -36069,7 +38724,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = &coords) { - Delegates.glNormalStream3svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[1430], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -36087,7 +38742,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalStream3svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords); + InteropHelper.Call(EntryPoints[1430], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -36102,7 +38757,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); + InteropHelper.Call(EntryPoints[1440], (UInt32)dst, (UInt32)coord, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); #if DEBUG } #endif @@ -36118,7 +38773,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPassTexCoordATI((UInt32)dst, (UInt32)coord, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); + InteropHelper.Call(EntryPoints[1440], (UInt32)dst, (UInt32)coord, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); #if DEBUG } #endif @@ -36133,7 +38788,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPNTrianglesfATI((OpenTK.Graphics.OpenGL.AtiPnTriangles)pname, (Single)param); + InteropHelper.Call(EntryPoints[1487], (OpenTK.Graphics.OpenGL.AtiPnTriangles)pname, (Single)param); #if DEBUG } #endif @@ -36148,7 +38803,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPNTrianglesiATI((OpenTK.Graphics.OpenGL.AtiPnTriangles)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1488], (OpenTK.Graphics.OpenGL.AtiPnTriangles)pname, (Int32)param); #if DEBUG } #endif @@ -36163,7 +38818,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); + InteropHelper.Call(EntryPoints[1794], (UInt32)dst, (UInt32)interp, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); #if DEBUG } #endif @@ -36179,7 +38834,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMapATI((UInt32)dst, (UInt32)interp, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); + InteropHelper.Call(EntryPoints[1794], (UInt32)dst, (UInt32)interp, (OpenTK.Graphics.OpenGL.AtiFragmentShader)swizzle); #if DEBUG } #endif @@ -36198,7 +38853,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1860], (UInt32)dst, (IntPtr)value_ptr); } } #if DEBUG @@ -36219,7 +38874,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1860], (UInt32)dst, (IntPtr)value_ptr); } } #if DEBUG @@ -36237,7 +38892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value); + InteropHelper.Call(EntryPoints[1860], (UInt32)dst, (IntPtr)value); #if DEBUG } #endif @@ -36257,7 +38912,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1860], (UInt32)dst, (IntPtr)value_ptr); } } #if DEBUG @@ -36279,7 +38934,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1860], (UInt32)dst, (IntPtr)value_ptr); } } #if DEBUG @@ -36297,7 +38952,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFragmentShaderConstantATI((UInt32)dst, (Single*)value); + InteropHelper.Call(EntryPoints[1860], (UInt32)dst, (IntPtr)value); #if DEBUG } #endif @@ -36334,7 +38989,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1883], (OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -36372,7 +39027,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparateATI((OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1883], (OpenTK.Graphics.OpenGL.StencilFunction)frontfunc, (OpenTK.Graphics.OpenGL.StencilFunction)backfunc, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -36409,7 +39064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparateATI((OpenTK.Graphics.OpenGL.AtiSeparateStencil)face, (OpenTK.Graphics.OpenGL.StencilOp)sfail, (OpenTK.Graphics.OpenGL.StencilOp)dpfail, (OpenTK.Graphics.OpenGL.StencilOp)dppass); + InteropHelper.Call(EntryPoints[1888], (OpenTK.Graphics.OpenGL.AtiSeparateStencil)face, (OpenTK.Graphics.OpenGL.StencilOp)sfail, (OpenTK.Graphics.OpenGL.StencilOp)dpfail, (OpenTK.Graphics.OpenGL.StencilOp)dppass); #if DEBUG } #endif @@ -36428,7 +39083,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* param_ptr = param) { - Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[1918], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -36449,7 +39104,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* param_ptr = ¶m) { - Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[1918], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -36467,7 +39122,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBumpParameterfvATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Single*)param); + InteropHelper.Call(EntryPoints[1918], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param); #if DEBUG } #endif @@ -36486,7 +39141,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glTexBumpParameterivATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1919], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -36507,7 +39162,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glTexBumpParameterivATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1919], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -36525,7 +39180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBumpParameterivATI((OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[1919], (OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap)pname, (IntPtr)param); #if DEBUG } #endif @@ -36540,7 +39195,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUnmapObjectBufferATI((UInt32)buffer); + InteropHelper.Call(EntryPoints[2201], (UInt32)buffer); #if DEBUG } #endif @@ -36556,7 +39211,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUnmapObjectBufferATI((UInt32)buffer); + InteropHelper.Call(EntryPoints[2201], (UInt32)buffer); #if DEBUG } #endif @@ -36571,7 +39226,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); #if DEBUG } #endif @@ -36590,7 +39245,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); } finally { @@ -36614,7 +39269,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); } finally { @@ -36638,7 +39293,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); } finally { @@ -36662,7 +39317,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); pointer = (T3)pointer_ptr.Target; } finally @@ -36684,7 +39339,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); #if DEBUG } #endif @@ -36704,7 +39359,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); } finally { @@ -36729,7 +39384,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); } finally { @@ -36754,7 +39409,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); } finally { @@ -36779,7 +39434,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glUpdateObjectBufferATI((UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); + InteropHelper.Call(EntryPoints[2203], (UInt32)buffer, (UInt32)offset, (Int32)size, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)preserve); pointer = (T3)pointer_ptr.Target; } finally @@ -36800,7 +39455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[2213], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -36816,7 +39471,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantArrayObjectATI((UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[2213], (UInt32)id, (OpenTK.Graphics.OpenGL.AtiVertexArrayObject)type, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -36832,7 +39487,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[2403], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -36847,7 +39502,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[2403], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -36864,7 +39519,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[2403], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -36880,7 +39535,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribArrayObjectATI((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); + InteropHelper.Call(EntryPoints[2403], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (UInt32)buffer, (UInt32)offset); #if DEBUG } #endif @@ -36895,7 +39550,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBlendEnvfATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)pname, (Single)param); + InteropHelper.Call(EntryPoints[2522], (OpenTK.Graphics.OpenGL.AtiVertexStreams)pname, (Single)param); #if DEBUG } #endif @@ -36910,7 +39565,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBlendEnviATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2523], (OpenTK.Graphics.OpenGL.AtiVertexStreams)pname, (Int32)param); #if DEBUG } #endif @@ -36925,7 +39580,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1dATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x); + InteropHelper.Call(EntryPoints[2535], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x); #if DEBUG } #endif @@ -36941,7 +39596,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords); + InteropHelper.Call(EntryPoints[2536], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -36956,7 +39611,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1fATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x); + InteropHelper.Call(EntryPoints[2537], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x); #if DEBUG } #endif @@ -36972,7 +39627,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords); + InteropHelper.Call(EntryPoints[2538], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -36987,7 +39642,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1iATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x); + InteropHelper.Call(EntryPoints[2539], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x); #if DEBUG } #endif @@ -37003,7 +39658,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords); + InteropHelper.Call(EntryPoints[2540], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37018,7 +39673,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1sATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x); + InteropHelper.Call(EntryPoints[2541], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x); #if DEBUG } #endif @@ -37034,7 +39689,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream1svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords); + InteropHelper.Call(EntryPoints[2542], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37049,7 +39704,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2dATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2543], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x, (Double)y); #if DEBUG } #endif @@ -37068,7 +39723,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream2dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[2544], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37089,7 +39744,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream2dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[2544], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37107,7 +39762,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords); + InteropHelper.Call(EntryPoints[2544], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37122,7 +39777,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2fATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2545], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x, (Single)y); #if DEBUG } #endif @@ -37141,7 +39796,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream2fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[2546], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37162,7 +39817,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream2fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[2546], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37180,7 +39835,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords); + InteropHelper.Call(EntryPoints[2546], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37195,7 +39850,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2iATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2547], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -37214,7 +39869,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream2ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[2548], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37235,7 +39890,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream2ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[2548], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37253,7 +39908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords); + InteropHelper.Call(EntryPoints[2548], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37268,7 +39923,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2sATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2549], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -37287,7 +39942,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream2svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[2550], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37308,7 +39963,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream2svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[2550], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37326,7 +39981,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream2svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords); + InteropHelper.Call(EntryPoints[2550], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37341,7 +39996,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3dATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2551], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -37360,7 +40015,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream3dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[2552], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37381,7 +40036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream3dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[2552], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37399,7 +40054,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords); + InteropHelper.Call(EntryPoints[2552], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37414,7 +40069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3fATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2553], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -37433,7 +40088,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream3fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[2554], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37454,7 +40109,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream3fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[2554], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37472,7 +40127,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords); + InteropHelper.Call(EntryPoints[2554], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37487,7 +40142,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3iATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2555], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -37506,7 +40161,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream3ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[2556], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37527,7 +40182,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream3ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[2556], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37545,7 +40200,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords); + InteropHelper.Call(EntryPoints[2556], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37560,7 +40215,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3sATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2557], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -37579,7 +40234,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream3svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[2558], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37600,7 +40255,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream3svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[2558], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37618,7 +40273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream3svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords); + InteropHelper.Call(EntryPoints[2558], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37633,7 +40288,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4dATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2559], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -37652,7 +40307,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = coords) { - Delegates.glVertexStream4dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[2560], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37673,7 +40328,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* coords_ptr = &coords) { - Delegates.glVertexStream4dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords_ptr); + InteropHelper.Call(EntryPoints[2560], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37691,7 +40346,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4dvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Double*)coords); + InteropHelper.Call(EntryPoints[2560], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37706,7 +40361,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4fATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2561], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -37725,7 +40380,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = coords) { - Delegates.glVertexStream4fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[2562], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37746,7 +40401,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = &coords) { - Delegates.glVertexStream4fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[2562], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37764,7 +40419,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4fvATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Single*)coords); + InteropHelper.Call(EntryPoints[2562], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37779,7 +40434,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4iATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2563], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -37798,7 +40453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = coords) { - Delegates.glVertexStream4ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[2564], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37819,7 +40474,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* coords_ptr = &coords) { - Delegates.glVertexStream4ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords_ptr); + InteropHelper.Call(EntryPoints[2564], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37837,7 +40492,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4ivATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int32*)coords); + InteropHelper.Call(EntryPoints[2564], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37852,7 +40507,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4sATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2565], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -37871,7 +40526,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = coords) { - Delegates.glVertexStream4svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[2566], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37892,7 +40547,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* coords_ptr = &coords) { - Delegates.glVertexStream4svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords_ptr); + InteropHelper.Call(EntryPoints[2566], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords_ptr); } } #if DEBUG @@ -37910,7 +40565,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexStream4svATI((OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (Int16*)coords); + InteropHelper.Call(EntryPoints[2566], (OpenTK.Graphics.OpenGL.AtiVertexStreams)stream, (IntPtr)coords); #if DEBUG } #endif @@ -37939,7 +40594,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAccum((OpenTK.Graphics.OpenGL.AccumOp)op, (Single)value); + InteropHelper.Call(EntryPoints[0], (OpenTK.Graphics.OpenGL.AccumOp)op, (Single)value); #if DEBUG } #endif @@ -37966,7 +40621,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgram((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[3], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -37994,7 +40649,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgram((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[3], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -38016,7 +40671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.OpenGL.TextureUnit)texture); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.OpenGL.TextureUnit)texture); #if DEBUG } #endif @@ -38043,7 +40698,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFunc((OpenTK.Graphics.OpenGL.AlphaFunction)func, (Single)@ref); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL.AlphaFunction)func, (Single)@ref); #if DEBUG } #endif @@ -38080,7 +40735,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = textures) fixed (bool* residences_ptr = residences) { - return Delegates.glAreTexturesResident((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + return InteropHelper.CallReturn(EntryPoints[16], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); } } #if DEBUG @@ -38119,7 +40774,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = &textures) fixed (bool* residences_ptr = &residences) { - bool retval = Delegates.glAreTexturesResident((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[16], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); residences = *residences_ptr; return retval; } @@ -38156,7 +40811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glAreTexturesResident((Int32)n, (UInt32*)textures, (bool*)residences); + return InteropHelper.CallReturn(EntryPoints[16], (Int32)n, (IntPtr)textures, (IntPtr)residences); #if DEBUG } #endif @@ -38194,7 +40849,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = textures) fixed (bool* residences_ptr = residences) { - return Delegates.glAreTexturesResident((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + return InteropHelper.CallReturn(EntryPoints[16], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); } } #if DEBUG @@ -38234,7 +40889,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = &textures) fixed (bool* residences_ptr = &residences) { - bool retval = Delegates.glAreTexturesResident((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[16], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); residences = *residences_ptr; return retval; } @@ -38271,7 +40926,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glAreTexturesResident((Int32)n, (UInt32*)textures, (bool*)residences); + return InteropHelper.CallReturn(EntryPoints[16], (Int32)n, (IntPtr)textures, (IntPtr)residences); #if DEBUG } #endif @@ -38293,7 +40948,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glArrayElement((Int32)i); + InteropHelper.Call(EntryPoints[18], (Int32)i); #if DEBUG } #endif @@ -38320,7 +40975,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[23], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -38348,7 +41003,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[23], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -38372,7 +41027,7 @@ namespace OpenTK.Graphics.OpenGL { GraphicsContext.CurrentContext.ErrorChecking = false; #endif - Delegates.glBegin((OpenTK.Graphics.OpenGL.PrimitiveType)mode); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.OpenGL.PrimitiveType)mode); #if DEBUG } #endif @@ -38395,7 +41050,7 @@ namespace OpenTK.Graphics.OpenGL { GraphicsContext.CurrentContext.ErrorChecking = false; #endif - Delegates.glBegin((OpenTK.Graphics.OpenGL.PrimitiveType)mode); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.OpenGL.PrimitiveType)mode); #if DEBUG } #endif @@ -38422,7 +41077,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRender((UInt32)id, (OpenTK.Graphics.OpenGL.ConditionalRenderType)mode); + InteropHelper.Call(EntryPoints[25], (UInt32)id, (OpenTK.Graphics.OpenGL.ConditionalRenderType)mode); #if DEBUG } #endif @@ -38450,7 +41105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRender((UInt32)id, (OpenTK.Graphics.OpenGL.ConditionalRenderType)mode); + InteropHelper.Call(EntryPoints[25], (UInt32)id, (OpenTK.Graphics.OpenGL.ConditionalRenderType)mode); #if DEBUG } #endif @@ -38477,7 +41132,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[31], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -38505,7 +41160,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[31], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -38537,7 +41192,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryIndexed((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (UInt32)id); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (UInt32)id); #if DEBUG } #endif @@ -38570,7 +41225,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryIndexed((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (UInt32)id); + InteropHelper.Call(EntryPoints[33], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (UInt32)id); #if DEBUG } #endif @@ -38593,7 +41248,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedback((OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType)primitiveMode); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType)primitiveMode); #if DEBUG } #endif @@ -38615,7 +41270,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedback((OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType)primitiveMode); + InteropHelper.Call(EntryPoints[34], (OpenTK.Graphics.OpenGL.TransformFeedbackPrimitiveType)primitiveMode); #if DEBUG } #endif @@ -38647,7 +41302,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[39], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -38680,7 +41335,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[39], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -38707,7 +41362,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[41], (OpenTK.Graphics.OpenGL.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -38735,7 +41390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[41], (OpenTK.Graphics.OpenGL.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -38767,7 +41422,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -38800,7 +41455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -38833,7 +41488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -38867,7 +41522,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -38909,7 +41564,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -38952,7 +41607,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -38995,7 +41650,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -39039,7 +41694,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -39080,7 +41735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -39123,7 +41778,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -39163,7 +41818,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers); #if DEBUG } #endif @@ -39205,7 +41860,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -39249,7 +41904,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -39289,7 +41944,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers); #if DEBUG } #endif @@ -39332,7 +41987,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = offsets) fixed (IntPtr* sizes_ptr = sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -39377,7 +42032,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = &offsets) fixed (IntPtr* sizes_ptr = &sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -39417,7 +42072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (IntPtr*)sizes); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)sizes); #if DEBUG } #endif @@ -39461,7 +42116,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = offsets) fixed (IntPtr* sizes_ptr = sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -39507,7 +42162,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = &offsets) fixed (IntPtr* sizes_ptr = &sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -39547,7 +42202,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (IntPtr*)sizes); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)sizes); #if DEBUG } #endif @@ -39579,7 +42234,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocation((UInt32)program, (UInt32)color, (String)name); + InteropHelper.Call(EntryPoints[53], (UInt32)program, (UInt32)color, (String)name); #if DEBUG } #endif @@ -39612,7 +42267,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocation((UInt32)program, (UInt32)color, (String)name); + InteropHelper.Call(EntryPoints[53], (UInt32)program, (UInt32)color, (String)name); #if DEBUG } #endif @@ -39649,7 +42304,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocationIndexed((UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[55], (UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); #if DEBUG } #endif @@ -39687,7 +42342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocationIndexed((UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[55], (UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); #if DEBUG } #endif @@ -39714,7 +42369,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[57], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -39742,7 +42397,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[57], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -39794,7 +42449,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTexture((UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.TextureAccess)access, (OpenTK.Graphics.OpenGL.SizedInternalFormat)format); + InteropHelper.Call(EntryPoints[59], (UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.TextureAccess)access, (OpenTK.Graphics.OpenGL.SizedInternalFormat)format); #if DEBUG } #endif @@ -39847,7 +42502,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTexture((UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.TextureAccess)access, (OpenTK.Graphics.OpenGL.SizedInternalFormat)format); + InteropHelper.Call(EntryPoints[59], (UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.TextureAccess)access, (OpenTK.Graphics.OpenGL.SizedInternalFormat)format); #if DEBUG } #endif @@ -39883,7 +42538,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -39921,7 +42576,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = &textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -39956,7 +42611,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[61], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -39993,7 +42648,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -40032,7 +42687,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = &textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[61], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -40067,7 +42722,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[61], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -40089,7 +42744,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[68], (UInt32)pipeline); #if DEBUG } #endif @@ -40112,7 +42767,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[68], (UInt32)pipeline); #if DEBUG } #endif @@ -40139,7 +42794,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -40167,7 +42822,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -40194,7 +42849,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSampler((UInt32)unit, (UInt32)sampler); + InteropHelper.Call(EntryPoints[72], (UInt32)unit, (UInt32)sampler); #if DEBUG } #endif @@ -40222,7 +42877,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSampler((UInt32)unit, (UInt32)sampler); + InteropHelper.Call(EntryPoints[72], (UInt32)unit, (UInt32)sampler); #if DEBUG } #endif @@ -40258,7 +42913,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* samplers_ptr = samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[73], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -40296,7 +42951,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[73], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -40331,7 +42986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[73], (UInt32)first, (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -40368,7 +43023,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[73], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -40407,7 +43062,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[73], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -40442,7 +43097,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[73], (UInt32)first, (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -40469,7 +43124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -40497,7 +43152,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -40533,7 +43188,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[77], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -40571,7 +43226,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = &textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[77], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -40606,7 +43261,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[77], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -40643,7 +43298,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[77], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -40682,7 +43337,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = &textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[77], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -40717,7 +43372,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[77], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -40744,7 +43399,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.OpenGL.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -40772,7 +43427,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.OpenGL.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -40794,7 +43449,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArray((UInt32)array); + InteropHelper.Call(EntryPoints[81], (UInt32)array); #if DEBUG } #endif @@ -40817,7 +43472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArray((UInt32)array); + InteropHelper.Call(EntryPoints[81], (UInt32)array); #if DEBUG } #endif @@ -40854,7 +43509,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffer((UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); + InteropHelper.Call(EntryPoints[83], (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); #if DEBUG } #endif @@ -40892,7 +43547,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffer((UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); + InteropHelper.Call(EntryPoints[83], (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); #if DEBUG } #endif @@ -40940,7 +43595,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = offsets) fixed (Int32* strides_ptr = strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[84], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -40990,7 +43645,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = &offsets) fixed (Int32* strides_ptr = &strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[84], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -41035,7 +43690,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (Int32*)strides); + InteropHelper.Call(EntryPoints[84], (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)strides); #if DEBUG } #endif @@ -41084,7 +43739,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = offsets) fixed (Int32* strides_ptr = strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[84], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -41135,7 +43790,7 @@ namespace OpenTK.Graphics.OpenGL fixed (IntPtr* offsets_ptr = &offsets) fixed (Int32* strides_ptr = &strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[84], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -41180,7 +43835,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (Int32*)strides); + InteropHelper.Call(EntryPoints[84], (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)strides); #if DEBUG } #endif @@ -41221,7 +43876,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* bitmap_ptr = bitmap) { - Delegates.glBitmap((Int32)width, (Int32)height, (Single)xorig, (Single)yorig, (Single)xmove, (Single)ymove, (Byte*)bitmap_ptr); + InteropHelper.Call(EntryPoints[99], (Int32)width, (Int32)height, (Single)xorig, (Single)yorig, (Single)xmove, (Single)ymove, (IntPtr)bitmap_ptr); } } #if DEBUG @@ -41264,7 +43919,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* bitmap_ptr = &bitmap) { - Delegates.glBitmap((Int32)width, (Int32)height, (Single)xorig, (Single)yorig, (Single)xmove, (Single)ymove, (Byte*)bitmap_ptr); + InteropHelper.Call(EntryPoints[99], (Int32)width, (Int32)height, (Single)xorig, (Single)yorig, (Single)xmove, (Single)ymove, (IntPtr)bitmap_ptr); } } #if DEBUG @@ -41304,7 +43959,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBitmap((Int32)width, (Int32)height, (Single)xorig, (Single)yorig, (Single)xmove, (Single)ymove, (Byte*)bitmap); + InteropHelper.Call(EntryPoints[99], (Int32)width, (Int32)height, (Single)xorig, (Single)yorig, (Single)xmove, (Single)ymove, (IntPtr)bitmap); #if DEBUG } #endif @@ -41326,7 +43981,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[102], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -41354,7 +44009,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -41381,7 +44036,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -41409,7 +44064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationi((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[107], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -41436,7 +44091,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationi((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[107], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -41465,7 +44120,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationi((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[107], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -41493,7 +44148,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationi((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[107], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -41525,7 +44180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparate((OpenTK.Graphics.OpenGL.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[110], (OpenTK.Graphics.OpenGL.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -41557,7 +44212,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[112], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -41590,7 +44245,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[112], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -41622,7 +44277,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactor, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[115], (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactor, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -41655,7 +44310,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunci((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); + InteropHelper.Call(EntryPoints[116], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); #if DEBUG } #endif @@ -41687,7 +44342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunci((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); + InteropHelper.Call(EntryPoints[116], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); #if DEBUG } #endif @@ -41721,7 +44376,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunci((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); + InteropHelper.Call(EntryPoints[116], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); #if DEBUG } #endif @@ -41754,7 +44409,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunci((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); + InteropHelper.Call(EntryPoints[116], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dst); #if DEBUG } #endif @@ -41797,7 +44452,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -41839,7 +44494,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[119], (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -41882,7 +44537,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); + InteropHelper.Call(EntryPoints[121], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); #if DEBUG } #endif @@ -41924,7 +44579,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); + InteropHelper.Call(EntryPoints[121], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); #if DEBUG } #endif @@ -41968,7 +44623,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); + InteropHelper.Call(EntryPoints[121], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); #if DEBUG } #endif @@ -42011,7 +44666,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); + InteropHelper.Call(EntryPoints[121], (UInt32)buf, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL.BlendingFactorDest)dstAlpha); #if DEBUG } #endif @@ -42048,7 +44703,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebuffer((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[126], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -42085,7 +44740,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[129], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); #if DEBUG } #endif @@ -42126,7 +44781,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[129], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); } finally { @@ -42172,7 +44827,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[129], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); } finally { @@ -42218,7 +44873,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[129], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); } finally { @@ -42264,7 +44919,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[129], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -42307,7 +44962,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); #if DEBUG } #endif @@ -42348,7 +45003,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); } finally { @@ -42394,7 +45049,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); } finally { @@ -42440,7 +45095,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); } finally { @@ -42486,7 +45141,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[132], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.BufferStorageFlags)flags); data = (T2)data_ptr.Target; } finally @@ -42529,7 +45184,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -42570,7 +45225,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -42616,7 +45271,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -42662,7 +45317,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -42708,7 +45363,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[133], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -42736,7 +45391,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCallList((UInt32)list); + InteropHelper.Call(EntryPoints[135], (UInt32)list); #if DEBUG } #endif @@ -42759,7 +45414,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCallList((UInt32)list); + InteropHelper.Call(EntryPoints[135], (UInt32)list); #if DEBUG } #endif @@ -42791,7 +45446,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists); + InteropHelper.Call(EntryPoints[136], (Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists); #if DEBUG } #endif @@ -42827,7 +45482,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle lists_ptr = GCHandle.Alloc(lists, GCHandleType.Pinned); try { - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[136], (Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); } finally { @@ -42868,7 +45523,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle lists_ptr = GCHandle.Alloc(lists, GCHandleType.Pinned); try { - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[136], (Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); } finally { @@ -42909,7 +45564,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle lists_ptr = GCHandle.Alloc(lists, GCHandleType.Pinned); try { - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[136], (Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); } finally { @@ -42950,7 +45605,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle lists_ptr = GCHandle.Alloc(lists, GCHandleType.Pinned); try { - Delegates.glCallLists((Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[136], (Int32)n, (OpenTK.Graphics.OpenGL.ListNameType)type, (IntPtr)lists_ptr.AddrOfPinnedObject()); lists = (T2)lists_ptr.Target; } finally @@ -42978,7 +45633,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.OpenGL.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[137], (OpenTK.Graphics.OpenGL.FramebufferTarget)target); #if DEBUG } #endif @@ -43005,7 +45660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClampColor((OpenTK.Graphics.OpenGL.ClampColorTarget)target, (OpenTK.Graphics.OpenGL.ClampColorMode)clamp); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.OpenGL.ClampColorTarget)target, (OpenTK.Graphics.OpenGL.ClampColorMode)clamp); #if DEBUG } #endif @@ -43027,7 +45682,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.OpenGL.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.OpenGL.ClearBufferMask)mask); #if DEBUG } #endif @@ -43049,7 +45704,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearAccum((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[143], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -43096,7 +45751,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data); #if DEBUG } #endif @@ -43147,7 +45802,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -43203,7 +45858,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -43259,7 +45914,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -43315,7 +45970,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -43364,7 +46019,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfi((OpenTK.Graphics.OpenGL.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); #if DEBUG } #endif @@ -43406,7 +46061,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfi((OpenTK.Graphics.OpenGL.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); #if DEBUG } #endif @@ -43452,7 +46107,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glClearBufferfv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -43500,7 +46155,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glClearBufferfv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -43545,7 +46200,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -43591,7 +46246,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glClearBufferiv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -43639,7 +46294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glClearBufferiv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -43684,7 +46339,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferiv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -43736,7 +46391,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data); #if DEBUG } #endif @@ -43792,7 +46447,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -43853,7 +46508,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -43914,7 +46569,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -43975,7 +46630,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -44028,7 +46683,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -44077,7 +46732,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -44122,7 +46777,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferuiv((OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -44144,7 +46799,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[151], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -44166,7 +46821,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepth((Double)depth); + InteropHelper.Call(EntryPoints[155], (Double)depth); #if DEBUG } #endif @@ -44188,7 +46843,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthf((Single)d); + InteropHelper.Call(EntryPoints[157], (Single)d); #if DEBUG } #endif @@ -44210,7 +46865,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearIndex((Single)c); + InteropHelper.Call(EntryPoints[160], (Single)c); #if DEBUG } #endif @@ -44232,7 +46887,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearStencil((Int32)s); + InteropHelper.Call(EntryPoints[163], (Int32)s); #if DEBUG } #endif @@ -44274,7 +46929,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -44320,7 +46975,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44371,7 +47026,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44422,7 +47077,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44473,7 +47128,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -44522,7 +47177,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -44569,7 +47224,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44621,7 +47276,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44673,7 +47328,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44725,7 +47380,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[164], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -44803,7 +47458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -44879,7 +47534,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -44960,7 +47615,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -45041,7 +47696,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -45122,7 +47777,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -45201,7 +47856,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -45278,7 +47933,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -45360,7 +48015,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -45442,7 +48097,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -45524,7 +48179,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[165], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -45552,7 +48207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientActiveTexture((OpenTK.Graphics.OpenGL.TextureUnit)texture); + InteropHelper.Call(EntryPoints[166], (OpenTK.Graphics.OpenGL.TextureUnit)texture); #if DEBUG } #endif @@ -45584,7 +48239,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[170], (IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -45617,7 +48272,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[170], (IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -45650,7 +48305,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[170], (IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -45684,7 +48339,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[170], (IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -45718,7 +48373,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[170], (IntPtr)sync, (OpenTK.Graphics.OpenGL.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -45749,7 +48404,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* equation_ptr = equation) { - Delegates.glClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -45782,7 +48437,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* equation_ptr = &equation) { - Delegates.glClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -45812,7 +48467,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (IntPtr)equation); #if DEBUG } #endif @@ -45840,7 +48495,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3b((SByte)red, (SByte)green, (SByte)blue); + InteropHelper.Call(EntryPoints[174], (SByte)red, (SByte)green, (SByte)blue); #if DEBUG } #endif @@ -45872,7 +48527,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glColor3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[175], (IntPtr)v_ptr); } } #if DEBUG @@ -45906,7 +48561,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glColor3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[175], (IntPtr)v_ptr); } } #if DEBUG @@ -45936,7 +48591,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3bv((SByte*)v); + InteropHelper.Call(EntryPoints[175], (IntPtr)v); #if DEBUG } #endif @@ -45963,7 +48618,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3d((Double)red, (Double)green, (Double)blue); + InteropHelper.Call(EntryPoints[176], (Double)red, (Double)green, (Double)blue); #if DEBUG } #endif @@ -45994,7 +48649,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glColor3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[177], (IntPtr)v_ptr); } } #if DEBUG @@ -46027,7 +48682,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glColor3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[177], (IntPtr)v_ptr); } } #if DEBUG @@ -46057,7 +48712,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3dv((Double*)v); + InteropHelper.Call(EntryPoints[177], (IntPtr)v); #if DEBUG } #endif @@ -46084,7 +48739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3f((Single)red, (Single)green, (Single)blue); + InteropHelper.Call(EntryPoints[178], (Single)red, (Single)green, (Single)blue); #if DEBUG } #endif @@ -46115,7 +48770,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glColor3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[179], (IntPtr)v_ptr); } } #if DEBUG @@ -46148,7 +48803,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glColor3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[179], (IntPtr)v_ptr); } } #if DEBUG @@ -46178,7 +48833,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3fv((Single*)v); + InteropHelper.Call(EntryPoints[179], (IntPtr)v); #if DEBUG } #endif @@ -46205,7 +48860,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3i((Int32)red, (Int32)green, (Int32)blue); + InteropHelper.Call(EntryPoints[184], (Int32)red, (Int32)green, (Int32)blue); #if DEBUG } #endif @@ -46236,7 +48891,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glColor3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[185], (IntPtr)v_ptr); } } #if DEBUG @@ -46269,7 +48924,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glColor3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[185], (IntPtr)v_ptr); } } #if DEBUG @@ -46299,7 +48954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3iv((Int32*)v); + InteropHelper.Call(EntryPoints[185], (IntPtr)v); #if DEBUG } #endif @@ -46326,7 +48981,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3s((Int16)red, (Int16)green, (Int16)blue); + InteropHelper.Call(EntryPoints[186], (Int16)red, (Int16)green, (Int16)blue); #if DEBUG } #endif @@ -46357,7 +49012,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glColor3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[187], (IntPtr)v_ptr); } } #if DEBUG @@ -46390,7 +49045,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glColor3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[187], (IntPtr)v_ptr); } } #if DEBUG @@ -46420,7 +49075,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3sv((Int16*)v); + InteropHelper.Call(EntryPoints[187], (IntPtr)v); #if DEBUG } #endif @@ -46447,7 +49102,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3ub((Byte)red, (Byte)green, (Byte)blue); + InteropHelper.Call(EntryPoints[188], (Byte)red, (Byte)green, (Byte)blue); #if DEBUG } #endif @@ -46478,7 +49133,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glColor3ubv((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[189], (IntPtr)v_ptr); } } #if DEBUG @@ -46511,7 +49166,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glColor3ubv((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[189], (IntPtr)v_ptr); } } #if DEBUG @@ -46541,7 +49196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3ubv((Byte*)v); + InteropHelper.Call(EntryPoints[189], (IntPtr)v); #if DEBUG } #endif @@ -46569,7 +49224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3ui((UInt32)red, (UInt32)green, (UInt32)blue); + InteropHelper.Call(EntryPoints[190], (UInt32)red, (UInt32)green, (UInt32)blue); #if DEBUG } #endif @@ -46601,7 +49256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glColor3uiv((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[191], (IntPtr)v_ptr); } } #if DEBUG @@ -46635,7 +49290,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glColor3uiv((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[191], (IntPtr)v_ptr); } } #if DEBUG @@ -46665,7 +49320,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3uiv((UInt32*)v); + InteropHelper.Call(EntryPoints[191], (IntPtr)v); #if DEBUG } #endif @@ -46693,7 +49348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3us((UInt16)red, (UInt16)green, (UInt16)blue); + InteropHelper.Call(EntryPoints[192], (UInt16)red, (UInt16)green, (UInt16)blue); #if DEBUG } #endif @@ -46725,7 +49380,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glColor3usv((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[193], (IntPtr)v_ptr); } } #if DEBUG @@ -46759,7 +49414,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glColor3usv((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[193], (IntPtr)v_ptr); } } #if DEBUG @@ -46789,7 +49444,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3usv((UInt16*)v); + InteropHelper.Call(EntryPoints[193], (IntPtr)v); #if DEBUG } #endif @@ -46817,7 +49472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4b((SByte)red, (SByte)green, (SByte)blue, (SByte)alpha); + InteropHelper.Call(EntryPoints[196], (SByte)red, (SByte)green, (SByte)blue, (SByte)alpha); #if DEBUG } #endif @@ -46849,7 +49504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glColor4bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[197], (IntPtr)v_ptr); } } #if DEBUG @@ -46883,7 +49538,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glColor4bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[197], (IntPtr)v_ptr); } } #if DEBUG @@ -46913,7 +49568,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4bv((SByte*)v); + InteropHelper.Call(EntryPoints[197], (IntPtr)v); #if DEBUG } #endif @@ -46940,7 +49595,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4d((Double)red, (Double)green, (Double)blue, (Double)alpha); + InteropHelper.Call(EntryPoints[198], (Double)red, (Double)green, (Double)blue, (Double)alpha); #if DEBUG } #endif @@ -46971,7 +49626,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glColor4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[199], (IntPtr)v_ptr); } } #if DEBUG @@ -47004,7 +49659,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glColor4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[199], (IntPtr)v_ptr); } } #if DEBUG @@ -47034,7 +49689,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4dv((Double*)v); + InteropHelper.Call(EntryPoints[199], (IntPtr)v); #if DEBUG } #endif @@ -47061,7 +49716,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4f((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[200], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -47092,7 +49747,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glColor4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[203], (IntPtr)v_ptr); } } #if DEBUG @@ -47125,7 +49780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glColor4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[203], (IntPtr)v_ptr); } } #if DEBUG @@ -47155,7 +49810,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4fv((Single*)v); + InteropHelper.Call(EntryPoints[203], (IntPtr)v); #if DEBUG } #endif @@ -47182,7 +49837,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4i((Int32)red, (Int32)green, (Int32)blue, (Int32)alpha); + InteropHelper.Call(EntryPoints[206], (Int32)red, (Int32)green, (Int32)blue, (Int32)alpha); #if DEBUG } #endif @@ -47213,7 +49868,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glColor4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[207], (IntPtr)v_ptr); } } #if DEBUG @@ -47246,7 +49901,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glColor4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[207], (IntPtr)v_ptr); } } #if DEBUG @@ -47276,7 +49931,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4iv((Int32*)v); + InteropHelper.Call(EntryPoints[207], (IntPtr)v); #if DEBUG } #endif @@ -47303,7 +49958,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4s((Int16)red, (Int16)green, (Int16)blue, (Int16)alpha); + InteropHelper.Call(EntryPoints[208], (Int16)red, (Int16)green, (Int16)blue, (Int16)alpha); #if DEBUG } #endif @@ -47334,7 +49989,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glColor4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[209], (IntPtr)v_ptr); } } #if DEBUG @@ -47367,7 +50022,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glColor4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[209], (IntPtr)v_ptr); } } #if DEBUG @@ -47397,7 +50052,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4sv((Int16*)v); + InteropHelper.Call(EntryPoints[209], (IntPtr)v); #if DEBUG } #endif @@ -47424,7 +50079,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ub((Byte)red, (Byte)green, (Byte)blue, (Byte)alpha); + InteropHelper.Call(EntryPoints[210], (Byte)red, (Byte)green, (Byte)blue, (Byte)alpha); #if DEBUG } #endif @@ -47455,7 +50110,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glColor4ubv((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[211], (IntPtr)v_ptr); } } #if DEBUG @@ -47488,7 +50143,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glColor4ubv((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[211], (IntPtr)v_ptr); } } #if DEBUG @@ -47518,7 +50173,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ubv((Byte*)v); + InteropHelper.Call(EntryPoints[211], (IntPtr)v); #if DEBUG } #endif @@ -47546,7 +50201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ui((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); + InteropHelper.Call(EntryPoints[216], (UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); #if DEBUG } #endif @@ -47578,7 +50233,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glColor4uiv((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[217], (IntPtr)v_ptr); } } #if DEBUG @@ -47612,7 +50267,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glColor4uiv((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[217], (IntPtr)v_ptr); } } #if DEBUG @@ -47642,7 +50297,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4uiv((UInt32*)v); + InteropHelper.Call(EntryPoints[217], (IntPtr)v); #if DEBUG } #endif @@ -47670,7 +50325,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4us((UInt16)red, (UInt16)green, (UInt16)blue, (UInt16)alpha); + InteropHelper.Call(EntryPoints[218], (UInt16)red, (UInt16)green, (UInt16)blue, (UInt16)alpha); #if DEBUG } #endif @@ -47702,7 +50357,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glColor4usv((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[219], (IntPtr)v_ptr); } } #if DEBUG @@ -47736,7 +50391,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glColor4usv((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[219], (IntPtr)v_ptr); } } #if DEBUG @@ -47766,7 +50421,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4usv((UInt16*)v); + InteropHelper.Call(EntryPoints[219], (IntPtr)v); #if DEBUG } #endif @@ -47793,7 +50448,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); + InteropHelper.Call(EntryPoints[226], (bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -47820,7 +50475,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaski((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + InteropHelper.Call(EntryPoints[227], (UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); #if DEBUG } #endif @@ -47848,7 +50503,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaski((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + InteropHelper.Call(EntryPoints[227], (UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); #if DEBUG } #endif @@ -47875,7 +50530,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaterial((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.ColorMaterialParameter)mode); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.ColorMaterialParameter)mode); #if DEBUG } #endif @@ -47890,7 +50545,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -47906,7 +50561,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -47922,7 +50577,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -47938,7 +50593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -47953,7 +50608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -47969,7 +50624,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -47985,7 +50640,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[233], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -48001,7 +50656,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[233], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -48038,7 +50693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[234], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -48079,7 +50734,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[234], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -48125,7 +50780,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[234], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -48171,7 +50826,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[234], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -48217,7 +50872,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[234], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -48270,7 +50925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -48321,7 +50976,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -48377,7 +51032,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -48433,7 +51088,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -48489,7 +51144,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T5)data_ptr.Target; } finally @@ -48542,7 +51197,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -48593,7 +51248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -48649,7 +51304,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -48705,7 +51360,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -48761,7 +51416,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T5)table_ptr.Target; } finally @@ -48803,7 +51458,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -48841,7 +51496,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -48876,7 +51531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -48912,7 +51567,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -48950,7 +51605,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -48985,7 +51640,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.ColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -49007,7 +51662,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[254], (UInt32)shader); #if DEBUG } #endif @@ -49030,7 +51685,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[254], (UInt32)shader); #if DEBUG } #endif @@ -49082,7 +51737,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -49138,7 +51793,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49199,7 +51854,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49260,7 +51915,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49321,7 +51976,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[263], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -49384,7 +52039,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -49445,7 +52100,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49511,7 +52166,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49577,7 +52232,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49643,7 +52298,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[265], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -49711,7 +52366,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -49777,7 +52432,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49848,7 +52503,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49919,7 +52574,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -49990,7 +52645,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[267], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -50048,7 +52703,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[269], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -50104,7 +52759,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[269], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50165,7 +52820,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[269], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50226,7 +52881,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[269], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50287,7 +52942,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[269], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -50355,7 +53010,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -50421,7 +53076,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50492,7 +53147,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50563,7 +53218,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50634,7 +53289,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[271], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -50707,7 +53362,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -50778,7 +53433,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50854,7 +53509,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -50930,7 +53585,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -51006,7 +53661,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[273], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -51059,7 +53714,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -51110,7 +53765,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -51166,7 +53821,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -51222,7 +53877,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -51278,7 +53933,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[281], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T5)image_ptr.Target; } finally @@ -51336,7 +53991,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -51392,7 +54047,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -51453,7 +54108,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -51514,7 +54169,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -51575,7 +54230,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[283], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T6)image_ptr.Target; } finally @@ -51616,7 +54271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterf((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Single)@params); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Single)@params); #if DEBUG } #endif @@ -51655,7 +54310,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[287], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -51693,7 +54348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[287], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -51728,7 +54383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameteri((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Int32)@params); + InteropHelper.Call(EntryPoints[289], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Int32)@params); #if DEBUG } #endif @@ -51767,7 +54422,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[291], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -51805,7 +54460,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[291], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.ConvolutionParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -51847,7 +54502,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)readTarget, (OpenTK.Graphics.OpenGL.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.OpenGL.BufferTarget)readTarget, (OpenTK.Graphics.OpenGL.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -51884,7 +54539,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyColorSubTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[296], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -51926,7 +54581,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[298], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -51963,7 +54618,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyConvolutionFilter1D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[300], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -52005,7 +54660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyConvolutionFilter2D((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[302], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -52092,7 +54747,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyImageSubData((UInt32)srcName, (OpenTK.Graphics.OpenGL.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); + InteropHelper.Call(EntryPoints[304], (UInt32)srcName, (OpenTK.Graphics.OpenGL.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); #if DEBUG } #endif @@ -52180,7 +54835,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyImageSubData((UInt32)srcName, (OpenTK.Graphics.OpenGL.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); + InteropHelper.Call(EntryPoints[304], (UInt32)srcName, (OpenTK.Graphics.OpenGL.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); #if DEBUG } #endif @@ -52212,7 +54867,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelCopyType)type); + InteropHelper.Call(EntryPoints[312], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelCopyType)type); #if DEBUG } #endif @@ -52259,7 +54914,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + InteropHelper.Call(EntryPoints[313], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); #if DEBUG } #endif @@ -52311,7 +54966,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[315], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -52353,7 +55008,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[317], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -52405,7 +55060,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[319], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -52462,7 +55117,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[321], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -52479,7 +55134,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateProgram(); + return InteropHelper.CallReturn(EntryPoints[332]); #if DEBUG } #endif @@ -52501,7 +55156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShader((OpenTK.Graphics.OpenGL.ShaderType)type); + return InteropHelper.CallReturn(EntryPoints[334], (OpenTK.Graphics.OpenGL.ShaderType)type); #if DEBUG } #endif @@ -52533,7 +55188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramv((OpenTK.Graphics.OpenGL.ShaderType)type, (Int32)count, (String[])strings); + return InteropHelper.CallReturn(EntryPoints[337], (OpenTK.Graphics.OpenGL.ShaderType)type, (Int32)count, (String[])strings); #if DEBUG } #endif @@ -52555,7 +55210,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.OpenGL.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[340], (OpenTK.Graphics.OpenGL.CullFaceMode)mode); #if DEBUG } #endif @@ -52582,7 +55237,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[344], (DebugProc)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -52613,7 +55268,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[344], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -52649,7 +55304,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[344], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -52685,7 +55340,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[344], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -52721,7 +55376,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[344], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -52778,7 +55433,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -52831,7 +55486,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -52881,7 +55536,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -52933,7 +55588,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -52987,7 +55642,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -53037,7 +55692,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL.DebugSourceControl)source, (OpenTK.Graphics.OpenGL.DebugTypeControl)type, (OpenTK.Graphics.OpenGL.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -53084,7 +55739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -53132,7 +55787,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[352], (OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -53163,7 +55818,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -53196,7 +55851,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -53228,7 +55883,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -53261,7 +55916,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -53291,7 +55946,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -53323,7 +55978,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -53357,7 +56012,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -53387,7 +56042,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[360], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -53418,7 +56073,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -53451,7 +56106,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -53483,7 +56138,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -53516,7 +56171,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -53546,7 +56201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -53578,7 +56233,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -53612,7 +56267,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -53642,7 +56297,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[365], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -53669,7 +56324,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteLists((UInt32)list, (Int32)range); + InteropHelper.Call(EntryPoints[367], (UInt32)list, (Int32)range); #if DEBUG } #endif @@ -53697,7 +56352,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteLists((UInt32)list, (Int32)range); + InteropHelper.Call(EntryPoints[367], (UInt32)list, (Int32)range); #if DEBUG } #endif @@ -53719,7 +56374,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[374], (UInt32)program); #if DEBUG } #endif @@ -53742,7 +56397,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[374], (UInt32)program); #if DEBUG } #endif @@ -53773,7 +56428,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -53806,7 +56461,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -53838,7 +56493,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53871,7 +56526,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53901,7 +56556,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -53933,7 +56588,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53967,7 +56622,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -53997,7 +56652,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[375], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -54028,7 +56683,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -54061,7 +56716,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -54093,7 +56748,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -54126,7 +56781,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -54156,7 +56811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -54188,7 +56843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -54222,7 +56877,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -54252,7 +56907,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[379], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -54283,7 +56938,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -54316,7 +56971,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -54348,7 +57003,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -54381,7 +57036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -54411,7 +57066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -54443,7 +57098,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -54477,7 +57132,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -54507,7 +57162,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[381], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -54538,7 +57193,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 count = 1; UInt32* samplers_ptr = (UInt32*)&samplers; - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers_ptr); } #if DEBUG } @@ -54571,7 +57226,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 count = 1; UInt32* samplers_ptr = (UInt32*)&samplers; - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers_ptr); } #if DEBUG } @@ -54603,7 +57258,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* samplers_ptr = samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -54636,7 +57291,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -54666,7 +57321,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -54698,7 +57353,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -54732,7 +57387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -54762,7 +57417,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[383], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -54784,7 +57439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[384], (UInt32)shader); #if DEBUG } #endif @@ -54807,7 +57462,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[384], (UInt32)shader); #if DEBUG } #endif @@ -54829,7 +57484,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSync((IntPtr)sync); + InteropHelper.Call(EntryPoints[385], (IntPtr)sync); #if DEBUG } #endif @@ -54860,7 +57515,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -54893,7 +57548,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -54925,7 +57580,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -54958,7 +57613,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -54988,7 +57643,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -55020,7 +57675,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -55054,7 +57709,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -55084,7 +57739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[386], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -55115,7 +57770,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -55148,7 +57803,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -55180,7 +57835,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -55213,7 +57868,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -55243,7 +57898,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -55275,7 +57930,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -55309,7 +57964,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -55339,7 +57994,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[388], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -55370,7 +58025,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -55403,7 +58058,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -55435,7 +58090,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -55468,7 +58123,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -55498,7 +58153,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -55530,7 +58185,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -55564,7 +58219,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -55594,7 +58249,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[390], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -55616,7 +58271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.OpenGL.DepthFunction)func); + InteropHelper.Call(EntryPoints[395], (OpenTK.Graphics.OpenGL.DepthFunction)func); #if DEBUG } #endif @@ -55638,7 +58293,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthMask((bool)flag); + InteropHelper.Call(EntryPoints[396], (bool)flag); #if DEBUG } #endif @@ -55665,7 +58320,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRange((Double)near, (Double)far); + InteropHelper.Call(EntryPoints[397], (Double)near, (Double)far); #if DEBUG } #endif @@ -55701,7 +58356,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[398], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -55739,7 +58394,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[398], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -55774,7 +58429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[398], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -55811,7 +58466,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[398], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -55850,7 +58505,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[398], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -55885,7 +58540,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[398], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -55912,7 +58567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangef((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[400], (Single)n, (Single)f); #if DEBUG } #endif @@ -55944,7 +58599,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeIndexed((UInt32)index, (Double)n, (Double)f); + InteropHelper.Call(EntryPoints[402], (UInt32)index, (Double)n, (Double)f); #if DEBUG } #endif @@ -55977,7 +58632,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeIndexed((UInt32)index, (Double)n, (Double)f); + InteropHelper.Call(EntryPoints[402], (UInt32)index, (Double)n, (Double)f); #if DEBUG } #endif @@ -56004,7 +58659,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[405], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -56032,7 +58687,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[405], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -56047,7 +58702,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.OpenGL.EnableCap)cap); + InteropHelper.Call(EntryPoints[407], (OpenTK.Graphics.OpenGL.EnableCap)cap); #if DEBUG } #endif @@ -56062,7 +58717,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientState((OpenTK.Graphics.OpenGL.ArrayCap)array); + InteropHelper.Call(EntryPoints[408], (OpenTK.Graphics.OpenGL.ArrayCap)array); #if DEBUG } #endif @@ -56077,7 +58732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisablei((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[411], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -56093,7 +58748,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisablei((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[411], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -56108,7 +58763,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[417], (UInt32)index); #if DEBUG } #endif @@ -56124,7 +58779,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[417], (UInt32)index); #if DEBUG } #endif @@ -56156,7 +58811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchCompute((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); + InteropHelper.Call(EntryPoints[419], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); #if DEBUG } #endif @@ -56189,7 +58844,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchCompute((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); + InteropHelper.Call(EntryPoints[419], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); #if DEBUG } #endif @@ -56211,7 +58866,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchComputeIndirect((IntPtr)indirect); + InteropHelper.Call(EntryPoints[421], (IntPtr)indirect); #if DEBUG } #endif @@ -56244,7 +58899,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[422], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -56276,7 +58931,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[422], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -56303,7 +58958,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect); + InteropHelper.Call(EntryPoints[424], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect); #if DEBUG } #endif @@ -56334,7 +58989,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[424], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -56370,7 +59025,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[424], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -56406,7 +59061,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[424], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -56442,7 +59097,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[424], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); indirect = (T1)indirect_ptr.Target; } finally @@ -56486,7 +59141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); + InteropHelper.Call(EntryPoints[425], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); #if DEBUG } #endif @@ -56523,7 +59178,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); + InteropHelper.Call(EntryPoints[425], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); #if DEBUG } #endif @@ -56565,7 +59220,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[427], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -56608,7 +59263,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[427], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -56630,7 +59285,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffer((OpenTK.Graphics.OpenGL.DrawBufferMode)mode); + InteropHelper.Call(EntryPoints[429], (OpenTK.Graphics.OpenGL.DrawBufferMode)mode); #if DEBUG } #endif @@ -56661,7 +59316,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs_ptr = bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL.DrawBuffersEnum*)bufs_ptr); + InteropHelper.Call(EntryPoints[430], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -56694,7 +59349,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs_ptr = &bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL.DrawBuffersEnum*)bufs_ptr); + InteropHelper.Call(EntryPoints[430], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -56724,7 +59379,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL.DrawBuffersEnum*)bufs); + InteropHelper.Call(EntryPoints[430], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -56761,7 +59416,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -56799,7 +59454,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -56841,7 +59496,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -56888,7 +59543,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -56935,7 +59590,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -56982,7 +59637,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -57025,7 +59680,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -57062,7 +59717,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -57103,7 +59758,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -57149,7 +59804,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -57195,7 +59850,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -57241,7 +59896,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[435], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -57290,7 +59945,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -57337,7 +59992,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -57389,7 +60044,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -57441,7 +60096,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -57493,7 +60148,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -57541,7 +60196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -57587,7 +60242,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -57638,7 +60293,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -57689,7 +60344,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -57740,7 +60395,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[436], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -57778,7 +60433,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect); + InteropHelper.Call(EntryPoints[437], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect); #if DEBUG } #endif @@ -57814,7 +60469,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[437], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -57855,7 +60510,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[437], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -57896,7 +60551,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[437], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -57937,7 +60592,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[437], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); indirect = (T2)indirect_ptr.Target; } finally @@ -57986,7 +60641,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); #if DEBUG } #endif @@ -58033,7 +60688,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -58085,7 +60740,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -58137,7 +60792,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -58189,7 +60844,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); indices = (T3)indices_ptr.Target; } finally @@ -58237,7 +60892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); #if DEBUG } #endif @@ -58283,7 +60938,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -58334,7 +60989,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -58385,7 +61040,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -58436,7 +61091,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[438], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); indices = (T3)indices_ptr.Target; } finally @@ -58489,7 +61144,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -58537,7 +61192,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -58588,7 +61243,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -58645,7 +61300,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -58701,7 +61356,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -58758,7 +61413,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -58814,7 +61469,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -58871,7 +61526,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -58927,7 +61582,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -58985,7 +61640,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[440], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -59039,7 +61694,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex); #if DEBUG } #endif @@ -59091,7 +61746,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -59148,7 +61803,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -59205,7 +61860,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -59262,7 +61917,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -59315,7 +61970,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex); #if DEBUG } #endif @@ -59366,7 +62021,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -59422,7 +62077,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -59478,7 +62133,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -59534,7 +62189,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[441], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -59592,7 +62247,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); #if DEBUG } #endif @@ -59645,7 +62300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); #if DEBUG } #endif @@ -59701,7 +62356,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -59763,7 +62418,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -59824,7 +62479,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -59886,7 +62541,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -59947,7 +62602,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -60009,7 +62664,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -60070,7 +62725,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -60133,7 +62788,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[442], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -60176,7 +62831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[445], (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -60217,7 +62872,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[445], (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60263,7 +62918,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[445], (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60309,7 +62964,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[445], (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -60355,7 +63010,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glDrawPixels((Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[445], (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T4)pixels_ptr.Target; } finally @@ -60409,7 +63064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -60461,7 +63116,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -60518,7 +63173,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -60575,7 +63230,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -60632,7 +63287,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -60687,7 +63342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -60740,7 +63395,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -60798,7 +63453,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -60856,7 +63511,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -60914,7 +63569,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -60967,7 +63622,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -61018,7 +63673,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -61074,7 +63729,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -61130,7 +63785,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -61186,7 +63841,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -61240,7 +63895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -61292,7 +63947,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -61349,7 +64004,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -61406,7 +64061,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -61463,7 +64118,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[448], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -61522,7 +64177,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -61579,7 +64234,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -61641,7 +64296,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -61703,7 +64358,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -61765,7 +64420,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T5)indices_ptr.Target; } finally @@ -61825,7 +64480,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -61883,7 +64538,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -61946,7 +64601,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62009,7 +64664,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62072,7 +64727,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T5)indices_ptr.Target; } finally @@ -62130,7 +64785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -62186,7 +64841,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62247,7 +64902,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62308,7 +64963,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62369,7 +65024,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T5)indices_ptr.Target; } finally @@ -62428,7 +65083,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -62485,7 +65140,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62547,7 +65202,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62609,7 +65264,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -62671,7 +65326,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[449], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T5)indices_ptr.Target; } finally @@ -62704,7 +65359,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedback((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[452], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -62732,7 +65387,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedback((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[452], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -62764,7 +65419,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); + InteropHelper.Call(EntryPoints[453], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); #if DEBUG } #endif @@ -62797,7 +65452,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); + InteropHelper.Call(EntryPoints[453], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); #if DEBUG } #endif @@ -62829,7 +65484,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStream((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream); + InteropHelper.Call(EntryPoints[455], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream); #if DEBUG } #endif @@ -62862,7 +65517,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStream((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream); + InteropHelper.Call(EntryPoints[455], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream); #if DEBUG } #endif @@ -62899,7 +65554,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStreamInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); + InteropHelper.Call(EntryPoints[456], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); #if DEBUG } #endif @@ -62937,7 +65592,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStreamInstanced((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); + InteropHelper.Call(EntryPoints[456], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); #if DEBUG } #endif @@ -62959,7 +65614,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEdgeFlag((bool)flag); + InteropHelper.Call(EntryPoints[457], (bool)flag); #if DEBUG } #endif @@ -62986,7 +65641,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEdgeFlagPointer((Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[459], (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -63017,7 +65672,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glEdgeFlagPointer((Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[459], (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -63053,7 +65708,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glEdgeFlagPointer((Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[459], (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -63089,7 +65744,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glEdgeFlagPointer((Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[459], (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -63125,7 +65780,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glEdgeFlagPointer((Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[459], (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -63157,7 +65812,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* flag_ptr = flag) { - Delegates.glEdgeFlagv((bool*)flag_ptr); + InteropHelper.Call(EntryPoints[462], (IntPtr)flag_ptr); } } #if DEBUG @@ -63182,7 +65837,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEdgeFlagv((bool*)flag); + InteropHelper.Call(EntryPoints[462], (IntPtr)flag); #if DEBUG } #endif @@ -63209,7 +65864,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.OpenGL.EnableCap)cap); + InteropHelper.Call(EntryPoints[465], (OpenTK.Graphics.OpenGL.EnableCap)cap); #if DEBUG } #endif @@ -63231,7 +65886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientState((OpenTK.Graphics.OpenGL.ArrayCap)array); + InteropHelper.Call(EntryPoints[466], (OpenTK.Graphics.OpenGL.ArrayCap)array); #if DEBUG } #endif @@ -63258,7 +65913,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnablei((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[469], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -63286,7 +65941,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnablei((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[469], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -63308,7 +65963,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[475], (UInt32)index); #if DEBUG } #endif @@ -63331,7 +65986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[475], (UInt32)index); #if DEBUG } #endif @@ -63346,7 +66001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnd(); + InteropHelper.Call(EntryPoints[477]); #if DEBUG GraphicsContext.CurrentContext.ErrorChecking = true; } @@ -63362,7 +66017,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndConditionalRender(); + InteropHelper.Call(EntryPoints[478]); #if DEBUG } #endif @@ -63377,7 +66032,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndList(); + InteropHelper.Call(EntryPoints[482]); #if DEBUG } #endif @@ -63392,7 +66047,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQuery((OpenTK.Graphics.OpenGL.QueryTarget)target); + InteropHelper.Call(EntryPoints[485], (OpenTK.Graphics.OpenGL.QueryTarget)target); #if DEBUG } #endif @@ -63407,7 +66062,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryIndexed((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index); + InteropHelper.Call(EntryPoints[487], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index); #if DEBUG } #endif @@ -63423,7 +66078,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryIndexed((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index); + InteropHelper.Call(EntryPoints[487], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index); #if DEBUG } #endif @@ -63438,7 +66093,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTransformFeedback(); + InteropHelper.Call(EntryPoints[488]); #if DEBUG } #endif @@ -63465,7 +66120,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1d((Double)u); + InteropHelper.Call(EntryPoints[493], (Double)u); #if DEBUG } #endif @@ -63493,7 +66148,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1dv((Double*)u); + InteropHelper.Call(EntryPoints[494], (IntPtr)u); #if DEBUG } #endif @@ -63520,7 +66175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1f((Single)u); + InteropHelper.Call(EntryPoints[495], (Single)u); #if DEBUG } #endif @@ -63548,7 +66203,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1fv((Single*)u); + InteropHelper.Call(EntryPoints[496], (IntPtr)u); #if DEBUG } #endif @@ -63575,7 +66230,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2d((Double)u, (Double)v); + InteropHelper.Call(EntryPoints[499], (Double)u, (Double)v); #if DEBUG } #endif @@ -63606,7 +66261,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* u_ptr = u) { - Delegates.glEvalCoord2dv((Double*)u_ptr); + InteropHelper.Call(EntryPoints[500], (IntPtr)u_ptr); } } #if DEBUG @@ -63639,7 +66294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* u_ptr = &u) { - Delegates.glEvalCoord2dv((Double*)u_ptr); + InteropHelper.Call(EntryPoints[500], (IntPtr)u_ptr); } } #if DEBUG @@ -63669,7 +66324,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2dv((Double*)u); + InteropHelper.Call(EntryPoints[500], (IntPtr)u); #if DEBUG } #endif @@ -63696,7 +66351,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2f((Single)u, (Single)v); + InteropHelper.Call(EntryPoints[501], (Single)u, (Single)v); #if DEBUG } #endif @@ -63727,7 +66382,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* u_ptr = u) { - Delegates.glEvalCoord2fv((Single*)u_ptr); + InteropHelper.Call(EntryPoints[502], (IntPtr)u_ptr); } } #if DEBUG @@ -63760,7 +66415,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* u_ptr = &u) { - Delegates.glEvalCoord2fv((Single*)u_ptr); + InteropHelper.Call(EntryPoints[502], (IntPtr)u_ptr); } } #if DEBUG @@ -63790,7 +66445,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2fv((Single*)u); + InteropHelper.Call(EntryPoints[502], (IntPtr)u); #if DEBUG } #endif @@ -63817,7 +66472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalMesh1((OpenTK.Graphics.OpenGL.MeshMode1)mode, (Int32)i1, (Int32)i2); + InteropHelper.Call(EntryPoints[506], (OpenTK.Graphics.OpenGL.MeshMode1)mode, (Int32)i1, (Int32)i2); #if DEBUG } #endif @@ -63844,7 +66499,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalMesh2((OpenTK.Graphics.OpenGL.MeshMode2)mode, (Int32)i1, (Int32)i2, (Int32)j1, (Int32)j2); + InteropHelper.Call(EntryPoints[507], (OpenTK.Graphics.OpenGL.MeshMode2)mode, (Int32)i1, (Int32)i2, (Int32)j1, (Int32)j2); #if DEBUG } #endif @@ -63871,7 +66526,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalPoint1((Int32)i); + InteropHelper.Call(EntryPoints[508], (Int32)i); #if DEBUG } #endif @@ -63898,7 +66553,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalPoint2((Int32)i, (Int32)j); + InteropHelper.Call(EntryPoints[509], (Int32)i, (Int32)j); #if DEBUG } #endif @@ -63934,7 +66589,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* buffer_ptr = buffer) { - Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (Single*)buffer_ptr); + InteropHelper.Call(EntryPoints[512], (Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (IntPtr)buffer_ptr); } } #if DEBUG @@ -63972,7 +66627,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* buffer_ptr = &buffer) { - Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (Single*)buffer_ptr); + InteropHelper.Call(EntryPoints[512], (Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (IntPtr)buffer_ptr); buffer = *buffer_ptr; } } @@ -64008,7 +66663,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFeedbackBuffer((Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (Single*)buffer); + InteropHelper.Call(EntryPoints[512], (Int32)size, (OpenTK.Graphics.OpenGL.FeedbackType)type, (IntPtr)buffer); #if DEBUG } #endif @@ -64036,7 +66691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSync((OpenTK.Graphics.OpenGL.SyncCondition)condition, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[514], (OpenTK.Graphics.OpenGL.SyncCondition)condition, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags); #if DEBUG } #endif @@ -64065,7 +66720,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSync((OpenTK.Graphics.OpenGL.SyncCondition)condition, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[514], (OpenTK.Graphics.OpenGL.SyncCondition)condition, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags); #if DEBUG } #endif @@ -64092,7 +66747,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSync((OpenTK.Graphics.OpenGL.SyncCondition)condition, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[514], (OpenTK.Graphics.OpenGL.SyncCondition)condition, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags); #if DEBUG } #endif @@ -64109,7 +66764,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinish(); + InteropHelper.Call(EntryPoints[516]); #if DEBUG } #endif @@ -64126,7 +66781,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlush(); + InteropHelper.Call(EntryPoints[522]); #if DEBUG } #endif @@ -64158,7 +66813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRange((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[523], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -64180,7 +66835,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordd((Double)coord); + InteropHelper.Call(EntryPoints[531], (Double)coord); #if DEBUG } #endif @@ -64203,7 +66858,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoorddv((Double*)coord); + InteropHelper.Call(EntryPoints[533], (IntPtr)coord); #if DEBUG } #endif @@ -64225,7 +66880,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordf((Single)coord); + InteropHelper.Call(EntryPoints[535], (Single)coord); #if DEBUG } #endif @@ -64248,7 +66903,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordfv((Single*)coord); + InteropHelper.Call(EntryPoints[538], (IntPtr)coord); #if DEBUG } #endif @@ -64280,7 +66935,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordPointer((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[542], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -64316,7 +66971,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointer((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[542], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -64357,7 +67012,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointer((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[542], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -64398,7 +67053,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointer((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[542], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -64439,7 +67094,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointer((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[542], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -64472,7 +67127,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogf((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[545], (OpenTK.Graphics.OpenGL.FogParameter)pname, (Single)param); #if DEBUG } #endif @@ -64503,7 +67158,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glFogfv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[547], (OpenTK.Graphics.OpenGL.FogParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -64533,7 +67188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogfv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[547], (OpenTK.Graphics.OpenGL.FogParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -64560,7 +67215,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogi((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[548], (OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32)param); #if DEBUG } #endif @@ -64591,7 +67246,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glFogiv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[549], (OpenTK.Graphics.OpenGL.FogParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -64621,7 +67276,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogiv((OpenTK.Graphics.OpenGL.FogParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[549], (OpenTK.Graphics.OpenGL.FogParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -64653,7 +67308,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferParameteri((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[567], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (Int32)param); #if DEBUG } #endif @@ -64690,7 +67345,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[569], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -64728,7 +67383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[569], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -64770,7 +67425,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[571], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -64813,7 +67468,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[571], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -64828,7 +67483,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture1D((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -64844,7 +67499,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture1D((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -64859,7 +67514,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[574], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -64875,7 +67530,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[574], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -64890,7 +67545,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3D((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[576], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -64906,7 +67561,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3D((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[576], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -64948,7 +67603,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[582], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -64991,7 +67646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[582], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -65013,7 +67668,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.OpenGL.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[588], (OpenTK.Graphics.OpenGL.FrontFaceDirection)mode); #if DEBUG } #endif @@ -65045,7 +67700,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustum((Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); + InteropHelper.Call(EntryPoints[589], (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); #if DEBUG } #endif @@ -65077,7 +67732,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* buffers_ptr = &retval; - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers_ptr); return retval; } #if DEBUG @@ -65110,7 +67765,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -65143,7 +67798,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -65174,7 +67829,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -65206,7 +67861,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -65240,7 +67895,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -65271,7 +67926,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[593], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -65293,7 +67948,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmap((OpenTK.Graphics.OpenGL.GenerateMipmapTarget)target); + InteropHelper.Call(EntryPoints[595], (OpenTK.Graphics.OpenGL.GenerateMipmapTarget)target); #if DEBUG } #endif @@ -65325,7 +67980,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* framebuffers_ptr = &retval; - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers_ptr); return retval; } #if DEBUG @@ -65358,7 +68013,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -65391,7 +68046,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -65422,7 +68077,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -65454,7 +68109,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -65488,7 +68143,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -65519,7 +68174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[602], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -65541,7 +68196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenLists((Int32)range); + return InteropHelper.CallReturn(EntryPoints[604], (Int32)range); #if DEBUG } #endif @@ -65573,7 +68228,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* pipelines_ptr = &retval; - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines_ptr); return retval; } #if DEBUG @@ -65606,7 +68261,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -65639,7 +68294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -65670,7 +68325,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -65702,7 +68357,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -65736,7 +68391,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -65767,7 +68422,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[609], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -65799,7 +68454,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -65832,7 +68487,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -65865,7 +68520,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -65896,7 +68551,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -65928,7 +68583,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -65962,7 +68617,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -65993,7 +68648,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[613], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -66025,7 +68680,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* renderbuffers_ptr = &retval; - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers_ptr); return retval; } #if DEBUG @@ -66058,7 +68713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -66091,7 +68746,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -66122,7 +68777,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -66154,7 +68809,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -66188,7 +68843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -66219,7 +68874,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[615], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -66251,7 +68906,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 count = 1; Int32 retval; Int32* samplers_ptr = &retval; - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers_ptr); return retval; } #if DEBUG @@ -66284,7 +68939,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* samplers_ptr = samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -66317,7 +68972,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers_ptr); samplers = *samplers_ptr; } } @@ -66348,7 +69003,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -66380,7 +69035,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -66414,7 +69069,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers_ptr); samplers = *samplers_ptr; } } @@ -66445,7 +69100,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[617], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -66477,7 +69132,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* textures_ptr = &retval; - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures_ptr); return retval; } #if DEBUG @@ -66510,7 +69165,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -66543,7 +69198,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -66574,7 +69229,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -66606,7 +69261,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -66640,7 +69295,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -66671,7 +69326,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[619], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -66703,7 +69358,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -66736,7 +69391,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -66769,7 +69424,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -66800,7 +69455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -66832,7 +69487,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -66866,7 +69521,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -66897,7 +69552,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[621], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -66929,7 +69584,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -66962,7 +69617,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -66995,7 +69650,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -67026,7 +69681,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -67058,7 +69713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -67092,7 +69747,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -67123,7 +69778,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[623], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -67164,7 +69819,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -67207,7 +69862,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -67248,7 +69903,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[626], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -67290,7 +69945,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -67334,7 +69989,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -67375,7 +70030,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[626], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL.AtomicCounterBufferParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -67433,7 +70088,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[627], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -67491,7 +70146,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[627], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -67550,7 +70205,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[627], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -67608,7 +70263,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[627], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -67659,7 +70314,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[629], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -67710,7 +70365,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[629], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -67762,7 +70417,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[629], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -67813,7 +70468,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[629], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -67859,7 +70514,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[630], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -67907,7 +70562,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[630], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -67953,7 +70608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[630], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -68000,7 +70655,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[630], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -68049,7 +70704,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[630], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -68095,7 +70750,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[630], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL.ActiveSubroutineUniformParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -68146,7 +70801,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[631], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -68197,7 +70852,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[631], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -68249,7 +70904,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[631], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -68300,7 +70955,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[631], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -68358,7 +71013,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[632], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -68416,7 +71071,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[632], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -68475,7 +71130,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[632], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -68533,7 +71188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[632], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -68574,7 +71229,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[634], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -68617,7 +71272,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[634], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -68658,7 +71313,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[634], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -68700,7 +71355,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[634], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -68744,7 +71399,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[634], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -68785,7 +71440,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[634], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -68831,7 +71486,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[635], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformBlockName); length = *length_ptr; } } @@ -68877,7 +71532,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[635], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformBlockName); #if DEBUG } #endif @@ -68924,7 +71579,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[635], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformBlockName); length = *length_ptr; } } @@ -68970,7 +71625,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[635], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformBlockName); #if DEBUG } #endif @@ -69016,7 +71671,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[636], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformName); length = *length_ptr; } } @@ -69062,7 +71717,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[636], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformName); #if DEBUG } #endif @@ -69109,7 +71764,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[636], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformName); length = *length_ptr; } } @@ -69155,7 +71810,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[636], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformName); #if DEBUG } #endif @@ -69202,7 +71857,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[637], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -69251,7 +71906,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[637], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -69297,7 +71952,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[637], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -69345,7 +72000,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[637], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -69395,7 +72050,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[637], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -69441,7 +72096,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[637], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.OpenGL.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -69483,7 +72138,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[642], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -69528,7 +72183,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[642], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -69570,7 +72225,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[642], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -69613,7 +72268,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[642], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -69659,7 +72314,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[642], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -69701,7 +72356,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[642], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -69728,7 +72383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[643], (UInt32)program, (String)name); #if DEBUG } #endif @@ -69756,7 +72411,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[643], (UInt32)program, (String)name); #if DEBUG } #endif @@ -69775,7 +72430,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[645], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -69796,7 +72451,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[645], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -69815,7 +72470,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[645], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -69835,7 +72490,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[645], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -69857,7 +72512,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[645], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -69876,7 +72531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[645], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -69895,7 +72550,7 @@ namespace OpenTK.Graphics.OpenGL { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[647], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -69916,7 +72571,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[647], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -69937,7 +72592,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[647], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -69956,7 +72611,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[647], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -69992,7 +72647,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[648], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -70030,7 +72685,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[648], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -70066,7 +72721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[648], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -70102,7 +72757,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[649], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -70140,7 +72795,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[649], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -70176,7 +72831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[649], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -70208,7 +72863,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[652], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -70244,7 +72899,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[652], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -70285,7 +72940,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[652], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -70326,7 +72981,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[652], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -70367,7 +73022,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[652], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -70410,7 +73065,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[654], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -70451,7 +73106,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[654], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -70497,7 +73152,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[654], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -70543,7 +73198,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[654], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -70589,7 +73244,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[654], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -70626,7 +73281,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* equation_ptr = equation) { - Delegates.glGetClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + InteropHelper.Call(EntryPoints[656], (OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -70659,7 +73314,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* equation_ptr = &equation) { - Delegates.glGetClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation_ptr); + InteropHelper.Call(EntryPoints[656], (OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -70690,7 +73345,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlane((OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (Double*)equation); + InteropHelper.Call(EntryPoints[656], (OpenTK.Graphics.OpenGL.ClipPlaneName)plane, (IntPtr)equation); #if DEBUG } #endif @@ -70727,7 +73382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[659], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -70768,7 +73423,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -70814,7 +73469,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -70860,7 +73515,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -70906,7 +73561,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T3)table_ptr.Target; } finally @@ -70948,7 +73603,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[661], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -70986,7 +73641,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[661], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -71022,7 +73677,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[661], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -71058,7 +73713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[664], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -71096,7 +73751,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[664], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -71132,7 +73787,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[664], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -71164,7 +73819,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img); + InteropHelper.Call(EntryPoints[674], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img); #if DEBUG } #endif @@ -71200,7 +73855,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[674], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -71241,7 +73896,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[674], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -71282,7 +73937,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[674], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -71323,7 +73978,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[674], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T2)img_ptr.Target; } finally @@ -71366,7 +74021,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[677], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -71407,7 +74062,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[677], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -71453,7 +74108,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[677], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -71499,7 +74154,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[677], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -71545,7 +74200,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[677], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T3)image_ptr.Target; } finally @@ -71587,7 +74242,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[679], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -71625,7 +74280,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[679], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -71661,7 +74316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[679], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -71697,7 +74352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[681], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -71735,7 +74390,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[681], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -71771,7 +74426,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[681], (OpenTK.Graphics.OpenGL.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL.GetConvolutionParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -71836,7 +74491,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[684], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -71903,7 +74558,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[684], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -71969,7 +74624,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.DebugSource*)sources, (OpenTK.Graphics.OpenGL.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[684], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -72035,7 +74690,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[684], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -72103,7 +74758,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[684], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -72169,7 +74824,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.DebugSource*)sources, (OpenTK.Graphics.OpenGL.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[684], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -72188,7 +74843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[689], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -72209,7 +74864,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = &data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[689], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -72228,7 +74883,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Double*)data); + InteropHelper.Call(EntryPoints[689], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -72248,7 +74903,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[689], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -72270,7 +74925,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = &data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[689], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -72289,7 +74944,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Double*)data); + InteropHelper.Call(EntryPoints[689], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -72308,7 +74963,7 @@ namespace OpenTK.Graphics.OpenGL { Double retval; Double* data_ptr = &retval; - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[692], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -72329,7 +74984,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = data) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[692], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -72350,7 +75005,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = &data) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[692], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -72369,7 +75024,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL.GetPName)pname, (Double*)data); + InteropHelper.Call(EntryPoints[692], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -72382,7 +75037,7 @@ namespace OpenTK.Graphics.OpenGL public static OpenTK.Graphics.OpenGL.ErrorCode GetError() { - return Delegates.glGetError(); + return InteropHelper.CallReturn(EntryPoints[693]); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -72398,7 +75053,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[698], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -72419,7 +75074,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[698], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -72438,7 +75093,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Single*)data); + InteropHelper.Call(EntryPoints[698], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -72458,7 +75113,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[698], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -72480,7 +75135,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[698], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -72499,7 +75154,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Single*)data); + InteropHelper.Call(EntryPoints[698], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -72518,7 +75173,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[701], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -72539,7 +75194,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[701], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -72560,7 +75215,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[701], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -72579,7 +75234,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[701], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -72606,7 +75261,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataIndex((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[703], (UInt32)program, (String)name); #if DEBUG } #endif @@ -72634,7 +75289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataIndex((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[703], (UInt32)program, (String)name); #if DEBUG } #endif @@ -72661,7 +75316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[704], (UInt32)program, (String)name); #if DEBUG } #endif @@ -72689,7 +75344,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[704], (UInt32)program, (String)name); #if DEBUG } #endif @@ -72730,7 +75385,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[710], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -72773,7 +75428,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[710], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -72814,7 +75469,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[710], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -72850,7 +75505,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferParameteriv((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[712], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -72888,7 +75543,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferParameteriv((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[712], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -72924,7 +75579,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferParameteriv((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[712], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferDefaultParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -72966,7 +75621,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + InteropHelper.Call(EntryPoints[716], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); #if DEBUG } #endif @@ -73012,7 +75667,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[716], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -73063,7 +75718,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[716], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -73114,7 +75769,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[716], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -73165,7 +75820,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[716], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T4)values_ptr.Target; } finally @@ -73207,7 +75862,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[718], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -73245,7 +75900,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[718], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -73281,7 +75936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[718], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -73317,7 +75972,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[720], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -73355,7 +76010,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[720], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -73391,7 +76046,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[720], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (OpenTK.Graphics.OpenGL.GetHistogramParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -73410,7 +76065,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -73431,7 +76086,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73450,7 +76105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -73470,7 +76125,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -73492,7 +76147,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73511,7 +76166,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -73531,7 +76186,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -73553,7 +76208,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73573,7 +76228,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -73594,7 +76249,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -73617,7 +76272,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73637,7 +76292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[729], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -73656,7 +76311,7 @@ namespace OpenTK.Graphics.OpenGL { Int64 retval; Int64* data_ptr = &retval; - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -73678,7 +76333,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -73700,7 +76355,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73720,7 +76375,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -73739,7 +76394,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -73760,7 +76415,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73779,7 +76434,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL.GetPName)pname, (Int64*)data); + InteropHelper.Call(EntryPoints[730], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -73798,7 +76453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[731], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -73819,7 +76474,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[731], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73838,7 +76493,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[731], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -73858,7 +76513,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[731], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -73880,7 +76535,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[731], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73899,7 +76554,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[731], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -73918,7 +76573,7 @@ namespace OpenTK.Graphics.OpenGL { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[735], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -73939,7 +76594,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[735], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -73960,7 +76615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[735], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -73979,7 +76634,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[735], (OpenTK.Graphics.OpenGL.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -73998,7 +76653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInternalformati64v((OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[736], (OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -74019,7 +76674,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInternalformati64v((OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[736], (OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -74038,7 +76693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInternalformati64v((OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (Int64*)@params); + InteropHelper.Call(EntryPoints[736], (OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -74084,7 +76739,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[737], (OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -74132,7 +76787,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[737], (OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -74178,7 +76833,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInternalformativ((OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[737], (OpenTK.Graphics.OpenGL.ImageTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -74214,7 +76869,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[741], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -74252,7 +76907,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[741], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -74288,7 +76943,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[741], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -74324,7 +76979,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[742], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -74362,7 +77017,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[742], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -74398,7 +77053,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[742], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -74434,7 +77089,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glGetMapdv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[753], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v_ptr); } } #if DEBUG @@ -74472,7 +77127,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glGetMapdv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[753], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v_ptr); v = *v_ptr; } } @@ -74508,7 +77163,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapdv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Double*)v); + InteropHelper.Call(EntryPoints[753], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v); #if DEBUG } #endif @@ -74544,7 +77199,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glGetMapfv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[754], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v_ptr); } } #if DEBUG @@ -74582,7 +77237,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glGetMapfv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[754], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v_ptr); v = *v_ptr; } } @@ -74618,7 +77273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapfv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Single*)v); + InteropHelper.Call(EntryPoints[754], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v); #if DEBUG } #endif @@ -74654,7 +77309,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glGetMapiv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[755], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v_ptr); } } #if DEBUG @@ -74692,7 +77347,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glGetMapiv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[755], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v_ptr); v = *v_ptr; } } @@ -74728,7 +77383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapiv((OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (Int32*)v); + InteropHelper.Call(EntryPoints[755], (OpenTK.Graphics.OpenGL.MapTarget)target, (OpenTK.Graphics.OpenGL.GetMapQuery)query, (IntPtr)v); #if DEBUG } #endif @@ -74764,7 +77419,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[759], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -74802,7 +77457,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[759], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -74838,7 +77493,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[759], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -74874,7 +77529,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[760], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -74912,7 +77567,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[760], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -74948,7 +77603,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[760], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -74990,7 +77645,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + InteropHelper.Call(EntryPoints[763], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); #if DEBUG } #endif @@ -75036,7 +77691,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[763], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -75087,7 +77742,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[763], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -75138,7 +77793,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[763], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -75189,7 +77844,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[763], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T4)values_ptr.Target; } finally @@ -75231,7 +77886,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[765], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -75269,7 +77924,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[765], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -75305,7 +77960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[765], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -75341,7 +77996,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[767], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -75379,7 +78034,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[767], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -75415,7 +78070,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[767], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.GetMinmaxParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -75451,7 +78106,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[769], (OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -75489,7 +78144,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = &val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[769], (OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); val = *val_ptr; } } @@ -75525,7 +78180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[769], (OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -75562,7 +78217,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[769], (OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -75601,7 +78256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = &val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[769], (OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); val = *val_ptr; } } @@ -75637,7 +78292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[769], (OpenTK.Graphics.OpenGL.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -75683,7 +78338,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[818], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -75731,7 +78386,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[818], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -75777,7 +78432,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[818], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -75824,7 +78479,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[818], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -75873,7 +78528,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[818], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -75919,7 +78574,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[818], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -75960,7 +78615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -76003,7 +78658,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -76044,7 +78699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -76089,7 +78744,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -76141,7 +78796,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -76191,7 +78846,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -76241,7 +78896,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -76293,7 +78948,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -76343,7 +78998,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -76393,7 +79048,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -76445,7 +79100,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -76495,7 +79150,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -76545,7 +79200,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -76598,7 +79253,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -76649,7 +79304,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[824], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -76686,7 +79341,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* values_ptr = &retval; - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[847], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); return retval; } #if DEBUG @@ -76719,7 +79374,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = values) { - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[847], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); } } #if DEBUG @@ -76752,7 +79407,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = &values) { - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[847], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); values = *values_ptr; } } @@ -76783,7 +79438,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Single*)values); + InteropHelper.Call(EntryPoints[847], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values); #if DEBUG } #endif @@ -76814,7 +79469,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[848], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); } } #if DEBUG @@ -76847,7 +79502,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[848], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); values = *values_ptr; } } @@ -76878,7 +79533,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values); + InteropHelper.Call(EntryPoints[848], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values); #if DEBUG } #endif @@ -76910,7 +79565,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* values_ptr = values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[848], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); } } #if DEBUG @@ -76944,7 +79599,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* values_ptr = &values) { - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[848], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); values = *values_ptr; } } @@ -76975,7 +79630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt32*)values); + InteropHelper.Call(EntryPoints[848], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values); #if DEBUG } #endif @@ -77006,7 +79661,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* values_ptr = values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[849], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); } } #if DEBUG @@ -77039,7 +79694,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* values_ptr = &values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[849], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); values = *values_ptr; } } @@ -77070,7 +79725,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values); + InteropHelper.Call(EntryPoints[849], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values); #if DEBUG } #endif @@ -77102,7 +79757,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* values_ptr = values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[849], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); } } #if DEBUG @@ -77136,7 +79791,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* values_ptr = &values) { - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[849], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values_ptr); values = *values_ptr; } } @@ -77167,7 +79822,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (UInt16*)values); + InteropHelper.Call(EntryPoints[849], (OpenTK.Graphics.OpenGL.PixelMap)map, (IntPtr)values); #if DEBUG } #endif @@ -77186,7 +79841,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* values_ptr = values) { - Delegates.glGetPixelMapxv((OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[850], (OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (IntPtr)values_ptr); } } #if DEBUG @@ -77207,7 +79862,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* values_ptr = &values) { - Delegates.glGetPixelMapxv((OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[850], (OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (IntPtr)values_ptr); values = *values_ptr; } } @@ -77226,7 +79881,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelMapxv((OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (int*)values); + InteropHelper.Call(EntryPoints[850], (OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (IntPtr)values); #if DEBUG } #endif @@ -77253,7 +79908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[857], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -77284,7 +79939,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[857], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -77320,7 +79975,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[857], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -77356,7 +80011,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[857], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -77392,7 +80047,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[857], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -77424,7 +80079,7 @@ namespace OpenTK.Graphics.OpenGL { Byte retval; Byte* mask_ptr = &retval; - Delegates.glGetPolygonStipple((Byte*)mask_ptr); + InteropHelper.Call(EntryPoints[860], (IntPtr)mask_ptr); return retval; } #if DEBUG @@ -77452,7 +80107,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* mask_ptr = mask) { - Delegates.glGetPolygonStipple((Byte*)mask_ptr); + InteropHelper.Call(EntryPoints[860], (IntPtr)mask_ptr); } } #if DEBUG @@ -77480,7 +80135,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* mask_ptr = &mask) { - Delegates.glGetPolygonStipple((Byte*)mask_ptr); + InteropHelper.Call(EntryPoints[860], (IntPtr)mask_ptr); mask = *mask_ptr; } } @@ -77506,7 +80161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPolygonStipple((Byte*)mask); + InteropHelper.Call(EntryPoints[860], (IntPtr)mask); #if DEBUG } #endif @@ -77553,7 +80208,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -77608,7 +80263,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -77668,7 +80323,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -77728,7 +80383,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -77788,7 +80443,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -77841,7 +80496,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -77888,7 +80543,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -77940,7 +80595,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -77992,7 +80647,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -78044,7 +80699,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -78098,7 +80753,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.OpenGL.BinaryFormat* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -78154,7 +80809,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -78215,7 +80870,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -78276,7 +80931,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -78337,7 +80992,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -78390,7 +81045,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -78437,7 +81092,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -78489,7 +81144,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -78541,7 +81196,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -78593,7 +81248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[861], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -78640,7 +81295,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[866], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -78681,7 +81336,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[866], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -78723,7 +81378,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[866], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -78764,7 +81419,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[866], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -78805,7 +81460,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[867], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -78848,7 +81503,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[867], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -78889,7 +81544,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[867], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -78931,7 +81586,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[867], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -78975,7 +81630,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[867], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79016,7 +81671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[867], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL.ProgramInterfaceParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79052,7 +81707,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79090,7 +81745,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79126,7 +81781,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79163,7 +81818,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79202,7 +81857,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79239,7 +81894,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79276,7 +81931,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79315,7 +81970,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79351,7 +82006,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79389,7 +82044,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79429,7 +82084,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79466,7 +82121,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[868], (UInt32)program, (OpenTK.Graphics.OpenGL.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79507,7 +82162,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[879], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -79548,7 +82203,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[879], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -79590,7 +82245,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[879], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -79631,7 +82286,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[879], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -79667,7 +82322,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[881], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79705,7 +82360,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[881], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79741,7 +82396,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[881], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79778,7 +82433,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[881], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -79817,7 +82472,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[881], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -79853,7 +82508,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[881], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramPipelineParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -79885,7 +82540,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceIndex((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[883], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -79918,7 +82573,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceIndex((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[883], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -79951,7 +82606,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = length) fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[884], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -79986,7 +82641,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[884], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); length = *length_ptr; @params = *@params_ptr; } @@ -80018,7 +82673,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL.ProgramProperty*)props, (Int32)bufSize, (Int32*)length, (Int32*)@params); + InteropHelper.Call(EntryPoints[884], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props, (Int32)bufSize, (IntPtr)length, (IntPtr)@params); #if DEBUG } #endif @@ -80052,7 +82707,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = length) fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[884], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -80088,7 +82743,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[884], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); length = *length_ptr; @params = *@params_ptr; } @@ -80120,7 +82775,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL.ProgramProperty*)props, (Int32)bufSize, (Int32*)length, (Int32*)@params); + InteropHelper.Call(EntryPoints[884], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props, (Int32)bufSize, (IntPtr)length, (IntPtr)@params); #if DEBUG } #endif @@ -80152,7 +82807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocation((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[885], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -80185,7 +82840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocation((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[885], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -80217,7 +82872,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocationIndex((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[886], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -80250,7 +82905,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocationIndex((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[886], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -80301,7 +82956,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[887], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); } } #if DEBUG @@ -80354,7 +83009,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[887], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -80405,7 +83060,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[887], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -80457,7 +83112,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[887], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); } } #if DEBUG @@ -80511,7 +83166,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[887], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -80562,7 +83217,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[887], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -80603,7 +83258,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[888], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -80644,7 +83299,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[888], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -80686,7 +83341,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[888], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -80727,7 +83382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[888], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ProgramStageParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -80768,7 +83423,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[892], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -80811,7 +83466,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[892], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -80852,7 +83507,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[892], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -80894,7 +83549,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[892], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -80938,7 +83593,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[892], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -80979,7 +83634,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[892], (OpenTK.Graphics.OpenGL.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81015,7 +83670,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[893], (OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81053,7 +83708,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[893], (OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81089,7 +83744,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[893], (OpenTK.Graphics.OpenGL.QueryTarget)target, (OpenTK.Graphics.OpenGL.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81125,7 +83780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[895], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81163,7 +83818,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[895], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81199,7 +83854,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[895], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81236,7 +83891,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[895], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81275,7 +83930,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[895], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81311,7 +83966,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[895], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81347,7 +84002,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[897], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81385,7 +84040,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[897], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81421,7 +84076,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[897], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81458,7 +84113,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[897], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81497,7 +84152,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[897], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81533,7 +84188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[897], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81570,7 +84225,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[899], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81609,7 +84264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[899], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81645,7 +84300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[899], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81682,7 +84337,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[901], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81721,7 +84376,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[901], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81757,7 +84412,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[901], (UInt32)id, (OpenTK.Graphics.OpenGL.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81793,7 +84448,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[903], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81831,7 +84486,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[903], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81867,7 +84522,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[903], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81903,7 +84558,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[905], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -81941,7 +84596,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[905], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -81977,7 +84632,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[905], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82014,7 +84669,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[905], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -82053,7 +84708,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[905], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -82089,7 +84744,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[905], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82108,7 +84763,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[906], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -82129,7 +84784,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[906], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -82148,7 +84803,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[906], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82168,7 +84823,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[906], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -82190,7 +84845,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[906], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -82209,7 +84864,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[906], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82229,7 +84884,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[907], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -82251,7 +84906,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[907], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -82270,7 +84925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[907], (UInt32)sampler, (OpenTK.Graphics.OpenGL.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82306,7 +84961,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[908], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -82344,7 +84999,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[908], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -82380,7 +85035,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[908], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82417,7 +85072,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[908], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -82456,7 +85111,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[908], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -82492,7 +85147,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[908], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -82539,7 +85194,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + InteropHelper.Call(EntryPoints[909], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); #if DEBUG } #endif @@ -82594,7 +85249,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[909], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -82656,7 +85311,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[909], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -82718,7 +85373,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[909], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -82780,7 +85435,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[909], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); row = (T3)row_ptr.Target; column = (T4)column_ptr.Target; span = (T5)span_ptr.Target; @@ -82831,7 +85486,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[911], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -82872,7 +85527,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[911], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -82914,7 +85569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[911], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -82955,7 +85610,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[911], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -82991,7 +85646,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[912], (UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -83029,7 +85684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[912], (UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -83065,7 +85720,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[912], (UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -83102,7 +85757,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[912], (UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -83141,7 +85796,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[912], (UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -83177,7 +85832,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[912], (UInt32)shader, (OpenTK.Graphics.OpenGL.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -83219,7 +85874,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* range_ptr = range) fixed (Int32* precision_ptr = precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[913], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); } } #if DEBUG @@ -83263,7 +85918,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* range_ptr = &range) fixed (Int32* precision_ptr = &precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[913], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); range = *range_ptr; precision = *precision_ptr; } @@ -83305,7 +85960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ShaderPrecision)precisiontype, (Int32*)range, (Int32*)precision); + InteropHelper.Call(EntryPoints[913], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (OpenTK.Graphics.OpenGL.ShaderPrecision)precisiontype, (IntPtr)range, (IntPtr)precision); #if DEBUG } #endif @@ -83346,7 +86001,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[914], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -83387,7 +86042,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[914], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -83429,7 +86084,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[914], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -83470,7 +86125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[914], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -83497,7 +86152,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.OpenGL.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[917], (OpenTK.Graphics.OpenGL.StringName)name)); } #if DEBUG } #endif @@ -83525,7 +86180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[918], (OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -83554,7 +86209,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[918], (OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -83581,7 +86236,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[918], (OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -83609,7 +86264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[918], (OpenTK.Graphics.OpenGL.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -83641,7 +86296,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineIndex((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[919], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -83674,7 +86329,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineIndex((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[919], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -83706,7 +86361,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineUniformLocation((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[920], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -83739,7 +86394,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineUniformLocation((UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[920], (UInt32)program, (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -83787,7 +86442,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[921], (IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; } } @@ -83838,7 +86493,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[921], (IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -83886,7 +86541,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[921], (IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -83933,7 +86588,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[921], (IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; } } @@ -83983,7 +86638,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[921], (IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -84030,7 +86685,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[921], (IntPtr)sync, (OpenTK.Graphics.OpenGL.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -84066,7 +86721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[924], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -84104,7 +86759,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[924], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -84140,7 +86795,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[924], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -84176,7 +86831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[925], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -84214,7 +86869,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[925], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -84250,7 +86905,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[925], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -84286,7 +86941,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[928], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -84324,7 +86979,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[928], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -84360,7 +87015,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[928], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -84396,7 +87051,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[929], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -84434,7 +87089,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[929], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -84470,7 +87125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[929], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -84506,7 +87161,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[930], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -84544,7 +87199,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[930], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -84580,7 +87235,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[930], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -84622,7 +87277,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[932], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -84668,7 +87323,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[932], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -84719,7 +87374,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[932], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -84770,7 +87425,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[932], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -84821,7 +87476,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[932], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T4)pixels_ptr.Target; } finally @@ -84868,7 +87523,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[933], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -84911,7 +87566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[933], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -84952,7 +87607,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[933], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -84993,7 +87648,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[934], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -85036,7 +87691,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[934], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -85077,7 +87732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[934], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -85113,7 +87768,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[936], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -85151,7 +87806,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[936], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -85187,7 +87842,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[936], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -85206,7 +87861,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameterIiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[937], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -85227,7 +87882,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameterIiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[937], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -85246,7 +87901,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterIiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[937], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -85266,7 +87921,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetTexParameterIuiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[939], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -85288,7 +87943,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetTexParameterIuiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[939], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -85307,7 +87962,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterIuiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[939], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -85343,7 +87998,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[941], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -85381,7 +88036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[941], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -85417,7 +88072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[941], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -85475,7 +88130,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -85538,7 +88193,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.TransformFeedbackType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -85596,7 +88251,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -85649,7 +88304,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -85708,7 +88363,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -85772,7 +88427,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.TransformFeedbackType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -85830,7 +88485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -85883,7 +88538,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[956], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -85910,7 +88565,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBlockIndex((UInt32)program, (String)uniformBlockName); + return InteropHelper.CallReturn(EntryPoints[959], (UInt32)program, (String)uniformBlockName); #if DEBUG } #endif @@ -85938,7 +88593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBlockIndex((UInt32)program, (String)uniformBlockName); + return InteropHelper.CallReturn(EntryPoints[959], (UInt32)program, (String)uniformBlockName); #if DEBUG } #endif @@ -85974,7 +88629,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[961], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -86012,7 +88667,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[961], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86048,7 +88703,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params); + InteropHelper.Call(EntryPoints[961], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -86085,7 +88740,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[961], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -86124,7 +88779,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[961], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86160,7 +88815,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params); + InteropHelper.Call(EntryPoints[961], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -86196,7 +88851,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[962], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -86234,7 +88889,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[962], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86270,7 +88925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[962], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -86307,7 +88962,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[962], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -86346,7 +89001,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[962], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86382,7 +89037,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[962], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -86423,7 +89078,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* uniformIndices_ptr = uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[965], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); } } #if DEBUG @@ -86466,7 +89121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* uniformIndices_ptr = &uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[965], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); uniformIndices = *uniformIndices_ptr; } } @@ -86507,7 +89162,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices); + InteropHelper.Call(EntryPoints[965], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices); #if DEBUG } #endif @@ -86549,7 +89204,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* uniformIndices_ptr = uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[965], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); } } #if DEBUG @@ -86593,7 +89248,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* uniformIndices_ptr = &uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[965], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); uniformIndices = *uniformIndices_ptr; } } @@ -86634,7 +89289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices); + InteropHelper.Call(EntryPoints[965], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices); #if DEBUG } #endif @@ -86670,7 +89325,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[966], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -86708,7 +89363,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[966], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86744,7 +89399,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[966], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -86781,7 +89436,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[966], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -86820,7 +89475,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[966], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86856,7 +89511,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[966], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -86883,7 +89538,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[968], (UInt32)program, (String)name); #if DEBUG } #endif @@ -86911,7 +89566,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[968], (UInt32)program, (String)name); #if DEBUG } #endif @@ -86947,7 +89602,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[971], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -86983,7 +89638,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[971], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -87020,7 +89675,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[971], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87056,7 +89711,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[971], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -87093,7 +89748,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[973], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -87132,7 +89787,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[973], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87168,7 +89823,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[973], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -87204,7 +89859,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[988], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87242,7 +89897,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[988], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87278,7 +89933,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[988], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87315,7 +89970,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[988], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87354,7 +90009,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[988], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87390,7 +90045,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[988], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87426,7 +90081,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[991], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87464,7 +90119,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[991], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87500,7 +90155,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[991], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87537,7 +90192,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[991], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87576,7 +90231,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[991], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87612,7 +90267,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[991], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87631,7 +90286,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[994], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87650,7 +90305,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[994], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87670,7 +90325,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[994], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87689,7 +90344,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[994], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87709,7 +90364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[996], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87728,7 +90383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[996], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87764,7 +90419,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[998], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87802,7 +90457,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[998], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87838,7 +90493,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[998], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87875,7 +90530,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[998], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87914,7 +90569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[998], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -87950,7 +90605,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[998], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -87969,7 +90624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1001], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -87990,7 +90645,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1001], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -88009,7 +90664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1001], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -88029,7 +90684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1001], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -88051,7 +90706,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1001], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -88070,7 +90725,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1001], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -88102,7 +90757,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -88138,7 +90793,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88179,7 +90834,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88220,7 +90875,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88261,7 +90916,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -88300,7 +90955,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -88337,7 +90992,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88379,7 +91034,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88421,7 +91076,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88463,7 +91118,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1006], (UInt32)index, (OpenTK.Graphics.OpenGL.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -88496,7 +91151,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.OpenGL.HintTarget)target, (OpenTK.Graphics.OpenGL.HintMode)mode); + InteropHelper.Call(EntryPoints[1025], (OpenTK.Graphics.OpenGL.HintTarget)target, (OpenTK.Graphics.OpenGL.HintMode)mode); #if DEBUG } #endif @@ -88533,7 +91188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target, (Int32)width, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + InteropHelper.Call(EntryPoints[1027], (OpenTK.Graphics.OpenGL.HistogramTarget)target, (Int32)width, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); #if DEBUG } #endif @@ -88558,7 +91213,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexd((Double)c); + InteropHelper.Call(EntryPoints[1035], (Double)c); #if DEBUG } #endif @@ -88584,7 +91239,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexdv((Double*)c); + InteropHelper.Call(EntryPoints[1036], (IntPtr)c); #if DEBUG } #endif @@ -88609,7 +91264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexf((Single)c); + InteropHelper.Call(EntryPoints[1037], (Single)c); #if DEBUG } #endif @@ -88635,7 +91290,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexfv((Single*)c); + InteropHelper.Call(EntryPoints[1040], (IntPtr)c); #if DEBUG } #endif @@ -88660,7 +91315,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexi((Int32)c); + InteropHelper.Call(EntryPoints[1041], (Int32)c); #if DEBUG } #endif @@ -88686,7 +91341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexiv((Int32*)c); + InteropHelper.Call(EntryPoints[1042], (IntPtr)c); #if DEBUG } #endif @@ -88708,7 +91363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexMask((UInt32)mask); + InteropHelper.Call(EntryPoints[1043], (UInt32)mask); #if DEBUG } #endif @@ -88731,7 +91386,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexMask((UInt32)mask); + InteropHelper.Call(EntryPoints[1043], (UInt32)mask); #if DEBUG } #endif @@ -88763,7 +91418,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1045], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -88799,7 +91454,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1045], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88840,7 +91495,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1045], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88881,7 +91536,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1045], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -88922,7 +91577,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointer((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1045], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -88953,7 +91608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexs((Int16)c); + InteropHelper.Call(EntryPoints[1048], (Int16)c); #if DEBUG } #endif @@ -88979,7 +91634,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexsv((Int16*)c); + InteropHelper.Call(EntryPoints[1049], (IntPtr)c); #if DEBUG } #endif @@ -89004,7 +91659,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexub((Byte)c); + InteropHelper.Call(EntryPoints[1050], (Byte)c); #if DEBUG } #endif @@ -89030,7 +91685,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexubv((Byte*)c); + InteropHelper.Call(EntryPoints[1051], (IntPtr)c); #if DEBUG } #endif @@ -89047,7 +91702,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInitNames(); + InteropHelper.Call(EntryPoints[1054]); #if DEBUG } #endif @@ -89074,7 +91729,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1058], (OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -89105,7 +91760,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1058], (OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -89141,7 +91796,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1058], (OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -89177,7 +91832,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1058], (OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -89213,7 +91868,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glInterleavedArrays((OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1058], (OpenTK.Graphics.OpenGL.InterleavedArrayFormat)format, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -89241,7 +91896,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferData((UInt32)buffer); + InteropHelper.Call(EntryPoints[1060], (UInt32)buffer); #if DEBUG } #endif @@ -89264,7 +91919,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferData((UInt32)buffer); + InteropHelper.Call(EntryPoints[1060], (UInt32)buffer); #if DEBUG } #endif @@ -89296,7 +91951,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferSubData((UInt32)buffer, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[1061], (UInt32)buffer, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -89329,7 +91984,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferSubData((UInt32)buffer, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[1061], (UInt32)buffer, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -89365,7 +92020,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments_ptr = attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[1062], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -89403,7 +92058,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments_ptr = &attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[1062], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -89438,7 +92093,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL.FramebufferAttachment*)attachments); + InteropHelper.Call(EntryPoints[1062], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -89494,7 +92149,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments_ptr = attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1063], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -89552,7 +92207,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.FramebufferAttachment* attachments_ptr = &attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1063], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -89607,7 +92262,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL.FramebufferAttachment*)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1063], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -89634,7 +92289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexImage((UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1064], (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -89662,7 +92317,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexImage((UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1064], (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -89719,7 +92374,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[1065], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -89777,7 +92432,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[1065], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -89799,7 +92454,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1067], (UInt32)buffer); #if DEBUG } #endif @@ -89822,7 +92477,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1067], (UInt32)buffer); #if DEBUG } #endif @@ -89849,7 +92504,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.OpenGL.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[1070], (OpenTK.Graphics.OpenGL.EnableCap)cap); #if DEBUG } #endif @@ -89876,7 +92531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledi((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[1071], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -89904,7 +92559,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledi((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[1071], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -89926,7 +92581,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[1075], (UInt32)framebuffer); #if DEBUG } #endif @@ -89949,7 +92604,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[1075], (UInt32)framebuffer); #if DEBUG } #endif @@ -89971,7 +92626,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsList((UInt32)list); + return InteropHelper.CallReturn(EntryPoints[1079], (UInt32)list); #if DEBUG } #endif @@ -89994,7 +92649,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsList((UInt32)list); + return InteropHelper.CallReturn(EntryPoints[1079], (UInt32)list); #if DEBUG } #endif @@ -90016,7 +92671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[1088], (UInt32)program); #if DEBUG } #endif @@ -90039,7 +92694,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[1088], (UInt32)program); #if DEBUG } #endif @@ -90061,7 +92716,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipeline((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[1091], (UInt32)pipeline); #if DEBUG } #endif @@ -90084,7 +92739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipeline((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[1091], (UInt32)pipeline); #if DEBUG } #endif @@ -90106,7 +92761,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQuery((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1093], (UInt32)id); #if DEBUG } #endif @@ -90129,7 +92784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQuery((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1093], (UInt32)id); #if DEBUG } #endif @@ -90151,7 +92806,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[1095], (UInt32)renderbuffer); #if DEBUG } #endif @@ -90174,7 +92829,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[1095], (UInt32)renderbuffer); #if DEBUG } #endif @@ -90196,7 +92851,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSampler((UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[1097], (UInt32)sampler); #if DEBUG } #endif @@ -90219,7 +92874,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSampler((UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[1097], (UInt32)sampler); #if DEBUG } #endif @@ -90241,7 +92896,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[1098], (UInt32)shader); #if DEBUG } #endif @@ -90264,7 +92919,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[1098], (UInt32)shader); #if DEBUG } #endif @@ -90286,7 +92941,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSync((IntPtr)sync); + return InteropHelper.CallReturn(EntryPoints[1099], (IntPtr)sync); #if DEBUG } #endif @@ -90308,7 +92963,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[1100], (UInt32)texture); #if DEBUG } #endif @@ -90331,7 +92986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[1100], (UInt32)texture); #if DEBUG } #endif @@ -90353,7 +93008,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedback((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1104], (UInt32)id); #if DEBUG } #endif @@ -90376,7 +93031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedback((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1104], (UInt32)id); #if DEBUG } #endif @@ -90398,7 +93053,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArray((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[1107], (UInt32)array); #if DEBUG } #endif @@ -90421,7 +93076,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArray((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[1107], (UInt32)array); #if DEBUG } #endif @@ -90453,7 +93108,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightf((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1112], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single)param); #if DEBUG } #endif @@ -90489,7 +93144,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1113], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -90524,7 +93179,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightfv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1113], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -90556,7 +93211,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLighti((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1114], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32)param); #if DEBUG } #endif @@ -90592,7 +93247,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1115], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -90627,7 +93282,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightiv((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1115], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -90654,7 +93309,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelf((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1116], (OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single)param); #if DEBUG } #endif @@ -90685,7 +93340,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glLightModelfv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1117], (OpenTK.Graphics.OpenGL.LightModelParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -90715,7 +93370,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelfv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1117], (OpenTK.Graphics.OpenGL.LightModelParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -90742,7 +93397,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModeli((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1118], (OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32)param); #if DEBUG } #endif @@ -90773,7 +93428,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glLightModeliv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1119], (OpenTK.Graphics.OpenGL.LightModelParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -90803,7 +93458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModeliv((OpenTK.Graphics.OpenGL.LightModelParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1119], (OpenTK.Graphics.OpenGL.LightModelParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -90830,7 +93485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineStipple((Int32)factor, (UInt16)pattern); + InteropHelper.Call(EntryPoints[1124], (Int32)factor, (UInt16)pattern); #if DEBUG } #endif @@ -90858,7 +93513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineStipple((Int32)factor, (UInt16)pattern); + InteropHelper.Call(EntryPoints[1124], (Int32)factor, (UInt16)pattern); #if DEBUG } #endif @@ -90880,7 +93535,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidth((Single)width); + InteropHelper.Call(EntryPoints[1125], (Single)width); #if DEBUG } #endif @@ -90902,7 +93557,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[1127], (UInt32)program); #if DEBUG } #endif @@ -90925,7 +93580,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[1127], (UInt32)program); #if DEBUG } #endif @@ -90947,7 +93602,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListBase((UInt32)@base); + InteropHelper.Call(EntryPoints[1129], (UInt32)@base); #if DEBUG } #endif @@ -90970,7 +93625,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListBase((UInt32)@base); + InteropHelper.Call(EntryPoints[1129], (UInt32)@base); #if DEBUG } #endif @@ -90987,7 +93642,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadIdentity(); + InteropHelper.Call(EntryPoints[1134]); #if DEBUG } #endif @@ -91013,7 +93668,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glLoadMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1136], (IntPtr)m_ptr); } } #if DEBUG @@ -91041,7 +93696,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glLoadMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1136], (IntPtr)m_ptr); } } #if DEBUG @@ -91066,7 +93721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixd((Double*)m); + InteropHelper.Call(EntryPoints[1136], (IntPtr)m); #if DEBUG } #endif @@ -91092,7 +93747,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glLoadMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1137], (IntPtr)m_ptr); } } #if DEBUG @@ -91120,7 +93775,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glLoadMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1137], (IntPtr)m_ptr); } } #if DEBUG @@ -91145,7 +93800,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixf((Single*)m); + InteropHelper.Call(EntryPoints[1137], (IntPtr)m); #if DEBUG } #endif @@ -91167,7 +93822,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadName((UInt32)name); + InteropHelper.Call(EntryPoints[1139], (UInt32)name); #if DEBUG } #endif @@ -91190,7 +93845,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadName((UInt32)name); + InteropHelper.Call(EntryPoints[1139], (UInt32)name); #if DEBUG } #endif @@ -91216,7 +93871,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glLoadTransposeMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1141], (IntPtr)m_ptr); } } #if DEBUG @@ -91244,7 +93899,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glLoadTransposeMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1141], (IntPtr)m_ptr); } } #if DEBUG @@ -91269,7 +93924,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadTransposeMatrixd((Double*)m); + InteropHelper.Call(EntryPoints[1141], (IntPtr)m); #if DEBUG } #endif @@ -91295,7 +93950,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glLoadTransposeMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1143], (IntPtr)m_ptr); } } #if DEBUG @@ -91323,7 +93978,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glLoadTransposeMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1143], (IntPtr)m_ptr); } } #if DEBUG @@ -91348,7 +94003,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadTransposeMatrixf((Single*)m); + InteropHelper.Call(EntryPoints[1143], (IntPtr)m); #if DEBUG } #endif @@ -91370,7 +94025,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLogicOp((OpenTK.Graphics.OpenGL.LogicOp)opcode); + InteropHelper.Call(EntryPoints[1147], (OpenTK.Graphics.OpenGL.LogicOp)opcode); #if DEBUG } #endif @@ -91416,7 +94071,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glMap1d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1160], (OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -91464,7 +94119,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glMap1d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1160], (OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -91509,7 +94164,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap1d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (Double*)points); + InteropHelper.Call(EntryPoints[1160], (OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)stride, (Int32)order, (IntPtr)points); #if DEBUG } #endif @@ -91555,7 +94210,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glMap1f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1161], (OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -91603,7 +94258,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glMap1f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1161], (OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points_ptr); } } #if DEBUG @@ -91648,7 +94303,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap1f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (Single*)points); + InteropHelper.Call(EntryPoints[1161], (OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)stride, (Int32)order, (IntPtr)points); #if DEBUG } #endif @@ -91709,7 +94364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glMap2d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1163], (OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -91772,7 +94427,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glMap2d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[1163], (OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -91832,7 +94487,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap2d((OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double*)points); + InteropHelper.Call(EntryPoints[1163], (OpenTK.Graphics.OpenGL.MapTarget)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points); #if DEBUG } #endif @@ -91893,7 +94548,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glMap2f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1164], (OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -91956,7 +94611,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glMap2f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1164], (OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points_ptr); } } #if DEBUG @@ -92016,7 +94671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap2f((OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single*)points); + InteropHelper.Call(EntryPoints[1164], (OpenTK.Graphics.OpenGL.MapTarget)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (IntPtr)points); #if DEBUG } #endif @@ -92043,7 +94698,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferAccess)access); + return InteropHelper.CallReturn(EntryPoints[1166], (OpenTK.Graphics.OpenGL.BufferTarget)target, (OpenTK.Graphics.OpenGL.BufferAccess)access); #if DEBUG } #endif @@ -92080,7 +94735,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRange((OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL.BufferAccessMask)access); + return InteropHelper.CallReturn(EntryPoints[1168], (OpenTK.Graphics.OpenGL.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL.BufferAccessMask)access); #if DEBUG } #endif @@ -92117,7 +94772,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid1d((Int32)un, (Double)u1, (Double)u2); + InteropHelper.Call(EntryPoints[1170], (Int32)un, (Double)u1, (Double)u2); #if DEBUG } #endif @@ -92154,7 +94809,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid1f((Int32)un, (Single)u1, (Single)u2); + InteropHelper.Call(EntryPoints[1171], (Int32)un, (Single)u1, (Single)u2); #if DEBUG } #endif @@ -92191,7 +94846,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid2d((Int32)un, (Double)u1, (Double)u2, (Int32)vn, (Double)v1, (Double)v2); + InteropHelper.Call(EntryPoints[1173], (Int32)un, (Double)u1, (Double)u2, (Int32)vn, (Double)v1, (Double)v2); #if DEBUG } #endif @@ -92228,7 +94883,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid2f((Int32)un, (Single)u1, (Single)u2, (Int32)vn, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[1174], (Int32)un, (Single)u1, (Single)u2, (Int32)vn, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -92260,7 +94915,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialf((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1186], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single)param); #if DEBUG } #endif @@ -92296,7 +94951,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1187], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -92331,7 +94986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialfv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1187], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -92363,7 +95018,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMateriali((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1188], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32)param); #if DEBUG } #endif @@ -92399,7 +95054,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1189], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -92434,7 +95089,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialiv((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1189], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -92456,7 +95111,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMode((OpenTK.Graphics.OpenGL.MatrixMode)mode); + InteropHelper.Call(EntryPoints[1202], (OpenTK.Graphics.OpenGL.MatrixMode)mode); #if DEBUG } #endif @@ -92478,7 +95133,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMemoryBarrier((OpenTK.Graphics.OpenGL.MemoryBarrierFlags)barriers); + InteropHelper.Call(EntryPoints[1216], (OpenTK.Graphics.OpenGL.MemoryBarrierFlags)barriers); #if DEBUG } #endif @@ -92510,7 +95165,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + InteropHelper.Call(EntryPoints[1218], (OpenTK.Graphics.OpenGL.MinmaxTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); #if DEBUG } #endif @@ -92532,7 +95187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinSampleShading((Single)value); + InteropHelper.Call(EntryPoints[1220], (Single)value); #if DEBUG } #endif @@ -92575,7 +95230,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1222], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)drawcount); } } #if DEBUG @@ -92620,7 +95275,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1222], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)drawcount); } } #if DEBUG @@ -92661,7 +95316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1222], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)drawcount); #if DEBUG } #endif @@ -92703,7 +95358,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1222], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)drawcount); } } #if DEBUG @@ -92747,7 +95402,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1222], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)drawcount); } } #if DEBUG @@ -92787,7 +95442,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1222], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)drawcount); #if DEBUG } #endif @@ -92824,7 +95479,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1224], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); #if DEBUG } #endif @@ -92865,7 +95520,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1224], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -92911,7 +95566,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1224], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -92957,7 +95612,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1224], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -93003,7 +95658,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1224], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); indirect = (T1)indirect_ptr.Target; } finally @@ -93056,7 +95711,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); } } #if DEBUG @@ -93109,7 +95764,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93167,7 +95822,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93225,7 +95880,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93283,7 +95938,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -93338,7 +95993,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); } } #if DEBUG @@ -93391,7 +96046,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93449,7 +96104,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93507,7 +96162,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93565,7 +96220,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -93617,7 +96272,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); #if DEBUG } #endif @@ -93665,7 +96320,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93718,7 +96373,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93771,7 +96426,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93824,7 +96479,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -93876,7 +96531,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); } } #if DEBUG @@ -93928,7 +96583,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -93985,7 +96640,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94042,7 +96697,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94099,7 +96754,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -94153,7 +96808,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); } } #if DEBUG @@ -94205,7 +96860,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94262,7 +96917,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94319,7 +96974,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94376,7 +97031,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -94427,7 +97082,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); #if DEBUG } #endif @@ -94474,7 +97129,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94526,7 +97181,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94578,7 +97233,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -94630,7 +97285,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[1229], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -94689,7 +97344,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = count) fixed (Int32* basevertex_ptr = basevertex) { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex_ptr); } } #if DEBUG @@ -94748,7 +97403,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -94812,7 +97467,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -94876,7 +97531,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -94940,7 +97595,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); indices = (T3)indices_ptr.Target; } finally @@ -95001,7 +97656,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (Int32* basevertex_ptr = &basevertex) { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex_ptr); } } #if DEBUG @@ -95060,7 +97715,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -95124,7 +97779,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -95188,7 +97843,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -95252,7 +97907,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); indices = (T3)indices_ptr.Target; } finally @@ -95309,7 +97964,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex); #if DEBUG } #endif @@ -95362,7 +98017,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -95420,7 +98075,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -95478,7 +98133,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -95536,7 +98191,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -95594,7 +98249,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = count) fixed (Int32* basevertex_ptr = basevertex) { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex_ptr); } } #if DEBUG @@ -95652,7 +98307,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -95715,7 +98370,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -95778,7 +98433,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -95841,7 +98496,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); indices = (T3)indices_ptr.Target; } finally @@ -95901,7 +98556,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* count_ptr = &count) fixed (Int32* basevertex_ptr = &basevertex) { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex_ptr); } } #if DEBUG @@ -95959,7 +98614,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -96022,7 +98677,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -96085,7 +98740,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -96148,7 +98803,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); indices = (T3)indices_ptr.Target; } finally @@ -96204,7 +98859,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex); #if DEBUG } #endif @@ -96256,7 +98911,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -96313,7 +98968,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -96370,7 +99025,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -96427,7 +99082,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[1230], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -96475,7 +99130,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1232], (OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); #if DEBUG } #endif @@ -96521,7 +99176,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1232], (OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -96572,7 +99227,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1232], (OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -96623,7 +99278,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1232], (OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -96674,7 +99329,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[1232], (OpenTK.Graphics.OpenGL.All)mode, (OpenTK.Graphics.OpenGL.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); indirect = (T2)indirect_ptr.Target; } finally @@ -96707,7 +99362,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s); + InteropHelper.Call(EntryPoints[1242], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s); #if DEBUG } #endif @@ -96735,7 +99390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1244], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -96762,7 +99417,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s); + InteropHelper.Call(EntryPoints[1246], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s); #if DEBUG } #endif @@ -96790,7 +99445,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1248], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -96817,7 +99472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s); + InteropHelper.Call(EntryPoints[1252], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s); #if DEBUG } #endif @@ -96845,7 +99500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1254], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -96872,7 +99527,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s); + InteropHelper.Call(EntryPoints[1256], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s); #if DEBUG } #endif @@ -96900,7 +99555,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1258], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -96927,7 +99582,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t); + InteropHelper.Call(EntryPoints[1264], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t); #if DEBUG } #endif @@ -96958,7 +99613,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord2dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1266], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -96991,7 +99646,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord2dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1266], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97021,7 +99676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1266], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97048,7 +99703,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t); + InteropHelper.Call(EntryPoints[1268], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t); #if DEBUG } #endif @@ -97079,7 +99734,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord2fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1270], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97112,7 +99767,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord2fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1270], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97142,7 +99797,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1270], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97169,7 +99824,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t); + InteropHelper.Call(EntryPoints[1274], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t); #if DEBUG } #endif @@ -97200,7 +99855,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord2iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1276], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97233,7 +99888,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord2iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1276], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97263,7 +99918,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1276], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97290,7 +99945,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t); + InteropHelper.Call(EntryPoints[1278], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t); #if DEBUG } #endif @@ -97321,7 +99976,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord2sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1280], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97354,7 +100009,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord2sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1280], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97384,7 +100039,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1280], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97411,7 +100066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r); + InteropHelper.Call(EntryPoints[1286], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r); #if DEBUG } #endif @@ -97442,7 +100097,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord3dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1288], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97475,7 +100130,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord3dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1288], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97505,7 +100160,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1288], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97532,7 +100187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r); + InteropHelper.Call(EntryPoints[1290], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r); #if DEBUG } #endif @@ -97563,7 +100218,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord3fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1292], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97596,7 +100251,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord3fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1292], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97626,7 +100281,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1292], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97653,7 +100308,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); + InteropHelper.Call(EntryPoints[1296], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r); #if DEBUG } #endif @@ -97684,7 +100339,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord3iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1298], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97717,7 +100372,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord3iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1298], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97747,7 +100402,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1298], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97774,7 +100429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); + InteropHelper.Call(EntryPoints[1300], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r); #if DEBUG } #endif @@ -97805,7 +100460,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord3sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1302], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97838,7 +100493,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord3sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1302], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97868,7 +100523,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1302], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -97895,7 +100550,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4d((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); + InteropHelper.Call(EntryPoints[1308], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Double)s, (Double)t, (Double)r, (Double)q); #if DEBUG } #endif @@ -97926,7 +100581,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glMultiTexCoord4dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1310], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97959,7 +100614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glMultiTexCoord4dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1310], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -97989,7 +100644,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4dv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Double*)v); + InteropHelper.Call(EntryPoints[1310], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -98016,7 +100671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4f((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); + InteropHelper.Call(EntryPoints[1312], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Single)s, (Single)t, (Single)r, (Single)q); #if DEBUG } #endif @@ -98047,7 +100702,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glMultiTexCoord4fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1314], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -98080,7 +100735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glMultiTexCoord4fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1314], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -98110,7 +100765,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4fv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Single*)v); + InteropHelper.Call(EntryPoints[1314], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -98137,7 +100792,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4i((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); + InteropHelper.Call(EntryPoints[1318], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32)s, (Int32)t, (Int32)r, (Int32)q); #if DEBUG } #endif @@ -98168,7 +100823,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glMultiTexCoord4iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1320], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -98201,7 +100856,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glMultiTexCoord4iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1320], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -98231,7 +100886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4iv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int32*)v); + InteropHelper.Call(EntryPoints[1320], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -98258,7 +100913,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4s((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); + InteropHelper.Call(EntryPoints[1322], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16)s, (Int16)t, (Int16)r, (Int16)q); #if DEBUG } #endif @@ -98289,7 +100944,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glMultiTexCoord4sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1324], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -98322,7 +100977,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glMultiTexCoord4sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1324], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -98352,7 +101007,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4sv((OpenTK.Graphics.OpenGL.TextureUnit)target, (Int16*)v); + InteropHelper.Call(EntryPoints[1324], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -98367,7 +101022,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1328], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98383,7 +101038,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1328], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98399,7 +101054,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1329], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98415,7 +101070,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1329], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98430,7 +101085,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1330], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98446,7 +101101,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1330], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98462,7 +101117,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1331], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98478,7 +101133,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1331], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98493,7 +101148,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1332], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98509,7 +101164,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1332], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98525,7 +101180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1333], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98541,7 +101196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1333], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98556,7 +101211,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1334], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98572,7 +101227,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4ui((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1334], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -98588,7 +101243,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1335], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98604,7 +101259,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4uiv((OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1335], (OpenTK.Graphics.OpenGL.TextureUnit)texture, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -98630,7 +101285,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMultMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1360], (IntPtr)m_ptr); } } #if DEBUG @@ -98658,7 +101313,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMultMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1360], (IntPtr)m_ptr); } } #if DEBUG @@ -98683,7 +101338,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixd((Double*)m); + InteropHelper.Call(EntryPoints[1360], (IntPtr)m); #if DEBUG } #endif @@ -98709,7 +101364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMultMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1361], (IntPtr)m_ptr); } } #if DEBUG @@ -98737,7 +101392,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMultMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1361], (IntPtr)m_ptr); } } #if DEBUG @@ -98762,7 +101417,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixf((Single*)m); + InteropHelper.Call(EntryPoints[1361], (IntPtr)m); #if DEBUG } #endif @@ -98788,7 +101443,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMultTransposeMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1363], (IntPtr)m_ptr); } } #if DEBUG @@ -98816,7 +101471,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMultTransposeMatrixd((Double*)m_ptr); + InteropHelper.Call(EntryPoints[1363], (IntPtr)m_ptr); } } #if DEBUG @@ -98841,7 +101496,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultTransposeMatrixd((Double*)m); + InteropHelper.Call(EntryPoints[1363], (IntPtr)m); #if DEBUG } #endif @@ -98867,7 +101522,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMultTransposeMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1365], (IntPtr)m_ptr); } } #if DEBUG @@ -98895,7 +101550,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMultTransposeMatrixf((Single*)m_ptr); + InteropHelper.Call(EntryPoints[1365], (IntPtr)m_ptr); } } #if DEBUG @@ -98920,7 +101575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultTransposeMatrixf((Single*)m); + InteropHelper.Call(EntryPoints[1365], (IntPtr)m); #if DEBUG } #endif @@ -98947,7 +101602,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNewList((UInt32)list, (OpenTK.Graphics.OpenGL.ListMode)mode); + InteropHelper.Call(EntryPoints[1396], (UInt32)list, (OpenTK.Graphics.OpenGL.ListMode)mode); #if DEBUG } #endif @@ -98975,7 +101630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNewList((UInt32)list, (OpenTK.Graphics.OpenGL.ListMode)mode); + InteropHelper.Call(EntryPoints[1396], (UInt32)list, (OpenTK.Graphics.OpenGL.ListMode)mode); #if DEBUG } #endif @@ -99000,7 +101655,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3b((SByte)nx, (SByte)ny, (SByte)nz); + InteropHelper.Call(EntryPoints[1398], (SByte)nx, (SByte)ny, (SByte)nz); #if DEBUG } #endif @@ -99026,7 +101681,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3b((SByte)nx, (SByte)ny, (SByte)nz); + InteropHelper.Call(EntryPoints[1398], (SByte)nx, (SByte)ny, (SByte)nz); #if DEBUG } #endif @@ -99055,7 +101710,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glNormal3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1399], (IntPtr)v_ptr); } } #if DEBUG @@ -99086,7 +101741,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glNormal3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1399], (IntPtr)v_ptr); } } #if DEBUG @@ -99114,7 +101769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3bv((SByte*)v); + InteropHelper.Call(EntryPoints[1399], (IntPtr)v); #if DEBUG } #endif @@ -99144,7 +101799,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glNormal3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1399], (IntPtr)v_ptr); } } #if DEBUG @@ -99176,7 +101831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glNormal3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1399], (IntPtr)v_ptr); } } #if DEBUG @@ -99204,7 +101859,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3bv((SByte*)v); + InteropHelper.Call(EntryPoints[1399], (IntPtr)v); #if DEBUG } #endif @@ -99229,7 +101884,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3d((Double)nx, (Double)ny, (Double)nz); + InteropHelper.Call(EntryPoints[1400], (Double)nx, (Double)ny, (Double)nz); #if DEBUG } #endif @@ -99258,7 +101913,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glNormal3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1401], (IntPtr)v_ptr); } } #if DEBUG @@ -99289,7 +101944,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glNormal3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1401], (IntPtr)v_ptr); } } #if DEBUG @@ -99317,7 +101972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3dv((Double*)v); + InteropHelper.Call(EntryPoints[1401], (IntPtr)v); #if DEBUG } #endif @@ -99342,7 +101997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3f((Single)nx, (Single)ny, (Single)nz); + InteropHelper.Call(EntryPoints[1402], (Single)nx, (Single)ny, (Single)nz); #if DEBUG } #endif @@ -99371,7 +102026,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glNormal3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1403], (IntPtr)v_ptr); } } #if DEBUG @@ -99402,7 +102057,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glNormal3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1403], (IntPtr)v_ptr); } } #if DEBUG @@ -99430,7 +102085,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3fv((Single*)v); + InteropHelper.Call(EntryPoints[1403], (IntPtr)v); #if DEBUG } #endif @@ -99455,7 +102110,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3i((Int32)nx, (Int32)ny, (Int32)nz); + InteropHelper.Call(EntryPoints[1408], (Int32)nx, (Int32)ny, (Int32)nz); #if DEBUG } #endif @@ -99484,7 +102139,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glNormal3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1409], (IntPtr)v_ptr); } } #if DEBUG @@ -99515,7 +102170,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glNormal3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1409], (IntPtr)v_ptr); } } #if DEBUG @@ -99543,7 +102198,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3iv((Int32*)v); + InteropHelper.Call(EntryPoints[1409], (IntPtr)v); #if DEBUG } #endif @@ -99568,7 +102223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3s((Int16)nx, (Int16)ny, (Int16)nz); + InteropHelper.Call(EntryPoints[1410], (Int16)nx, (Int16)ny, (Int16)nz); #if DEBUG } #endif @@ -99597,7 +102252,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glNormal3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1411], (IntPtr)v_ptr); } } #if DEBUG @@ -99628,7 +102283,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glNormal3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1411], (IntPtr)v_ptr); } } #if DEBUG @@ -99656,7 +102311,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3sv((Int16*)v); + InteropHelper.Call(EntryPoints[1411], (IntPtr)v); #if DEBUG } #endif @@ -99671,7 +102326,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1415], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -99687,7 +102342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1415], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -99703,7 +102358,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1416], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -99719,7 +102374,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1416], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -99751,7 +102406,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1417], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -99787,7 +102442,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1417], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -99828,7 +102483,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1417], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -99869,7 +102524,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1417], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -99910,7 +102565,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointer((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1417], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -99953,7 +102608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1431], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -99991,7 +102646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1431], (OpenTK.Graphics.OpenGL.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -100023,7 +102678,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabel((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1433], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -100059,7 +102714,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1433], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -100100,7 +102755,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1433], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -100141,7 +102796,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1433], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -100182,7 +102837,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1433], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -100220,7 +102875,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrtho((Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); + InteropHelper.Call(EntryPoints[1437], (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); #if DEBUG } #endif @@ -100242,7 +102897,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPassThrough((Single)token); + InteropHelper.Call(EntryPoints[1441], (Single)token); #if DEBUG } #endif @@ -100278,7 +102933,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = values) { - Delegates.glPatchParameterfv((OpenTK.Graphics.OpenGL.PatchParameterFloat)pname, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[1443], (OpenTK.Graphics.OpenGL.PatchParameterFloat)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -100316,7 +102971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = &values) { - Delegates.glPatchParameterfv((OpenTK.Graphics.OpenGL.PatchParameterFloat)pname, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[1443], (OpenTK.Graphics.OpenGL.PatchParameterFloat)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -100351,7 +103006,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPatchParameterfv((OpenTK.Graphics.OpenGL.PatchParameterFloat)pname, (Single*)values); + InteropHelper.Call(EntryPoints[1443], (OpenTK.Graphics.OpenGL.PatchParameterFloat)pname, (IntPtr)values); #if DEBUG } #endif @@ -100383,7 +103038,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPatchParameteri((OpenTK.Graphics.OpenGL.PatchParameterInt)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1444], (OpenTK.Graphics.OpenGL.PatchParameterInt)pname, (Int32)value); #if DEBUG } #endif @@ -100400,7 +103055,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPauseTransformFeedback(); + InteropHelper.Call(EntryPoints[1463]); #if DEBUG } #endif @@ -100436,7 +103091,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = values) { - Delegates.glPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[1466], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100474,7 +103129,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* values_ptr = &values) { - Delegates.glPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[1466], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100509,7 +103164,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapfv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (Single*)values); + InteropHelper.Call(EntryPoints[1466], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values); #if DEBUG } #endif @@ -100545,7 +103200,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[1467], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100583,7 +103238,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* values_ptr = &values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[1467], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100618,7 +103273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values); + InteropHelper.Call(EntryPoints[1467], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values); #if DEBUG } #endif @@ -100655,7 +103310,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* values_ptr = values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[1467], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100694,7 +103349,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* values_ptr = &values) { - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[1467], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100729,7 +103384,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapuiv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt32*)values); + InteropHelper.Call(EntryPoints[1467], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values); #if DEBUG } #endif @@ -100765,7 +103420,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* values_ptr = values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[1468], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100803,7 +103458,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* values_ptr = &values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[1468], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100838,7 +103493,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values); + InteropHelper.Call(EntryPoints[1468], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values); #if DEBUG } #endif @@ -100875,7 +103530,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* values_ptr = values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[1468], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100914,7 +103569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* values_ptr = &values) { - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[1468], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values_ptr); } } #if DEBUG @@ -100949,7 +103604,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapusv((OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (UInt16*)values); + InteropHelper.Call(EntryPoints[1468], (OpenTK.Graphics.OpenGL.PixelMap)map, (Int32)mapsize, (IntPtr)values); #if DEBUG } #endif @@ -100968,7 +103623,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* values_ptr = values) { - Delegates.glPixelMapx((OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[1469], (OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (IntPtr)values_ptr); } } #if DEBUG @@ -100989,7 +103644,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* values_ptr = &values) { - Delegates.glPixelMapx((OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (int*)values_ptr); + InteropHelper.Call(EntryPoints[1469], (OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (IntPtr)values_ptr); } } #if DEBUG @@ -101007,7 +103662,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelMapx((OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (int*)values); + InteropHelper.Call(EntryPoints[1469], (OpenTK.Graphics.OpenGL.OesFixedPoint)map, (Int32)size, (IntPtr)values); #if DEBUG } #endif @@ -101034,7 +103689,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStoref((OpenTK.Graphics.OpenGL.PixelStoreParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1470], (OpenTK.Graphics.OpenGL.PixelStoreParameter)pname, (Single)param); #if DEBUG } #endif @@ -101061,7 +103716,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.OpenGL.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1471], (OpenTK.Graphics.OpenGL.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -101076,7 +103731,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorex((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[1472], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -101106,7 +103761,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransferf((OpenTK.Graphics.OpenGL.PixelTransferParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1478], (OpenTK.Graphics.OpenGL.PixelTransferParameter)pname, (Single)param); #if DEBUG } #endif @@ -101136,7 +103791,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransferi((OpenTK.Graphics.OpenGL.PixelTransferParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1479], (OpenTK.Graphics.OpenGL.PixelTransferParameter)pname, (Int32)param); #if DEBUG } #endif @@ -101158,7 +103813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelZoom((Single)xfactor, (Single)yfactor); + InteropHelper.Call(EntryPoints[1485], (Single)xfactor, (Single)yfactor); #if DEBUG } #endif @@ -101190,7 +103845,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterf((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[1490], (OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single)param); #if DEBUG } #endif @@ -101226,7 +103881,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1494], (OpenTK.Graphics.OpenGL.PointParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -101261,7 +103916,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1494], (OpenTK.Graphics.OpenGL.PointParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -101293,7 +103948,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameteri((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1498], (OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -101329,7 +103984,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1500], (OpenTK.Graphics.OpenGL.PointParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -101364,7 +104019,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL.PointParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1500], (OpenTK.Graphics.OpenGL.PointParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -101386,7 +104041,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSize((Single)size); + InteropHelper.Call(EntryPoints[1504], (Single)size); #if DEBUG } #endif @@ -101413,7 +104068,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonMode((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.PolygonMode)mode); + InteropHelper.Call(EntryPoints[1508], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.PolygonMode)mode); #if DEBUG } #endif @@ -101440,7 +104095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffset((Single)factor, (Single)units); + InteropHelper.Call(EntryPoints[1509], (Single)factor, (Single)units); #if DEBUG } #endif @@ -101466,7 +104121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* mask_ptr = mask) { - Delegates.glPolygonStipple((Byte*)mask_ptr); + InteropHelper.Call(EntryPoints[1512], (IntPtr)mask_ptr); } } #if DEBUG @@ -101494,7 +104149,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* mask_ptr = &mask) { - Delegates.glPolygonStipple((Byte*)mask_ptr); + InteropHelper.Call(EntryPoints[1512], (IntPtr)mask_ptr); } } #if DEBUG @@ -101519,7 +104174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonStipple((Byte*)mask); + InteropHelper.Call(EntryPoints[1512], (IntPtr)mask); #if DEBUG } #endif @@ -101534,7 +104189,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopAttrib(); + InteropHelper.Call(EntryPoints[1513]); #if DEBUG } #endif @@ -101549,7 +104204,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopClientAttrib(); + InteropHelper.Call(EntryPoints[1514]); #if DEBUG } #endif @@ -101566,7 +104221,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroup(); + InteropHelper.Call(EntryPoints[1515]); #if DEBUG } #endif @@ -101581,7 +104236,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopMatrix(); + InteropHelper.Call(EntryPoints[1518]); #if DEBUG } #endif @@ -101596,7 +104251,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopName(); + InteropHelper.Call(EntryPoints[1519]); #if DEBUG } #endif @@ -101618,7 +104273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartIndex((UInt32)index); + InteropHelper.Call(EntryPoints[1522], (UInt32)index); #if DEBUG } #endif @@ -101641,7 +104296,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartIndex((UInt32)index); + InteropHelper.Call(EntryPoints[1522], (UInt32)index); #if DEBUG } #endif @@ -101678,7 +104333,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = textures) fixed (Single* priorities_ptr = priorities) { - Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1525], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -101717,7 +104372,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = &textures) fixed (Single* priorities_ptr = &priorities) { - Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1525], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -101752,7 +104407,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures, (Single*)priorities); + InteropHelper.Call(EntryPoints[1525], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -101790,7 +104445,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = textures) fixed (Single* priorities_ptr = priorities) { - Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1525], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -101830,7 +104485,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = &textures) fixed (Single* priorities_ptr = &priorities) { - Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1525], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -101865,7 +104520,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTextures((Int32)n, (UInt32*)textures, (Single*)priorities); + InteropHelper.Call(EntryPoints[1525], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -101902,7 +104557,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -101943,7 +104598,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -101989,7 +104644,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -102035,7 +104690,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -102081,7 +104736,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -102125,7 +104780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -102167,7 +104822,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -102214,7 +104869,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -102261,7 +104916,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -102308,7 +104963,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1528], (UInt32)program, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -102346,7 +105001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1562], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -102379,7 +105034,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1562], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -102412,7 +105067,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1562], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -102446,7 +105101,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1562], (UInt32)program, (OpenTK.Graphics.OpenGL.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -102496,7 +105151,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1d((UInt32)program, (Int32)location, (Double)v0); + InteropHelper.Call(EntryPoints[1569], (UInt32)program, (Int32)location, (Double)v0); #if DEBUG } #endif @@ -102547,7 +105202,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1d((UInt32)program, (Int32)location, (Double)v0); + InteropHelper.Call(EntryPoints[1569], (UInt32)program, (Int32)location, (Double)v0); #if DEBUG } #endif @@ -102601,7 +105256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1571], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -102654,7 +105309,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1571], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -102709,7 +105364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1571], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -102762,7 +105417,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1571], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -102812,7 +105467,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1f((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[1573], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -102863,7 +105518,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1f((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[1573], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -102917,7 +105572,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1575], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -102970,7 +105625,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1575], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -103025,7 +105680,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1575], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103078,7 +105733,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1575], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -103128,7 +105783,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[1577], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -103179,7 +105834,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[1577], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -103233,7 +105888,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1581], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103286,7 +105941,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1581], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -103341,7 +105996,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1581], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103394,7 +106049,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1581], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -103445,7 +106100,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ui((UInt32)program, (Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[1583], (UInt32)program, (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -103500,7 +106155,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform1uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1587], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103553,7 +106208,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1587], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -103603,7 +106258,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2d((UInt32)program, (Int32)location, (Double)v0, (Double)v1); + InteropHelper.Call(EntryPoints[1589], (UInt32)program, (Int32)location, (Double)v0, (Double)v1); #if DEBUG } #endif @@ -103654,7 +106309,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2d((UInt32)program, (Int32)location, (Double)v0, (Double)v1); + InteropHelper.Call(EntryPoints[1589], (UInt32)program, (Int32)location, (Double)v0, (Double)v1); #if DEBUG } #endif @@ -103708,7 +106363,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1591], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103764,7 +106419,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1591], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103817,7 +106472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1591], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -103872,7 +106527,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1591], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103929,7 +106584,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1591], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -103982,7 +106637,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1591], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -104032,7 +106687,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2f((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[1593], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -104083,7 +106738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2f((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[1593], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -104137,7 +106792,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1595], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104193,7 +106848,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1595], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104246,7 +106901,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1595], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -104301,7 +106956,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1595], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104358,7 +107013,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1595], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104411,7 +107066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1595], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -104461,7 +107116,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[1597], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -104512,7 +107167,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[1597], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -104566,7 +107221,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1601], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104619,7 +107274,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1601], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -104674,7 +107329,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1601], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104727,7 +107382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1601], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -104778,7 +107433,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ui((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[1603], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -104833,7 +107488,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform2uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1607], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104890,7 +107545,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform2uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1607], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -104943,7 +107598,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1607], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -104993,7 +107648,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); + InteropHelper.Call(EntryPoints[1609], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); #if DEBUG } #endif @@ -105044,7 +107699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); + InteropHelper.Call(EntryPoints[1609], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); #if DEBUG } #endif @@ -105098,7 +107753,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1611], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105154,7 +107809,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1611], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105207,7 +107862,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1611], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -105262,7 +107917,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1611], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105319,7 +107974,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1611], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105372,7 +108027,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1611], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -105422,7 +108077,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[1613], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -105473,7 +108128,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[1613], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -105527,7 +108182,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1615], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105583,7 +108238,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1615], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105636,7 +108291,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1615], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -105691,7 +108346,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1615], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105748,7 +108403,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1615], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -105801,7 +108456,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1615], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -105851,7 +108506,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[1617], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -105902,7 +108557,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[1617], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -105956,7 +108611,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1621], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106012,7 +108667,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1621], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106065,7 +108720,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1621], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -106120,7 +108775,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1621], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106177,7 +108832,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1621], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106230,7 +108885,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1621], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -106281,7 +108936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ui((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[1623], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -106336,7 +108991,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform3uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1627], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106393,7 +109048,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform3uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1627], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106446,7 +109101,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1627], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -106496,7 +109151,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); + InteropHelper.Call(EntryPoints[1629], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); #if DEBUG } #endif @@ -106547,7 +109202,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); + InteropHelper.Call(EntryPoints[1629], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); #if DEBUG } #endif @@ -106601,7 +109256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1631], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106657,7 +109312,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1631], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106710,7 +109365,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1631], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -106765,7 +109420,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1631], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106822,7 +109477,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1631], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -106875,7 +109530,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1631], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -106925,7 +109580,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[1633], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -106976,7 +109631,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[1633], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -107030,7 +109685,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1635], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107086,7 +109741,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1635], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107139,7 +109794,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1635], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -107194,7 +109849,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1635], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107251,7 +109906,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1635], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107304,7 +109959,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1635], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -107354,7 +110009,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[1637], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -107405,7 +110060,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[1637], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -107459,7 +110114,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1641], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107515,7 +110170,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1641], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107568,7 +110223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1641], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -107623,7 +110278,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1641], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107680,7 +110335,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1641], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107733,7 +110388,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1641], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -107784,7 +110439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ui((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[1643], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -107839,7 +110494,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform4uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1647], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107896,7 +110551,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform4uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1647], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -107949,7 +110604,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1647], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -107968,7 +110623,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1653], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -107989,7 +110644,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1653], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108007,7 +110662,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1653], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108027,7 +110682,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1653], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108049,7 +110704,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1653], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108067,7 +110722,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1653], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108086,7 +110741,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1655], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108107,7 +110762,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1655], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108125,7 +110780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1655], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108145,7 +110800,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1655], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108167,7 +110822,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1655], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108185,7 +110840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1655], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108204,7 +110859,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1657], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108225,7 +110880,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1657], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108243,7 +110898,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1657], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108263,7 +110918,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1657], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108285,7 +110940,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1657], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108303,7 +110958,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1657], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108322,7 +110977,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1659], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108343,7 +110998,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1659], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108361,7 +111016,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1659], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108381,7 +111036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1659], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108403,7 +111058,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1659], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108421,7 +111076,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1659], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108440,7 +111095,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1661], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108461,7 +111116,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1661], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108479,7 +111134,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1661], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108499,7 +111154,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1661], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108521,7 +111176,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1661], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108539,7 +111194,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1661], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108558,7 +111213,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1663], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108579,7 +111234,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1663], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108597,7 +111252,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1663], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108617,7 +111272,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1663], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108639,7 +111294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1663], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108657,7 +111312,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1663], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108676,7 +111331,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1665], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108697,7 +111352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1665], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108715,7 +111370,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1665], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108735,7 +111390,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1665], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108757,7 +111412,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1665], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108775,7 +111430,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1665], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108794,7 +111449,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1667], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108815,7 +111470,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1667], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108833,7 +111488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1667], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108853,7 +111508,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1667], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108875,7 +111530,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1667], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108893,7 +111548,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1667], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108912,7 +111567,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1669], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108933,7 +111588,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1669], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108951,7 +111606,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1669], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -108971,7 +111626,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1669], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -108993,7 +111648,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1669], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109011,7 +111666,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1669], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109030,7 +111685,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1671], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109051,7 +111706,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1671], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109069,7 +111724,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1671], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109089,7 +111744,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1671], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109111,7 +111766,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1671], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109129,7 +111784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1671], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109148,7 +111803,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1673], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109169,7 +111824,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1673], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109187,7 +111842,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1673], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109207,7 +111862,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1673], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109229,7 +111884,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1673], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109247,7 +111902,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1673], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109266,7 +111921,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1675], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109287,7 +111942,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1675], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109305,7 +111960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1675], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109325,7 +111980,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1675], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109347,7 +112002,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1675], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109365,7 +112020,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1675], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109384,7 +112039,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1677], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109405,7 +112060,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1677], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109423,7 +112078,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1677], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109443,7 +112098,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1677], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109465,7 +112120,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1677], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109483,7 +112138,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1677], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109502,7 +112157,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1679], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109523,7 +112178,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1679], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109541,7 +112196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1679], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109561,7 +112216,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1679], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109583,7 +112238,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1679], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109601,7 +112256,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1679], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109620,7 +112275,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1681], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109641,7 +112296,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1681], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109659,7 +112314,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1681], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109679,7 +112334,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1681], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109701,7 +112356,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1681], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109719,7 +112374,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1681], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109738,7 +112393,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1683], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109759,7 +112414,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1683], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109777,7 +112432,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1683], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109797,7 +112452,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1683], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109819,7 +112474,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1683], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109837,7 +112492,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1683], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109856,7 +112511,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1685], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109877,7 +112532,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1685], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109895,7 +112550,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1685], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109915,7 +112570,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1685], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109937,7 +112592,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1685], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109955,7 +112610,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1685], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -109974,7 +112629,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1687], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -109995,7 +112650,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1687], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -110013,7 +112668,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1687], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -110033,7 +112688,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1687], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -110055,7 +112710,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1687], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -110073,7 +112728,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1687], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -110095,7 +112750,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProvokingVertex((OpenTK.Graphics.OpenGL.ProvokingVertexMode)mode); + InteropHelper.Call(EntryPoints[1692], (OpenTK.Graphics.OpenGL.ProvokingVertexMode)mode); #if DEBUG } #endif @@ -110117,7 +112772,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushAttrib((OpenTK.Graphics.OpenGL.AttribMask)mask); + InteropHelper.Call(EntryPoints[1694], (OpenTK.Graphics.OpenGL.AttribMask)mask); #if DEBUG } #endif @@ -110139,7 +112794,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushClientAttrib((OpenTK.Graphics.OpenGL.ClientAttribMask)mask); + InteropHelper.Call(EntryPoints[1695], (OpenTK.Graphics.OpenGL.ClientAttribMask)mask); #if DEBUG } #endif @@ -110176,7 +112831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[1697], (OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -110214,7 +112869,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[1697], (OpenTK.Graphics.OpenGL.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -110231,7 +112886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushMatrix(); + InteropHelper.Call(EntryPoints[1700]); #if DEBUG } #endif @@ -110253,7 +112908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushName((UInt32)name); + InteropHelper.Call(EntryPoints[1701], (UInt32)name); #if DEBUG } #endif @@ -110276,7 +112931,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushName((UInt32)name); + InteropHelper.Call(EntryPoints[1701], (UInt32)name); #if DEBUG } #endif @@ -110303,7 +112958,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounter((UInt32)id, (OpenTK.Graphics.OpenGL.QueryCounterTarget)target); + InteropHelper.Call(EntryPoints[1702], (UInt32)id, (OpenTK.Graphics.OpenGL.QueryCounterTarget)target); #if DEBUG } #endif @@ -110331,7 +112986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounter((UInt32)id, (OpenTK.Graphics.OpenGL.QueryCounterTarget)target); + InteropHelper.Call(EntryPoints[1702], (UInt32)id, (OpenTK.Graphics.OpenGL.QueryCounterTarget)target); #if DEBUG } #endif @@ -110353,7 +113008,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2d((Double)x, (Double)y); + InteropHelper.Call(EntryPoints[1704], (Double)x, (Double)y); #if DEBUG } #endif @@ -110379,7 +113034,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glRasterPos2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1705], (IntPtr)v_ptr); } } #if DEBUG @@ -110407,7 +113062,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glRasterPos2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1705], (IntPtr)v_ptr); } } #if DEBUG @@ -110432,7 +113087,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2dv((Double*)v); + InteropHelper.Call(EntryPoints[1705], (IntPtr)v); #if DEBUG } #endif @@ -110454,7 +113109,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2f((Single)x, (Single)y); + InteropHelper.Call(EntryPoints[1706], (Single)x, (Single)y); #if DEBUG } #endif @@ -110480,7 +113135,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glRasterPos2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1707], (IntPtr)v_ptr); } } #if DEBUG @@ -110508,7 +113163,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glRasterPos2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1707], (IntPtr)v_ptr); } } #if DEBUG @@ -110533,7 +113188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2fv((Single*)v); + InteropHelper.Call(EntryPoints[1707], (IntPtr)v); #if DEBUG } #endif @@ -110555,7 +113210,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2i((Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[1708], (Int32)x, (Int32)y); #if DEBUG } #endif @@ -110581,7 +113236,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glRasterPos2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1709], (IntPtr)v_ptr); } } #if DEBUG @@ -110609,7 +113264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glRasterPos2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1709], (IntPtr)v_ptr); } } #if DEBUG @@ -110634,7 +113289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2iv((Int32*)v); + InteropHelper.Call(EntryPoints[1709], (IntPtr)v); #if DEBUG } #endif @@ -110656,7 +113311,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2s((Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[1710], (Int16)x, (Int16)y); #if DEBUG } #endif @@ -110682,7 +113337,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glRasterPos2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1711], (IntPtr)v_ptr); } } #if DEBUG @@ -110710,7 +113365,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glRasterPos2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1711], (IntPtr)v_ptr); } } #if DEBUG @@ -110735,7 +113390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2sv((Int16*)v); + InteropHelper.Call(EntryPoints[1711], (IntPtr)v); #if DEBUG } #endif @@ -110757,7 +113412,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3d((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1714], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -110783,7 +113438,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glRasterPos3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1715], (IntPtr)v_ptr); } } #if DEBUG @@ -110811,7 +113466,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glRasterPos3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1715], (IntPtr)v_ptr); } } #if DEBUG @@ -110836,7 +113491,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3dv((Double*)v); + InteropHelper.Call(EntryPoints[1715], (IntPtr)v); #if DEBUG } #endif @@ -110858,7 +113513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3f((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1716], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -110884,7 +113539,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glRasterPos3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1717], (IntPtr)v_ptr); } } #if DEBUG @@ -110912,7 +113567,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glRasterPos3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1717], (IntPtr)v_ptr); } } #if DEBUG @@ -110937,7 +113592,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3fv((Single*)v); + InteropHelper.Call(EntryPoints[1717], (IntPtr)v); #if DEBUG } #endif @@ -110959,7 +113614,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3i((Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[1718], (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -110985,7 +113640,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glRasterPos3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1719], (IntPtr)v_ptr); } } #if DEBUG @@ -111013,7 +113668,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glRasterPos3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1719], (IntPtr)v_ptr); } } #if DEBUG @@ -111038,7 +113693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3iv((Int32*)v); + InteropHelper.Call(EntryPoints[1719], (IntPtr)v); #if DEBUG } #endif @@ -111060,7 +113715,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3s((Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[1720], (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -111086,7 +113741,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glRasterPos3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1721], (IntPtr)v_ptr); } } #if DEBUG @@ -111114,7 +113769,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glRasterPos3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1721], (IntPtr)v_ptr); } } #if DEBUG @@ -111139,7 +113794,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3sv((Int16*)v); + InteropHelper.Call(EntryPoints[1721], (IntPtr)v); #if DEBUG } #endif @@ -111161,7 +113816,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4d((Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1724], (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -111187,7 +113842,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glRasterPos4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1725], (IntPtr)v_ptr); } } #if DEBUG @@ -111215,7 +113870,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glRasterPos4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1725], (IntPtr)v_ptr); } } #if DEBUG @@ -111240,7 +113895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4dv((Double*)v); + InteropHelper.Call(EntryPoints[1725], (IntPtr)v); #if DEBUG } #endif @@ -111262,7 +113917,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4f((Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1726], (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -111288,7 +113943,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glRasterPos4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1727], (IntPtr)v_ptr); } } #if DEBUG @@ -111316,7 +113971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glRasterPos4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1727], (IntPtr)v_ptr); } } #if DEBUG @@ -111341,7 +113996,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4fv((Single*)v); + InteropHelper.Call(EntryPoints[1727], (IntPtr)v); #if DEBUG } #endif @@ -111363,7 +114018,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4i((Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1728], (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -111389,7 +114044,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glRasterPos4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1729], (IntPtr)v_ptr); } } #if DEBUG @@ -111417,7 +114072,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glRasterPos4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1729], (IntPtr)v_ptr); } } #if DEBUG @@ -111442,7 +114097,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4iv((Int32*)v); + InteropHelper.Call(EntryPoints[1729], (IntPtr)v); #if DEBUG } #endif @@ -111464,7 +114119,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4s((Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[1730], (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -111490,7 +114145,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glRasterPos4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1731], (IntPtr)v_ptr); } } #if DEBUG @@ -111518,7 +114173,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glRasterPos4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1731], (IntPtr)v_ptr); } } #if DEBUG @@ -111543,7 +114198,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4sv((Int16*)v); + InteropHelper.Call(EntryPoints[1731], (IntPtr)v); #if DEBUG } #endif @@ -111565,7 +114220,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBuffer((OpenTK.Graphics.OpenGL.ReadBufferMode)mode); + InteropHelper.Call(EntryPoints[1734], (OpenTK.Graphics.OpenGL.ReadBufferMode)mode); #if DEBUG } #endif @@ -111607,7 +114262,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1737], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -111653,7 +114308,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1737], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -111704,7 +114359,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1737], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -111755,7 +114410,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1737], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -111806,7 +114461,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1737], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -111839,7 +114494,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectd((Double)x1, (Double)y1, (Double)x2, (Double)y2); + InteropHelper.Call(EntryPoints[1738], (Double)x1, (Double)y1, (Double)x2, (Double)y2); #if DEBUG } #endif @@ -111871,7 +114526,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Double* v1_ptr = v1) fixed (Double* v2_ptr = v2) { - Delegates.glRectdv((Double*)v1_ptr, (Double*)v2_ptr); + InteropHelper.Call(EntryPoints[1739], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -111905,7 +114560,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Double* v1_ptr = &v1) fixed (Double* v2_ptr = &v2) { - Delegates.glRectdv((Double*)v1_ptr, (Double*)v2_ptr); + InteropHelper.Call(EntryPoints[1739], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -111935,7 +114590,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectdv((Double*)v1, (Double*)v2); + InteropHelper.Call(EntryPoints[1739], (IntPtr)v1, (IntPtr)v2); #if DEBUG } #endif @@ -111962,7 +114617,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectf((Single)x1, (Single)y1, (Single)x2, (Single)y2); + InteropHelper.Call(EntryPoints[1740], (Single)x1, (Single)y1, (Single)x2, (Single)y2); #if DEBUG } #endif @@ -111994,7 +114649,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* v1_ptr = v1) fixed (Single* v2_ptr = v2) { - Delegates.glRectfv((Single*)v1_ptr, (Single*)v2_ptr); + InteropHelper.Call(EntryPoints[1741], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -112028,7 +114683,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* v1_ptr = &v1) fixed (Single* v2_ptr = &v2) { - Delegates.glRectfv((Single*)v1_ptr, (Single*)v2_ptr); + InteropHelper.Call(EntryPoints[1741], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -112058,7 +114713,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectfv((Single*)v1, (Single*)v2); + InteropHelper.Call(EntryPoints[1741], (IntPtr)v1, (IntPtr)v2); #if DEBUG } #endif @@ -112085,7 +114740,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRecti((Int32)x1, (Int32)y1, (Int32)x2, (Int32)y2); + InteropHelper.Call(EntryPoints[1742], (Int32)x1, (Int32)y1, (Int32)x2, (Int32)y2); #if DEBUG } #endif @@ -112117,7 +114772,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* v1_ptr = v1) fixed (Int32* v2_ptr = v2) { - Delegates.glRectiv((Int32*)v1_ptr, (Int32*)v2_ptr); + InteropHelper.Call(EntryPoints[1743], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -112151,7 +114806,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* v1_ptr = &v1) fixed (Int32* v2_ptr = &v2) { - Delegates.glRectiv((Int32*)v1_ptr, (Int32*)v2_ptr); + InteropHelper.Call(EntryPoints[1743], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -112181,7 +114836,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectiv((Int32*)v1, (Int32*)v2); + InteropHelper.Call(EntryPoints[1743], (IntPtr)v1, (IntPtr)v2); #if DEBUG } #endif @@ -112196,7 +114851,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRects((Int16)x1, (Int16)y1, (Int16)x2, (Int16)y2); + InteropHelper.Call(EntryPoints[1744], (Int16)x1, (Int16)y1, (Int16)x2, (Int16)y2); #if DEBUG } #endif @@ -112228,7 +114883,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int16* v1_ptr = v1) fixed (Int16* v2_ptr = v2) { - Delegates.glRectsv((Int16*)v1_ptr, (Int16*)v2_ptr); + InteropHelper.Call(EntryPoints[1745], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -112262,7 +114917,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int16* v1_ptr = &v1) fixed (Int16* v2_ptr = &v2) { - Delegates.glRectsv((Int16*)v1_ptr, (Int16*)v2_ptr); + InteropHelper.Call(EntryPoints[1745], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -112292,7 +114947,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectsv((Int16*)v1, (Int16*)v2); + InteropHelper.Call(EntryPoints[1745], (IntPtr)v1, (IntPtr)v2); #if DEBUG } #endif @@ -112309,7 +114964,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReleaseShaderCompiler(); + InteropHelper.Call(EntryPoints[1749]); #if DEBUG } #endif @@ -112346,7 +115001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorage((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1750], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -112388,7 +115043,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisample((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1752], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -112410,7 +115065,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glRenderMode((OpenTK.Graphics.OpenGL.RenderingMode)mode); + return InteropHelper.CallReturn(EntryPoints[1755], (OpenTK.Graphics.OpenGL.RenderingMode)mode); #if DEBUG } #endif @@ -112432,7 +115087,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResetHistogram((OpenTK.Graphics.OpenGL.HistogramTarget)target); + InteropHelper.Call(EntryPoints[1780], (OpenTK.Graphics.OpenGL.HistogramTarget)target); #if DEBUG } #endif @@ -112454,7 +115109,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResetMinmax((OpenTK.Graphics.OpenGL.MinmaxTarget)target); + InteropHelper.Call(EntryPoints[1782], (OpenTK.Graphics.OpenGL.MinmaxTarget)target); #if DEBUG } #endif @@ -112471,7 +115126,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResumeTransformFeedback(); + InteropHelper.Call(EntryPoints[1785]); #if DEBUG } #endif @@ -112498,7 +115153,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotated((Double)angle, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1787], (Double)angle, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -112525,7 +115180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatef((Single)angle, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1788], (Single)angle, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -112552,7 +115207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverage((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[1790], (Single)value, (bool)invert); #if DEBUG } #endif @@ -112579,7 +115234,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaski((UInt32)index, (UInt32)mask); + InteropHelper.Call(EntryPoints[1796], (UInt32)index, (UInt32)mask); #if DEBUG } #endif @@ -112607,7 +115262,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaski((UInt32)index, (UInt32)mask); + InteropHelper.Call(EntryPoints[1796], (UInt32)index, (UInt32)mask); #if DEBUG } #endif @@ -112644,7 +115299,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[1801], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -112682,7 +115337,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[1801], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -112723,7 +115378,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[1802], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -112763,7 +115418,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[1802], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -112805,7 +115460,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[1802], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -112845,7 +115500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[1802], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -112882,7 +115537,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1803], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -112920,7 +115575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1803], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -112939,7 +115594,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1804], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -112960,7 +115615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1804], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -112978,7 +115633,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[1804], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -112998,7 +115653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1804], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -113020,7 +115675,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1804], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -113038,7 +115693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[1804], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -113058,7 +115713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* param_ptr = param) { - Delegates.glSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[1805], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -113080,7 +115735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* param_ptr = ¶m) { - Delegates.glSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[1805], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -113098,7 +115753,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (UInt32*)param); + InteropHelper.Call(EntryPoints[1805], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -113139,7 +115794,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1806], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -113179,7 +115834,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[1806], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -113221,7 +115876,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[1806], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -113261,7 +115916,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[1806], (UInt32)sampler, (OpenTK.Graphics.OpenGL.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -113283,7 +115938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScaled((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1807], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -113305,7 +115960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalef((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1808], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -113332,7 +115987,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1810], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -113368,7 +116023,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1811], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -113406,7 +116061,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1811], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -113441,7 +116096,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v); + InteropHelper.Call(EntryPoints[1811], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -113478,7 +116133,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1811], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -113517,7 +116172,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1811], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -113552,7 +116207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v); + InteropHelper.Call(EntryPoints[1811], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -113589,7 +116244,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexed((UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1812], (UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -113627,7 +116282,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexed((UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1812], (UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -113668,7 +116323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1813], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -113711,7 +116366,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1813], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -113751,7 +116406,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[1813], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -113793,7 +116448,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1813], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -113837,7 +116492,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1813], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -113877,7 +116532,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[1813], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -113900,7 +116555,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3b((SByte)red, (SByte)green, (SByte)blue); + InteropHelper.Call(EntryPoints[1814], (SByte)red, (SByte)green, (SByte)blue); #if DEBUG } #endif @@ -113927,7 +116582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glSecondaryColor3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1816], (IntPtr)v_ptr); } } #if DEBUG @@ -113956,7 +116611,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glSecondaryColor3bv((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1816], (IntPtr)v_ptr); } } #if DEBUG @@ -113981,7 +116636,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3bv((SByte*)v); + InteropHelper.Call(EntryPoints[1816], (IntPtr)v); #if DEBUG } #endif @@ -114003,7 +116658,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3d((Double)red, (Double)green, (Double)blue); + InteropHelper.Call(EntryPoints[1818], (Double)red, (Double)green, (Double)blue); #if DEBUG } #endif @@ -114029,7 +116684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glSecondaryColor3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1820], (IntPtr)v_ptr); } } #if DEBUG @@ -114057,7 +116712,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glSecondaryColor3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1820], (IntPtr)v_ptr); } } #if DEBUG @@ -114082,7 +116737,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3dv((Double*)v); + InteropHelper.Call(EntryPoints[1820], (IntPtr)v); #if DEBUG } #endif @@ -114104,7 +116759,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3f((Single)red, (Single)green, (Single)blue); + InteropHelper.Call(EntryPoints[1822], (Single)red, (Single)green, (Single)blue); #if DEBUG } #endif @@ -114130,7 +116785,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glSecondaryColor3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1824], (IntPtr)v_ptr); } } #if DEBUG @@ -114158,7 +116813,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glSecondaryColor3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1824], (IntPtr)v_ptr); } } #if DEBUG @@ -114183,7 +116838,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3fv((Single*)v); + InteropHelper.Call(EntryPoints[1824], (IntPtr)v); #if DEBUG } #endif @@ -114205,7 +116860,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3i((Int32)red, (Int32)green, (Int32)blue); + InteropHelper.Call(EntryPoints[1828], (Int32)red, (Int32)green, (Int32)blue); #if DEBUG } #endif @@ -114231,7 +116886,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glSecondaryColor3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1830], (IntPtr)v_ptr); } } #if DEBUG @@ -114259,7 +116914,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glSecondaryColor3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1830], (IntPtr)v_ptr); } } #if DEBUG @@ -114284,7 +116939,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3iv((Int32*)v); + InteropHelper.Call(EntryPoints[1830], (IntPtr)v); #if DEBUG } #endif @@ -114306,7 +116961,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3s((Int16)red, (Int16)green, (Int16)blue); + InteropHelper.Call(EntryPoints[1832], (Int16)red, (Int16)green, (Int16)blue); #if DEBUG } #endif @@ -114332,7 +116987,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glSecondaryColor3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1834], (IntPtr)v_ptr); } } #if DEBUG @@ -114360,7 +117015,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glSecondaryColor3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1834], (IntPtr)v_ptr); } } #if DEBUG @@ -114385,7 +117040,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3sv((Int16*)v); + InteropHelper.Call(EntryPoints[1834], (IntPtr)v); #if DEBUG } #endif @@ -114407,7 +117062,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3ub((Byte)red, (Byte)green, (Byte)blue); + InteropHelper.Call(EntryPoints[1836], (Byte)red, (Byte)green, (Byte)blue); #if DEBUG } #endif @@ -114433,7 +117088,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glSecondaryColor3ubv((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[1838], (IntPtr)v_ptr); } } #if DEBUG @@ -114461,7 +117116,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glSecondaryColor3ubv((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[1838], (IntPtr)v_ptr); } } #if DEBUG @@ -114486,7 +117141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3ubv((Byte*)v); + InteropHelper.Call(EntryPoints[1838], (IntPtr)v); #if DEBUG } #endif @@ -114509,7 +117164,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3ui((UInt32)red, (UInt32)green, (UInt32)blue); + InteropHelper.Call(EntryPoints[1840], (UInt32)red, (UInt32)green, (UInt32)blue); #if DEBUG } #endif @@ -114536,7 +117191,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glSecondaryColor3uiv((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[1842], (IntPtr)v_ptr); } } #if DEBUG @@ -114565,7 +117220,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glSecondaryColor3uiv((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[1842], (IntPtr)v_ptr); } } #if DEBUG @@ -114590,7 +117245,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3uiv((UInt32*)v); + InteropHelper.Call(EntryPoints[1842], (IntPtr)v); #if DEBUG } #endif @@ -114613,7 +117268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3us((UInt16)red, (UInt16)green, (UInt16)blue); + InteropHelper.Call(EntryPoints[1844], (UInt16)red, (UInt16)green, (UInt16)blue); #if DEBUG } #endif @@ -114640,7 +117295,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glSecondaryColor3usv((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[1846], (IntPtr)v_ptr); } } #if DEBUG @@ -114669,7 +117324,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glSecondaryColor3usv((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[1846], (IntPtr)v_ptr); } } #if DEBUG @@ -114694,7 +117349,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3usv((UInt16*)v); + InteropHelper.Call(EntryPoints[1846], (IntPtr)v); #if DEBUG } #endif @@ -114709,7 +117364,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[1849], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -114725,7 +117380,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[1849], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -114741,7 +117396,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[1850], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -114757,7 +117412,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[1850], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -114794,7 +117449,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1851], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -114835,7 +117490,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1851], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -114881,7 +117536,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1851], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -114927,7 +117582,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1851], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -114973,7 +117628,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointer((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1851], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -115010,7 +117665,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffer_ptr = buffer) { - Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer_ptr); + InteropHelper.Call(EntryPoints[1854], (Int32)size, (IntPtr)buffer_ptr); } } #if DEBUG @@ -115043,7 +117698,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffer_ptr = &buffer) { - Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer_ptr); + InteropHelper.Call(EntryPoints[1854], (Int32)size, (IntPtr)buffer_ptr); buffer = *buffer_ptr; } } @@ -115074,7 +117729,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer); + InteropHelper.Call(EntryPoints[1854], (Int32)size, (IntPtr)buffer); #if DEBUG } #endif @@ -115106,7 +117761,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffer_ptr = buffer) { - Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer_ptr); + InteropHelper.Call(EntryPoints[1854], (Int32)size, (IntPtr)buffer_ptr); } } #if DEBUG @@ -115140,7 +117795,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* buffer_ptr = &buffer) { - Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer_ptr); + InteropHelper.Call(EntryPoints[1854], (Int32)size, (IntPtr)buffer_ptr); buffer = *buffer_ptr; } } @@ -115171,7 +117826,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSelectBuffer((Int32)size, (UInt32*)buffer); + InteropHelper.Call(EntryPoints[1854], (Int32)size, (IntPtr)buffer); #if DEBUG } #endif @@ -115228,7 +117883,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column); + InteropHelper.Call(EntryPoints[1856], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column); #if DEBUG } #endif @@ -115291,7 +117946,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1856], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -115360,7 +118015,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1856], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -115429,7 +118084,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1856], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -115498,7 +118153,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1856], (OpenTK.Graphics.OpenGL.SeparableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); row = (T6)row_ptr.Target; column = (T7)column_ptr.Target; } @@ -115528,7 +118183,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShadeModel((OpenTK.Graphics.OpenGL.ShadingModel)mode); + InteropHelper.Call(EntryPoints[1864], (OpenTK.Graphics.OpenGL.ShadingModel)mode); #if DEBUG } #endif @@ -115574,7 +118229,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -115626,7 +118281,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -115683,7 +118338,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -115740,7 +118395,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -115797,7 +118452,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -115851,7 +118506,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -115903,7 +118558,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -115960,7 +118615,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116017,7 +118672,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116074,7 +118729,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -116125,7 +118780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -116172,7 +118827,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116224,7 +118879,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116276,7 +118931,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116328,7 +118983,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -116381,7 +119036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -116434,7 +119089,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116492,7 +119147,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116550,7 +119205,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116608,7 +119263,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -116663,7 +119318,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -116716,7 +119371,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116774,7 +119429,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116832,7 +119487,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -116890,7 +119545,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -116941,7 +119596,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -116988,7 +119643,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -117040,7 +119695,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -117092,7 +119747,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -117144,7 +119799,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[1865], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -117191,7 +119846,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1869], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -117234,7 +119889,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1869], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -117274,7 +119929,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[1869], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -117316,7 +119971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1869], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -117360,7 +120015,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[1869], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -117400,7 +120055,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[1869], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -117432,7 +120087,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderStorageBlockBinding((UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); + InteropHelper.Call(EntryPoints[1871], (UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); #if DEBUG } #endif @@ -117465,7 +120120,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderStorageBlockBinding((UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); + InteropHelper.Call(EntryPoints[1871], (UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); #if DEBUG } #endif @@ -117497,7 +120152,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1881], (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -117530,7 +120185,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1881], (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -117567,7 +120222,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.OpenGL.StencilFace)face, (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1882], (OpenTK.Graphics.OpenGL.StencilFace)face, (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -117605,7 +120260,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.OpenGL.StencilFace)face, (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1882], (OpenTK.Graphics.OpenGL.StencilFace)face, (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -117627,7 +120282,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[1884], (UInt32)mask); #if DEBUG } #endif @@ -117650,7 +120305,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[1884], (UInt32)mask); #if DEBUG } #endif @@ -117677,7 +120332,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.OpenGL.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[1885], (OpenTK.Graphics.OpenGL.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -117705,7 +120360,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.OpenGL.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[1885], (OpenTK.Graphics.OpenGL.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -117737,7 +120392,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.OpenGL.StencilOp)fail, (OpenTK.Graphics.OpenGL.StencilOp)zfail, (OpenTK.Graphics.OpenGL.StencilOp)zpass); + InteropHelper.Call(EntryPoints[1886], (OpenTK.Graphics.OpenGL.StencilOp)fail, (OpenTK.Graphics.OpenGL.StencilOp)zfail, (OpenTK.Graphics.OpenGL.StencilOp)zpass); #if DEBUG } #endif @@ -117774,7 +120429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.OpenGL.StencilFace)face, (OpenTK.Graphics.OpenGL.StencilOp)sfail, (OpenTK.Graphics.OpenGL.StencilOp)dpfail, (OpenTK.Graphics.OpenGL.StencilOp)dppass); + InteropHelper.Call(EntryPoints[1887], (OpenTK.Graphics.OpenGL.StencilFace)face, (OpenTK.Graphics.OpenGL.StencilOp)sfail, (OpenTK.Graphics.OpenGL.StencilOp)dpfail, (OpenTK.Graphics.OpenGL.StencilOp)dppass); #if DEBUG } #endif @@ -117806,7 +120461,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBuffer((OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1914], (OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -117839,7 +120494,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBuffer((OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1914], (OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -117881,7 +120536,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferRange((OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[1917], (OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -117924,7 +120579,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferRange((OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[1917], (OpenTK.Graphics.OpenGL.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -117946,7 +120601,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1d((Double)s); + InteropHelper.Call(EntryPoints[1922], (Double)s); #if DEBUG } #endif @@ -117969,7 +120624,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1dv((Double*)v); + InteropHelper.Call(EntryPoints[1923], (IntPtr)v); #if DEBUG } #endif @@ -117991,7 +120646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1f((Single)s); + InteropHelper.Call(EntryPoints[1924], (Single)s); #if DEBUG } #endif @@ -118014,7 +120669,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1fv((Single*)v); + InteropHelper.Call(EntryPoints[1925], (IntPtr)v); #if DEBUG } #endif @@ -118036,7 +120691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1i((Int32)s); + InteropHelper.Call(EntryPoints[1928], (Int32)s); #if DEBUG } #endif @@ -118059,7 +120714,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1iv((Int32*)v); + InteropHelper.Call(EntryPoints[1929], (IntPtr)v); #if DEBUG } #endif @@ -118081,7 +120736,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1s((Int16)s); + InteropHelper.Call(EntryPoints[1930], (Int16)s); #if DEBUG } #endif @@ -118104,7 +120759,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1sv((Int16*)v); + InteropHelper.Call(EntryPoints[1931], (IntPtr)v); #if DEBUG } #endif @@ -118126,7 +120781,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2d((Double)s, (Double)t); + InteropHelper.Call(EntryPoints[1936], (Double)s, (Double)t); #if DEBUG } #endif @@ -118152,7 +120807,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glTexCoord2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1937], (IntPtr)v_ptr); } } #if DEBUG @@ -118180,7 +120835,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glTexCoord2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1937], (IntPtr)v_ptr); } } #if DEBUG @@ -118205,7 +120860,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2dv((Double*)v); + InteropHelper.Call(EntryPoints[1937], (IntPtr)v); #if DEBUG } #endif @@ -118227,7 +120882,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2f((Single)s, (Single)t); + InteropHelper.Call(EntryPoints[1938], (Single)s, (Single)t); #if DEBUG } #endif @@ -118253,7 +120908,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glTexCoord2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1947], (IntPtr)v_ptr); } } #if DEBUG @@ -118281,7 +120936,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glTexCoord2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1947], (IntPtr)v_ptr); } } #if DEBUG @@ -118306,7 +120961,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fv((Single*)v); + InteropHelper.Call(EntryPoints[1947], (IntPtr)v); #if DEBUG } #endif @@ -118328,7 +120983,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2i((Int32)s, (Int32)t); + InteropHelper.Call(EntryPoints[1952], (Int32)s, (Int32)t); #if DEBUG } #endif @@ -118354,7 +121009,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glTexCoord2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1953], (IntPtr)v_ptr); } } #if DEBUG @@ -118382,7 +121037,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glTexCoord2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1953], (IntPtr)v_ptr); } } #if DEBUG @@ -118407,7 +121062,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2iv((Int32*)v); + InteropHelper.Call(EntryPoints[1953], (IntPtr)v); #if DEBUG } #endif @@ -118429,7 +121084,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2s((Int16)s, (Int16)t); + InteropHelper.Call(EntryPoints[1954], (Int16)s, (Int16)t); #if DEBUG } #endif @@ -118455,7 +121110,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glTexCoord2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1955], (IntPtr)v_ptr); } } #if DEBUG @@ -118483,7 +121138,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glTexCoord2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1955], (IntPtr)v_ptr); } } #if DEBUG @@ -118508,7 +121163,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2sv((Int16*)v); + InteropHelper.Call(EntryPoints[1955], (IntPtr)v); #if DEBUG } #endif @@ -118530,7 +121185,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3d((Double)s, (Double)t, (Double)r); + InteropHelper.Call(EntryPoints[1960], (Double)s, (Double)t, (Double)r); #if DEBUG } #endif @@ -118556,7 +121211,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glTexCoord3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1961], (IntPtr)v_ptr); } } #if DEBUG @@ -118584,7 +121239,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glTexCoord3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1961], (IntPtr)v_ptr); } } #if DEBUG @@ -118609,7 +121264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3dv((Double*)v); + InteropHelper.Call(EntryPoints[1961], (IntPtr)v); #if DEBUG } #endif @@ -118631,7 +121286,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3f((Single)s, (Single)t, (Single)r); + InteropHelper.Call(EntryPoints[1962], (Single)s, (Single)t, (Single)r); #if DEBUG } #endif @@ -118657,7 +121312,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glTexCoord3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1963], (IntPtr)v_ptr); } } #if DEBUG @@ -118685,7 +121340,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glTexCoord3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1963], (IntPtr)v_ptr); } } #if DEBUG @@ -118710,7 +121365,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3fv((Single*)v); + InteropHelper.Call(EntryPoints[1963], (IntPtr)v); #if DEBUG } #endif @@ -118732,7 +121387,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3i((Int32)s, (Int32)t, (Int32)r); + InteropHelper.Call(EntryPoints[1966], (Int32)s, (Int32)t, (Int32)r); #if DEBUG } #endif @@ -118758,7 +121413,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glTexCoord3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1967], (IntPtr)v_ptr); } } #if DEBUG @@ -118786,7 +121441,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glTexCoord3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1967], (IntPtr)v_ptr); } } #if DEBUG @@ -118811,7 +121466,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3iv((Int32*)v); + InteropHelper.Call(EntryPoints[1967], (IntPtr)v); #if DEBUG } #endif @@ -118833,7 +121488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3s((Int16)s, (Int16)t, (Int16)r); + InteropHelper.Call(EntryPoints[1968], (Int16)s, (Int16)t, (Int16)r); #if DEBUG } #endif @@ -118859,7 +121514,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glTexCoord3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1969], (IntPtr)v_ptr); } } #if DEBUG @@ -118887,7 +121542,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glTexCoord3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1969], (IntPtr)v_ptr); } } #if DEBUG @@ -118912,7 +121567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3sv((Int16*)v); + InteropHelper.Call(EntryPoints[1969], (IntPtr)v); #if DEBUG } #endif @@ -118934,7 +121589,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4d((Double)s, (Double)t, (Double)r, (Double)q); + InteropHelper.Call(EntryPoints[1974], (Double)s, (Double)t, (Double)r, (Double)q); #if DEBUG } #endif @@ -118960,7 +121615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glTexCoord4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1975], (IntPtr)v_ptr); } } #if DEBUG @@ -118988,7 +121643,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glTexCoord4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1975], (IntPtr)v_ptr); } } #if DEBUG @@ -119013,7 +121668,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4dv((Double*)v); + InteropHelper.Call(EntryPoints[1975], (IntPtr)v); #if DEBUG } #endif @@ -119035,7 +121690,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4f((Single)s, (Single)t, (Single)r, (Single)q); + InteropHelper.Call(EntryPoints[1976], (Single)s, (Single)t, (Single)r, (Single)q); #if DEBUG } #endif @@ -119061,7 +121716,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glTexCoord4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1979], (IntPtr)v_ptr); } } #if DEBUG @@ -119089,7 +121744,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glTexCoord4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1979], (IntPtr)v_ptr); } } #if DEBUG @@ -119114,7 +121769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4fv((Single*)v); + InteropHelper.Call(EntryPoints[1979], (IntPtr)v); #if DEBUG } #endif @@ -119136,7 +121791,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4i((Int32)s, (Int32)t, (Int32)r, (Int32)q); + InteropHelper.Call(EntryPoints[1984], (Int32)s, (Int32)t, (Int32)r, (Int32)q); #if DEBUG } #endif @@ -119162,7 +121817,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glTexCoord4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1985], (IntPtr)v_ptr); } } #if DEBUG @@ -119190,7 +121845,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glTexCoord4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1985], (IntPtr)v_ptr); } } #if DEBUG @@ -119215,7 +121870,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4iv((Int32*)v); + InteropHelper.Call(EntryPoints[1985], (IntPtr)v); #if DEBUG } #endif @@ -119237,7 +121892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4s((Int16)s, (Int16)t, (Int16)r, (Int16)q); + InteropHelper.Call(EntryPoints[1986], (Int16)s, (Int16)t, (Int16)r, (Int16)q); #if DEBUG } #endif @@ -119263,7 +121918,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glTexCoord4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1987], (IntPtr)v_ptr); } } #if DEBUG @@ -119291,7 +121946,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glTexCoord4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1987], (IntPtr)v_ptr); } } #if DEBUG @@ -119316,7 +121971,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4sv((Int16*)v); + InteropHelper.Call(EntryPoints[1987], (IntPtr)v); #if DEBUG } #endif @@ -119331,7 +121986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1991], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119347,7 +122002,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1991], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119363,7 +122018,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1992], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119379,7 +122034,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1992], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119394,7 +122049,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1993], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119410,7 +122065,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1993], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119426,7 +122081,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1994], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119442,7 +122097,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1994], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119457,7 +122112,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1995], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119473,7 +122128,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1995], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119489,7 +122144,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1996], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119505,7 +122160,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1996], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119520,7 +122175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1997], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119536,7 +122191,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[1997], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -119552,7 +122207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1998], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119568,7 +122223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[1998], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -119605,7 +122260,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1999], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -119646,7 +122301,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1999], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -119692,7 +122347,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1999], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -119738,7 +122393,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1999], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -119784,7 +122439,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1999], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -119822,7 +122477,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvf((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[2003], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single)param); #if DEBUG } #endif @@ -119858,7 +122513,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2004], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -119893,7 +122548,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvfv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2004], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -119925,7 +122580,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvi((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2005], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32)param); #if DEBUG } #endif @@ -119961,7 +122616,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2006], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -119996,7 +122651,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnviv((OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2006], (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -120011,7 +122666,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGend((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double)param); + InteropHelper.Call(EntryPoints[2010], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double)param); #if DEBUG } #endif @@ -120047,7 +122702,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[2011], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -120085,7 +122740,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[2011], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -120120,7 +122775,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGendv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[2011], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -120152,7 +122807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenf((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[2012], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single)param); #if DEBUG } #endif @@ -120188,7 +122843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2013], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -120223,7 +122878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenfv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2013], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -120255,7 +122910,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGeni((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2014], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32)param); #if DEBUG } #endif @@ -120291,7 +122946,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2015], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -120326,7 +122981,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGeniv((OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2015], (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -120383,7 +123038,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2018], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -120444,7 +123099,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2018], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -120510,7 +123165,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2018], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -120576,7 +123231,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2018], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -120642,7 +123297,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2018], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T7)pixels_ptr.Target; } finally @@ -120710,7 +123365,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2019], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -120776,7 +123431,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2019], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -120847,7 +123502,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2019], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -120918,7 +123573,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2019], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -120989,7 +123644,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2019], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -121042,7 +123697,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2DMultisample((OpenTK.Graphics.OpenGL.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2020], (OpenTK.Graphics.OpenGL.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -121109,7 +123764,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2022], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -121180,7 +123835,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2022], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -121256,7 +123911,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2022], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -121332,7 +123987,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2022], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -121408,7 +124063,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2022], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -121461,7 +124116,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DMultisample((OpenTK.Graphics.OpenGL.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2024], (OpenTK.Graphics.OpenGL.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -121501,7 +124156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[2028], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -121545,7 +124200,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2029], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -121588,7 +124243,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2029], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -121628,7 +124283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2030], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -121647,7 +124302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameterIiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2031], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -121668,7 +124323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexParameterIiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2031], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -121686,7 +124341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterIiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2031], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -121706,7 +124361,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glTexParameterIuiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[2033], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -121728,7 +124383,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glTexParameterIuiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[2033], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -121746,7 +124401,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterIuiv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[2033], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -121790,7 +124445,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2035], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -121833,7 +124488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2035], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -121870,7 +124525,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage1D((OpenTK.Graphics.OpenGL.TextureTarget1d)target, (Int32)levels, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[2039], (OpenTK.Graphics.OpenGL.TextureTarget1d)target, (Int32)levels, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width); #if DEBUG } #endif @@ -121912,7 +124567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2D((OpenTK.Graphics.OpenGL.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[2040], (OpenTK.Graphics.OpenGL.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -121959,7 +124614,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DMultisample((OpenTK.Graphics.OpenGL.TextureTargetMultisample2d)target, (Int32)samples, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2041], (OpenTK.Graphics.OpenGL.TextureTargetMultisample2d)target, (Int32)samples, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -122006,7 +124661,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3D((OpenTK.Graphics.OpenGL.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[2042], (OpenTK.Graphics.OpenGL.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -122058,7 +124713,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DMultisample((OpenTK.Graphics.OpenGL.TextureTargetMultisample3d)target, (Int32)samples, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2043], (OpenTK.Graphics.OpenGL.TextureTargetMultisample3d)target, (Int32)samples, (OpenTK.Graphics.OpenGL.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -122110,7 +124765,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2045], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -122166,7 +124821,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2045], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122227,7 +124882,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2045], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122288,7 +124943,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2045], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122349,7 +125004,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2045], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -122417,7 +125072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2047], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -122483,7 +125138,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2047], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122554,7 +125209,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2047], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122625,7 +125280,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2047], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122696,7 +125351,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2047], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -122774,7 +125429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2049], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -122850,7 +125505,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2049], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -122931,7 +125586,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2049], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -123012,7 +125667,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2049], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -123093,7 +125748,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2049], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -123156,7 +125811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureView((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); + InteropHelper.Call(EntryPoints[2084], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); #if DEBUG } #endif @@ -123214,7 +125869,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureView((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); + InteropHelper.Call(EntryPoints[2084], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); #if DEBUG } #endif @@ -123251,7 +125906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[2088], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -123289,7 +125944,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[2088], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -123311,7 +125966,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslated((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2092], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -123333,7 +125988,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatef((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2093], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -123378,7 +126033,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1d((Int32)location, (Double)x); + InteropHelper.Call(EntryPoints[2095], (Int32)location, (Double)x); #if DEBUG } #endif @@ -123427,7 +126082,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniform1dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2096], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -123478,7 +126133,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniform1dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2096], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -123526,7 +126181,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[2096], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -123571,7 +126226,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1f((Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[2097], (Int32)location, (Single)v0); #if DEBUG } #endif @@ -123620,7 +126275,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2099], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -123671,7 +126326,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2099], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -123719,7 +126374,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2099], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -123764,7 +126419,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1i((Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[2101], (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -123813,7 +126468,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2105], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -123864,7 +126519,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2105], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -123912,7 +126567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2105], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -123958,7 +126613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1ui((Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[2107], (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -124008,7 +126663,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2111], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124060,7 +126715,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2111], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124108,7 +126763,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2111], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -124153,7 +126808,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2d((Int32)location, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2113], (Int32)location, (Double)x, (Double)y); #if DEBUG } #endif @@ -124202,7 +126857,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniform2dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2114], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124253,7 +126908,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniform2dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2114], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124301,7 +126956,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[2114], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -124346,7 +127001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2f((Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[2115], (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -124395,7 +127050,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2117], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124446,7 +127101,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2117], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124494,7 +127149,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2117], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -124539,7 +127194,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2i((Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[2119], (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -124588,7 +127243,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2123], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124636,7 +127291,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2123], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -124682,7 +127337,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2ui((Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[2125], (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -124732,7 +127387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2129], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124784,7 +127439,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2129], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124832,7 +127487,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2129], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -124877,7 +127532,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3d((Int32)location, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2131], (Int32)location, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -124926,7 +127581,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniform3dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2132], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -124977,7 +127632,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniform3dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2132], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125025,7 +127680,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[2132], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -125070,7 +127725,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3f((Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[2133], (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -125119,7 +127774,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2135], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125170,7 +127825,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2135], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125218,7 +127873,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2135], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -125263,7 +127918,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[2137], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -125312,7 +127967,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2141], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125363,7 +128018,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2141], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125411,7 +128066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2141], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -125457,7 +128112,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[2143], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -125507,7 +128162,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2147], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125559,7 +128214,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2147], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125607,7 +128262,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2147], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -125652,7 +128307,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4d((Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2149], (Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -125701,7 +128356,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniform4dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2150], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125752,7 +128407,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniform4dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2150], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125800,7 +128455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[2150], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -125845,7 +128500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4f((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[2151], (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -125894,7 +128549,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2153], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125945,7 +128600,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2153], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -125993,7 +128648,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[2153], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -126038,7 +128693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[2155], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -126087,7 +128742,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2159], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -126138,7 +128793,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[2159], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -126186,7 +128841,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[2159], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -126232,7 +128887,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[2161], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -126282,7 +128937,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2165], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -126334,7 +128989,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2165], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -126382,7 +129037,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2165], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -126414,7 +129069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBlockBinding((UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); + InteropHelper.Call(EntryPoints[2167], (UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); #if DEBUG } #endif @@ -126447,7 +129102,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBlockBinding((UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); + InteropHelper.Call(EntryPoints[2167], (UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); #if DEBUG } #endif @@ -126466,7 +129121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2173], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126487,7 +129142,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2173], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126505,7 +129160,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2173], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126524,7 +129179,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2174], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126545,7 +129200,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2174], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126563,7 +129218,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2174], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126582,7 +129237,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix2x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2176], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126603,7 +129258,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix2x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2176], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126621,7 +129276,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2176], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126640,7 +129295,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2177], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126661,7 +129316,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2177], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126679,7 +129334,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2177], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126698,7 +129353,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix2x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2178], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126719,7 +129374,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix2x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2178], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126737,7 +129392,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2178], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126756,7 +129411,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2179], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126777,7 +129432,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2179], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126795,7 +129450,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2179], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126814,7 +129469,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2180], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126835,7 +129490,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2180], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126853,7 +129508,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2180], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126872,7 +129527,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2181], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126893,7 +129548,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2181], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126911,7 +129566,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2181], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126930,7 +129585,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix3x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2183], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126951,7 +129606,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix3x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2183], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -126969,7 +129624,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2183], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -126988,7 +129643,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2184], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127009,7 +129664,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2184], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127027,7 +129682,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2184], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127046,7 +129701,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix3x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2185], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127067,7 +129722,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix3x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2185], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127085,7 +129740,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2185], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127104,7 +129759,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2186], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127125,7 +129780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2186], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127143,7 +129798,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2186], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127162,7 +129817,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2187], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127183,7 +129838,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2187], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127201,7 +129856,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2187], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127220,7 +129875,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2188], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127241,7 +129896,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2188], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127259,7 +129914,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2188], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127278,7 +129933,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix4x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2190], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127299,7 +129954,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix4x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2190], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127317,7 +129972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2190], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127336,7 +129991,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2191], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127357,7 +130012,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2191], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127375,7 +130030,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2191], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127394,7 +130049,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix4x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2192], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127415,7 +130070,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix4x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[2192], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127433,7 +130088,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[2192], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127452,7 +130107,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2193], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127473,7 +130128,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[2193], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -127491,7 +130146,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[2193], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -127527,7 +130182,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* indices_ptr = indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[2194], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -127565,7 +130220,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* indices_ptr = &indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[2194], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -127600,7 +130255,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (UInt32*)indices); + InteropHelper.Call(EntryPoints[2194], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (IntPtr)indices); #if DEBUG } #endif @@ -127637,7 +130292,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* indices_ptr = indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[2194], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -127676,7 +130331,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* indices_ptr = &indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[2194], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -127711,7 +130366,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (UInt32*)indices); + InteropHelper.Call(EntryPoints[2194], (OpenTK.Graphics.OpenGL.ShaderType)shadertype, (Int32)count, (IntPtr)indices); #if DEBUG } #endif @@ -127726,7 +130381,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBuffer((OpenTK.Graphics.OpenGL.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[2198], (OpenTK.Graphics.OpenGL.BufferTarget)target); #if DEBUG } #endif @@ -127748,7 +130403,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[2204], (UInt32)program); #if DEBUG } #endif @@ -127771,7 +130426,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[2204], (UInt32)program); #if DEBUG } #endif @@ -127803,7 +130458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStages((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramStageMask)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[2206], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramStageMask)stages, (UInt32)program); #if DEBUG } #endif @@ -127836,7 +130491,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStages((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramStageMask)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[2206], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ProgramStageMask)stages, (UInt32)program); #if DEBUG } #endif @@ -127858,7 +130513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[2209], (UInt32)program); #if DEBUG } #endif @@ -127881,7 +130536,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[2209], (UInt32)program); #if DEBUG } #endif @@ -127903,7 +130558,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[2211], (UInt32)pipeline); #if DEBUG } #endif @@ -127926,7 +130581,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[2211], (UInt32)pipeline); #if DEBUG } #endif @@ -127948,7 +130603,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2d((Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2235], (Double)x, (Double)y); #if DEBUG } #endif @@ -127974,7 +130629,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertex2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2236], (IntPtr)v_ptr); } } #if DEBUG @@ -128002,7 +130657,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertex2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2236], (IntPtr)v_ptr); } } #if DEBUG @@ -128027,7 +130682,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2dv((Double*)v); + InteropHelper.Call(EntryPoints[2236], (IntPtr)v); #if DEBUG } #endif @@ -128049,7 +130704,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2f((Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2237], (Single)x, (Single)y); #if DEBUG } #endif @@ -128075,7 +130730,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertex2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2238], (IntPtr)v_ptr); } } #if DEBUG @@ -128103,7 +130758,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertex2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2238], (IntPtr)v_ptr); } } #if DEBUG @@ -128128,7 +130783,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2fv((Single*)v); + InteropHelper.Call(EntryPoints[2238], (IntPtr)v); #if DEBUG } #endif @@ -128150,7 +130805,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2i((Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2241], (Int32)x, (Int32)y); #if DEBUG } #endif @@ -128176,7 +130831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertex2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2242], (IntPtr)v_ptr); } } #if DEBUG @@ -128204,7 +130859,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertex2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2242], (IntPtr)v_ptr); } } #if DEBUG @@ -128229,7 +130884,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2iv((Int32*)v); + InteropHelper.Call(EntryPoints[2242], (IntPtr)v); #if DEBUG } #endif @@ -128251,7 +130906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2s((Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2243], (Int16)x, (Int16)y); #if DEBUG } #endif @@ -128277,7 +130932,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertex2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2244], (IntPtr)v_ptr); } } #if DEBUG @@ -128305,7 +130960,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertex2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2244], (IntPtr)v_ptr); } } #if DEBUG @@ -128330,7 +130985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2sv((Int16*)v); + InteropHelper.Call(EntryPoints[2244], (IntPtr)v); #if DEBUG } #endif @@ -128352,7 +131007,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3d((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2249], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -128378,7 +131033,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertex3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2250], (IntPtr)v_ptr); } } #if DEBUG @@ -128406,7 +131061,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertex3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2250], (IntPtr)v_ptr); } } #if DEBUG @@ -128431,7 +131086,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3dv((Double*)v); + InteropHelper.Call(EntryPoints[2250], (IntPtr)v); #if DEBUG } #endif @@ -128453,7 +131108,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3f((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2251], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -128479,7 +131134,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertex3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2252], (IntPtr)v_ptr); } } #if DEBUG @@ -128507,7 +131162,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertex3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2252], (IntPtr)v_ptr); } } #if DEBUG @@ -128532,7 +131187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3fv((Single*)v); + InteropHelper.Call(EntryPoints[2252], (IntPtr)v); #if DEBUG } #endif @@ -128554,7 +131209,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3i((Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2255], (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -128580,7 +131235,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertex3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2256], (IntPtr)v_ptr); } } #if DEBUG @@ -128608,7 +131263,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertex3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2256], (IntPtr)v_ptr); } } #if DEBUG @@ -128633,7 +131288,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3iv((Int32*)v); + InteropHelper.Call(EntryPoints[2256], (IntPtr)v); #if DEBUG } #endif @@ -128655,7 +131310,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3s((Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2257], (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -128681,7 +131336,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertex3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2258], (IntPtr)v_ptr); } } #if DEBUG @@ -128709,7 +131364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertex3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2258], (IntPtr)v_ptr); } } #if DEBUG @@ -128734,7 +131389,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3sv((Int16*)v); + InteropHelper.Call(EntryPoints[2258], (IntPtr)v); #if DEBUG } #endif @@ -128756,7 +131411,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4d((Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2263], (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -128782,7 +131437,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertex4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2264], (IntPtr)v_ptr); } } #if DEBUG @@ -128810,7 +131465,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertex4dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2264], (IntPtr)v_ptr); } } #if DEBUG @@ -128835,7 +131490,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4dv((Double*)v); + InteropHelper.Call(EntryPoints[2264], (IntPtr)v); #if DEBUG } #endif @@ -128857,7 +131512,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4f((Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2265], (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -128883,7 +131538,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertex4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2266], (IntPtr)v_ptr); } } #if DEBUG @@ -128911,7 +131566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertex4fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2266], (IntPtr)v_ptr); } } #if DEBUG @@ -128936,7 +131591,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4fv((Single*)v); + InteropHelper.Call(EntryPoints[2266], (IntPtr)v); #if DEBUG } #endif @@ -128958,7 +131613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4i((Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2269], (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -128984,7 +131639,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertex4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2270], (IntPtr)v_ptr); } } #if DEBUG @@ -129012,7 +131667,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertex4iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2270], (IntPtr)v_ptr); } } #if DEBUG @@ -129037,7 +131692,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4iv((Int32*)v); + InteropHelper.Call(EntryPoints[2270], (IntPtr)v); #if DEBUG } #endif @@ -129059,7 +131714,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4s((Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2271], (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -129085,7 +131740,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertex4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2272], (IntPtr)v_ptr); } } #if DEBUG @@ -129113,7 +131768,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertex4sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2272], (IntPtr)v_ptr); } } #if DEBUG @@ -129138,7 +131793,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4sv((Int16*)v); + InteropHelper.Call(EntryPoints[2272], (IntPtr)v); #if DEBUG } #endif @@ -129185,7 +131840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2297], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -129233,7 +131888,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2297], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -129281,7 +131936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2300], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -129329,7 +131984,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2300], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -129376,7 +132031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[2303], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -129424,7 +132079,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[2303], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -129472,7 +132127,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2306], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -129520,7 +132175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2306], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -129567,7 +132222,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1s((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[2311], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -129615,7 +132270,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1s((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[2311], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -129663,7 +132318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2314], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -129711,7 +132366,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2314], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -129758,7 +132413,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2317], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -129806,7 +132461,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2317], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -129857,7 +132512,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2320], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -129910,7 +132565,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2320], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -129960,7 +132615,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2320], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -130012,7 +132667,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2320], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130066,7 +132721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2320], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130116,7 +132771,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2320], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -130163,7 +132818,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2323], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -130211,7 +132866,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2323], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -130262,7 +132917,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2326], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130315,7 +132970,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2326], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130365,7 +133020,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2326], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -130417,7 +133072,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2326], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130471,7 +133126,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2326], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130521,7 +133176,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2326], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -130568,7 +133223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2331], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -130616,7 +133271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2331], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -130667,7 +133322,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2334], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130720,7 +133375,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2334], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130770,7 +133425,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2334], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -130822,7 +133477,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2334], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130876,7 +133531,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2334], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -130926,7 +133581,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2334], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -130973,7 +133628,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2337], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -131021,7 +133676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2337], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -131072,7 +133727,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2340], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131125,7 +133780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2340], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131175,7 +133830,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2340], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -131227,7 +133882,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2340], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131281,7 +133936,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2340], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131331,7 +133986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2340], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -131378,7 +134033,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2343], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -131426,7 +134081,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2343], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -131477,7 +134132,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2346], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131530,7 +134185,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2346], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131580,7 +134235,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2346], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -131632,7 +134287,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2346], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131686,7 +134341,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2346], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131736,7 +134391,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2346], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -131783,7 +134438,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2351], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -131831,7 +134486,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2351], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -131882,7 +134537,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2354], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131935,7 +134590,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2354], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -131985,7 +134640,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2354], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -132037,7 +134692,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2354], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132091,7 +134746,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2354], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132141,7 +134796,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2354], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -132193,7 +134848,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2357], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132247,7 +134902,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2357], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132297,7 +134952,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[2357], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -132344,7 +134999,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2359], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -132392,7 +135047,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2359], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -132443,7 +135098,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2362], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132496,7 +135151,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2362], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132546,7 +135201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2362], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -132598,7 +135253,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2362], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132652,7 +135307,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2362], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132702,7 +135357,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2362], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -132749,7 +135404,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2365], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -132797,7 +135452,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2365], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -132848,7 +135503,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2368], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132901,7 +135556,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2368], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -132951,7 +135606,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2368], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133003,7 +135658,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2368], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133057,7 +135712,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2368], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133107,7 +135762,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2368], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133158,7 +135813,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2373], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133211,7 +135866,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2373], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133261,7 +135916,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2373], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133313,7 +135968,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2373], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133367,7 +136022,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2373], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133417,7 +136072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2373], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133437,7 +136092,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2375], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133459,7 +136114,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2375], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133477,7 +136132,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[2375], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133496,7 +136151,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2377], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133517,7 +136172,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2377], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133535,7 +136190,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2377], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133555,7 +136210,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2377], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133577,7 +136232,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2377], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133595,7 +136250,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2377], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133614,7 +136269,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2379], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133635,7 +136290,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2379], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133653,7 +136308,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2379], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133673,7 +136328,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2379], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133695,7 +136350,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2379], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133713,7 +136368,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2379], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133728,7 +136383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[2381], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -133744,7 +136399,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[2381], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -133763,7 +136418,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2383], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133784,7 +136439,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2383], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133802,7 +136457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2383], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133822,7 +136477,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2383], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133844,7 +136499,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2383], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133862,7 +136517,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2383], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133882,7 +136537,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2385], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133904,7 +136559,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2385], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133922,7 +136577,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2385], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -133942,7 +136597,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2387], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133964,7 +136619,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2387], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -133982,7 +136637,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[2387], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -134029,7 +136684,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2389], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -134077,7 +136732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2389], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -134128,7 +136783,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2392], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134181,7 +136836,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2392], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134231,7 +136886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2392], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -134283,7 +136938,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2392], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134337,7 +136992,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2392], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134387,7 +137042,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2392], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -134438,7 +137093,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2396], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134491,7 +137146,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2396], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134541,7 +137196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2396], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -134593,7 +137248,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2396], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134647,7 +137302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2396], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134697,7 +137352,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2396], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -134749,7 +137404,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2399], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134803,7 +137458,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2399], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134853,7 +137508,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2399], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -134905,7 +137560,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2401], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -134959,7 +137614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2401], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135009,7 +137664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[2401], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135036,7 +137691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribBinding((UInt32)attribindex, (UInt32)bindingindex); + InteropHelper.Call(EntryPoints[2404], (UInt32)attribindex, (UInt32)bindingindex); #if DEBUG } #endif @@ -135064,7 +137719,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribBinding((UInt32)attribindex, (UInt32)bindingindex); + InteropHelper.Call(EntryPoints[2404], (UInt32)attribindex, (UInt32)bindingindex); #if DEBUG } #endif @@ -135091,7 +137746,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2405], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -135119,7 +137774,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2405], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -135161,7 +137816,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2407], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); #if DEBUG } #endif @@ -135204,7 +137859,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2407], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); #if DEBUG } #endif @@ -135219,7 +137874,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1i((UInt32)index, (Int32)x); + InteropHelper.Call(EntryPoints[2409], (UInt32)index, (Int32)x); #if DEBUG } #endif @@ -135235,7 +137890,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1i((UInt32)index, (Int32)x); + InteropHelper.Call(EntryPoints[2409], (UInt32)index, (Int32)x); #if DEBUG } #endif @@ -135251,7 +137906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2411], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135267,7 +137922,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2411], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135283,7 +137938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1ui((UInt32)index, (UInt32)x); + InteropHelper.Call(EntryPoints[2413], (UInt32)index, (UInt32)x); #if DEBUG } #endif @@ -135299,7 +137954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2415], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135314,7 +137969,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2i((UInt32)index, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2417], (UInt32)index, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -135330,7 +137985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2i((UInt32)index, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2417], (UInt32)index, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -135349,7 +138004,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2419], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135370,7 +138025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2419], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135388,7 +138043,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2419], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135408,7 +138063,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2419], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135430,7 +138085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2419], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135448,7 +138103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2419], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135464,7 +138119,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2ui((UInt32)index, (UInt32)x, (UInt32)y); + InteropHelper.Call(EntryPoints[2421], (UInt32)index, (UInt32)x, (UInt32)y); #if DEBUG } #endif @@ -135484,7 +138139,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2423], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135506,7 +138161,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2423], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135524,7 +138179,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2423], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135539,7 +138194,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3i((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2425], (UInt32)index, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -135555,7 +138210,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3i((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2425], (UInt32)index, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -135574,7 +138229,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2427], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135595,7 +138250,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2427], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135613,7 +138268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2427], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135633,7 +138288,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2427], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135655,7 +138310,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2427], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135673,7 +138328,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2427], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135689,7 +138344,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); + InteropHelper.Call(EntryPoints[2429], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); #if DEBUG } #endif @@ -135709,7 +138364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2431], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135731,7 +138386,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2431], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135749,7 +138404,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2431], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135769,7 +138424,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2433], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135791,7 +138446,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2433], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135809,7 +138464,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[2433], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135824,7 +138479,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2435], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -135840,7 +138495,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2435], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -135859,7 +138514,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2437], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135880,7 +138535,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2437], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135898,7 +138553,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2437], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135918,7 +138573,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2437], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135940,7 +138595,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2437], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135958,7 +138613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2437], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -135977,7 +138632,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2439], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -135998,7 +138653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2439], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136016,7 +138671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2439], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136036,7 +138691,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2439], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136058,7 +138713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2439], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136076,7 +138731,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2439], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136095,7 +138750,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2441], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136116,7 +138771,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2441], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136134,7 +138789,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2441], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136154,7 +138809,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2441], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136176,7 +138831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2441], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136194,7 +138849,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2441], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136210,7 +138865,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[2443], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -136230,7 +138885,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2445], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136252,7 +138907,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2445], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136270,7 +138925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2445], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136290,7 +138945,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2447], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136312,7 +138967,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2447], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136330,7 +138985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[2447], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136345,7 +139000,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2449], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -136361,7 +139016,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2449], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -136376,7 +139031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -136395,7 +139050,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136419,7 +139074,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136443,7 +139098,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136467,7 +139122,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -136489,7 +139144,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -136509,7 +139164,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136534,7 +139189,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136559,7 +139214,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136584,7 +139239,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -136606,7 +139261,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -136626,7 +139281,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136651,7 +139306,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136676,7 +139331,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136701,7 +139356,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -136724,7 +139379,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -136745,7 +139400,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136771,7 +139426,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136797,7 +139452,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -136823,7 +139478,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2451], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -136844,7 +139499,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2453], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -136860,7 +139515,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2453], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -136876,7 +139531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2455], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136892,7 +139547,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2455], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -136907,7 +139562,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2463], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -136923,7 +139578,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2463], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -136942,7 +139597,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2465], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136963,7 +139618,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2465], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -136981,7 +139636,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2465], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -137001,7 +139656,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2465], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137023,7 +139678,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2465], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137041,7 +139696,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2465], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -137056,7 +139711,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2471], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -137072,7 +139727,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2471], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -137091,7 +139746,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2473], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137112,7 +139767,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2473], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137130,7 +139785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2473], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -137150,7 +139805,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2473], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137172,7 +139827,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2473], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137190,7 +139845,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2473], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -137205,7 +139860,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2479], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -137221,7 +139876,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2479], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -137240,7 +139895,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2481], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137261,7 +139916,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2481], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137279,7 +139934,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2481], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -137299,7 +139954,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2481], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137321,7 +139976,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2481], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -137339,7 +139994,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2481], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -137354,7 +140009,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2487], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -137370,7 +140025,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2487], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -137385,7 +140040,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -137404,7 +140059,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -137428,7 +140083,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -137452,7 +140107,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -137476,7 +140131,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -137498,7 +140153,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -137518,7 +140173,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -137543,7 +140198,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -137568,7 +140223,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -137593,7 +140248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2489], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -137614,7 +140269,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2491], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137630,7 +140285,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2491], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137646,7 +140301,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2492], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137662,7 +140317,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2492], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137677,7 +140332,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2493], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137693,7 +140348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2493], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137709,7 +140364,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2494], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137725,7 +140380,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2494], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137740,7 +140395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2495], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137756,7 +140411,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2495], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137772,7 +140427,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2496], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137788,7 +140443,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2496], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137803,7 +140458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2497], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137819,7 +140474,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4ui((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[2497], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -137835,7 +140490,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2498], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137851,7 +140506,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4uiv((UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[2498], (UInt32)index, (OpenTK.Graphics.OpenGL.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -137898,7 +140553,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -137949,7 +140604,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138005,7 +140660,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138061,7 +140716,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138117,7 +140772,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -138171,7 +140826,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -138223,7 +140878,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138280,7 +140935,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138337,7 +140992,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138394,7 +141049,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2500], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -138427,7 +141082,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBindingDivisor((UInt32)bindingindex, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2520], (UInt32)bindingindex, (UInt32)divisor); #if DEBUG } #endif @@ -138455,7 +141110,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBindingDivisor((UInt32)bindingindex, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2520], (UInt32)bindingindex, (UInt32)divisor); #if DEBUG } #endif @@ -138470,7 +141125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[2525], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -138486,7 +141141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[2525], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -138502,7 +141157,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[2526], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -138518,7 +141173,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[2526], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -138533,7 +141188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[2527], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -138549,7 +141204,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[2527], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -138565,7 +141220,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[2528], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -138581,7 +141236,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[2528], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -138596,7 +141251,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[2529], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -138612,7 +141267,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4ui((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[2529], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -138628,7 +141283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[2530], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -138644,7 +141299,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4uiv((OpenTK.Graphics.OpenGL.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[2530], (OpenTK.Graphics.OpenGL.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -138681,7 +141336,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2531], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -138722,7 +141377,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2531], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138768,7 +141423,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2531], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138814,7 +141469,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2531], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -138860,7 +141515,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2531], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -138893,7 +141548,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[2576], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -138929,7 +141584,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2577], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -138967,7 +141622,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2577], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -139002,7 +141657,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2577], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -139039,7 +141694,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2577], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -139078,7 +141733,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2577], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -139113,7 +141768,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2577], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -139150,7 +141805,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedf((UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); + InteropHelper.Call(EntryPoints[2578], (UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); #if DEBUG } #endif @@ -139188,7 +141843,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedf((UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); + InteropHelper.Call(EntryPoints[2578], (UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); #if DEBUG } #endif @@ -139229,7 +141884,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2579], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -139272,7 +141927,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2579], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -139312,7 +141967,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2579], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -139354,7 +142009,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2579], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -139398,7 +142053,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2579], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -139438,7 +142093,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2579], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -139471,7 +142126,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[2580], (IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -139505,7 +142160,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[2580], (IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -139539,7 +142194,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[2580], (IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -139571,7 +142226,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[2580], (IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -139604,7 +142259,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[2580], (IntPtr)sync, (OpenTK.Graphics.OpenGL.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -139626,7 +142281,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2d((Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2591], (Double)x, (Double)y); #if DEBUG } #endif @@ -139652,7 +142307,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2594], (IntPtr)v_ptr); } } #if DEBUG @@ -139680,7 +142335,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos2dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2594], (IntPtr)v_ptr); } } #if DEBUG @@ -139705,7 +142360,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2dv((Double*)v); + InteropHelper.Call(EntryPoints[2594], (IntPtr)v); #if DEBUG } #endif @@ -139727,7 +142382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2f((Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2597], (Single)x, (Single)y); #if DEBUG } #endif @@ -139753,7 +142408,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2600], (IntPtr)v_ptr); } } #if DEBUG @@ -139781,7 +142436,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos2fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2600], (IntPtr)v_ptr); } } #if DEBUG @@ -139806,7 +142461,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2fv((Single*)v); + InteropHelper.Call(EntryPoints[2600], (IntPtr)v); #if DEBUG } #endif @@ -139828,7 +142483,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2i((Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2603], (Int32)x, (Int32)y); #if DEBUG } #endif @@ -139854,7 +142509,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2606], (IntPtr)v_ptr); } } #if DEBUG @@ -139882,7 +142537,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos2iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2606], (IntPtr)v_ptr); } } #if DEBUG @@ -139907,7 +142562,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2iv((Int32*)v); + InteropHelper.Call(EntryPoints[2606], (IntPtr)v); #if DEBUG } #endif @@ -139929,7 +142584,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2s((Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2609], (Int16)x, (Int16)y); #if DEBUG } #endif @@ -139955,7 +142610,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2612], (IntPtr)v_ptr); } } #if DEBUG @@ -139983,7 +142638,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos2sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2612], (IntPtr)v_ptr); } } #if DEBUG @@ -140008,7 +142663,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2sv((Int16*)v); + InteropHelper.Call(EntryPoints[2612], (IntPtr)v); #if DEBUG } #endif @@ -140030,7 +142685,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3d((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2615], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -140056,7 +142711,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2618], (IntPtr)v_ptr); } } #if DEBUG @@ -140084,7 +142739,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos3dv((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2618], (IntPtr)v_ptr); } } #if DEBUG @@ -140109,7 +142764,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3dv((Double*)v); + InteropHelper.Call(EntryPoints[2618], (IntPtr)v); #if DEBUG } #endif @@ -140131,7 +142786,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3f((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2621], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -140157,7 +142812,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2624], (IntPtr)v_ptr); } } #if DEBUG @@ -140185,7 +142840,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos3fv((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2624], (IntPtr)v_ptr); } } #if DEBUG @@ -140210,7 +142865,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3fv((Single*)v); + InteropHelper.Call(EntryPoints[2624], (IntPtr)v); #if DEBUG } #endif @@ -140232,7 +142887,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3i((Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2627], (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -140258,7 +142913,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2630], (IntPtr)v_ptr); } } #if DEBUG @@ -140286,7 +142941,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos3iv((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2630], (IntPtr)v_ptr); } } #if DEBUG @@ -140311,7 +142966,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3iv((Int32*)v); + InteropHelper.Call(EntryPoints[2630], (IntPtr)v); #if DEBUG } #endif @@ -140333,7 +142988,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3s((Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2633], (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -140359,7 +143014,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2636], (IntPtr)v_ptr); } } #if DEBUG @@ -140387,7 +143042,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos3sv((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2636], (IntPtr)v_ptr); } } #if DEBUG @@ -140412,7 +143067,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3sv((Int16*)v); + InteropHelper.Call(EntryPoints[2636], (IntPtr)v); #if DEBUG } #endif @@ -140429,7 +143084,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveProgramEXT((UInt32)program); + InteropHelper.Call(EntryPoints[2], (UInt32)program); #if DEBUG } #endif @@ -140445,7 +143100,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveProgramEXT((UInt32)program); + InteropHelper.Call(EntryPoints[2], (UInt32)program); #if DEBUG } #endif @@ -140472,7 +143127,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgramEXT((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[4], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -140500,7 +143155,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgramEXT((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[4], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -140515,7 +143170,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveStencilFaceEXT((OpenTK.Graphics.OpenGL.ExtStencilTwoSide)face); + InteropHelper.Call(EntryPoints[5], (OpenTK.Graphics.OpenGL.ExtStencilTwoSide)face); #if DEBUG } #endif @@ -140530,7 +143185,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glApplyTextureEXT((OpenTK.Graphics.OpenGL.ExtLightTexture)mode); + InteropHelper.Call(EntryPoints[14], (OpenTK.Graphics.OpenGL.ExtLightTexture)mode); #if DEBUG } #endif @@ -140567,7 +143222,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = textures) fixed (bool* residences_ptr = residences) { - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + return InteropHelper.CallReturn(EntryPoints[17], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); } } #if DEBUG @@ -140606,7 +143261,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = &textures) fixed (bool* residences_ptr = &residences) { - bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[17], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); residences = *residences_ptr; return retval; } @@ -140643,7 +143298,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences); + return InteropHelper.CallReturn(EntryPoints[17], (Int32)n, (IntPtr)textures, (IntPtr)residences); #if DEBUG } #endif @@ -140681,7 +143336,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = textures) fixed (bool* residences_ptr = residences) { - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + return InteropHelper.CallReturn(EntryPoints[17], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); } } #if DEBUG @@ -140721,7 +143376,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = &textures) fixed (bool* residences_ptr = &residences) { - bool retval = Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures_ptr, (bool*)residences_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[17], (Int32)n, (IntPtr)textures_ptr, (IntPtr)residences_ptr); residences = *residences_ptr; return retval; } @@ -140758,7 +143413,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glAreTexturesResidentEXT((Int32)n, (UInt32*)textures, (bool*)residences); + return InteropHelper.CallReturn(EntryPoints[17], (Int32)n, (IntPtr)textures, (IntPtr)residences); #if DEBUG } #endif @@ -140780,7 +143435,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glArrayElementEXT((Int32)i); + InteropHelper.Call(EntryPoints[19], (Int32)i); #if DEBUG } #endif @@ -140802,7 +143457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedbackEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)primitiveMode); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)primitiveMode); #if DEBUG } #endif @@ -140817,7 +143472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginVertexShaderEXT(); + InteropHelper.Call(EntryPoints[37]); #if DEBUG } #endif @@ -140849,7 +143504,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBaseEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -140882,7 +143537,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBaseEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -140897,7 +143552,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferOffsetEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + InteropHelper.Call(EntryPoints[46], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); #if DEBUG } #endif @@ -140913,7 +143568,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferOffsetEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + InteropHelper.Call(EntryPoints[46], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); #if DEBUG } #endif @@ -140955,7 +143610,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRangeEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -140998,7 +143653,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRangeEXT((OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.OpenGL.ExtTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -141030,7 +143685,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (String)name); + InteropHelper.Call(EntryPoints[54], (UInt32)program, (UInt32)color, (String)name); #if DEBUG } #endif @@ -141063,7 +143718,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocationEXT((UInt32)program, (UInt32)color, (String)name); + InteropHelper.Call(EntryPoints[54], (UInt32)program, (UInt32)color, (String)name); #if DEBUG } #endif @@ -141090,7 +143745,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[58], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -141118,7 +143773,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[58], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -141170,7 +143825,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTextureEXT((UInt32)index, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore)access, (Int32)format); + InteropHelper.Call(EntryPoints[60], (UInt32)index, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore)access, (Int32)format); #if DEBUG } #endif @@ -141223,7 +143878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTextureEXT((UInt32)index, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore)access, (Int32)format); + InteropHelper.Call(EntryPoints[60], (UInt32)index, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.ExtShaderImageLoadStore)access, (Int32)format); #if DEBUG } #endif @@ -141238,7 +143893,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glBindLightParameterEXT((OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)value); + return InteropHelper.CallReturn(EntryPoints[62], (OpenTK.Graphics.OpenGL.LightName)light, (OpenTK.Graphics.OpenGL.LightParameter)value); #if DEBUG } #endif @@ -141253,7 +143908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glBindMaterialParameterEXT((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)value); + return InteropHelper.CallReturn(EntryPoints[63], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)value); #if DEBUG } #endif @@ -141268,7 +143923,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindMultiTextureEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[64], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -141284,7 +143939,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindMultiTextureEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[64], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -141299,7 +143954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glBindParameterEXT((OpenTK.Graphics.OpenGL.ExtVertexShader)value); + return InteropHelper.CallReturn(EntryPoints[65], (OpenTK.Graphics.OpenGL.ExtVertexShader)value); #if DEBUG } #endif @@ -141321,7 +143976,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[69], (UInt32)pipeline); #if DEBUG } #endif @@ -141344,7 +143999,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[69], (UInt32)pipeline); #if DEBUG } #endif @@ -141371,7 +144026,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbufferEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[71], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -141399,7 +144054,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbufferEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[71], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -141414,7 +144069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glBindTexGenParameterEXT((OpenTK.Graphics.OpenGL.TextureUnit)unit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)value); + return InteropHelper.CallReturn(EntryPoints[74], (OpenTK.Graphics.OpenGL.TextureUnit)unit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)value); #if DEBUG } #endif @@ -141441,7 +144096,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTextureEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -141469,7 +144124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTextureEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -141484,7 +144139,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glBindTextureUnitParameterEXT((OpenTK.Graphics.OpenGL.TextureUnit)unit, (OpenTK.Graphics.OpenGL.ExtVertexShader)value); + return InteropHelper.CallReturn(EntryPoints[78], (OpenTK.Graphics.OpenGL.TextureUnit)unit, (OpenTK.Graphics.OpenGL.ExtVertexShader)value); #if DEBUG } #endif @@ -141499,7 +144154,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexShaderEXT((UInt32)id); + InteropHelper.Call(EntryPoints[85], (UInt32)id); #if DEBUG } #endif @@ -141515,7 +144170,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexShaderEXT((UInt32)id); + InteropHelper.Call(EntryPoints[85], (UInt32)id); #if DEBUG } #endif @@ -141530,7 +144185,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz); + InteropHelper.Call(EntryPoints[88], (SByte)bx, (SByte)by, (SByte)bz); #if DEBUG } #endif @@ -141546,7 +144201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3bEXT((SByte)bx, (SByte)by, (SByte)bz); + InteropHelper.Call(EntryPoints[88], (SByte)bx, (SByte)by, (SByte)bz); #if DEBUG } #endif @@ -141565,7 +144220,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[89], (IntPtr)v_ptr); } } #if DEBUG @@ -141586,7 +144241,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[89], (IntPtr)v_ptr); } } #if DEBUG @@ -141604,7 +144259,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3bvEXT((SByte*)v); + InteropHelper.Call(EntryPoints[89], (IntPtr)v); #if DEBUG } #endif @@ -141624,7 +144279,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[89], (IntPtr)v_ptr); } } #if DEBUG @@ -141646,7 +144301,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glBinormal3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[89], (IntPtr)v_ptr); } } #if DEBUG @@ -141664,7 +144319,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3bvEXT((SByte*)v); + InteropHelper.Call(EntryPoints[89], (IntPtr)v); #if DEBUG } #endif @@ -141679,7 +144334,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3dEXT((Double)bx, (Double)by, (Double)bz); + InteropHelper.Call(EntryPoints[90], (Double)bx, (Double)by, (Double)bz); #if DEBUG } #endif @@ -141698,7 +144353,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glBinormal3dvEXT((Double*)v_ptr); + InteropHelper.Call(EntryPoints[91], (IntPtr)v_ptr); } } #if DEBUG @@ -141719,7 +144374,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glBinormal3dvEXT((Double*)v_ptr); + InteropHelper.Call(EntryPoints[91], (IntPtr)v_ptr); } } #if DEBUG @@ -141737,7 +144392,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3dvEXT((Double*)v); + InteropHelper.Call(EntryPoints[91], (IntPtr)v); #if DEBUG } #endif @@ -141752,7 +144407,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3fEXT((Single)bx, (Single)by, (Single)bz); + InteropHelper.Call(EntryPoints[92], (Single)bx, (Single)by, (Single)bz); #if DEBUG } #endif @@ -141771,7 +144426,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glBinormal3fvEXT((Single*)v_ptr); + InteropHelper.Call(EntryPoints[93], (IntPtr)v_ptr); } } #if DEBUG @@ -141792,7 +144447,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glBinormal3fvEXT((Single*)v_ptr); + InteropHelper.Call(EntryPoints[93], (IntPtr)v_ptr); } } #if DEBUG @@ -141810,7 +144465,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3fvEXT((Single*)v); + InteropHelper.Call(EntryPoints[93], (IntPtr)v); #if DEBUG } #endif @@ -141825,7 +144480,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3iEXT((Int32)bx, (Int32)by, (Int32)bz); + InteropHelper.Call(EntryPoints[94], (Int32)bx, (Int32)by, (Int32)bz); #if DEBUG } #endif @@ -141844,7 +144499,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glBinormal3ivEXT((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[95], (IntPtr)v_ptr); } } #if DEBUG @@ -141865,7 +144520,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glBinormal3ivEXT((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[95], (IntPtr)v_ptr); } } #if DEBUG @@ -141883,7 +144538,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3ivEXT((Int32*)v); + InteropHelper.Call(EntryPoints[95], (IntPtr)v); #if DEBUG } #endif @@ -141898,7 +144553,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3sEXT((Int16)bx, (Int16)by, (Int16)bz); + InteropHelper.Call(EntryPoints[96], (Int16)bx, (Int16)by, (Int16)bz); #if DEBUG } #endif @@ -141917,7 +144572,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glBinormal3svEXT((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)v_ptr); } } #if DEBUG @@ -141938,7 +144593,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glBinormal3svEXT((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[97], (IntPtr)v_ptr); } } #if DEBUG @@ -141956,7 +144611,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormal3svEXT((Int16*)v); + InteropHelper.Call(EntryPoints[97], (IntPtr)v); #if DEBUG } #endif @@ -141971,7 +144626,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBinormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -141990,7 +144645,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glBinormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -142014,7 +144669,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glBinormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -142038,7 +144693,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glBinormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -142062,7 +144717,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glBinormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[98], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -142090,7 +144745,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColorEXT((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[103], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -142117,7 +144772,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -142145,7 +144800,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationEXT((OpenTK.Graphics.OpenGL.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL.BlendEquationMode)mode); #if DEBUG } #endif @@ -142177,7 +144832,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateEXT((OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate)modeRGB, (OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate)modeAlpha); + InteropHelper.Call(EntryPoints[111], (OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate)modeRGB, (OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate)modeAlpha); #if DEBUG } #endif @@ -142219,7 +144874,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateEXT((OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)dfactorAlpha); + InteropHelper.Call(EntryPoints[120], (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate)dfactorAlpha); #if DEBUG } #endif @@ -142256,7 +144911,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[127], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -142294,7 +144949,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebufferEXT((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[127], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -142316,7 +144971,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatusEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[138], (OpenTK.Graphics.OpenGL.FramebufferTarget)target); #if DEBUG } #endif @@ -142331,7 +144986,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckNamedFramebufferStatusEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[139], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferTarget)target); #if DEBUG } #endif @@ -142347,7 +145002,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckNamedFramebufferStatusEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[139], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferTarget)target); #if DEBUG } #endif @@ -142362,7 +145017,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColorIiEXT((Int32)red, (Int32)green, (Int32)blue, (Int32)alpha); + InteropHelper.Call(EntryPoints[152], (Int32)red, (Int32)green, (Int32)blue, (Int32)alpha); #if DEBUG } #endif @@ -142378,7 +145033,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColorIuiEXT((UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); + InteropHelper.Call(EntryPoints[153], (UInt32)red, (UInt32)green, (UInt32)blue, (UInt32)alpha); #if DEBUG } #endif @@ -142393,7 +145048,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -142412,7 +145067,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142436,7 +145091,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142460,7 +145115,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142484,7 +145139,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -142506,7 +145161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -142526,7 +145181,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142551,7 +145206,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142576,7 +145231,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142601,7 +145256,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[161], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -142622,7 +145277,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -142641,7 +145296,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142665,7 +145320,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142689,7 +145344,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142713,7 +145368,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -142735,7 +145390,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -142755,7 +145410,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142780,7 +145435,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142805,7 +145460,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -142830,7 +145485,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearNamedBufferSubDataEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[162], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -142851,7 +145506,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClientAttribDefaultEXT((OpenTK.Graphics.OpenGL.ClientAttribMask)mask); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.OpenGL.ClientAttribMask)mask); #if DEBUG } #endif @@ -142866,7 +145521,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + InteropHelper.Call(EntryPoints[228], (UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); #if DEBUG } #endif @@ -142882,7 +145537,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaskIndexedEXT((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + InteropHelper.Call(EntryPoints[228], (UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); #if DEBUG } #endif @@ -142919,7 +145574,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[235], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); #if DEBUG } #endif @@ -142960,7 +145615,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[235], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -143006,7 +145661,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[235], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -143052,7 +145707,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[235], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -143098,7 +145753,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[235], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -143151,7 +145806,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorSubTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -143202,7 +145857,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -143258,7 +145913,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -143314,7 +145969,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -143370,7 +146025,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T5)data_ptr.Target; } finally @@ -143423,7 +146078,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -143474,7 +146129,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -143530,7 +146185,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -143586,7 +146241,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -143642,7 +146297,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalFormat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T5)table_ptr.Target; } finally @@ -143663,7 +146318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -143682,7 +146337,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143706,7 +146361,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143730,7 +146385,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143754,7 +146409,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T7)bits_ptr.Target; } finally @@ -143775,7 +146430,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[258], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -143794,7 +146449,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[258], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143818,7 +146473,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[258], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143842,7 +146497,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[258], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143866,7 +146521,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[258], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T8)bits_ptr.Target; } finally @@ -143887,7 +146542,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[259], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -143906,7 +146561,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143930,7 +146585,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143954,7 +146609,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -143978,7 +146633,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[259], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T9)bits_ptr.Target; } finally @@ -143999,7 +146654,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144018,7 +146673,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144042,7 +146697,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144066,7 +146721,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144090,7 +146745,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T7)bits_ptr.Target; } finally @@ -144111,7 +146766,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144130,7 +146785,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144154,7 +146809,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144178,7 +146833,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144202,7 +146857,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T9)bits_ptr.Target; } finally @@ -144223,7 +146878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144242,7 +146897,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144266,7 +146921,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144290,7 +146945,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144314,7 +146969,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T11)bits_ptr.Target; } finally @@ -144335,7 +146990,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144354,7 +147009,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144378,7 +147033,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144402,7 +147057,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144426,7 +147081,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T7)bits_ptr.Target; } finally @@ -144448,7 +147103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144468,7 +147123,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144493,7 +147148,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144518,7 +147173,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144543,7 +147198,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[275], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T7)bits_ptr.Target; } finally @@ -144564,7 +147219,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144583,7 +147238,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144607,7 +147262,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144631,7 +147286,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144655,7 +147310,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T8)bits_ptr.Target; } finally @@ -144677,7 +147332,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144697,7 +147352,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144722,7 +147377,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144747,7 +147402,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144772,7 +147427,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[276], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T8)bits_ptr.Target; } finally @@ -144793,7 +147448,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144812,7 +147467,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144836,7 +147491,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144860,7 +147515,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144884,7 +147539,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T9)bits_ptr.Target; } finally @@ -144906,7 +147561,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -144926,7 +147581,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144951,7 +147606,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -144976,7 +147631,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145001,7 +147656,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[277], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T9)bits_ptr.Target; } finally @@ -145022,7 +147677,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -145041,7 +147696,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145065,7 +147720,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145089,7 +147744,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145113,7 +147768,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T7)bits_ptr.Target; } finally @@ -145135,7 +147790,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -145155,7 +147810,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145180,7 +147835,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145205,7 +147860,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145230,7 +147885,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[278], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T7)bits_ptr.Target; } finally @@ -145251,7 +147906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -145270,7 +147925,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145294,7 +147949,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145318,7 +147973,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145342,7 +147997,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T9)bits_ptr.Target; } finally @@ -145364,7 +148019,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -145384,7 +148039,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145409,7 +148064,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145434,7 +148089,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145459,7 +148114,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[279], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T9)bits_ptr.Target; } finally @@ -145480,7 +148135,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -145499,7 +148154,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145523,7 +148178,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145547,7 +148202,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145571,7 +148226,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T11)bits_ptr.Target; } finally @@ -145593,7 +148248,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits); #if DEBUG } #endif @@ -145613,7 +148268,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145638,7 +148293,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145663,7 +148318,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); } finally { @@ -145688,7 +148343,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle bits_ptr = GCHandle.Alloc(bits, GCHandleType.Pinned); try { - Delegates.glCompressedTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[280], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (Int32)imageSize, (IntPtr)bits_ptr.AddrOfPinnedObject()); bits = (T11)bits_ptr.Target; } finally @@ -145741,7 +148396,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[282], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -145792,7 +148447,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[282], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -145848,7 +148503,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[282], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -145904,7 +148559,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[282], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -145960,7 +148615,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[282], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T5)image_ptr.Target; } finally @@ -146018,7 +148673,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -146074,7 +148729,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -146135,7 +148790,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -146196,7 +148851,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -146257,7 +148912,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[284], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T6)image_ptr.Target; } finally @@ -146298,7 +148953,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterfEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single)@params); + InteropHelper.Call(EntryPoints[286], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single)@params); #if DEBUG } #endif @@ -146337,7 +148992,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -146375,7 +149030,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params); #if DEBUG } #endif @@ -146410,7 +149065,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameteriEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32)@params); + InteropHelper.Call(EntryPoints[290], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32)@params); #if DEBUG } #endif @@ -146449,7 +149104,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -146487,7 +149142,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[292], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params); #if DEBUG } #endif @@ -146524,7 +149179,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyColorSubTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[297], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -146561,7 +149216,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyConvolutionFilter1DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[301], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -146603,7 +149258,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyConvolutionFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[303], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -146618,7 +149273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + InteropHelper.Call(EntryPoints[306], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); #if DEBUG } #endif @@ -146633,7 +149288,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[307], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -146648,7 +149303,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[308], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -146663,7 +149318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[309], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -146678,7 +149333,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[310], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -146725,7 +149380,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + InteropHelper.Call(EntryPoints[314], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); #if DEBUG } #endif @@ -146777,7 +149432,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[316], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -146819,7 +149474,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[318], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -146871,7 +149526,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[320], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -146928,7 +149583,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[322], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -146943,7 +149598,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + InteropHelper.Call(EntryPoints[323], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); #if DEBUG } #endif @@ -146959,7 +149614,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + InteropHelper.Call(EntryPoints[323], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); #if DEBUG } #endif @@ -146974,7 +149629,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[324], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -146990,7 +149645,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[324], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -147005,7 +149660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[325], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -147021,7 +149676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[325], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -147036,7 +149691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[326], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -147052,7 +149707,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[326], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -147067,7 +149722,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[327], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -147083,7 +149738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[327], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -147115,7 +149770,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramEXT((OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (String)@string); + return InteropHelper.CallReturn(EntryPoints[336], (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (String)@string); #if DEBUG } #endif @@ -147147,7 +149802,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramvEXT((OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (Int32)count, (String[])strings); + return InteropHelper.CallReturn(EntryPoints[338], (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (Int32)count, (String[])strings); #if DEBUG } #endif @@ -147166,7 +149821,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glCullParameterdvEXT((OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[341], (OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -147187,7 +149842,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glCullParameterdvEXT((OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[341], (OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -147206,7 +149861,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullParameterdvEXT((OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[341], (OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (IntPtr)@params); #if DEBUG } #endif @@ -147225,7 +149880,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glCullParameterfvEXT((OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[342], (OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -147246,7 +149901,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glCullParameterfvEXT((OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[342], (OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -147265,7 +149920,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullParameterfvEXT((OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[342], (OpenTK.Graphics.OpenGL.ExtCullVertex)pname, (IntPtr)@params); #if DEBUG } #endif @@ -147284,7 +149939,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -147305,7 +149960,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -147337,7 +149992,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -147370,7 +150025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -147400,7 +150055,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -147432,7 +150087,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -147466,7 +150121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -147496,7 +150151,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[366], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -147515,7 +150170,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -147536,7 +150191,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -147568,7 +150223,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -147601,7 +150256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -147631,7 +150286,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -147663,7 +150318,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -147697,7 +150352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -147727,7 +150382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[376], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -147746,7 +150401,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -147767,7 +150422,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -147799,7 +150454,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -147832,7 +150487,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -147862,7 +150517,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -147894,7 +150549,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -147928,7 +150583,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -147958,7 +150613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[382], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -147977,7 +150632,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -147998,7 +150653,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -148030,7 +150685,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -148063,7 +150718,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -148093,7 +150748,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -148125,7 +150780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -148159,7 +150814,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -148189,7 +150844,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTexturesEXT((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[387], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -148204,7 +150859,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexShaderEXT((UInt32)id); + InteropHelper.Call(EntryPoints[392], (UInt32)id); #if DEBUG } #endif @@ -148220,7 +150875,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexShaderEXT((UInt32)id); + InteropHelper.Call(EntryPoints[392], (UInt32)id); #if DEBUG } #endif @@ -148235,7 +150890,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthBoundsEXT((Double)zmin, (Double)zmax); + InteropHelper.Call(EntryPoints[394], (Double)zmin, (Double)zmax); #if DEBUG } #endif @@ -148250,7 +150905,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientStateiEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[409], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -148266,7 +150921,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientStateiEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[409], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -148281,7 +150936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[410], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -148297,7 +150952,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[410], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -148313,7 +150968,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[410], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -148330,7 +150985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[410], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -148346,7 +151001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[412], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -148363,7 +151018,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[412], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -148378,7 +151033,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[412], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -148394,7 +151049,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[412], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -148409,7 +151064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVariantClientStateEXT((UInt32)id); + InteropHelper.Call(EntryPoints[413], (UInt32)id); #if DEBUG } #endif @@ -148425,7 +151080,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVariantClientStateEXT((UInt32)id); + InteropHelper.Call(EntryPoints[413], (UInt32)id); #if DEBUG } #endif @@ -148440,7 +151095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexArrayAttribEXT((UInt32)vaobj, (UInt32)index); + InteropHelper.Call(EntryPoints[414], (UInt32)vaobj, (UInt32)index); #if DEBUG } #endif @@ -148456,7 +151111,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexArrayAttribEXT((UInt32)vaobj, (UInt32)index); + InteropHelper.Call(EntryPoints[414], (UInt32)vaobj, (UInt32)index); #if DEBUG } #endif @@ -148471,7 +151126,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexArrayEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); + InteropHelper.Call(EntryPoints[415], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); #if DEBUG } #endif @@ -148487,7 +151142,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexArrayEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); + InteropHelper.Call(EntryPoints[415], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); #if DEBUG } #endif @@ -148520,7 +151175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[423], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -148552,7 +151207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[423], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -148590,7 +151245,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[428], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -148627,7 +151282,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[428], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)start, (Int32)count, (Int32)primcount); #if DEBUG } #endif @@ -148670,7 +151325,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -148717,7 +151372,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -148769,7 +151424,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -148821,7 +151476,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -148873,7 +151528,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -148921,7 +151576,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -148967,7 +151622,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -149018,7 +151673,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -149069,7 +151724,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -149120,7 +151775,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[443], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -149174,7 +151829,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -149226,7 +151881,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149283,7 +151938,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149340,7 +151995,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149397,7 +152052,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -149452,7 +152107,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -149505,7 +152160,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149563,7 +152218,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149621,7 +152276,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149679,7 +152334,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -149732,7 +152387,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -149783,7 +152438,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149839,7 +152494,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149895,7 +152550,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -149951,7 +152606,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -150005,7 +152660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -150057,7 +152712,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -150114,7 +152769,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -150171,7 +152826,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -150228,7 +152883,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -150265,7 +152920,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* pointer_ptr = pointer) { - Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer_ptr); + InteropHelper.Call(EntryPoints[460], (Int32)stride, (Int32)count, (IntPtr)pointer_ptr); } } #if DEBUG @@ -150298,7 +152953,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* pointer_ptr = &pointer) { - Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer_ptr); + InteropHelper.Call(EntryPoints[460], (Int32)stride, (Int32)count, (IntPtr)pointer_ptr); } } #if DEBUG @@ -150328,7 +152983,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEdgeFlagPointerEXT((Int32)stride, (Int32)count, (bool*)pointer); + InteropHelper.Call(EntryPoints[460], (Int32)stride, (Int32)count, (IntPtr)pointer); #if DEBUG } #endif @@ -150350,7 +153005,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientStateiEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[467], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -150373,7 +153028,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientStateiEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[467], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -150388,7 +153043,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[468], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -150404,7 +153059,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[468], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -150420,7 +153075,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[468], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -150437,7 +153092,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableClientStateIndexedEXT((OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); + InteropHelper.Call(EntryPoints[468], (OpenTK.Graphics.OpenGL.ArrayCap)array, (UInt32)index); #if DEBUG } #endif @@ -150453,7 +153108,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[470], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -150470,7 +153125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[470], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -150485,7 +153140,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[470], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -150501,7 +153156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[470], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -150516,7 +153171,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVariantClientStateEXT((UInt32)id); + InteropHelper.Call(EntryPoints[471], (UInt32)id); #if DEBUG } #endif @@ -150532,7 +153187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVariantClientStateEXT((UInt32)id); + InteropHelper.Call(EntryPoints[471], (UInt32)id); #if DEBUG } #endif @@ -150547,7 +153202,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexArrayAttribEXT((UInt32)vaobj, (UInt32)index); + InteropHelper.Call(EntryPoints[472], (UInt32)vaobj, (UInt32)index); #if DEBUG } #endif @@ -150563,7 +153218,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexArrayAttribEXT((UInt32)vaobj, (UInt32)index); + InteropHelper.Call(EntryPoints[472], (UInt32)vaobj, (UInt32)index); #if DEBUG } #endif @@ -150578,7 +153233,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexArrayEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); + InteropHelper.Call(EntryPoints[473], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); #if DEBUG } #endif @@ -150594,7 +153249,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexArrayEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); + InteropHelper.Call(EntryPoints[473], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.EnableCap)array); #if DEBUG } #endif @@ -150609,7 +153264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTransformFeedbackEXT(); + InteropHelper.Call(EntryPoints[489]); #if DEBUG } #endif @@ -150624,7 +153279,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndVertexShaderEXT(); + InteropHelper.Call(EntryPoints[491]); #if DEBUG } #endif @@ -150639,7 +153294,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + InteropHelper.Call(EntryPoints[511], (UInt32)res, (UInt32)src, (UInt32)num); #if DEBUG } #endif @@ -150655,7 +153310,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExtractComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + InteropHelper.Call(EntryPoints[511], (UInt32)res, (UInt32)src, (UInt32)num); #if DEBUG } #endif @@ -150670,7 +153325,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedNamedBufferRangeEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[525], (UInt32)buffer, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -150686,7 +153341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedNamedBufferRangeEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[525], (UInt32)buffer, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -150708,7 +153363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoorddEXT((Double)coord); + InteropHelper.Call(EntryPoints[532], (Double)coord); #if DEBUG } #endif @@ -150731,7 +153386,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoorddvEXT((Double*)coord); + InteropHelper.Call(EntryPoints[534], (IntPtr)coord); #if DEBUG } #endif @@ -150753,7 +153408,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordfEXT((Single)coord); + InteropHelper.Call(EntryPoints[536], (Single)coord); #if DEBUG } #endif @@ -150776,7 +153431,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordfvEXT((Single*)coord); + InteropHelper.Call(EntryPoints[539], (IntPtr)coord); #if DEBUG } #endif @@ -150808,7 +153463,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordPointerEXT((OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[543], (OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -150844,7 +153499,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerEXT((OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[543], (OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -150885,7 +153540,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerEXT((OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[543], (OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -150926,7 +153581,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerEXT((OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[543], (OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -150967,7 +153622,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerEXT((OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[543], (OpenTK.Graphics.OpenGL.ExtFogCoord)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -150988,7 +153643,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferDrawBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.DrawBufferMode)mode); + InteropHelper.Call(EntryPoints[565], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.DrawBufferMode)mode); #if DEBUG } #endif @@ -151004,7 +153659,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferDrawBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.DrawBufferMode)mode); + InteropHelper.Call(EntryPoints[565], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.DrawBufferMode)mode); #if DEBUG } #endif @@ -151023,7 +153678,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.OpenGL.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[566], (UInt32)framebuffer, (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -151044,7 +153699,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.OpenGL.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[566], (UInt32)framebuffer, (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -151062,7 +153717,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.OpenGL.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[566], (UInt32)framebuffer, (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -151082,7 +153737,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.DrawBufferMode* bufs_ptr = bufs) { - Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.OpenGL.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[566], (UInt32)framebuffer, (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -151104,7 +153759,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (OpenTK.Graphics.OpenGL.DrawBufferMode* bufs_ptr = &bufs) { - Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.OpenGL.DrawBufferMode*)bufs_ptr); + InteropHelper.Call(EntryPoints[566], (UInt32)framebuffer, (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -151122,7 +153777,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferDrawBuffersEXT((UInt32)framebuffer, (Int32)n, (OpenTK.Graphics.OpenGL.DrawBufferMode*)bufs); + InteropHelper.Call(EntryPoints[566], (UInt32)framebuffer, (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -151137,7 +153792,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferReadBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ReadBufferMode)mode); + InteropHelper.Call(EntryPoints[568], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ReadBufferMode)mode); #if DEBUG } #endif @@ -151153,7 +153808,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferReadBufferEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ReadBufferMode)mode); + InteropHelper.Call(EntryPoints[568], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ReadBufferMode)mode); #if DEBUG } #endif @@ -151190,7 +153845,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[570], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -151228,7 +153883,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbufferEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[570], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -151243,7 +153898,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[573], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -151259,7 +153914,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture1DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[573], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -151274,7 +153929,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[575], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -151290,7 +153945,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[575], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -151305,7 +153960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[577], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -151321,7 +153976,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3DEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[577], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -151363,7 +154018,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[579], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -151406,7 +154061,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[579], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -151448,7 +154103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + InteropHelper.Call(EntryPoints[581], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); #if DEBUG } #endif @@ -151491,7 +154146,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureFaceEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + InteropHelper.Call(EntryPoints[581], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); #if DEBUG } #endif @@ -151533,7 +154188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[584], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -151576,7 +154231,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayerEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[584], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -151598,7 +154253,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmapEXT((OpenTK.Graphics.OpenGL.GenerateMipmapTarget)target); + InteropHelper.Call(EntryPoints[596], (OpenTK.Graphics.OpenGL.GenerateMipmapTarget)target); #if DEBUG } #endif @@ -151613,7 +154268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMultiTexMipmapEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target); + InteropHelper.Call(EntryPoints[597], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target); #if DEBUG } #endif @@ -151628,7 +154283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateTextureMipmapEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target); + InteropHelper.Call(EntryPoints[598], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target); #if DEBUG } #endif @@ -151644,7 +154299,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateTextureMipmapEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target); + InteropHelper.Call(EntryPoints[598], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target); #if DEBUG } #endif @@ -151664,7 +154319,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* framebuffers_ptr = &retval; - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers_ptr); return retval; } #if DEBUG @@ -151697,7 +154352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -151730,7 +154385,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -151761,7 +154416,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -151793,7 +154448,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -151827,7 +154482,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -151858,7 +154513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffersEXT((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[603], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -151878,7 +154533,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* pipelines_ptr = &retval; - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines_ptr); return retval; } #if DEBUG @@ -151911,7 +154566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -151944,7 +154599,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -151975,7 +154630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -152007,7 +154662,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -152041,7 +154696,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -152072,7 +154727,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelinesEXT((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[610], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -152092,7 +154747,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* renderbuffers_ptr = &retval; - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers_ptr); return retval; } #if DEBUG @@ -152125,7 +154780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -152158,7 +154813,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -152189,7 +154844,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -152221,7 +154876,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -152255,7 +154910,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -152286,7 +154941,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffersEXT((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[616], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -152301,7 +154956,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenSymbolsEXT((OpenTK.Graphics.OpenGL.ExtVertexShader)datatype, (OpenTK.Graphics.OpenGL.ExtVertexShader)storagetype, (OpenTK.Graphics.OpenGL.ExtVertexShader)range, (UInt32)components); + return InteropHelper.CallReturn(EntryPoints[618], (OpenTK.Graphics.OpenGL.ExtVertexShader)datatype, (OpenTK.Graphics.OpenGL.ExtVertexShader)storagetype, (OpenTK.Graphics.OpenGL.ExtVertexShader)range, (UInt32)components); #if DEBUG } #endif @@ -152317,7 +154972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenSymbolsEXT((OpenTK.Graphics.OpenGL.ExtVertexShader)datatype, (OpenTK.Graphics.OpenGL.ExtVertexShader)storagetype, (OpenTK.Graphics.OpenGL.ExtVertexShader)range, (UInt32)components); + return InteropHelper.CallReturn(EntryPoints[618], (OpenTK.Graphics.OpenGL.ExtVertexShader)datatype, (OpenTK.Graphics.OpenGL.ExtVertexShader)storagetype, (OpenTK.Graphics.OpenGL.ExtVertexShader)range, (UInt32)components); #if DEBUG } #endif @@ -152337,7 +154992,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* textures_ptr = &retval; - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures_ptr); return retval; } #if DEBUG @@ -152370,7 +155025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -152403,7 +155058,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -152434,7 +155089,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -152466,7 +155121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -152500,7 +155155,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -152531,7 +155186,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTexturesEXT((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[620], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -152546,7 +155201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenVertexShadersEXT((UInt32)range); + return InteropHelper.CallReturn(EntryPoints[625], (UInt32)range); #if DEBUG } #endif @@ -152562,7 +155217,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenVertexShadersEXT((UInt32)range); + return InteropHelper.CallReturn(EntryPoints[625], (UInt32)range); #if DEBUG } #endif @@ -152581,7 +155236,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -152602,7 +155257,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -152621,7 +155276,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -152641,7 +155296,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -152663,7 +155318,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -152682,7 +155337,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -152702,7 +155357,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -152724,7 +155379,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -152744,7 +155399,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -152765,7 +155420,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -152788,7 +155443,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -152808,7 +155463,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanIndexedvEXT((OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[646], (OpenTK.Graphics.OpenGL.All)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -152845,7 +155500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[660], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -152886,7 +155541,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[660], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -152932,7 +155587,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[660], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -152978,7 +155633,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[660], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -153024,7 +155679,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetColorTableEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[660], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -153066,7 +155721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[662], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -153104,7 +155759,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[662], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -153140,7 +155795,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameterfvEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[662], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -153176,7 +155831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[665], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -153214,7 +155869,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[665], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -153250,7 +155905,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameterivEXT((OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[665], (OpenTK.Graphics.OpenGL.ColorTableTarget)target, (OpenTK.Graphics.OpenGL.GetColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -153265,7 +155920,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img); + InteropHelper.Call(EntryPoints[673], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img); #if DEBUG } #endif @@ -153284,7 +155939,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[673], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153308,7 +155963,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[673], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153332,7 +155987,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[673], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153356,7 +156011,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[673], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T3)img_ptr.Target; } finally @@ -153377,7 +156032,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img); #if DEBUG } #endif @@ -153396,7 +156051,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153420,7 +156075,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153444,7 +156099,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153468,7 +156123,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T3)img_ptr.Target; } finally @@ -153490,7 +156145,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img); #if DEBUG } #endif @@ -153510,7 +156165,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153535,7 +156190,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153560,7 +156215,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -153585,7 +156240,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[676], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)lod, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T3)img_ptr.Target; } finally @@ -153628,7 +156283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[678], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -153669,7 +156324,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[678], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -153715,7 +156370,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[678], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -153761,7 +156416,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[678], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -153807,7 +156462,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[678], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T3)image_ptr.Target; } finally @@ -153849,7 +156504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[680], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -153887,7 +156542,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[680], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -153923,7 +156578,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameterfvEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[680], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params); #if DEBUG } #endif @@ -153959,7 +156614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[682], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -153997,7 +156652,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[682], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154033,7 +156688,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameterivEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[682], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.ExtConvolution)pname, (IntPtr)@params); #if DEBUG } #endif @@ -154052,7 +156707,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetDoublei_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[690], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -154073,7 +156728,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetDoublei_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[690], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154092,7 +156747,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublei_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[690], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -154112,7 +156767,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetDoublei_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[690], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -154134,7 +156789,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetDoublei_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[690], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154153,7 +156808,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublei_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[690], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -154172,7 +156827,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = data) { - Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[691], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -154193,7 +156848,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = &data) { - Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[691], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -154212,7 +156867,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)data); + InteropHelper.Call(EntryPoints[691], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -154232,7 +156887,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = data) { - Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[691], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -154254,7 +156909,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* data_ptr = &data) { - Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[691], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -154273,7 +156928,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoubleIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)data); + InteropHelper.Call(EntryPoints[691], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -154292,7 +156947,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetFloati_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[699], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -154313,7 +156968,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFloati_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[699], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154332,7 +156987,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloati_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[699], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -154352,7 +157007,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetFloati_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[699], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -154374,7 +157029,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFloati_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[699], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154393,7 +157048,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloati_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[699], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -154412,7 +157067,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[700], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -154433,7 +157088,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[700], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -154452,7 +157107,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)data); + InteropHelper.Call(EntryPoints[700], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -154472,7 +157127,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[700], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -154494,7 +157149,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[700], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -154513,7 +157168,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)data); + InteropHelper.Call(EntryPoints[700], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -154540,7 +157195,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocationEXT((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[705], (UInt32)program, (String)name); #if DEBUG } #endif @@ -154568,7 +157223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocationEXT((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[705], (UInt32)program, (String)name); #if DEBUG } #endif @@ -154609,7 +157264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[711], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -154652,7 +157307,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[711], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154693,7 +157348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameterivEXT((OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[711], (OpenTK.Graphics.OpenGL.FramebufferTarget)target, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -154729,7 +157384,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[713], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -154767,7 +157422,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[713], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154803,7 +157458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[713], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -154840,7 +157495,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[713], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -154879,7 +157534,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[713], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -154915,7 +157570,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[713], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -154957,7 +157612,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + InteropHelper.Call(EntryPoints[717], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); #if DEBUG } #endif @@ -155003,7 +157658,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[717], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -155054,7 +157709,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[717], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -155105,7 +157760,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[717], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -155156,7 +157811,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[717], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T4)values_ptr.Target; } finally @@ -155198,7 +157853,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[719], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -155236,7 +157891,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[719], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -155272,7 +157927,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameterfvEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[719], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -155308,7 +157963,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[721], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -155346,7 +158001,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[721], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -155382,7 +158037,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameterivEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[721], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -155402,7 +158057,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -155424,7 +158079,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155444,7 +158099,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -155465,7 +158120,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -155488,7 +158143,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155508,7 +158163,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -155527,7 +158182,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -155548,7 +158203,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155567,7 +158222,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -155587,7 +158242,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -155609,7 +158264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155628,7 +158283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerIndexedvEXT((OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[732], (OpenTK.Graphics.OpenGL.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -155647,7 +158302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[738], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -155668,7 +158323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[738], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155687,7 +158342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data); + InteropHelper.Call(EntryPoints[738], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -155707,7 +158362,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[738], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -155729,7 +158384,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[738], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155748,7 +158403,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInvariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data); + InteropHelper.Call(EntryPoints[738], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -155767,7 +158422,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[739], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -155788,7 +158443,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[739], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155807,7 +158462,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data); + InteropHelper.Call(EntryPoints[739], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -155827,7 +158482,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[739], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -155849,7 +158504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[739], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155868,7 +158523,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInvariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data); + InteropHelper.Call(EntryPoints[739], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -155887,7 +158542,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[740], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -155908,7 +158563,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[740], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155927,7 +158582,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data); + InteropHelper.Call(EntryPoints[740], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -155947,7 +158602,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[740], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -155969,7 +158624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[740], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -155988,7 +158643,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInvariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data); + InteropHelper.Call(EntryPoints[740], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156007,7 +158662,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[747], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -156028,7 +158683,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[747], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -156047,7 +158702,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data); + InteropHelper.Call(EntryPoints[747], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156067,7 +158722,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[747], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -156089,7 +158744,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[747], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -156108,7 +158763,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLocalConstantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data); + InteropHelper.Call(EntryPoints[747], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156127,7 +158782,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[748], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -156148,7 +158803,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[748], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -156167,7 +158822,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data); + InteropHelper.Call(EntryPoints[748], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156187,7 +158842,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[748], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -156209,7 +158864,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[748], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -156228,7 +158883,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLocalConstantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data); + InteropHelper.Call(EntryPoints[748], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156247,7 +158902,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[749], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -156268,7 +158923,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[749], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -156287,7 +158942,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data); + InteropHelper.Call(EntryPoints[749], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156307,7 +158962,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[749], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -156329,7 +158984,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[749], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -156348,7 +159003,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLocalConstantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data); + InteropHelper.Call(EntryPoints[749], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -156390,7 +159045,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); + InteropHelper.Call(EntryPoints[764], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values); #if DEBUG } #endif @@ -156436,7 +159091,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[764], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -156487,7 +159142,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[764], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -156538,7 +159193,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[764], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -156589,7 +159244,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[764], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (bool)reset, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T4)values_ptr.Target; } finally @@ -156631,7 +159286,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[766], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -156669,7 +159324,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[766], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -156705,7 +159360,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxParameterfvEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[766], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -156741,7 +159396,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[768], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -156779,7 +159434,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[768], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -156815,7 +159470,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxParameterivEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[768], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.ExtHistogram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -156834,7 +159489,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMultiTexEnvfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[771], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -156855,7 +159510,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMultiTexEnvfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[771], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -156874,7 +159529,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexEnvfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[771], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -156893,7 +159548,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMultiTexEnvivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[772], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -156914,7 +159569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMultiTexEnvivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[772], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -156933,7 +159588,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexEnvivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[772], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -156952,7 +159607,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetMultiTexGendvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[773], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -156973,7 +159628,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetMultiTexGendvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[773], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -156992,7 +159647,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexGendvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[773], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157011,7 +159666,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMultiTexGenfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[774], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157032,7 +159687,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMultiTexGenfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[774], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157051,7 +159706,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexGenfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[774], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157070,7 +159725,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMultiTexGenivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[775], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157091,7 +159746,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMultiTexGenivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[775], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157110,7 +159765,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexGenivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[775], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157125,7 +159780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[776], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -157144,7 +159799,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[776], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -157168,7 +159823,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[776], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -157192,7 +159847,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[776], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -157216,7 +159871,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetMultiTexImageEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[776], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T5)pixels_ptr.Target; } finally @@ -157241,7 +159896,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMultiTexLevelParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[777], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157262,7 +159917,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMultiTexLevelParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[777], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157281,7 +159936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexLevelParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[777], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157300,7 +159955,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMultiTexLevelParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[778], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157321,7 +159976,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMultiTexLevelParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[778], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157340,7 +159995,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexLevelParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[778], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157359,7 +160014,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMultiTexParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[779], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157380,7 +160035,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMultiTexParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[779], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157399,7 +160054,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[779], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157418,7 +160073,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMultiTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[780], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157439,7 +160094,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMultiTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[780], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157458,7 +160113,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[780], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157478,7 +160133,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[781], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157500,7 +160155,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[781], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157519,7 +160174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[781], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157538,7 +160193,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMultiTexParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[782], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157559,7 +160214,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMultiTexParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[782], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157578,7 +160233,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultiTexParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[782], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157597,7 +160252,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[783], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157618,7 +160273,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[783], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157637,7 +160292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[783], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157657,7 +160312,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[783], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -157679,7 +160334,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[783], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -157698,7 +160353,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferParameterivEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[783], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157713,7 +160368,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157732,7 +160387,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -157756,7 +160411,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -157780,7 +160435,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -157804,7 +160459,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -157826,7 +160481,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -157846,7 +160501,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -157871,7 +160526,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -157896,7 +160551,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -157921,7 +160576,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferPointervEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[785], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -157942,7 +160597,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -157961,7 +160616,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -157985,7 +160640,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -158009,7 +160664,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -158033,7 +160688,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -158055,7 +160710,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -158075,7 +160730,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -158100,7 +160755,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -158125,7 +160780,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -158150,7 +160805,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[786], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -158175,7 +160830,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[787], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -158196,7 +160851,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[787], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158215,7 +160870,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[787], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158235,7 +160890,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[787], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -158257,7 +160912,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[787], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158276,7 +160931,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedFramebufferAttachmentParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[787], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158295,7 +160950,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[788], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -158316,7 +160971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[788], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158335,7 +160990,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[788], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158355,7 +161010,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[788], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -158377,7 +161032,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[788], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158396,7 +161051,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedFramebufferParameterivEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[788], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158416,7 +161071,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158436,7 +161091,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158455,7 +161110,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158474,7 +161129,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158495,7 +161150,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158515,7 +161170,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158535,7 +161190,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158554,7 +161209,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[789], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ProgramProperty)pname, (IntPtr)@params); #if DEBUG } #endif @@ -158573,7 +161228,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[790], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158594,7 +161249,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[790], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158613,7 +161268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[790], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158633,7 +161288,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[790], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158655,7 +161310,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[790], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158674,7 +161329,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterdvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[790], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158693,7 +161348,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[791], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158714,7 +161369,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[791], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158733,7 +161388,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[791], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158753,7 +161408,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[791], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158775,7 +161430,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[791], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158794,7 +161449,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterfvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[791], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158813,7 +161468,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[792], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158834,7 +161489,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[792], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158853,7 +161508,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[792], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158873,7 +161528,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[792], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158895,7 +161550,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[792], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158914,7 +161569,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterIivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[792], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158934,7 +161589,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[793], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -158956,7 +161611,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[793], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -158975,7 +161630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramLocalParameterIuivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params); + InteropHelper.Call(EntryPoints[793], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -158990,7 +161645,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string); #if DEBUG } #endif @@ -159009,7 +161664,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -159033,7 +161688,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -159057,7 +161712,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -159081,7 +161736,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T3)@string_ptr.Target; } finally @@ -159103,7 +161758,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string); #if DEBUG } #endif @@ -159123,7 +161778,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -159148,7 +161803,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -159173,7 +161828,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -159198,7 +161853,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glGetNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[794], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T3)@string_ptr.Target; } finally @@ -159223,7 +161878,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[795], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -159244,7 +161899,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[795], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -159263,7 +161918,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[795], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -159283,7 +161938,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[795], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -159305,7 +161960,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[795], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -159324,7 +161979,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedRenderbufferParameterivEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[795], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -159370,7 +162025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[819], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -159418,7 +162073,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[819], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -159464,7 +162119,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[819], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -159511,7 +162166,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[819], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -159560,7 +162215,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[819], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -159606,7 +162261,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[819], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -159625,7 +162280,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[853], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -159646,7 +162301,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[853], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -159665,7 +162320,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[853], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -159684,7 +162339,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[854], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -159705,7 +162360,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[854], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -159724,7 +162379,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[854], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -159739,7 +162394,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -159758,7 +162413,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -159782,7 +162437,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -159806,7 +162461,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -159830,7 +162485,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -159852,7 +162507,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -159872,7 +162527,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -159897,7 +162552,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -159922,7 +162577,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -159947,7 +162602,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointeri_vEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[855], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (UInt32)index, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -159968,7 +162623,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -159987,7 +162642,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -160011,7 +162666,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -160035,7 +162690,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -160059,7 +162714,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T2)data_ptr.Target; } finally @@ -160081,7 +162736,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -160101,7 +162756,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -160126,7 +162781,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -160151,7 +162806,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -160176,7 +162831,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetPointerIndexedvEXT((OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[856], (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T2)data_ptr.Target; } finally @@ -160197,7 +162852,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointervEXT((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[858], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -160216,7 +162871,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervEXT((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[858], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -160240,7 +162895,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervEXT((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[858], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -160264,7 +162919,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervEXT((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[858], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -160288,7 +162943,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervEXT((OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[858], (OpenTK.Graphics.OpenGL.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -160335,7 +162990,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[880], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); } } #if DEBUG @@ -160378,7 +163033,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[880], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -160419,7 +163074,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[880], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -160461,7 +163116,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[880], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); } } #if DEBUG @@ -160505,7 +163160,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[880], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -160546,7 +163201,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLogEXT((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[880], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -160582,7 +163237,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[882], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -160620,7 +163275,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[882], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -160656,7 +163311,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[882], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (IntPtr)@params); #if DEBUG } #endif @@ -160693,7 +163348,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[882], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -160732,7 +163387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[882], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -160768,7 +163423,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineivEXT((UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[882], (UInt32)pipeline, (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)pname, (IntPtr)@params); #if DEBUG } #endif @@ -160804,7 +163459,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[896], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -160842,7 +163497,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[896], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -160878,7 +163533,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[896], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -160915,7 +163570,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[896], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -160954,7 +163609,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[896], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -160990,7 +163645,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[896], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161027,7 +163682,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[900], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -161066,7 +163721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[900], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -161102,7 +163757,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64vEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[900], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtTimerQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161138,7 +163793,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[904], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -161176,7 +163831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[904], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -161212,7 +163867,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameterivEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[904], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161259,7 +163914,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + InteropHelper.Call(EntryPoints[910], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); #if DEBUG } #endif @@ -161314,7 +163969,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[910], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -161376,7 +164031,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[910], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -161438,7 +164093,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[910], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -161500,7 +164155,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[910], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); row = (T3)row_ptr.Target; column = (T4)column_ptr.Target; span = (T5)span_ptr.Target; @@ -161529,7 +164184,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[938], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -161550,7 +164205,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[938], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -161569,7 +164224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[938], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161589,7 +164244,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[940], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -161611,7 +164266,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[940], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -161630,7 +164285,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[940], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161645,7 +164300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -161664,7 +164319,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -161688,7 +164343,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -161712,7 +164367,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -161736,7 +164391,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T5)pixels_ptr.Target; } finally @@ -161758,7 +164413,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -161778,7 +164433,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -161803,7 +164458,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -161828,7 +164483,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -161853,7 +164508,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTextureImageEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[946], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T5)pixels_ptr.Target; } finally @@ -161878,7 +164533,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[947], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -161899,7 +164554,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[947], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -161918,7 +164573,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[947], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161938,7 +164593,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[947], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -161960,7 +164615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[947], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -161979,7 +164634,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureLevelParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[947], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -161998,7 +164653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[948], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162019,7 +164674,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[948], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162038,7 +164693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[948], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162058,7 +164713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[948], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162080,7 +164735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[948], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162099,7 +164754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureLevelParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[948], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162118,7 +164773,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[949], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162139,7 +164794,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[949], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162158,7 +164813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[949], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162178,7 +164833,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[949], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162200,7 +164855,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[949], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162219,7 +164874,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[949], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162238,7 +164893,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[950], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162259,7 +164914,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[950], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162278,7 +164933,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[950], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162298,7 +164953,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[950], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162320,7 +164975,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[950], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162339,7 +164994,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[950], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162359,7 +165014,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[951], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162381,7 +165036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[951], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162400,7 +165055,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[951], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162419,7 +165074,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[952], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162440,7 +165095,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[952], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162459,7 +165114,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[952], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162479,7 +165134,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[952], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -162501,7 +165156,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[952], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -162520,7 +165175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[952], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -162578,7 +165233,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -162641,7 +165296,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ExtTransformFeedback* type_ptr = &type) { - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -162699,7 +165354,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -162752,7 +165407,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -162811,7 +165466,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ActiveAttribType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -162875,7 +165530,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.ExtTransformFeedback* type_ptr = &type) { - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -162933,7 +165588,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -162986,7 +165641,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVaryingEXT((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.ExtTransformFeedback*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[957], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -163001,7 +165656,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); + return InteropHelper.CallReturn(EntryPoints[960], (UInt32)program, (Int32)location); #if DEBUG } #endif @@ -163017,7 +165672,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBufferSizeEXT((UInt32)program, (Int32)location); + return InteropHelper.CallReturn(EntryPoints[960], (UInt32)program, (Int32)location); #if DEBUG } #endif @@ -163032,7 +165687,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); + return InteropHelper.CallReturn(EntryPoints[970], (UInt32)program, (Int32)location); #if DEBUG } #endif @@ -163048,7 +165703,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformOffsetEXT((UInt32)program, (Int32)location); + return InteropHelper.CallReturn(EntryPoints[970], (UInt32)program, (Int32)location); #if DEBUG } #endif @@ -163084,7 +165739,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[974], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -163122,7 +165777,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[974], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -163158,7 +165813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[974], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -163195,7 +165850,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[974], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -163234,7 +165889,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[974], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -163270,7 +165925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformuivEXT((UInt32)program, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[974], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -163289,7 +165944,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[977], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -163310,7 +165965,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[977], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -163329,7 +165984,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data); + InteropHelper.Call(EntryPoints[977], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163349,7 +166004,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[977], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -163371,7 +166026,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (bool* data_ptr = &data) { - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[977], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -163390,7 +166045,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantBooleanvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (bool*)data); + InteropHelper.Call(EntryPoints[977], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163409,7 +166064,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[978], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -163430,7 +166085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[978], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -163449,7 +166104,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data); + InteropHelper.Call(EntryPoints[978], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163469,7 +166124,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[978], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -163491,7 +166146,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* data_ptr = &data) { - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[978], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -163510,7 +166165,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantFloatvEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Single*)data); + InteropHelper.Call(EntryPoints[978], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163529,7 +166184,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[979], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -163550,7 +166205,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[979], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -163569,7 +166224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data); + InteropHelper.Call(EntryPoints[979], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163589,7 +166244,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[979], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); } } #if DEBUG @@ -163611,7 +166266,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* data_ptr = &data) { - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[979], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr); data = *data_ptr; } } @@ -163630,7 +166285,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantIntegervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (Int32*)data); + InteropHelper.Call(EntryPoints[979], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163645,7 +166300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163664,7 +166319,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -163688,7 +166343,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -163712,7 +166367,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -163736,7 +166391,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T2)data_ptr.Target; } finally @@ -163758,7 +166413,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data); #if DEBUG } #endif @@ -163778,7 +166433,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -163803,7 +166458,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -163828,7 +166483,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -163853,7 +166508,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetVariantPointervEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[980], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)value, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T2)data_ptr.Target; } finally @@ -163878,7 +166533,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glGetVertexArrayIntegeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[982], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -163899,7 +166554,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetVertexArrayIntegeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[982], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); param = *param_ptr; } } @@ -163918,7 +166573,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayIntegeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[982], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -163938,7 +166593,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glGetVertexArrayIntegeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[982], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -163960,7 +166615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetVertexArrayIntegeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[982], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); param = *param_ptr; } } @@ -163979,7 +166634,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayIntegeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[982], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -163998,7 +166653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glGetVertexArrayIntegervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[983], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -164019,7 +166674,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetVertexArrayIntegervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[983], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); param = *param_ptr; } } @@ -164038,7 +166693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayIntegervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[983], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -164058,7 +166713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glGetVertexArrayIntegervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[983], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -164080,7 +166735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetVertexArrayIntegervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[983], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr); param = *param_ptr; } } @@ -164099,7 +166754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayIntegervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[983], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -164114,7 +166769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -164133,7 +166788,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164157,7 +166812,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164181,7 +166836,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164205,7 +166860,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); param = (T3)param_ptr.Target; } finally @@ -164227,7 +166882,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -164247,7 +166902,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164272,7 +166927,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164297,7 +166952,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164322,7 +166977,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointeri_vEXT((UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[984], (UInt32)vaobj, (UInt32)index, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); param = (T3)param_ptr.Target; } finally @@ -164343,7 +166998,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -164362,7 +167017,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164386,7 +167041,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164410,7 +167065,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164434,7 +167089,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); param = (T2)param_ptr.Target; } finally @@ -164456,7 +167111,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param); #if DEBUG } #endif @@ -164476,7 +167131,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164501,7 +167156,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164526,7 +167181,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); } finally { @@ -164551,7 +167206,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle param_ptr = GCHandle.Alloc(param, GCHandleType.Pinned); try { - Delegates.glGetVertexArrayPointervEXT((UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[985], (UInt32)vaobj, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)pname, (IntPtr)param_ptr.AddrOfPinnedObject()); param = (T2)param_ptr.Target; } finally @@ -164576,7 +167231,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[995], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -164595,7 +167250,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[995], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (IntPtr)@params); #if DEBUG } #endif @@ -164615,7 +167270,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[995], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -164634,7 +167289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[995], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (IntPtr)@params); #if DEBUG } #endif @@ -164654,7 +167309,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[997], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -164673,7 +167328,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIuivEXT((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[997], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram4)pname, (IntPtr)@params); #if DEBUG } #endif @@ -164692,7 +167347,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribLdvEXT((UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1002], (UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -164713,7 +167368,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribLdvEXT((UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1002], (UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -164732,7 +167387,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLdvEXT((UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1002], (UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (IntPtr)@params); #if DEBUG } #endif @@ -164752,7 +167407,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribLdvEXT((UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1002], (UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -164774,7 +167429,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribLdvEXT((UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1002], (UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -164793,7 +167448,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLdvEXT((UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1002], (UInt32)index, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)pname, (IntPtr)@params); #if DEBUG } #endif @@ -164830,7 +167485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (Int32)width, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + InteropHelper.Call(EntryPoints[1028], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (Int32)width, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); #if DEBUG } #endif @@ -164845,7 +167500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glImportSyncEXT((OpenTK.Graphics.OpenGL.ExtX11SyncObject)external_sync_type, (IntPtr)external_sync, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[1034], (OpenTK.Graphics.OpenGL.ExtX11SyncObject)external_sync_type, (IntPtr)external_sync, (UInt32)flags); #if DEBUG } #endif @@ -164861,7 +167516,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glImportSyncEXT((OpenTK.Graphics.OpenGL.ExtX11SyncObject)external_sync_type, (IntPtr)external_sync, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[1034], (OpenTK.Graphics.OpenGL.ExtX11SyncObject)external_sync_type, (IntPtr)external_sync, (UInt32)flags); #if DEBUG } #endif @@ -164876,7 +167531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexFuncEXT((OpenTK.Graphics.OpenGL.ExtIndexFunc)func, (Single)@ref); + InteropHelper.Call(EntryPoints[1039], (OpenTK.Graphics.OpenGL.ExtIndexFunc)func, (Single)@ref); #if DEBUG } #endif @@ -164891,7 +167546,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexMaterialEXT((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.ExtIndexMaterial)mode); + InteropHelper.Call(EntryPoints[1044], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.ExtIndexMaterial)mode); #if DEBUG } #endif @@ -164923,7 +167578,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexPointerEXT((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1046], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); #if DEBUG } #endif @@ -164959,7 +167614,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerEXT((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1046], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -165000,7 +167655,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerEXT((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1046], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -165041,7 +167696,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerEXT((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1046], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -165082,7 +167737,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerEXT((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1046], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -165103,7 +167758,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + InteropHelper.Call(EntryPoints[1055], (UInt32)res, (UInt32)src, (UInt32)num); #if DEBUG } #endif @@ -165119,7 +167774,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInsertComponentEXT((UInt32)res, (UInt32)src, (UInt32)num); + InteropHelper.Call(EntryPoints[1055], (UInt32)res, (UInt32)src, (UInt32)num); #if DEBUG } #endif @@ -165134,7 +167789,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInsertEventMarkerEXT((Int32)length, (String)marker); + InteropHelper.Call(EntryPoints[1056], (Int32)length, (String)marker); #if DEBUG } #endif @@ -165150,7 +167805,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[1072], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -165167,7 +167822,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[1072], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -165182,7 +167837,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[1072], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -165198,7 +167853,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledIndexedEXT((OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[1072], (OpenTK.Graphics.OpenGL.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -165220,7 +167875,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebufferEXT((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[1076], (UInt32)framebuffer); #if DEBUG } #endif @@ -165243,7 +167898,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebufferEXT((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[1076], (UInt32)framebuffer); #if DEBUG } #endif @@ -165265,7 +167920,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipelineEXT((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[1092], (UInt32)pipeline); #if DEBUG } #endif @@ -165288,7 +167943,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipelineEXT((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[1092], (UInt32)pipeline); #if DEBUG } #endif @@ -165310,7 +167965,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[1096], (UInt32)renderbuffer); #if DEBUG } #endif @@ -165333,7 +167988,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbufferEXT((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[1096], (UInt32)renderbuffer); #if DEBUG } #endif @@ -165355,7 +168010,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureEXT((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[1101], (UInt32)texture); #if DEBUG } #endif @@ -165378,7 +168033,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureEXT((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[1101], (UInt32)texture); #if DEBUG } #endif @@ -165393,7 +168048,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)cap); + return InteropHelper.CallReturn(EntryPoints[1106], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)cap); #if DEBUG } #endif @@ -165409,7 +168064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVariantEnabledEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)cap); + return InteropHelper.CallReturn(EntryPoints[1106], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)cap); #if DEBUG } #endif @@ -165424,7 +168079,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLabelObjectEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1110], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)length, (String)label); #if DEBUG } #endif @@ -165440,7 +168095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLabelObjectEXT((OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1110], (OpenTK.Graphics.OpenGL.ExtDebugLabel)type, (UInt32)@object, (Int32)length, (String)label); #if DEBUG } #endif @@ -165455,7 +168110,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLockArraysEXT((Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[1146], (Int32)first, (Int32)count); #if DEBUG } #endif @@ -165470,7 +168125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapNamedBufferEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)access); + return InteropHelper.CallReturn(EntryPoints[1176], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)access); #if DEBUG } #endif @@ -165486,7 +168141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapNamedBufferEXT((UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)access); + return InteropHelper.CallReturn(EntryPoints[1176], (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)access); #if DEBUG } #endif @@ -165501,7 +168156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapNamedBufferRangeEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL.BufferAccessMask)access); + return InteropHelper.CallReturn(EntryPoints[1177], (UInt32)buffer, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL.BufferAccessMask)access); #if DEBUG } #endif @@ -165517,7 +168172,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapNamedBufferRangeEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL.BufferAccessMask)access); + return InteropHelper.CallReturn(EntryPoints[1177], (UInt32)buffer, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL.BufferAccessMask)access); #if DEBUG } #endif @@ -165532,7 +168187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixFrustumEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); + InteropHelper.Call(EntryPoints[1192], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); #if DEBUG } #endif @@ -165551,7 +168206,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMatrixLoaddEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1197], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165572,7 +168227,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMatrixLoaddEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1197], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165590,7 +168245,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixLoaddEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m); + InteropHelper.Call(EntryPoints[1197], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165609,7 +168264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMatrixLoadfEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1198], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165630,7 +168285,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMatrixLoadfEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1198], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165648,7 +168303,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixLoadfEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m); + InteropHelper.Call(EntryPoints[1198], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165663,7 +168318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixLoadIdentityEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode); + InteropHelper.Call(EntryPoints[1199], (OpenTK.Graphics.OpenGL.MatrixMode)mode); #if DEBUG } #endif @@ -165682,7 +168337,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMatrixLoadTransposedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1200], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165703,7 +168358,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMatrixLoadTransposedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1200], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165721,7 +168376,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixLoadTransposedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m); + InteropHelper.Call(EntryPoints[1200], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165740,7 +168395,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMatrixLoadTransposefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1201], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165761,7 +168416,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMatrixLoadTransposefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1201], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165779,7 +168434,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixLoadTransposefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m); + InteropHelper.Call(EntryPoints[1201], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165798,7 +168453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMatrixMultdEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1203], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165819,7 +168474,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMatrixMultdEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1203], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165837,7 +168492,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMultdEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m); + InteropHelper.Call(EntryPoints[1203], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165856,7 +168511,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMatrixMultfEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1204], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165877,7 +168532,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMatrixMultfEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1204], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165895,7 +168550,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMultfEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m); + InteropHelper.Call(EntryPoints[1204], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165914,7 +168569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = m) { - Delegates.glMatrixMultTransposedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1205], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165935,7 +168590,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* m_ptr = &m) { - Delegates.glMatrixMultTransposedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m_ptr); + InteropHelper.Call(EntryPoints[1205], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165953,7 +168608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMultTransposedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double*)m); + InteropHelper.Call(EntryPoints[1205], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -165972,7 +168627,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = m) { - Delegates.glMatrixMultTransposefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1206], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -165993,7 +168648,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* m_ptr = &m) { - Delegates.glMatrixMultTransposefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m_ptr); + InteropHelper.Call(EntryPoints[1206], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m_ptr); } } #if DEBUG @@ -166011,7 +168666,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixMultTransposefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single*)m); + InteropHelper.Call(EntryPoints[1206], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (IntPtr)m); #if DEBUG } #endif @@ -166026,7 +168681,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixOrthoEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); + InteropHelper.Call(EntryPoints[1207], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)left, (Double)right, (Double)bottom, (Double)top, (Double)zNear, (Double)zFar); #if DEBUG } #endif @@ -166041,7 +168696,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixPopEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode); + InteropHelper.Call(EntryPoints[1208], (OpenTK.Graphics.OpenGL.MatrixMode)mode); #if DEBUG } #endif @@ -166056,7 +168711,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixPushEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode); + InteropHelper.Call(EntryPoints[1209], (OpenTK.Graphics.OpenGL.MatrixMode)mode); #if DEBUG } #endif @@ -166071,7 +168726,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixRotatedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)angle, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1210], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)angle, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -166086,7 +168741,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixRotatefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single)angle, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1211], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single)angle, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -166101,7 +168756,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixScaledEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1212], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -166116,7 +168771,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixScalefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1213], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -166131,7 +168786,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixTranslatedEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1214], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -166146,7 +168801,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMatrixTranslatefEXT((OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1215], (OpenTK.Graphics.OpenGL.MatrixMode)mode, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -166168,7 +168823,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMemoryBarrierEXT((UInt32)barriers); + InteropHelper.Call(EntryPoints[1217], (UInt32)barriers); #if DEBUG } #endif @@ -166191,7 +168846,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMemoryBarrierEXT((UInt32)barriers); + InteropHelper.Call(EntryPoints[1217], (UInt32)barriers); #if DEBUG } #endif @@ -166223,7 +168878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); + InteropHelper.Call(EntryPoints[1219], (OpenTK.Graphics.OpenGL.ExtHistogram)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (bool)sink); #if DEBUG } #endif @@ -166266,7 +168921,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1223], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -166311,7 +168966,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1223], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -166352,7 +169007,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1223], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -166394,7 +169049,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1223], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -166438,7 +169093,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount); + InteropHelper.Call(EntryPoints[1223], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount); } } #if DEBUG @@ -166478,7 +169133,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)primcount); + InteropHelper.Call(EntryPoints[1223], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount); #if DEBUG } #endif @@ -166525,7 +169180,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -166578,7 +169233,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -166636,7 +169291,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -166694,7 +169349,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -166752,7 +169407,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -166807,7 +169462,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -166860,7 +169515,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -166918,7 +169573,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -166976,7 +169631,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167034,7 +169689,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -167086,7 +169741,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -167134,7 +169789,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167187,7 +169842,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167240,7 +169895,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167293,7 +169948,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -167345,7 +170000,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -167397,7 +170052,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167454,7 +170109,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167511,7 +170166,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167568,7 +170223,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -167622,7 +170277,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); } } #if DEBUG @@ -167674,7 +170329,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167731,7 +170386,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167788,7 +170443,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167845,7 +170500,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -167896,7 +170551,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount); #if DEBUG } #endif @@ -167943,7 +170598,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -167995,7 +170650,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -168047,7 +170702,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); } finally { @@ -168099,7 +170754,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsEXT((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); + InteropHelper.Call(EntryPoints[1231], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount); indices = (T3)indices_ptr.Target; } finally @@ -168120,7 +170775,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexBufferEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1239], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -168136,7 +170791,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexBufferEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1239], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -168151,7 +170806,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1336], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -168170,7 +170825,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1336], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -168194,7 +170849,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1336], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -168218,7 +170873,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1336], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -168242,7 +170897,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glMultiTexCoordPointerEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1336], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -168263,7 +170918,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexEnvfEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1337], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single)param); #if DEBUG } #endif @@ -168282,7 +170937,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glMultiTexEnvfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1338], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -168300,7 +170955,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexEnvfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1338], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -168315,7 +170970,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexEnviEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1339], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32)param); #if DEBUG } #endif @@ -168334,7 +170989,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glMultiTexEnvivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1340], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -168352,7 +171007,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexEnvivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1340], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureEnvTarget)target, (OpenTK.Graphics.OpenGL.TextureEnvParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -168367,7 +171022,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexGendEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double)param); + InteropHelper.Call(EntryPoints[1341], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double)param); #if DEBUG } #endif @@ -168386,7 +171041,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glMultiTexGendvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1342], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -168407,7 +171062,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glMultiTexGendvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1342], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -168425,7 +171080,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexGendvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1342], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -168440,7 +171095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexGenfEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[1343], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single)param); #if DEBUG } #endif @@ -168459,7 +171114,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glMultiTexGenfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1344], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -168477,7 +171132,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexGenfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1344], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -168492,7 +171147,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexGeniEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1345], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32)param); #if DEBUG } #endif @@ -168511,7 +171166,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glMultiTexGenivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1346], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -168529,7 +171184,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexGenivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1346], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureCoordName)coord, (OpenTK.Graphics.OpenGL.TextureGenParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -168545,7 +171200,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -168565,7 +171220,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168590,7 +171245,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168615,7 +171270,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168640,7 +171295,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -168661,7 +171316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -168680,7 +171335,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168704,7 +171359,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168728,7 +171383,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168752,7 +171407,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1347], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -168774,7 +171429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -168794,7 +171449,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168819,7 +171474,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168844,7 +171499,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168869,7 +171524,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -168890,7 +171545,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -168909,7 +171564,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168933,7 +171588,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168957,7 +171612,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -168981,7 +171636,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1348], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -169003,7 +171658,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -169023,7 +171678,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169048,7 +171703,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169073,7 +171728,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169098,7 +171753,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -169119,7 +171774,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -169138,7 +171793,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169162,7 +171817,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169186,7 +171841,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169210,7 +171865,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1349], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -169231,7 +171886,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexParameterfEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[1350], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -169250,7 +171905,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glMultiTexParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1351], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -169268,7 +171923,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexParameterfvEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1351], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -169283,7 +171938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexParameteriEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1352], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -169302,7 +171957,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glMultiTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1353], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -169323,7 +171978,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glMultiTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1353], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -169341,7 +171996,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1353], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -169361,7 +172016,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1354], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -169383,7 +172038,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1354], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -169401,7 +172056,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1354], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -169420,7 +172075,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glMultiTexParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1355], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -169438,7 +172093,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexParameterivEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1355], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -169453,7 +172108,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexRenderbufferEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[1356], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -169469,7 +172124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexRenderbufferEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[1356], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -169484,7 +172139,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1357], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -169503,7 +172158,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1357], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169527,7 +172182,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1357], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169551,7 +172206,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1357], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169575,7 +172230,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1357], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T7)pixels_ptr.Target; } finally @@ -169596,7 +172251,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1358], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -169615,7 +172270,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1358], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169639,7 +172294,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1358], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169663,7 +172318,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1358], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169687,7 +172342,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1358], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -169708,7 +172363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[1359], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -169727,7 +172382,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1359], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169751,7 +172406,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1359], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169775,7 +172430,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1359], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -169799,7 +172454,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glMultiTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1359], (OpenTK.Graphics.OpenGL.TextureUnit)texunit, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T11)pixels_ptr.Target; } finally @@ -169820,7 +172475,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); #if DEBUG } #endif @@ -169839,7 +172494,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); } finally { @@ -169863,7 +172518,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); } finally { @@ -169887,7 +172542,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); } finally { @@ -169911,7 +172566,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); data = (T2)data_ptr.Target; } finally @@ -169933,7 +172588,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); #if DEBUG } #endif @@ -169953,7 +172608,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); } finally { @@ -169978,7 +172633,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); } finally { @@ -170003,7 +172658,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); } finally { @@ -170028,7 +172683,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferDataEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); + InteropHelper.Call(EntryPoints[1368], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)usage); data = (T2)data_ptr.Target; } finally @@ -170049,7 +172704,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data, (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data, (UInt32)flags); #if DEBUG } #endif @@ -170068,7 +172723,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); } finally { @@ -170092,7 +172747,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); } finally { @@ -170116,7 +172771,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); } finally { @@ -170140,7 +172795,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); data = (T2)data_ptr.Target; } finally @@ -170162,7 +172817,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data, (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data, (UInt32)flags); #if DEBUG } #endif @@ -170182,7 +172837,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); } finally { @@ -170207,7 +172862,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); } finally { @@ -170232,7 +172887,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); } finally { @@ -170257,7 +172912,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferStorageEXT((UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); + InteropHelper.Call(EntryPoints[1369], (UInt32)buffer, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (UInt32)flags); data = (T2)data_ptr.Target; } finally @@ -170278,7 +172933,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -170297,7 +172952,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -170321,7 +172976,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -170345,7 +173000,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -170369,7 +173024,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -170391,7 +173046,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -170411,7 +173066,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -170436,7 +173091,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -170461,7 +173116,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -170486,7 +173141,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glNamedBufferSubDataEXT((UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1370], (UInt32)buffer, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -170507,7 +173162,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedCopyBufferSubDataEXT((UInt32)readBuffer, (UInt32)writeBuffer, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[1371], (UInt32)readBuffer, (UInt32)writeBuffer, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -170523,7 +173178,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedCopyBufferSubDataEXT((UInt32)readBuffer, (UInt32)writeBuffer, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[1371], (UInt32)readBuffer, (UInt32)writeBuffer, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -170538,7 +173193,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferParameteriEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1372], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -170554,7 +173209,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferParameteriEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1372], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -170569,7 +173224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferRenderbufferEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[1373], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -170585,7 +173240,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferRenderbufferEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[1373], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -170600,7 +173255,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTexture1DEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1374], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -170616,7 +173271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTexture1DEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1374], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -170631,7 +173286,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTexture2DEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1375], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -170647,7 +173302,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTexture2DEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1375], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -170662,7 +173317,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTexture3DEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[1376], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -170678,7 +173333,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTexture3DEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[1376], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -170693,7 +173348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTextureEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1377], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -170709,7 +173364,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTextureEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[1377], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -170724,7 +173379,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTextureFaceEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + InteropHelper.Call(EntryPoints[1378], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); #if DEBUG } #endif @@ -170740,7 +173395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTextureFaceEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); + InteropHelper.Call(EntryPoints[1378], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL.TextureTarget)face); #if DEBUG } #endif @@ -170755,7 +173410,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTextureLayerEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[1379], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -170771,7 +173426,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedFramebufferTextureLayerEXT((UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[1379], (UInt32)framebuffer, (OpenTK.Graphics.OpenGL.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -170786,7 +173441,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4dEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1380], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -170802,7 +173457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4dEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1380], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -170821,7 +173476,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1381], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -170842,7 +173497,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1381], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -170860,7 +173515,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[1381], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -170880,7 +173535,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1381], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -170902,7 +173557,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1381], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -170920,7 +173575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4dvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Double*)@params); + InteropHelper.Call(EntryPoints[1381], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -170935,7 +173590,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4fEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1382], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -170951,7 +173606,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4fEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1382], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -170970,7 +173625,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1383], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -170991,7 +173646,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1383], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171009,7 +173664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[1383], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -171029,7 +173684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1383], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171051,7 +173706,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1383], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171069,7 +173724,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameter4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Single*)@params); + InteropHelper.Call(EntryPoints[1383], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -171084,7 +173739,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameterI4iEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1384], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -171100,7 +173755,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameterI4iEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1384], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -171119,7 +173774,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1385], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171140,7 +173795,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1385], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171158,7 +173813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[1385], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -171178,7 +173833,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1385], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171200,7 +173855,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1385], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171218,7 +173873,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameterI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[1385], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -171234,7 +173889,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameterI4uiEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[1386], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -171254,7 +173909,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1387], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171276,7 +173931,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1387], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -171294,7 +173949,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameterI4uivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1387], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -171313,7 +173968,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1388], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171334,7 +173989,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1388], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171352,7 +174007,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1388], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -171372,7 +174027,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1388], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171394,7 +174049,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1388], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171412,7 +174067,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParameters4fvEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1388], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -171431,7 +174086,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1389], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171452,7 +174107,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1389], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171470,7 +174125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1389], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -171490,7 +174145,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1389], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171512,7 +174167,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1389], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171530,7 +174185,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParametersI4ivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1389], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -171550,7 +174205,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1390], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171572,7 +174227,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1390], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -171590,7 +174245,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramLocalParametersI4uivEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1390], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -171605,7 +174260,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string); #if DEBUG } #endif @@ -171624,7 +174279,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -171648,7 +174303,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -171672,7 +174327,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -171696,7 +174351,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T4)@string_ptr.Target; } finally @@ -171718,7 +174373,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string); #if DEBUG } #endif @@ -171738,7 +174393,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -171763,7 +174418,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -171788,7 +174443,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -171813,7 +174468,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glNamedProgramStringEXT((UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1391], (UInt32)program, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)format, (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T4)@string_ptr.Target; } finally @@ -171834,7 +174489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedRenderbufferStorageEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1392], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -171850,7 +174505,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedRenderbufferStorageEXT((UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1392], (UInt32)renderbuffer, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -171865,7 +174520,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedRenderbufferStorageMultisampleCoverageEXT((UInt32)renderbuffer, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1393], (UInt32)renderbuffer, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -171881,7 +174536,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedRenderbufferStorageMultisampleCoverageEXT((UInt32)renderbuffer, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1393], (UInt32)renderbuffer, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -171896,7 +174551,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedRenderbufferStorageMultisampleEXT((UInt32)renderbuffer, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1394], (UInt32)renderbuffer, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -171912,7 +174567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedRenderbufferStorageMultisampleEXT((UInt32)renderbuffer, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1394], (UInt32)renderbuffer, (Int32)samples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -171944,7 +174599,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1418], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); #if DEBUG } #endif @@ -171980,7 +174635,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1418], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -172021,7 +174676,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1418], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -172062,7 +174717,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1418], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -172103,7 +174758,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1418], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -172124,7 +174779,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransformParameterfEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Single)param); + InteropHelper.Call(EntryPoints[1481], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Single)param); #if DEBUG } #endif @@ -172140,7 +174795,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransformParameterfvEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1482], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -172155,7 +174810,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransformParameteriEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1483], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Int32)param); #if DEBUG } #endif @@ -172171,7 +174826,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransformParameterivEXT((OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1484], (OpenTK.Graphics.OpenGL.ExtPixelTransform)target, (OpenTK.Graphics.OpenGL.ExtPixelTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -172203,7 +174858,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfEXT((OpenTK.Graphics.OpenGL.ExtPointParameters)pname, (Single)param); + InteropHelper.Call(EntryPoints[1492], (OpenTK.Graphics.OpenGL.ExtPointParameters)pname, (Single)param); #if DEBUG } #endif @@ -172239,7 +174894,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfvEXT((OpenTK.Graphics.OpenGL.ExtPointParameters)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1496], (OpenTK.Graphics.OpenGL.ExtPointParameters)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -172274,7 +174929,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfvEXT((OpenTK.Graphics.OpenGL.ExtPointParameters)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1496], (OpenTK.Graphics.OpenGL.ExtPointParameters)pname, (IntPtr)@params); #if DEBUG } #endif @@ -172301,7 +174956,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffsetEXT((Single)factor, (Single)bias); + InteropHelper.Call(EntryPoints[1510], (Single)factor, (Single)bias); #if DEBUG } #endif @@ -172316,7 +174971,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopGroupMarkerEXT(); + InteropHelper.Call(EntryPoints[1517]); #if DEBUG } #endif @@ -172353,7 +175008,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = textures) fixed (Single* priorities_ptr = priorities) { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1526], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -172392,7 +175047,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = &textures) fixed (Single* priorities_ptr = &priorities) { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1526], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -172427,7 +175082,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); + InteropHelper.Call(EntryPoints[1526], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -172465,7 +175120,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = textures) fixed (Single* priorities_ptr = priorities) { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1526], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -172505,7 +175160,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = &textures) fixed (Single* priorities_ptr = &priorities) { - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures_ptr, (Single*)priorities_ptr); + InteropHelper.Call(EntryPoints[1526], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -172540,7 +175195,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTexturesEXT((Int32)n, (UInt32*)textures, (Single*)priorities); + InteropHelper.Call(EntryPoints[1526], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -172559,7 +175214,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1540], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172580,7 +175235,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1540], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172598,7 +175253,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1540], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -172618,7 +175273,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1540], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172640,7 +175295,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1540], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172658,7 +175313,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1540], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -172677,7 +175332,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1551], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172698,7 +175353,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1551], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172716,7 +175371,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1551], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -172736,7 +175391,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1551], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172758,7 +175413,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1551], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -172776,7 +175431,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameters4fvEXT((OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1551], (OpenTK.Graphics.OpenGL.ExtGpuProgramParameters)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -172808,7 +175463,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1564], (UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); #if DEBUG } #endif @@ -172841,7 +175496,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteriEXT((UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1564], (UInt32)program, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32)value); #if DEBUG } #endif @@ -172891,7 +175546,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dEXT((UInt32)program, (Int32)location, (Double)x); + InteropHelper.Call(EntryPoints[1570], (UInt32)program, (Int32)location, (Double)x); #if DEBUG } #endif @@ -172942,7 +175597,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dEXT((UInt32)program, (Int32)location, (Double)x); + InteropHelper.Call(EntryPoints[1570], (UInt32)program, (Int32)location, (Double)x); #if DEBUG } #endif @@ -172996,7 +175651,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform1dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1572], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173052,7 +175707,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform1dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1572], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173105,7 +175760,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1572], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -173160,7 +175815,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform1dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1572], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173217,7 +175872,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform1dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1572], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173270,7 +175925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1572], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -173320,7 +175975,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[1574], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -173371,7 +176026,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fEXT((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[1574], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -173425,7 +176080,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1576], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173481,7 +176136,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1576], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173534,7 +176189,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1576], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -173589,7 +176244,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1576], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173646,7 +176301,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1576], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173699,7 +176354,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1576], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -173749,7 +176404,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[1580], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -173800,7 +176455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iEXT((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[1580], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -173854,7 +176509,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1582], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173910,7 +176565,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1582], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -173963,7 +176618,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1582], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -174018,7 +176673,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1582], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174075,7 +176730,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1582], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174128,7 +176783,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1582], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -174179,7 +176834,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uiEXT((UInt32)program, (Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[1586], (UInt32)program, (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -174234,7 +176889,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1588], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174291,7 +176946,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1588], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174344,7 +176999,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1588], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -174394,7 +177049,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dEXT((UInt32)program, (Int32)location, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[1590], (UInt32)program, (Int32)location, (Double)x, (Double)y); #if DEBUG } #endif @@ -174445,7 +177100,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dEXT((UInt32)program, (Int32)location, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[1590], (UInt32)program, (Int32)location, (Double)x, (Double)y); #if DEBUG } #endif @@ -174499,7 +177154,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform2dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1592], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174555,7 +177210,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform2dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1592], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174608,7 +177263,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1592], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -174663,7 +177318,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform2dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1592], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174720,7 +177375,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform2dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1592], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174773,7 +177428,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1592], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -174823,7 +177478,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[1594], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -174874,7 +177529,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[1594], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -174928,7 +177583,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1596], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -174984,7 +177639,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1596], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175037,7 +177692,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1596], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -175092,7 +177747,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1596], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175149,7 +177804,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1596], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175202,7 +177857,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1596], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -175252,7 +177907,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[1600], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -175303,7 +177958,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[1600], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -175357,7 +178012,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1602], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175410,7 +178065,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1602], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -175465,7 +178120,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1602], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175518,7 +178173,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1602], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -175569,7 +178224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[1606], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -175624,7 +178279,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1608], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175681,7 +178336,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1608], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175734,7 +178389,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1608], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -175784,7 +178439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dEXT((UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1610], (UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -175835,7 +178490,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dEXT((UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[1610], (UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -175889,7 +178544,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform3dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1612], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175945,7 +178600,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform3dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1612], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -175998,7 +178653,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1612], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -176053,7 +178708,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform3dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1612], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176110,7 +178765,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform3dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1612], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176163,7 +178818,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1612], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -176213,7 +178868,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[1614], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -176264,7 +178919,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[1614], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -176318,7 +178973,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1616], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176374,7 +179029,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1616], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176427,7 +179082,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1616], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -176482,7 +179137,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1616], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176539,7 +179194,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1616], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176592,7 +179247,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1616], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -176642,7 +179297,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[1620], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -176693,7 +179348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[1620], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -176747,7 +179402,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1622], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176803,7 +179458,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1622], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176856,7 +179511,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1622], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -176911,7 +179566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1622], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -176968,7 +179623,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1622], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177021,7 +179676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1622], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -177072,7 +179727,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[1626], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -177127,7 +179782,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1628], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177184,7 +179839,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1628], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177237,7 +179892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1628], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -177287,7 +179942,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dEXT((UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1630], (UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -177338,7 +179993,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dEXT((UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1630], (UInt32)program, (Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -177392,7 +180047,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform4dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1632], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177448,7 +180103,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform4dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1632], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177501,7 +180156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1632], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -177556,7 +180211,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform4dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1632], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177613,7 +180268,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform4dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1632], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177666,7 +180321,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dvEXT((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[1632], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -177716,7 +180371,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[1634], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -177767,7 +180422,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fEXT((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[1634], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -177821,7 +180476,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1636], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177877,7 +180532,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1636], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -177930,7 +180585,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1636], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -177985,7 +180640,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1636], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178042,7 +180697,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1636], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178095,7 +180750,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fvEXT((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[1636], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -178145,7 +180800,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[1640], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -178196,7 +180851,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iEXT((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[1640], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -178250,7 +180905,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1642], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178306,7 +180961,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1642], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178359,7 +181014,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1642], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -178414,7 +181069,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1642], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178471,7 +181126,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1642], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178524,7 +181179,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ivEXT((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[1642], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -178575,7 +181230,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uiEXT((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[1646], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -178630,7 +181285,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1648], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178687,7 +181342,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[1648], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -178740,7 +181395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uivEXT((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[1648], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -178759,7 +181414,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1654], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178780,7 +181435,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1654], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178798,7 +181453,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1654], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -178818,7 +181473,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1654], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178840,7 +181495,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1654], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178858,7 +181513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1654], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -178877,7 +181532,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1656], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178898,7 +181553,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1656], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178916,7 +181571,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1656], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -178936,7 +181591,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1656], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178958,7 +181613,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1656], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -178976,7 +181631,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1656], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -178995,7 +181650,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1658], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179016,7 +181671,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1658], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179034,7 +181689,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1658], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179054,7 +181709,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1658], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179076,7 +181731,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1658], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179094,7 +181749,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1658], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179113,7 +181768,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1660], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179134,7 +181789,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1660], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179152,7 +181807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1660], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179172,7 +181827,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1660], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179194,7 +181849,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1660], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179212,7 +181867,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1660], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179231,7 +181886,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1662], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179252,7 +181907,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1662], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179270,7 +181925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1662], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179290,7 +181945,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1662], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179312,7 +181967,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1662], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179330,7 +181985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1662], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179349,7 +182004,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1664], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179370,7 +182025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1664], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179388,7 +182043,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1664], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179408,7 +182063,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1664], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179430,7 +182085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1664], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179448,7 +182103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1664], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179467,7 +182122,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1666], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179488,7 +182143,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1666], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179506,7 +182161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1666], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179526,7 +182181,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1666], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179548,7 +182203,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1666], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179566,7 +182221,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1666], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179585,7 +182240,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1668], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179606,7 +182261,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1668], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179624,7 +182279,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1668], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179644,7 +182299,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1668], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179666,7 +182321,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1668], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179684,7 +182339,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1668], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179703,7 +182358,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1670], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179724,7 +182379,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1670], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179742,7 +182397,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1670], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179762,7 +182417,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1670], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179784,7 +182439,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1670], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179802,7 +182457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1670], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179821,7 +182476,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1672], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179842,7 +182497,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1672], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179860,7 +182515,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1672], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179880,7 +182535,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1672], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179902,7 +182557,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1672], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179920,7 +182575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1672], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179939,7 +182594,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1674], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179960,7 +182615,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1674], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -179978,7 +182633,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1674], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -179998,7 +182653,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1674], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180020,7 +182675,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1674], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180038,7 +182693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1674], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180057,7 +182712,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1676], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180078,7 +182733,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1676], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180096,7 +182751,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1676], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180116,7 +182771,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1676], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180138,7 +182793,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1676], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180156,7 +182811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1676], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180175,7 +182830,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1678], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180196,7 +182851,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1678], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180214,7 +182869,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1678], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180234,7 +182889,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1678], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180256,7 +182911,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1678], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180274,7 +182929,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1678], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180293,7 +182948,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1680], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180314,7 +182969,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1680], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180332,7 +182987,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1680], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180352,7 +183007,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1680], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180374,7 +183029,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1680], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180392,7 +183047,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1680], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180411,7 +183066,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1682], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180432,7 +183087,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1682], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180450,7 +183105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1682], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180470,7 +183125,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1682], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180492,7 +183147,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1682], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180510,7 +183165,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1682], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180529,7 +183184,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1684], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180550,7 +183205,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1684], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180568,7 +183223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1684], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180588,7 +183243,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1684], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180610,7 +183265,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1684], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180628,7 +183283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1684], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180647,7 +183302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1686], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180668,7 +183323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1686], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180686,7 +183341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1686], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180706,7 +183361,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1686], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180728,7 +183383,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[1686], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180746,7 +183401,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3dvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[1686], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180765,7 +183420,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1688], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180786,7 +183441,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1688], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180804,7 +183459,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1688], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180824,7 +183479,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1688], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180846,7 +183501,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1688], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -180864,7 +183519,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fvEXT((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[1688], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -180886,7 +183541,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProvokingVertexEXT((OpenTK.Graphics.OpenGL.ExtProvokingVertex)mode); + InteropHelper.Call(EntryPoints[1693], (OpenTK.Graphics.OpenGL.ExtProvokingVertex)mode); #if DEBUG } #endif @@ -180901,7 +183556,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushClientAttribDefaultEXT((OpenTK.Graphics.OpenGL.ClientAttribMask)mask); + InteropHelper.Call(EntryPoints[1696], (OpenTK.Graphics.OpenGL.ClientAttribMask)mask); #if DEBUG } #endif @@ -180916,7 +183571,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushGroupMarkerEXT((Int32)length, (String)marker); + InteropHelper.Call(EntryPoints[1699], (Int32)length, (String)marker); #if DEBUG } #endif @@ -180953,7 +183608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1751], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -180996,7 +183651,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1754], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -181038,7 +183693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleEXT((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1754], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -181060,7 +183715,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResetHistogramEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target); + InteropHelper.Call(EntryPoints[1781], (OpenTK.Graphics.OpenGL.ExtHistogram)target); #if DEBUG } #endif @@ -181082,7 +183737,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResetMinmaxEXT((OpenTK.Graphics.OpenGL.ExtHistogram)target); + InteropHelper.Call(EntryPoints[1783], (OpenTK.Graphics.OpenGL.ExtHistogram)target); #if DEBUG } #endif @@ -181097,7 +183752,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaskEXT((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[1795], (Single)value, (bool)invert); #if DEBUG } #endif @@ -181112,7 +183767,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplePatternEXT((OpenTK.Graphics.OpenGL.ExtMultisample)pattern); + InteropHelper.Call(EntryPoints[1799], (OpenTK.Graphics.OpenGL.ExtMultisample)pattern); #if DEBUG } #endif @@ -181135,7 +183790,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3bEXT((SByte)red, (SByte)green, (SByte)blue); + InteropHelper.Call(EntryPoints[1815], (SByte)red, (SByte)green, (SByte)blue); #if DEBUG } #endif @@ -181162,7 +183817,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1817], (IntPtr)v_ptr); } } #if DEBUG @@ -181191,7 +183846,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glSecondaryColor3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1817], (IntPtr)v_ptr); } } #if DEBUG @@ -181216,7 +183871,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3bvEXT((SByte*)v); + InteropHelper.Call(EntryPoints[1817], (IntPtr)v); #if DEBUG } #endif @@ -181238,7 +183893,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3dEXT((Double)red, (Double)green, (Double)blue); + InteropHelper.Call(EntryPoints[1819], (Double)red, (Double)green, (Double)blue); #if DEBUG } #endif @@ -181264,7 +183919,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glSecondaryColor3dvEXT((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1821], (IntPtr)v_ptr); } } #if DEBUG @@ -181292,7 +183947,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glSecondaryColor3dvEXT((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1821], (IntPtr)v_ptr); } } #if DEBUG @@ -181317,7 +183972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3dvEXT((Double*)v); + InteropHelper.Call(EntryPoints[1821], (IntPtr)v); #if DEBUG } #endif @@ -181339,7 +183994,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3fEXT((Single)red, (Single)green, (Single)blue); + InteropHelper.Call(EntryPoints[1823], (Single)red, (Single)green, (Single)blue); #if DEBUG } #endif @@ -181365,7 +184020,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glSecondaryColor3fvEXT((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1825], (IntPtr)v_ptr); } } #if DEBUG @@ -181393,7 +184048,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glSecondaryColor3fvEXT((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1825], (IntPtr)v_ptr); } } #if DEBUG @@ -181418,7 +184073,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3fvEXT((Single*)v); + InteropHelper.Call(EntryPoints[1825], (IntPtr)v); #if DEBUG } #endif @@ -181440,7 +184095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3iEXT((Int32)red, (Int32)green, (Int32)blue); + InteropHelper.Call(EntryPoints[1829], (Int32)red, (Int32)green, (Int32)blue); #if DEBUG } #endif @@ -181466,7 +184121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glSecondaryColor3ivEXT((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1831], (IntPtr)v_ptr); } } #if DEBUG @@ -181494,7 +184149,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glSecondaryColor3ivEXT((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1831], (IntPtr)v_ptr); } } #if DEBUG @@ -181519,7 +184174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3ivEXT((Int32*)v); + InteropHelper.Call(EntryPoints[1831], (IntPtr)v); #if DEBUG } #endif @@ -181541,7 +184196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3sEXT((Int16)red, (Int16)green, (Int16)blue); + InteropHelper.Call(EntryPoints[1833], (Int16)red, (Int16)green, (Int16)blue); #if DEBUG } #endif @@ -181567,7 +184222,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glSecondaryColor3svEXT((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1835], (IntPtr)v_ptr); } } #if DEBUG @@ -181595,7 +184250,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glSecondaryColor3svEXT((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1835], (IntPtr)v_ptr); } } #if DEBUG @@ -181620,7 +184275,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3svEXT((Int16*)v); + InteropHelper.Call(EntryPoints[1835], (IntPtr)v); #if DEBUG } #endif @@ -181642,7 +184297,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3ubEXT((Byte)red, (Byte)green, (Byte)blue); + InteropHelper.Call(EntryPoints[1837], (Byte)red, (Byte)green, (Byte)blue); #if DEBUG } #endif @@ -181668,7 +184323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glSecondaryColor3ubvEXT((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[1839], (IntPtr)v_ptr); } } #if DEBUG @@ -181696,7 +184351,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glSecondaryColor3ubvEXT((Byte*)v_ptr); + InteropHelper.Call(EntryPoints[1839], (IntPtr)v_ptr); } } #if DEBUG @@ -181721,7 +184376,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3ubvEXT((Byte*)v); + InteropHelper.Call(EntryPoints[1839], (IntPtr)v); #if DEBUG } #endif @@ -181744,7 +184399,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3uiEXT((UInt32)red, (UInt32)green, (UInt32)blue); + InteropHelper.Call(EntryPoints[1841], (UInt32)red, (UInt32)green, (UInt32)blue); #if DEBUG } #endif @@ -181771,7 +184426,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[1843], (IntPtr)v_ptr); } } #if DEBUG @@ -181800,7 +184455,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glSecondaryColor3uivEXT((UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[1843], (IntPtr)v_ptr); } } #if DEBUG @@ -181825,7 +184480,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3uivEXT((UInt32*)v); + InteropHelper.Call(EntryPoints[1843], (IntPtr)v); #if DEBUG } #endif @@ -181848,7 +184503,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3usEXT((UInt16)red, (UInt16)green, (UInt16)blue); + InteropHelper.Call(EntryPoints[1845], (UInt16)red, (UInt16)green, (UInt16)blue); #if DEBUG } #endif @@ -181875,7 +184530,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[1847], (IntPtr)v_ptr); } } #if DEBUG @@ -181904,7 +184559,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glSecondaryColor3usvEXT((UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[1847], (IntPtr)v_ptr); } } #if DEBUG @@ -181929,7 +184584,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3usvEXT((UInt16*)v); + InteropHelper.Call(EntryPoints[1847], (IntPtr)v); #if DEBUG } #endif @@ -181966,7 +184621,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1852], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -182007,7 +184662,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1852], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -182053,7 +184708,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1852], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -182099,7 +184754,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1852], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -182145,7 +184800,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1852], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -182208,7 +184863,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column); + InteropHelper.Call(EntryPoints[1857], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column); #if DEBUG } #endif @@ -182271,7 +184926,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1857], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -182340,7 +184995,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1857], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -182409,7 +185064,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1857], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -182478,7 +185133,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1857], (OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); row = (T6)row_ptr.Target; column = (T7)column_ptr.Target; } @@ -182501,7 +185156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); #if DEBUG } #endif @@ -182520,7 +185175,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182544,7 +185199,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182568,7 +185223,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182592,7 +185247,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); addr = (T2)addr_ptr.Target; } finally @@ -182614,7 +185269,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); #if DEBUG } #endif @@ -182634,7 +185289,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182659,7 +185314,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182684,7 +185339,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182709,7 +185364,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetInvariantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1861], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); addr = (T2)addr_ptr.Target; } finally @@ -182730,7 +185385,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); #if DEBUG } #endif @@ -182749,7 +185404,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182773,7 +185428,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182797,7 +185452,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182821,7 +185476,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); addr = (T2)addr_ptr.Target; } finally @@ -182843,7 +185498,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr); #if DEBUG } #endif @@ -182863,7 +185518,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182888,7 +185543,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182913,7 +185568,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -182938,7 +185593,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glSetLocalConstantEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1862], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (IntPtr)addr_ptr.AddrOfPinnedObject()); addr = (T2)addr_ptr.Target; } finally @@ -182959,7 +185614,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderOp1EXT((OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1); + InteropHelper.Call(EntryPoints[1866], (OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1); #if DEBUG } #endif @@ -182975,7 +185630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderOp1EXT((OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1); + InteropHelper.Call(EntryPoints[1866], (OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1); #if DEBUG } #endif @@ -182990,7 +185645,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderOp2EXT((OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); + InteropHelper.Call(EntryPoints[1867], (OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); #if DEBUG } #endif @@ -183006,7 +185661,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderOp2EXT((OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); + InteropHelper.Call(EntryPoints[1867], (OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2); #if DEBUG } #endif @@ -183021,7 +185676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderOp3EXT((OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); + InteropHelper.Call(EntryPoints[1868], (OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); #if DEBUG } #endif @@ -183037,7 +185692,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderOp3EXT((OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); + InteropHelper.Call(EntryPoints[1868], (OpenTK.Graphics.OpenGL.ExtVertexShader)op, (UInt32)res, (UInt32)arg1, (UInt32)arg2, (UInt32)arg3); #if DEBUG } #endif @@ -183052,7 +185707,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); + InteropHelper.Call(EntryPoints[1878], (Int32)stencilTagBits, (UInt32)stencilClearTag); #if DEBUG } #endif @@ -183068,7 +185723,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilClearTagEXT((Int32)stencilTagBits, (UInt32)stencilClearTag); + InteropHelper.Call(EntryPoints[1878], (Int32)stencilTagBits, (UInt32)stencilClearTag); #if DEBUG } #endif @@ -183083,7 +185738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); + InteropHelper.Call(EntryPoints[1894], (UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); #if DEBUG } #endif @@ -183099,7 +185754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSwizzleEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); + InteropHelper.Call(EntryPoints[1894], (UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); #if DEBUG } #endif @@ -183114,7 +185769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz); + InteropHelper.Call(EntryPoints[1897], (SByte)tx, (SByte)ty, (SByte)tz); #if DEBUG } #endif @@ -183130,7 +185785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3bEXT((SByte)tx, (SByte)ty, (SByte)tz); + InteropHelper.Call(EntryPoints[1897], (SByte)tx, (SByte)ty, (SByte)tz); #if DEBUG } #endif @@ -183149,7 +185804,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glTangent3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1898], (IntPtr)v_ptr); } } #if DEBUG @@ -183170,7 +185825,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glTangent3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1898], (IntPtr)v_ptr); } } #if DEBUG @@ -183188,7 +185843,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3bvEXT((SByte*)v); + InteropHelper.Call(EntryPoints[1898], (IntPtr)v); #if DEBUG } #endif @@ -183208,7 +185863,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glTangent3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1898], (IntPtr)v_ptr); } } #if DEBUG @@ -183230,7 +185885,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glTangent3bvEXT((SByte*)v_ptr); + InteropHelper.Call(EntryPoints[1898], (IntPtr)v_ptr); } } #if DEBUG @@ -183248,7 +185903,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3bvEXT((SByte*)v); + InteropHelper.Call(EntryPoints[1898], (IntPtr)v); #if DEBUG } #endif @@ -183263,7 +185918,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3dEXT((Double)tx, (Double)ty, (Double)tz); + InteropHelper.Call(EntryPoints[1899], (Double)tx, (Double)ty, (Double)tz); #if DEBUG } #endif @@ -183282,7 +185937,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glTangent3dvEXT((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1900], (IntPtr)v_ptr); } } #if DEBUG @@ -183303,7 +185958,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glTangent3dvEXT((Double*)v_ptr); + InteropHelper.Call(EntryPoints[1900], (IntPtr)v_ptr); } } #if DEBUG @@ -183321,7 +185976,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3dvEXT((Double*)v); + InteropHelper.Call(EntryPoints[1900], (IntPtr)v); #if DEBUG } #endif @@ -183336,7 +185991,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3fEXT((Single)tx, (Single)ty, (Single)tz); + InteropHelper.Call(EntryPoints[1901], (Single)tx, (Single)ty, (Single)tz); #if DEBUG } #endif @@ -183355,7 +186010,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glTangent3fvEXT((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1902], (IntPtr)v_ptr); } } #if DEBUG @@ -183376,7 +186031,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glTangent3fvEXT((Single*)v_ptr); + InteropHelper.Call(EntryPoints[1902], (IntPtr)v_ptr); } } #if DEBUG @@ -183394,7 +186049,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3fvEXT((Single*)v); + InteropHelper.Call(EntryPoints[1902], (IntPtr)v); #if DEBUG } #endif @@ -183409,7 +186064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3iEXT((Int32)tx, (Int32)ty, (Int32)tz); + InteropHelper.Call(EntryPoints[1903], (Int32)tx, (Int32)ty, (Int32)tz); #if DEBUG } #endif @@ -183428,7 +186083,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glTangent3ivEXT((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1904], (IntPtr)v_ptr); } } #if DEBUG @@ -183449,7 +186104,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glTangent3ivEXT((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[1904], (IntPtr)v_ptr); } } #if DEBUG @@ -183467,7 +186122,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3ivEXT((Int32*)v); + InteropHelper.Call(EntryPoints[1904], (IntPtr)v); #if DEBUG } #endif @@ -183482,7 +186137,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3sEXT((Int16)tx, (Int16)ty, (Int16)tz); + InteropHelper.Call(EntryPoints[1905], (Int16)tx, (Int16)ty, (Int16)tz); #if DEBUG } #endif @@ -183501,7 +186156,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glTangent3svEXT((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1906], (IntPtr)v_ptr); } } #if DEBUG @@ -183522,7 +186177,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glTangent3svEXT((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[1906], (IntPtr)v_ptr); } } #if DEBUG @@ -183540,7 +186195,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangent3svEXT((Int16*)v); + InteropHelper.Call(EntryPoints[1906], (IntPtr)v); #if DEBUG } #endif @@ -183555,7 +186210,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTangentPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1907], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -183574,7 +186229,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTangentPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1907], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -183598,7 +186253,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTangentPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1907], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -183622,7 +186277,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTangentPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1907], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -183646,7 +186301,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTangentPointerEXT((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1907], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -183684,7 +186339,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtTextureBufferObject)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1916], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtTextureBufferObject)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -183717,7 +186372,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtTextureBufferObject)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[1916], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtTextureBufferObject)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -183754,7 +186409,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2000], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); #if DEBUG } #endif @@ -183795,7 +186450,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2000], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -183841,7 +186496,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2000], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -183887,7 +186542,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2000], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -183933,7 +186588,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2000], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -184006,7 +186661,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2023], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -184077,7 +186732,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2023], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184153,7 +186808,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2023], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184229,7 +186884,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2023], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184305,7 +186960,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2023], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -184330,7 +186985,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2032], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -184351,7 +187006,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2032], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -184369,7 +187024,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterIivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2032], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -184389,7 +187044,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[2034], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -184411,7 +187066,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[2034], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -184429,7 +187084,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterIuivEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[2034], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -184481,7 +187136,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2046], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -184537,7 +187192,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2046], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184598,7 +187253,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2046], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184659,7 +187314,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2046], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184720,7 +187375,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2046], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -184788,7 +187443,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2048], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -184854,7 +187509,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2048], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184925,7 +187580,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2048], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -184996,7 +187651,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2048], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185067,7 +187722,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2048], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -185145,7 +187800,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2050], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -185221,7 +187876,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2050], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185302,7 +187957,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2050], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185383,7 +188038,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2050], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185464,7 +188119,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3DEXT((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2050], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -185485,7 +188140,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureBufferEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[2053], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -185501,7 +188156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureBufferEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[2053], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -185516,7 +188171,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureBufferRangeEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[2054], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -185532,7 +188187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureBufferRangeEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[2054], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -185548,7 +188203,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -185568,7 +188223,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185593,7 +188248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185618,7 +188273,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185643,7 +188298,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -185664,7 +188319,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -185683,7 +188338,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185707,7 +188362,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185731,7 +188386,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185755,7 +188410,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -185778,7 +188433,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -185799,7 +188454,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185825,7 +188480,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185851,7 +188506,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185877,7 +188532,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -185899,7 +188554,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -185919,7 +188574,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185944,7 +188599,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185969,7 +188624,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -185994,7 +188649,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2056], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -186016,7 +188671,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186036,7 +188691,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186061,7 +188716,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186086,7 +188741,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186111,7 +188766,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -186132,7 +188787,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186151,7 +188806,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186175,7 +188830,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186199,7 +188854,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186223,7 +188878,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -186246,7 +188901,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186267,7 +188922,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186293,7 +188948,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186319,7 +188974,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186345,7 +189000,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -186367,7 +189022,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186387,7 +189042,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186412,7 +189067,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186437,7 +189092,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186462,7 +189117,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2057], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -186484,7 +189139,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186504,7 +189159,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186529,7 +189184,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186554,7 +189209,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186579,7 +189234,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -186600,7 +189255,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186619,7 +189274,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186643,7 +189298,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186667,7 +189322,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186691,7 +189346,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -186714,7 +189369,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186735,7 +189390,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186761,7 +189416,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186787,7 +189442,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186813,7 +189468,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -186835,7 +189490,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -186855,7 +189510,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186880,7 +189535,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186905,7 +189560,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -186930,7 +189585,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2060], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -186951,7 +189606,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureLightEXT((OpenTK.Graphics.OpenGL.ExtLightTexture)pname); + InteropHelper.Call(EntryPoints[2063], (OpenTK.Graphics.OpenGL.ExtLightTexture)pname); #if DEBUG } #endif @@ -186966,7 +189621,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureMaterialEXT((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)mode); + InteropHelper.Call(EntryPoints[2064], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)mode); #if DEBUG } #endif @@ -186981,7 +189636,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureNormalEXT((OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal)mode); + InteropHelper.Call(EntryPoints[2065], (OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal)mode); #if DEBUG } #endif @@ -186996,7 +189651,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexturePageCommitmentEXT((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); + InteropHelper.Call(EntryPoints[2066], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); #if DEBUG } #endif @@ -187012,7 +189667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexturePageCommitmentEXT((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); + InteropHelper.Call(EntryPoints[2066], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); #if DEBUG } #endif @@ -187027,7 +189682,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterfEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[2067], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -187043,7 +189698,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterfEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[2067], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -187062,7 +189717,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2068], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187080,7 +189735,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2068], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187100,7 +189755,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2068], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187118,7 +189773,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterfvEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2068], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187133,7 +189788,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameteriEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2069], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -187149,7 +189804,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameteriEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[2069], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -187168,7 +189823,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2070], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187189,7 +189844,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2070], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187207,7 +189862,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2070], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187227,7 +189882,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2070], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187249,7 +189904,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2070], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187267,7 +189922,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterIivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2070], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187287,7 +189942,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[2071], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187309,7 +189964,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[2071], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187327,7 +189982,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterIuivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[2071], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187346,7 +190001,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2072], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187364,7 +190019,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2072], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187384,7 +190039,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2072], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -187402,7 +190057,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureParameterivEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2072], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -187417,7 +190072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureRenderbufferEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[2074], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -187433,7 +190088,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureRenderbufferEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[2074], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -187448,7 +190103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[2075], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width); #if DEBUG } #endif @@ -187464,7 +190119,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[2075], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width); #if DEBUG } #endif @@ -187479,7 +190134,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[2076], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -187495,7 +190150,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[2076], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -187510,7 +190165,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DMultisampleEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2077], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -187526,7 +190181,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage2DMultisampleEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2077], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -187541,7 +190196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[2078], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -187557,7 +190212,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[2078], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)levels, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -187572,7 +190227,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DMultisampleEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2079], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -187588,7 +190243,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureStorage3DMultisampleEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[2079], (UInt32)texture, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)target, (Int32)samples, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -187603,7 +190258,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -187622,7 +190277,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187646,7 +190301,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187670,7 +190325,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187694,7 +190349,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T7)pixels_ptr.Target; } finally @@ -187716,7 +190371,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -187736,7 +190391,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187761,7 +190416,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187786,7 +190441,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187811,7 +190466,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage1DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2081], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T7)pixels_ptr.Target; } finally @@ -187832,7 +190487,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -187851,7 +190506,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187875,7 +190530,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187899,7 +190554,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187923,7 +190578,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -187945,7 +190600,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -187965,7 +190620,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -187990,7 +190645,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188015,7 +190670,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188040,7 +190695,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage2DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2082], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -188061,7 +190716,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -188080,7 +190735,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188104,7 +190759,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188128,7 +190783,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188152,7 +190807,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T11)pixels_ptr.Target; } finally @@ -188174,7 +190829,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -188194,7 +190849,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188219,7 +190874,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188244,7 +190899,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -188269,7 +190924,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTextureSubImage3DEXT((UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2083], (UInt32)texture, (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T11)pixels_ptr.Target; } finally @@ -188312,7 +190967,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.ExtTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2089], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.ExtTransformFeedback)bufferMode); #if DEBUG } #endif @@ -188350,7 +191005,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryingsEXT((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.ExtTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2089], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL.ExtTransformFeedback)bufferMode); #if DEBUG } #endif @@ -188395,7 +191050,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[2110], (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -188441,7 +191096,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uiEXT((Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[2110], (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -188490,7 +191145,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2112], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -188541,7 +191196,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2112], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -188589,7 +191244,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2112], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -188639,7 +191294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2112], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -188691,7 +191346,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2112], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -188739,7 +191394,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2112], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -188784,7 +191439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[2128], (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -188830,7 +191485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uiEXT((Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[2128], (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -188879,7 +191534,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2130], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -188927,7 +191582,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2130], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -188977,7 +191632,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2130], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189029,7 +191684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2130], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189077,7 +191732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2130], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -189122,7 +191777,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[2146], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -189168,7 +191823,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[2146], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -189217,7 +191872,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2148], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189268,7 +191923,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2148], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189316,7 +191971,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2148], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -189366,7 +192021,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2148], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189418,7 +192073,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2148], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189466,7 +192121,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2148], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -189511,7 +192166,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[2164], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -189557,7 +192212,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uiEXT((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[2164], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -189606,7 +192261,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2166], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189657,7 +192312,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2166], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189705,7 +192360,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2166], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -189755,7 +192410,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = value) { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2166], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189807,7 +192462,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[2166], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -189855,7 +192510,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uivEXT((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[2166], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -189870,7 +192525,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); + InteropHelper.Call(EntryPoints[2168], (UInt32)program, (Int32)location, (UInt32)buffer); #if DEBUG } #endif @@ -189886,7 +192541,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBufferEXT((UInt32)program, (Int32)location, (UInt32)buffer); + InteropHelper.Call(EntryPoints[2168], (UInt32)program, (Int32)location, (UInt32)buffer); #if DEBUG } #endif @@ -189901,7 +192556,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUnlockArraysEXT(); + InteropHelper.Call(EntryPoints[2197]); #if DEBUG } #endif @@ -189916,7 +192571,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapNamedBufferEXT((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[2200], (UInt32)buffer); #if DEBUG } #endif @@ -189932,7 +192587,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapNamedBufferEXT((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[2200], (UInt32)buffer); #if DEBUG } #endif @@ -189964,7 +192619,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStagesEXT((UInt32)pipeline, (UInt32)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[2207], (UInt32)pipeline, (UInt32)stages, (UInt32)program); #if DEBUG } #endif @@ -189997,7 +192652,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStagesEXT((UInt32)pipeline, (UInt32)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[2207], (UInt32)pipeline, (UInt32)stages, (UInt32)program); #if DEBUG } #endif @@ -190012,7 +192667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseShaderProgramEXT((OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (UInt32)program); + InteropHelper.Call(EntryPoints[2208], (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (UInt32)program); #if DEBUG } #endif @@ -190028,7 +192683,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseShaderProgramEXT((OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (UInt32)program); + InteropHelper.Call(EntryPoints[2208], (OpenTK.Graphics.OpenGL.ExtSeparateShaderObjects)type, (UInt32)program); #if DEBUG } #endif @@ -190050,7 +192705,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[2212], (UInt32)pipeline); #if DEBUG } #endif @@ -190073,7 +192728,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipelineEXT((UInt32)pipeline); + InteropHelper.Call(EntryPoints[2212], (UInt32)pipeline); #if DEBUG } #endif @@ -190093,7 +192748,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* addr_ptr = addr) { - Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr_ptr); + InteropHelper.Call(EntryPoints[2214], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190115,7 +192770,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* addr_ptr = &addr) { - Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr_ptr); + InteropHelper.Call(EntryPoints[2214], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190133,7 +192788,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantbvEXT((UInt32)id, (SByte*)addr); + InteropHelper.Call(EntryPoints[2214], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190152,7 +192807,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* addr_ptr = addr) { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + InteropHelper.Call(EntryPoints[2215], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190173,7 +192828,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* addr_ptr = &addr) { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + InteropHelper.Call(EntryPoints[2215], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190191,7 +192846,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); + InteropHelper.Call(EntryPoints[2215], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190211,7 +192866,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* addr_ptr = addr) { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + InteropHelper.Call(EntryPoints[2215], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190233,7 +192888,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* addr_ptr = &addr) { - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr_ptr); + InteropHelper.Call(EntryPoints[2215], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190251,7 +192906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantdvEXT((UInt32)id, (Double*)addr); + InteropHelper.Call(EntryPoints[2215], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190270,7 +192925,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* addr_ptr = addr) { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + InteropHelper.Call(EntryPoints[2216], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190291,7 +192946,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* addr_ptr = &addr) { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + InteropHelper.Call(EntryPoints[2216], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190309,7 +192964,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); + InteropHelper.Call(EntryPoints[2216], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190329,7 +192984,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* addr_ptr = addr) { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + InteropHelper.Call(EntryPoints[2216], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190351,7 +193006,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* addr_ptr = &addr) { - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr_ptr); + InteropHelper.Call(EntryPoints[2216], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190369,7 +193024,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantfvEXT((UInt32)id, (Single*)addr); + InteropHelper.Call(EntryPoints[2216], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190388,7 +193043,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* addr_ptr = addr) { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); + InteropHelper.Call(EntryPoints[2217], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190409,7 +193064,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* addr_ptr = &addr) { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); + InteropHelper.Call(EntryPoints[2217], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190427,7 +193082,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr); + InteropHelper.Call(EntryPoints[2217], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190447,7 +193102,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* addr_ptr = addr) { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); + InteropHelper.Call(EntryPoints[2217], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190469,7 +193124,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* addr_ptr = &addr) { - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr_ptr); + InteropHelper.Call(EntryPoints[2217], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190487,7 +193142,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantivEXT((UInt32)id, (Int32*)addr); + InteropHelper.Call(EntryPoints[2217], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190502,7 +193157,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr); #if DEBUG } #endif @@ -190521,7 +193176,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -190545,7 +193200,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -190569,7 +193224,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -190593,7 +193248,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); addr = (T3)addr_ptr.Target; } finally @@ -190615,7 +193270,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr); #if DEBUG } #endif @@ -190635,7 +193290,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -190660,7 +193315,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -190685,7 +193340,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); } finally { @@ -190710,7 +193365,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle addr_ptr = GCHandle.Alloc(addr, GCHandleType.Pinned); try { - Delegates.glVariantPointerEXT((UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2218], (UInt32)id, (OpenTK.Graphics.OpenGL.ExtVertexShader)type, (UInt32)stride, (IntPtr)addr_ptr.AddrOfPinnedObject()); addr = (T3)addr_ptr.Target; } finally @@ -190735,7 +193390,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* addr_ptr = addr) { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + InteropHelper.Call(EntryPoints[2219], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190756,7 +193411,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* addr_ptr = &addr) { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + InteropHelper.Call(EntryPoints[2219], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190774,7 +193429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr); + InteropHelper.Call(EntryPoints[2219], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190794,7 +193449,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* addr_ptr = addr) { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + InteropHelper.Call(EntryPoints[2219], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190816,7 +193471,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* addr_ptr = &addr) { - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr_ptr); + InteropHelper.Call(EntryPoints[2219], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190834,7 +193489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantsvEXT((UInt32)id, (Int16*)addr); + InteropHelper.Call(EntryPoints[2219], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190853,7 +193508,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* addr_ptr = addr) { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + InteropHelper.Call(EntryPoints[2220], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190874,7 +193529,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* addr_ptr = &addr) { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + InteropHelper.Call(EntryPoints[2220], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190892,7 +193547,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); + InteropHelper.Call(EntryPoints[2220], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190912,7 +193567,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* addr_ptr = addr) { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + InteropHelper.Call(EntryPoints[2220], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190934,7 +193589,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* addr_ptr = &addr) { - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr_ptr); + InteropHelper.Call(EntryPoints[2220], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190952,7 +193607,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantubvEXT((UInt32)id, (Byte*)addr); + InteropHelper.Call(EntryPoints[2220], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -190972,7 +193627,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* addr_ptr = addr) { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); + InteropHelper.Call(EntryPoints[2221], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -190994,7 +193649,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* addr_ptr = &addr) { - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr_ptr); + InteropHelper.Call(EntryPoints[2221], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -191012,7 +193667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantuivEXT((UInt32)id, (UInt32*)addr); + InteropHelper.Call(EntryPoints[2221], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -191032,7 +193687,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* addr_ptr = addr) { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); + InteropHelper.Call(EntryPoints[2222], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -191054,7 +193709,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* addr_ptr = &addr) { - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr_ptr); + InteropHelper.Call(EntryPoints[2222], (UInt32)id, (IntPtr)addr_ptr); } } #if DEBUG @@ -191072,7 +193727,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVariantusvEXT((UInt32)id, (UInt16*)addr); + InteropHelper.Call(EntryPoints[2222], (UInt32)id, (IntPtr)addr); #if DEBUG } #endif @@ -191087,7 +193742,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayBindVertexBufferEXT((UInt32)vaobj, (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); + InteropHelper.Call(EntryPoints[2275], (UInt32)vaobj, (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); #if DEBUG } #endif @@ -191103,7 +193758,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayBindVertexBufferEXT((UInt32)vaobj, (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); + InteropHelper.Call(EntryPoints[2275], (UInt32)vaobj, (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); #if DEBUG } #endif @@ -191118,7 +193773,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayColorOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2276], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191134,7 +193789,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayColorOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2276], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191149,7 +193804,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayEdgeFlagOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2277], (UInt32)vaobj, (UInt32)buffer, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191165,7 +193820,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayEdgeFlagOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2277], (UInt32)vaobj, (UInt32)buffer, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191180,7 +193835,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayFogCoordOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2278], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191196,7 +193851,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayFogCoordOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2278], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191211,7 +193866,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayIndexOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2279], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191227,7 +193882,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayIndexOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2279], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191242,7 +193897,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayMultiTexCoordOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2280], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191258,7 +193913,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayMultiTexCoordOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2280], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)texunit, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191273,7 +193928,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayNormalOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2281], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191289,7 +193944,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayNormalOffsetEXT((UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2281], (UInt32)vaobj, (UInt32)buffer, (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191304,7 +193959,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArraySecondaryColorOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2285], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191320,7 +193975,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArraySecondaryColorOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2285], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191335,7 +193990,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayTexCoordOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2286], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191351,7 +194006,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayTexCoordOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2286], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191366,7 +194021,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribBindingEXT((UInt32)vaobj, (UInt32)attribindex, (UInt32)bindingindex); + InteropHelper.Call(EntryPoints[2287], (UInt32)vaobj, (UInt32)attribindex, (UInt32)bindingindex); #if DEBUG } #endif @@ -191382,7 +194037,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribBindingEXT((UInt32)vaobj, (UInt32)attribindex, (UInt32)bindingindex); + InteropHelper.Call(EntryPoints[2287], (UInt32)vaobj, (UInt32)attribindex, (UInt32)bindingindex); #if DEBUG } #endif @@ -191397,7 +194052,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribDivisorEXT((UInt32)vaobj, (UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2288], (UInt32)vaobj, (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -191413,7 +194068,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribDivisorEXT((UInt32)vaobj, (UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2288], (UInt32)vaobj, (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -191428,7 +194083,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribFormatEXT((UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (bool)normalized, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2289], (UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (bool)normalized, (UInt32)relativeoffset); #if DEBUG } #endif @@ -191444,7 +194099,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribFormatEXT((UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (bool)normalized, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2289], (UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (bool)normalized, (UInt32)relativeoffset); #if DEBUG } #endif @@ -191459,7 +194114,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribIFormatEXT((UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2290], (UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -191475,7 +194130,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribIFormatEXT((UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2290], (UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -191490,7 +194145,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribIOffsetEXT((UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2291], (UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191506,7 +194161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribIOffsetEXT((UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2291], (UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191521,7 +194176,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribLFormatEXT((UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2292], (UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -191537,7 +194192,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribLFormatEXT((UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[2292], (UInt32)vaobj, (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -191552,7 +194207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribLOffsetEXT((UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2293], (UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191568,7 +194223,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribLOffsetEXT((UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2293], (UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtDirectStateAccess)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191583,7 +194238,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribOffsetEXT((UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2294], (UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191599,7 +194254,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexAttribOffsetEXT((UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2294], (UInt32)vaobj, (UInt32)buffer, (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191614,7 +194269,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexBindingDivisorEXT((UInt32)vaobj, (UInt32)bindingindex, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2295], (UInt32)vaobj, (UInt32)bindingindex, (UInt32)divisor); #if DEBUG } #endif @@ -191630,7 +194285,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexBindingDivisorEXT((UInt32)vaobj, (UInt32)bindingindex, (UInt32)divisor); + InteropHelper.Call(EntryPoints[2295], (UInt32)vaobj, (UInt32)bindingindex, (UInt32)divisor); #if DEBUG } #endif @@ -191645,7 +194300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2296], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191661,7 +194316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayVertexOffsetEXT((UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)offset); + InteropHelper.Call(EntryPoints[2296], (UInt32)vaobj, (UInt32)buffer, (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)offset); #if DEBUG } #endif @@ -191676,7 +194331,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1iEXT((UInt32)index, (Int32)x); + InteropHelper.Call(EntryPoints[2410], (UInt32)index, (Int32)x); #if DEBUG } #endif @@ -191692,7 +194347,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1iEXT((UInt32)index, (Int32)x); + InteropHelper.Call(EntryPoints[2410], (UInt32)index, (Int32)x); #if DEBUG } #endif @@ -191708,7 +194363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2412], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -191724,7 +194379,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2412], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -191740,7 +194395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1uiEXT((UInt32)index, (UInt32)x); + InteropHelper.Call(EntryPoints[2414], (UInt32)index, (UInt32)x); #if DEBUG } #endif @@ -191756,7 +194411,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1uivEXT((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2416], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -191771,7 +194426,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2iEXT((UInt32)index, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2418], (UInt32)index, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -191787,7 +194442,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2iEXT((UInt32)index, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2418], (UInt32)index, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -191806,7 +194461,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2420], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -191827,7 +194482,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2420], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -191845,7 +194500,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2420], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -191865,7 +194520,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2420], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -191887,7 +194542,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2420], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -191905,7 +194560,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2420], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -191921,7 +194576,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2uiEXT((UInt32)index, (UInt32)x, (UInt32)y); + InteropHelper.Call(EntryPoints[2422], (UInt32)index, (UInt32)x, (UInt32)y); #if DEBUG } #endif @@ -191941,7 +194596,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2424], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -191963,7 +194618,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2424], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -191981,7 +194636,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2uivEXT((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2424], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -191996,7 +194651,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2426], (UInt32)index, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -192012,7 +194667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2426], (UInt32)index, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -192031,7 +194686,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192052,7 +194707,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192070,7 +194725,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2428], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192090,7 +194745,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192112,7 +194767,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2428], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192130,7 +194785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2428], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192146,7 +194801,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); + InteropHelper.Call(EntryPoints[2430], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); #if DEBUG } #endif @@ -192166,7 +194821,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2432], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192188,7 +194843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2432], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192206,7 +194861,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3uivEXT((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2432], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192226,7 +194881,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2434], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192248,7 +194903,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[2434], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192266,7 +194921,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4bvEXT((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[2434], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192281,7 +194936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2436], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -192297,7 +194952,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iEXT((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2436], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -192316,7 +194971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192337,7 +194992,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192355,7 +195010,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2438], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192375,7 +195030,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192397,7 +195052,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2438], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192415,7 +195070,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ivEXT((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[2438], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192434,7 +195089,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2440], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192455,7 +195110,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2440], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192473,7 +195128,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2440], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192493,7 +195148,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2440], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192515,7 +195170,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2440], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192533,7 +195188,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4svEXT((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2440], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192552,7 +195207,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2442], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192573,7 +195228,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2442], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192591,7 +195246,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2442], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192611,7 +195266,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2442], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192633,7 +195288,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2442], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192651,7 +195306,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ubvEXT((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2442], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192667,7 +195322,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4uiEXT((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[2444], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -192687,7 +195342,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2446], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192709,7 +195364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[2446], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192727,7 +195382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4uivEXT((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[2446], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192747,7 +195402,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2448], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192769,7 +195424,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[2448], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -192787,7 +195442,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4usvEXT((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[2448], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -192802,7 +195457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -192821,7 +195476,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -192845,7 +195500,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -192869,7 +195524,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -192893,7 +195548,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -192915,7 +195570,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -192935,7 +195590,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -192960,7 +195615,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -192985,7 +195640,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193010,7 +195665,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2452], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexProgram4)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -193031,7 +195686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dEXT((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2454], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -193047,7 +195702,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dEXT((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2454], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -193063,7 +195718,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2456], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193079,7 +195734,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2456], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193094,7 +195749,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dEXT((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2464], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -193110,7 +195765,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dEXT((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2464], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -193129,7 +195784,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL2dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2466], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193150,7 +195805,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL2dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2466], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193168,7 +195823,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2466], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193188,7 +195843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL2dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2466], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193210,7 +195865,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL2dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2466], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193228,7 +195883,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2466], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193243,7 +195898,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dEXT((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2472], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -193259,7 +195914,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dEXT((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2472], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -193278,7 +195933,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL3dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193299,7 +195954,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL3dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193317,7 +195972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2474], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193337,7 +195992,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL3dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193359,7 +196014,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL3dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193377,7 +196032,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2474], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193392,7 +196047,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dEXT((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2480], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -193408,7 +196063,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dEXT((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2480], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -193427,7 +196082,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL4dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2482], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193448,7 +196103,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL4dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2482], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193466,7 +196121,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2482], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193486,7 +196141,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL4dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2482], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193508,7 +196163,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL4dvEXT((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2482], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -193526,7 +196181,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dvEXT((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2482], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -193541,7 +196196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -193560,7 +196215,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193584,7 +196239,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193608,7 +196263,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193632,7 +196287,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -193654,7 +196309,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -193674,7 +196329,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193699,7 +196354,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193724,7 +196379,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193749,7 +196404,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointerEXT((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2490], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexAttrib64bit)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -193792,7 +196447,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2532], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer); #if DEBUG } #endif @@ -193833,7 +196488,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2532], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193879,7 +196534,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2532], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193925,7 +196580,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2532], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -193971,7 +196626,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2532], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (Int32)count, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -193992,7 +196647,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeightfEXT((Single)weight); + InteropHelper.Call(EntryPoints[2567], (Single)weight); #if DEBUG } #endif @@ -194008,7 +196663,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeightfvEXT((Single*)weight); + InteropHelper.Call(EntryPoints[2568], (IntPtr)weight); #if DEBUG } #endif @@ -194023,7 +196678,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2571], (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -194042,7 +196697,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2571], (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -194066,7 +196721,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2571], (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -194090,7 +196745,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2571], (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -194114,7 +196769,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexWeightPointerEXT((Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2571], (Int32)size, (OpenTK.Graphics.OpenGL.ExtVertexWeighting)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T3)pointer_ptr.Target; } finally @@ -194135,7 +196790,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); + InteropHelper.Call(EntryPoints[2647], (UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); #if DEBUG } #endif @@ -194151,7 +196806,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWriteMaskEXT((UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); + InteropHelper.Call(EntryPoints[2647], (UInt32)res, (UInt32)@in, (OpenTK.Graphics.OpenGL.ExtVertexShader)outX, (OpenTK.Graphics.OpenGL.ExtVertexShader)outY, (OpenTK.Graphics.OpenGL.ExtVertexShader)outZ, (OpenTK.Graphics.OpenGL.ExtVertexShader)outW); #if DEBUG } #endif @@ -194170,7 +196825,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrameTerminatorGREMEDY(); + InteropHelper.Call(EntryPoints[585]); #if DEBUG } #endif @@ -194185,7 +196840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStringMarkerGREMEDY((Int32)len, (IntPtr)@string); + InteropHelper.Call(EntryPoints[1893], (Int32)len, (IntPtr)@string); #if DEBUG } #endif @@ -194204,7 +196859,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glStringMarkerGREMEDY((Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1893], (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -194228,7 +196883,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glStringMarkerGREMEDY((Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1893], (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -194252,7 +196907,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glStringMarkerGREMEDY((Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1893], (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); } finally { @@ -194276,7 +196931,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @string_ptr = GCHandle.Alloc(@string, GCHandleType.Pinned); try { - Delegates.glStringMarkerGREMEDY((Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1893], (Int32)len, (IntPtr)@string_ptr.AddrOfPinnedObject()); @string = (T1)@string_ptr.Target; } finally @@ -194305,7 +196960,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[725], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -194326,7 +196981,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[725], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -194345,7 +197000,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[725], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -194364,7 +197019,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[726], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -194385,7 +197040,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[726], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -194404,7 +197059,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetImageTransformParameterivHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[726], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -194419,7 +197074,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glImageTransformParameterfHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single)param); + InteropHelper.Call(EntryPoints[1030], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single)param); #if DEBUG } #endif @@ -194438,7 +197093,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1031], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -194456,7 +197111,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glImageTransformParameterfvHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1031], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -194471,7 +197126,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glImageTransformParameteriHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1032], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32)param); #if DEBUG } #endif @@ -194490,7 +197145,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glImageTransformParameterivHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1033], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -194508,7 +197163,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glImageTransformParameterivHP((OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1033], (OpenTK.Graphics.OpenGL.HpImageTransform)target, (OpenTK.Graphics.OpenGL.HpImageTransform)pname, (IntPtr)@params); #if DEBUG } #endif @@ -194527,7 +197182,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[236], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -194546,7 +197201,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[236], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194570,7 +197225,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[236], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194594,7 +197249,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[236], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194618,7 +197273,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[236], (Int32)size, (OpenTK.Graphics.OpenGL.ColorPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T3)pointer_ptr.Target; } finally @@ -194642,7 +197297,7 @@ namespace OpenTK.Graphics.OpenGL #endif fixed (bool** pointer_ptr = pointer) { - Delegates.glEdgeFlagPointerListIBM((Int32)stride, (bool**)pointer_ptr, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[461], (Int32)stride, (IntPtr)pointer_ptr, (Int32)ptrstride); } #if DEBUG } @@ -194661,7 +197316,7 @@ namespace OpenTK.Graphics.OpenGL #endif fixed (bool** pointer_ptr = &pointer) { - Delegates.glEdgeFlagPointerListIBM((Int32)stride, (bool**)pointer_ptr, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[461], (Int32)stride, (IntPtr)pointer_ptr, (Int32)ptrstride); } #if DEBUG } @@ -194678,7 +197333,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEdgeFlagPointerListIBM((Int32)stride, (bool**)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[461], (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -194693,7 +197348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushStaticDataIBM((OpenTK.Graphics.OpenGL.IbmStaticData)target); + InteropHelper.Call(EntryPoints[528], (OpenTK.Graphics.OpenGL.IbmStaticData)target); #if DEBUG } #endif @@ -194708,7 +197363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -194727,7 +197382,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194751,7 +197406,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194775,7 +197430,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194799,7 +197454,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T2)pointer_ptr.Target; } finally @@ -194821,7 +197476,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -194841,7 +197496,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194866,7 +197521,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194891,7 +197546,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194916,7 +197571,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glFogCoordPointerListIBM((OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[544], (OpenTK.Graphics.OpenGL.FogPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T2)pointer_ptr.Target; } finally @@ -194937,7 +197592,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1047], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -194956,7 +197611,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1047], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -194980,7 +197635,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1047], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195004,7 +197659,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1047], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195028,7 +197683,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glIndexPointerListIBM((OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1047], (OpenTK.Graphics.OpenGL.IndexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T2)pointer_ptr.Target; } finally @@ -195055,7 +197710,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1237], (IntPtr)mode_ptr, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount, (Int32)modestride); } } #if DEBUG @@ -195078,7 +197733,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1237], (IntPtr)mode_ptr, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)primcount, (Int32)modestride); } } #if DEBUG @@ -195096,7 +197751,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiModeDrawArraysIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode, (Int32*)first, (Int32*)count, (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1237], (IntPtr)mode, (IntPtr)first, (IntPtr)count, (Int32)primcount, (Int32)modestride); #if DEBUG } #endif @@ -195116,7 +197771,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.PrimitiveType* mode_ptr = mode) fixed (Int32* count_ptr = count) { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); } } #if DEBUG @@ -195142,7 +197797,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195173,7 +197828,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195204,7 +197859,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195235,7 +197890,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); indices = (T3)indices_ptr.Target; } finally @@ -195263,7 +197918,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.PrimitiveType* mode_ptr = &mode) fixed (Int32* count_ptr = &count) { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); } } #if DEBUG @@ -195289,7 +197944,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195320,7 +197975,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195351,7 +198006,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195382,7 +198037,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode_ptr, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode_ptr, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); indices = (T3)indices_ptr.Target; } finally @@ -195406,7 +198061,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices, (Int32)primcount, (Int32)modestride); #if DEBUG } #endif @@ -195426,7 +198081,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195451,7 +198106,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195476,7 +198131,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); } finally { @@ -195501,7 +198156,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiModeDrawElementsIBM((OpenTK.Graphics.OpenGL.PrimitiveType*)mode, (Int32*)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); + InteropHelper.Call(EntryPoints[1238], (IntPtr)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)primcount, (Int32)modestride); indices = (T3)indices_ptr.Target; } finally @@ -195522,7 +198177,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1419], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -195541,7 +198196,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1419], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195565,7 +198220,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1419], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195589,7 +198244,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1419], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195613,7 +198268,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointerListIBM((OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1419], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T2)pointer_ptr.Target; } finally @@ -195634,7 +198289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1853], (Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -195653,7 +198308,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1853], (Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195677,7 +198332,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1853], (Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195701,7 +198356,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1853], (Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195725,7 +198380,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glSecondaryColorPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[1853], (Int32)size, (OpenTK.Graphics.OpenGL.IbmVertexArrayLists)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T3)pointer_ptr.Target; } finally @@ -195746,7 +198401,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2001], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -195765,7 +198420,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2001], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195789,7 +198444,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2001], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195813,7 +198468,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2001], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195837,7 +198492,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2001], (Int32)size, (OpenTK.Graphics.OpenGL.TexCoordPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T3)pointer_ptr.Target; } finally @@ -195858,7 +198513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2533], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer, (Int32)ptrstride); #if DEBUG } #endif @@ -195877,7 +198532,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2533], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195901,7 +198556,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2533], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195925,7 +198580,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2533], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); } finally { @@ -195949,7 +198604,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointerListIBM((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); + InteropHelper.Call(EntryPoints[2533], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject(), (Int32)ptrstride); pointer = (T3)pointer_ptr.Target; } finally @@ -196002,7 +198657,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateINGR((OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorAlpha); + InteropHelper.Call(EntryPoints[124], (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorAlpha); #if DEBUG } #endif @@ -196044,7 +198699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateINGR((OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorAlpha); + InteropHelper.Call(EntryPoints[124], (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorRGB, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)sfactorAlpha, (OpenTK.Graphics.OpenGL.IngrBlendFuncSeparate)dfactorAlpha); #if DEBUG } #endif @@ -196085,7 +198740,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[237], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); #if DEBUG } #endif @@ -196126,7 +198781,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[237], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196172,7 +198827,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[237], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196218,7 +198873,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[237], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196264,7 +198919,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glColorPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[237], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -196290,7 +198945,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* stride_ptr = &stride) fixed (OpenTK.Graphics.OpenGL.IntelMapTexture* layout_ptr = &layout) { - IntPtr retval = Delegates.glMapTexture2DINTEL((UInt32)texture, (Int32)level, (UInt32)access, (Int32*)stride_ptr, (OpenTK.Graphics.OpenGL.IntelMapTexture*)layout_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[1181], (UInt32)texture, (Int32)level, (UInt32)access, (IntPtr)stride_ptr, (IntPtr)layout_ptr); stride = *stride_ptr; layout = *layout_ptr; return retval; @@ -196311,7 +198966,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapTexture2DINTEL((UInt32)texture, (Int32)level, (UInt32)access, (Int32*)stride, (OpenTK.Graphics.OpenGL.IntelMapTexture*)layout); + return InteropHelper.CallReturn(EntryPoints[1181], (UInt32)texture, (Int32)level, (UInt32)access, (IntPtr)stride, (IntPtr)layout); #if DEBUG } #endif @@ -196332,7 +198987,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* stride_ptr = &stride) fixed (OpenTK.Graphics.OpenGL.IntelMapTexture* layout_ptr = &layout) { - IntPtr retval = Delegates.glMapTexture2DINTEL((UInt32)texture, (Int32)level, (UInt32)access, (Int32*)stride_ptr, (OpenTK.Graphics.OpenGL.IntelMapTexture*)layout_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[1181], (UInt32)texture, (Int32)level, (UInt32)access, (IntPtr)stride_ptr, (IntPtr)layout_ptr); stride = *stride_ptr; layout = *layout_ptr; return retval; @@ -196353,7 +199008,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapTexture2DINTEL((UInt32)texture, (Int32)level, (UInt32)access, (Int32*)stride, (OpenTK.Graphics.OpenGL.IntelMapTexture*)layout); + return InteropHelper.CallReturn(EntryPoints[1181], (UInt32)texture, (Int32)level, (UInt32)access, (IntPtr)stride, (IntPtr)layout); #if DEBUG } #endif @@ -196385,7 +199040,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalPointervINTEL((OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1420], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer); #if DEBUG } #endif @@ -196421,7 +199076,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointervINTEL((OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1420], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196462,7 +199117,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointervINTEL((OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1420], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196503,7 +199158,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointervINTEL((OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1420], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196544,7 +199199,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glNormalPointervINTEL((OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1420], (OpenTK.Graphics.OpenGL.NormalPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -196565,7 +199220,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSyncTextureINTEL((UInt32)texture); + InteropHelper.Call(EntryPoints[1895], (UInt32)texture); #if DEBUG } #endif @@ -196581,7 +199236,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSyncTextureINTEL((UInt32)texture); + InteropHelper.Call(EntryPoints[1895], (UInt32)texture); #if DEBUG } #endif @@ -196618,7 +199273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2002], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); #if DEBUG } #endif @@ -196659,7 +199314,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2002], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196705,7 +199360,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2002], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196751,7 +199406,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2002], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196797,7 +199452,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glTexCoordPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2002], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -196818,7 +199473,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUnmapTexture2DINTEL((UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[2202], (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -196834,7 +199489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUnmapTexture2DINTEL((UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[2202], (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -196871,7 +199526,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2534], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer); #if DEBUG } #endif @@ -196912,7 +199567,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2534], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -196958,7 +199613,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2534], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -197004,7 +199659,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2534], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -197050,7 +199705,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexPointervINTEL((Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2534], (Int32)size, (OpenTK.Graphics.OpenGL.VertexPointerType)type, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -197087,7 +199742,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[347], (DebugProcKhr)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -197118,7 +199773,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[347], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -197154,7 +199809,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[347], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -197190,7 +199845,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[347], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -197226,7 +199881,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[347], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -197283,7 +199938,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -197336,7 +199991,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -197386,7 +200041,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -197438,7 +200093,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -197492,7 +200147,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -197542,7 +200197,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[350], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -197589,7 +200244,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (UInt32)id, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (UInt32)id, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -197637,7 +200292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (UInt32)id, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.OpenGL.KhrDebug)source, (OpenTK.Graphics.OpenGL.KhrDebug)type, (UInt32)id, (OpenTK.Graphics.OpenGL.KhrDebug)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -197702,7 +200357,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.KhrDebug* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.KhrDebug*)sources_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[687], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -197769,7 +200424,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.KhrDebug* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.KhrDebug*)sources_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[687], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -197835,7 +200490,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.KhrDebug*)sources, (OpenTK.Graphics.OpenGL.KhrDebug*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL.KhrDebug*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[687], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -197901,7 +200556,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.KhrDebug* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.KhrDebug*)sources_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[687], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -197969,7 +200624,7 @@ namespace OpenTK.Graphics.OpenGL fixed (OpenTK.Graphics.OpenGL.KhrDebug* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.KhrDebug*)sources_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL.KhrDebug*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[687], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -198035,7 +200690,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL.KhrDebug*)sources, (OpenTK.Graphics.OpenGL.KhrDebug*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL.KhrDebug*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[687], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -198081,7 +200736,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[820], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -198129,7 +200784,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[820], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -198175,7 +200830,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[820], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -198222,7 +200877,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[820], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -198271,7 +200926,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[820], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -198317,7 +200972,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[820], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -198358,7 +201013,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -198401,7 +201056,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -198442,7 +201097,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -198487,7 +201142,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -198539,7 +201194,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -198589,7 +201244,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -198639,7 +201294,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -198691,7 +201346,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -198741,7 +201396,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -198791,7 +201446,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -198843,7 +201498,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -198893,7 +201548,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -198943,7 +201598,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -198996,7 +201651,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -199047,7 +201702,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[825], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -199068,7 +201723,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[859], (OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params); #if DEBUG } #endif @@ -199087,7 +201742,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[859], (OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -199111,7 +201766,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[859], (OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -199135,7 +201790,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[859], (OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -199159,7 +201814,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[859], (OpenTK.Graphics.OpenGL.KhrDebug)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -199202,7 +201857,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1432], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -199240,7 +201895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1432], (OpenTK.Graphics.OpenGL.KhrDebug)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -199272,7 +201927,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabelKHR((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1434], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -199308,7 +201963,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1434], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -199349,7 +202004,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1434], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -199390,7 +202045,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1434], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -199431,7 +202086,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[1434], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -199454,7 +202109,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroupKHR(); + InteropHelper.Call(EntryPoints[1516]); #if DEBUG } #endif @@ -199491,7 +202146,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[1698], (OpenTK.Graphics.OpenGL.KhrDebug)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -199529,7 +202184,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.OpenGL.KhrDebug)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[1698], (OpenTK.Graphics.OpenGL.KhrDebug)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -199548,7 +202203,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResizeBuffersMESA(); + InteropHelper.Call(EntryPoints[1784]); #if DEBUG } #endif @@ -199570,7 +202225,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2dMESA((Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2593], (Double)x, (Double)y); #if DEBUG } #endif @@ -199596,7 +202251,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos2dvMESA((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2596], (IntPtr)v_ptr); } } #if DEBUG @@ -199624,7 +202279,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos2dvMESA((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2596], (IntPtr)v_ptr); } } #if DEBUG @@ -199649,7 +202304,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2dvMESA((Double*)v); + InteropHelper.Call(EntryPoints[2596], (IntPtr)v); #if DEBUG } #endif @@ -199671,7 +202326,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2fMESA((Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2599], (Single)x, (Single)y); #if DEBUG } #endif @@ -199697,7 +202352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos2fvMESA((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2602], (IntPtr)v_ptr); } } #if DEBUG @@ -199725,7 +202380,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos2fvMESA((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2602], (IntPtr)v_ptr); } } #if DEBUG @@ -199750,7 +202405,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2fvMESA((Single*)v); + InteropHelper.Call(EntryPoints[2602], (IntPtr)v); #if DEBUG } #endif @@ -199772,7 +202427,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2iMESA((Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[2605], (Int32)x, (Int32)y); #if DEBUG } #endif @@ -199798,7 +202453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos2ivMESA((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2608], (IntPtr)v_ptr); } } #if DEBUG @@ -199826,7 +202481,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos2ivMESA((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2608], (IntPtr)v_ptr); } } #if DEBUG @@ -199851,7 +202506,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2ivMESA((Int32*)v); + InteropHelper.Call(EntryPoints[2608], (IntPtr)v); #if DEBUG } #endif @@ -199873,7 +202528,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2sMESA((Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2611], (Int16)x, (Int16)y); #if DEBUG } #endif @@ -199899,7 +202554,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos2svMESA((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2614], (IntPtr)v_ptr); } } #if DEBUG @@ -199927,7 +202582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos2svMESA((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2614], (IntPtr)v_ptr); } } #if DEBUG @@ -199952,7 +202607,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos2svMESA((Int16*)v); + InteropHelper.Call(EntryPoints[2614], (IntPtr)v); #if DEBUG } #endif @@ -199974,7 +202629,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3dMESA((Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2617], (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -200000,7 +202655,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos3dvMESA((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2620], (IntPtr)v_ptr); } } #if DEBUG @@ -200028,7 +202683,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos3dvMESA((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2620], (IntPtr)v_ptr); } } #if DEBUG @@ -200053,7 +202708,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3dvMESA((Double*)v); + InteropHelper.Call(EntryPoints[2620], (IntPtr)v); #if DEBUG } #endif @@ -200075,7 +202730,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3fMESA((Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2623], (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -200101,7 +202756,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos3fvMESA((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2626], (IntPtr)v_ptr); } } #if DEBUG @@ -200129,7 +202784,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos3fvMESA((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2626], (IntPtr)v_ptr); } } #if DEBUG @@ -200154,7 +202809,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3fvMESA((Single*)v); + InteropHelper.Call(EntryPoints[2626], (IntPtr)v); #if DEBUG } #endif @@ -200176,7 +202831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3iMESA((Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[2629], (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -200202,7 +202857,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos3ivMESA((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2632], (IntPtr)v_ptr); } } #if DEBUG @@ -200230,7 +202885,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos3ivMESA((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2632], (IntPtr)v_ptr); } } #if DEBUG @@ -200255,7 +202910,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3ivMESA((Int32*)v); + InteropHelper.Call(EntryPoints[2632], (IntPtr)v); #if DEBUG } #endif @@ -200277,7 +202932,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3sMESA((Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2635], (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -200303,7 +202958,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos3svMESA((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2638], (IntPtr)v_ptr); } } #if DEBUG @@ -200331,7 +202986,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos3svMESA((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2638], (IntPtr)v_ptr); } } #if DEBUG @@ -200356,7 +203011,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos3svMESA((Int16*)v); + InteropHelper.Call(EntryPoints[2638], (IntPtr)v); #if DEBUG } #endif @@ -200378,7 +203033,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4dMESA((Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2639], (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -200404,7 +203059,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glWindowPos4dvMESA((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2640], (IntPtr)v_ptr); } } #if DEBUG @@ -200432,7 +203087,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glWindowPos4dvMESA((Double*)v_ptr); + InteropHelper.Call(EntryPoints[2640], (IntPtr)v_ptr); } } #if DEBUG @@ -200457,7 +203112,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4dvMESA((Double*)v); + InteropHelper.Call(EntryPoints[2640], (IntPtr)v); #if DEBUG } #endif @@ -200479,7 +203134,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4fMESA((Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2641], (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -200505,7 +203160,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glWindowPos4fvMESA((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2642], (IntPtr)v_ptr); } } #if DEBUG @@ -200533,7 +203188,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glWindowPos4fvMESA((Single*)v_ptr); + InteropHelper.Call(EntryPoints[2642], (IntPtr)v_ptr); } } #if DEBUG @@ -200558,7 +203213,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4fvMESA((Single*)v); + InteropHelper.Call(EntryPoints[2642], (IntPtr)v); #if DEBUG } #endif @@ -200580,7 +203235,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4iMESA((Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[2643], (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -200606,7 +203261,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = v) { - Delegates.glWindowPos4ivMESA((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2644], (IntPtr)v_ptr); } } #if DEBUG @@ -200634,7 +203289,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* v_ptr = &v) { - Delegates.glWindowPos4ivMESA((Int32*)v_ptr); + InteropHelper.Call(EntryPoints[2644], (IntPtr)v_ptr); } } #if DEBUG @@ -200659,7 +203314,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4ivMESA((Int32*)v); + InteropHelper.Call(EntryPoints[2644], (IntPtr)v); #if DEBUG } #endif @@ -200681,7 +203336,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4sMESA((Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2645], (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -200707,7 +203362,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glWindowPos4svMESA((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2646], (IntPtr)v_ptr); } } #if DEBUG @@ -200735,7 +203390,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glWindowPos4svMESA((Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2646], (IntPtr)v_ptr); } } #if DEBUG @@ -200760,7 +203415,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWindowPos4svMESA((Int16*)v); + InteropHelper.Call(EntryPoints[2646], (IntPtr)v); #if DEBUG } #endif @@ -200779,7 +203434,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveVaryingNV((UInt32)program, (String)name); + InteropHelper.Call(EntryPoints[8], (UInt32)program, (String)name); #if DEBUG } #endif @@ -200795,7 +203450,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveVaryingNV((UInt32)program, (String)name); + InteropHelper.Call(EntryPoints[8], (UInt32)program, (String)name); #if DEBUG } #endif @@ -200815,7 +203470,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* programs_ptr = programs) fixed (bool* residences_ptr = residences) { - return Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs_ptr, (bool*)residences_ptr); + return InteropHelper.CallReturn(EntryPoints[15], (Int32)n, (IntPtr)programs_ptr, (IntPtr)residences_ptr); } } #if DEBUG @@ -200837,7 +203492,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* programs_ptr = &programs) fixed (bool* residences_ptr = &residences) { - bool retval = Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs_ptr, (bool*)residences_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[15], (Int32)n, (IntPtr)programs_ptr, (IntPtr)residences_ptr); residences = *residences_ptr; return retval; } @@ -200857,7 +203512,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs, (bool*)residences); + return InteropHelper.CallReturn(EntryPoints[15], (Int32)n, (IntPtr)programs, (IntPtr)residences); #if DEBUG } #endif @@ -200878,7 +203533,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* programs_ptr = programs) fixed (bool* residences_ptr = residences) { - return Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs_ptr, (bool*)residences_ptr); + return InteropHelper.CallReturn(EntryPoints[15], (Int32)n, (IntPtr)programs_ptr, (IntPtr)residences_ptr); } } #if DEBUG @@ -200901,7 +203556,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* programs_ptr = &programs) fixed (bool* residences_ptr = &residences) { - bool retval = Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs_ptr, (bool*)residences_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[15], (Int32)n, (IntPtr)programs_ptr, (IntPtr)residences_ptr); residences = *residences_ptr; return retval; } @@ -200921,7 +203576,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glAreProgramsResidentNV((Int32)n, (UInt32*)programs, (bool*)residences); + return InteropHelper.CallReturn(EntryPoints[15], (Int32)n, (IntPtr)programs, (IntPtr)residences); #if DEBUG } #endif @@ -200948,7 +203603,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRenderNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvConditionalRender)mode); + InteropHelper.Call(EntryPoints[26], (UInt32)id, (OpenTK.Graphics.OpenGL.NvConditionalRender)mode); #if DEBUG } #endif @@ -200976,7 +203631,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRenderNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvConditionalRender)mode); + InteropHelper.Call(EntryPoints[26], (UInt32)id, (OpenTK.Graphics.OpenGL.NvConditionalRender)mode); #if DEBUG } #endif @@ -200991,7 +203646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginOcclusionQueryNV((UInt32)id); + InteropHelper.Call(EntryPoints[29], (UInt32)id); #if DEBUG } #endif @@ -201007,7 +203662,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginOcclusionQueryNV((UInt32)id); + InteropHelper.Call(EntryPoints[29], (UInt32)id); #if DEBUG } #endif @@ -201029,7 +203684,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedbackNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)primitiveMode); + InteropHelper.Call(EntryPoints[36], (OpenTK.Graphics.OpenGL.NvTransformFeedback)primitiveMode); #if DEBUG } #endif @@ -201044,7 +203699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginVideoCaptureNV((UInt32)video_capture_slot); + InteropHelper.Call(EntryPoints[38], (UInt32)video_capture_slot); #if DEBUG } #endif @@ -201060,7 +203715,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginVideoCaptureNV((UInt32)video_capture_slot); + InteropHelper.Call(EntryPoints[38], (UInt32)video_capture_slot); #if DEBUG } #endif @@ -201092,7 +203747,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBaseNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[45], (OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -201125,7 +203780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBaseNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[45], (OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -201140,7 +203795,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferOffsetNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); #if DEBUG } #endif @@ -201156,7 +203811,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferOffsetNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset); #if DEBUG } #endif @@ -201198,7 +203853,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRangeNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -201241,7 +203896,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRangeNV((OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.OpenGL.NvTransformFeedback)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -201256,7 +203911,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id); #if DEBUG } #endif @@ -201272,7 +203927,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id); #if DEBUG } #endif @@ -201299,7 +203954,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedbackNV((OpenTK.Graphics.OpenGL.NvTransformFeedback2)target, (UInt32)id); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL.NvTransformFeedback2)target, (UInt32)id); #if DEBUG } #endif @@ -201327,7 +203982,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedbackNV((OpenTK.Graphics.OpenGL.NvTransformFeedback2)target, (UInt32)id); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL.NvTransformFeedback2)target, (UInt32)id); #if DEBUG } #endif @@ -201342,7 +203997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVideoCaptureStreamBufferNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (IntPtr)offset); + InteropHelper.Call(EntryPoints[86], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (IntPtr)offset); #if DEBUG } #endif @@ -201358,7 +204013,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVideoCaptureStreamBufferNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (IntPtr)offset); + InteropHelper.Call(EntryPoints[86], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (IntPtr)offset); #if DEBUG } #endif @@ -201373,7 +204028,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVideoCaptureStreamTextureNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (OpenTK.Graphics.OpenGL.NvVideoCapture)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[87], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (OpenTK.Graphics.OpenGL.NvVideoCapture)target, (UInt32)texture); #if DEBUG } #endif @@ -201389,7 +204044,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVideoCaptureStreamTextureNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (OpenTK.Graphics.OpenGL.NvVideoCapture)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[87], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)frame_region, (OpenTK.Graphics.OpenGL.NvVideoCapture)target, (UInt32)texture); #if DEBUG } #endif @@ -201404,7 +204059,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendBarrierNV(); + InteropHelper.Call(EntryPoints[101]); #if DEBUG } #endif @@ -201419,7 +204074,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendParameteriNV((OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced)pname, (Int32)value); + InteropHelper.Call(EntryPoints[125], (OpenTK.Graphics.OpenGL.NvBlendEquationAdvanced)pname, (Int32)value); #if DEBUG } #endif @@ -201434,7 +204089,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferAddressRangeNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)pname, (UInt32)index, (UInt64)address, (IntPtr)length); + InteropHelper.Call(EntryPoints[128], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)pname, (UInt32)index, (UInt64)address, (IntPtr)length); #if DEBUG } #endif @@ -201450,7 +204105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferAddressRangeNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)pname, (UInt32)index, (UInt64)address, (IntPtr)length); + InteropHelper.Call(EntryPoints[128], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)pname, (UInt32)index, (UInt64)address, (IntPtr)length); #if DEBUG } #endif @@ -201472,7 +204127,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthdNV((Double)depth); + InteropHelper.Call(EntryPoints[156], (Double)depth); #if DEBUG } #endif @@ -201487,7 +204142,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3hNV((Half)red, (Half)green, (Half)blue); + InteropHelper.Call(EntryPoints[182], (Half)red, (Half)green, (Half)blue); #if DEBUG } #endif @@ -201506,7 +204161,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glColor3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[183], (IntPtr)v_ptr); } } #if DEBUG @@ -201527,7 +204182,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glColor3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[183], (IntPtr)v_ptr); } } #if DEBUG @@ -201545,7 +204200,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3hvNV((Half*)v); + InteropHelper.Call(EntryPoints[183], (IntPtr)v); #if DEBUG } #endif @@ -201560,7 +204215,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4hNV((Half)red, (Half)green, (Half)blue, (Half)alpha); + InteropHelper.Call(EntryPoints[204], (Half)red, (Half)green, (Half)blue, (Half)alpha); #if DEBUG } #endif @@ -201579,7 +204234,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glColor4hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[205], (IntPtr)v_ptr); } } #if DEBUG @@ -201600,7 +204255,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glColor4hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[205], (IntPtr)v_ptr); } } #if DEBUG @@ -201618,7 +204273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4hvNV((Half*)v); + InteropHelper.Call(EntryPoints[205], (IntPtr)v); #if DEBUG } #endif @@ -201633,7 +204288,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorFormatNV((Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[222], (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -201648,7 +204303,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerInputNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)input, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)mapping, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)componentUsage); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)input, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)mapping, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)componentUsage); #if DEBUG } #endif @@ -201663,7 +204318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerOutputNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)abOutput, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)cdOutput, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)sumOutput, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)scale, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)abOutput, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)cdOutput, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)sumOutput, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)scale, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)bias, (bool)abDotProduct, (bool)cdDotProduct, (bool)muxSum); #if DEBUG } #endif @@ -201678,7 +204333,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerParameterfNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single)param); + InteropHelper.Call(EntryPoints[249], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single)param); #if DEBUG } #endif @@ -201697,7 +204352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glCombinerParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -201715,7 +204370,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -201730,7 +204385,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerParameteriNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32)param); + InteropHelper.Call(EntryPoints[251], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32)param); #if DEBUG } #endif @@ -201749,7 +204404,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glCombinerParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[252], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -201767,7 +204422,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[252], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -201786,7 +204441,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[253], (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -201807,7 +204462,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[253], (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -201825,7 +204480,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[253], (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (IntPtr)@params); #if DEBUG } #endif @@ -201912,7 +204567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyImageSubDataNV((UInt32)srcName, (OpenTK.Graphics.OpenGL.NvCopyImage)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.NvCopyImage)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[305], (UInt32)srcName, (OpenTK.Graphics.OpenGL.NvCopyImage)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.NvCopyImage)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -202000,7 +204655,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyImageSubDataNV((UInt32)srcName, (OpenTK.Graphics.OpenGL.NvCopyImage)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.NvCopyImage)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[305], (UInt32)srcName, (OpenTK.Graphics.OpenGL.NvCopyImage)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL.NvCopyImage)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -202015,7 +204670,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyPathNV((UInt32)resultPath, (UInt32)srcPath); + InteropHelper.Call(EntryPoints[311], (UInt32)resultPath, (UInt32)srcPath); #if DEBUG } #endif @@ -202031,7 +204686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyPathNV((UInt32)resultPath, (UInt32)srcPath); + InteropHelper.Call(EntryPoints[311], (UInt32)resultPath, (UInt32)srcPath); #if DEBUG } #endif @@ -202050,7 +204705,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202071,7 +204726,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202089,7 +204744,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -202109,7 +204764,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202131,7 +204786,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202149,7 +204804,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -202172,7 +204827,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202202,7 +204857,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202229,7 +204884,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -202258,7 +204913,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202289,7 +204944,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202316,7 +204971,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -202344,7 +204999,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202374,7 +205029,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202401,7 +205056,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -202430,7 +205085,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202461,7 +205116,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202488,7 +205143,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -202516,7 +205171,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202546,7 +205201,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202573,7 +205228,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -202602,7 +205257,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202633,7 +205288,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -202660,7 +205315,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -202688,7 +205343,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -202719,7 +205374,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -202747,7 +205402,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -202777,7 +205432,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -202809,7 +205464,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -202837,7 +205492,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[328], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -202858,7 +205513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverFillPathNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); + InteropHelper.Call(EntryPoints[329], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); #if DEBUG } #endif @@ -202874,7 +205529,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverFillPathNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); + InteropHelper.Call(EntryPoints[329], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); #if DEBUG } #endif @@ -202893,7 +205548,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202914,7 +205569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202932,7 +205587,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -202952,7 +205607,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202974,7 +205629,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -202992,7 +205647,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -203015,7 +205670,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203045,7 +205700,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203072,7 +205727,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -203101,7 +205756,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203132,7 +205787,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203159,7 +205814,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -203187,7 +205842,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203217,7 +205872,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203244,7 +205899,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -203273,7 +205928,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203304,7 +205959,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203331,7 +205986,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -203359,7 +206014,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203389,7 +206044,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203416,7 +206071,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -203445,7 +206100,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203476,7 +206131,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -203503,7 +206158,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -203531,7 +206186,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -203562,7 +206217,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -203590,7 +206245,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -203620,7 +206275,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -203652,7 +206307,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -203680,7 +206335,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glCoverStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[330], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -203701,7 +206356,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverStrokePathNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); + InteropHelper.Call(EntryPoints[331], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); #if DEBUG } #endif @@ -203717,7 +206372,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCoverStrokePathNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); + InteropHelper.Call(EntryPoints[331], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)coverMode); #if DEBUG } #endif @@ -203736,7 +206391,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -203757,7 +206412,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* fences_ptr = (UInt32*)&fences; - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences_ptr); } #if DEBUG } @@ -203777,7 +206432,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -203798,7 +206453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -203816,7 +206471,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -203836,7 +206491,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -203858,7 +206513,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = &fences) { - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -203876,7 +206531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[363], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -203895,7 +206550,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -203916,7 +206571,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -203936,7 +206591,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -203957,7 +206612,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -203975,7 +206630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -203995,7 +206650,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -204017,7 +206672,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -204035,7 +206690,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteOcclusionQueriesNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[371], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -204050,7 +206705,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePathsNV((UInt32)path, (Int32)range); + InteropHelper.Call(EntryPoints[372], (UInt32)path, (Int32)range); #if DEBUG } #endif @@ -204066,7 +206721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeletePathsNV((UInt32)path, (Int32)range); + InteropHelper.Call(EntryPoints[372], (UInt32)path, (Int32)range); #if DEBUG } #endif @@ -204092,7 +206747,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* programs_ptr = (UInt32*)&programs; - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs_ptr); } #if DEBUG } @@ -204120,7 +206775,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* programs_ptr = (UInt32*)&programs; - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs_ptr); } #if DEBUG } @@ -204147,7 +206802,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = programs) { - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -204175,7 +206830,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = &programs) { - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -204200,7 +206855,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -204227,7 +206882,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = programs) { - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -204256,7 +206911,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = &programs) { - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -204281,7 +206936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramsNV((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[378], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -204300,7 +206955,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -204321,7 +206976,7 @@ namespace OpenTK.Graphics.OpenGL { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -204353,7 +207008,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -204386,7 +207041,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -204416,7 +207071,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -204448,7 +207103,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -204482,7 +207137,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -204512,7 +207167,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacksNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[389], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -204527,7 +207182,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthBoundsdNV((Double)zmin, (Double)zmax); + InteropHelper.Call(EntryPoints[393], (Double)zmin, (Double)zmax); #if DEBUG } #endif @@ -204554,7 +207209,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangedNV((Double)zNear, (Double)zFar); + InteropHelper.Call(EntryPoints[399], (Double)zNear, (Double)zFar); #if DEBUG } #endif @@ -204569,7 +207224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTextureNV((UInt32)texture, (UInt32)sampler, (Single)x0, (Single)y0, (Single)x1, (Single)y1, (Single)z, (Single)s0, (Single)t0, (Single)s1, (Single)t1); + InteropHelper.Call(EntryPoints[451], (UInt32)texture, (UInt32)sampler, (Single)x0, (Single)y0, (Single)x1, (Single)y1, (Single)z, (Single)s0, (Single)t0, (Single)s1, (Single)t1); #if DEBUG } #endif @@ -204585,7 +207240,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTextureNV((UInt32)texture, (UInt32)sampler, (Single)x0, (Single)y0, (Single)x1, (Single)y1, (Single)z, (Single)s0, (Single)t0, (Single)s1, (Single)t1); + InteropHelper.Call(EntryPoints[451], (UInt32)texture, (UInt32)sampler, (Single)x0, (Single)y0, (Single)x1, (Single)y1, (Single)z, (Single)s0, (Single)t0, (Single)s1, (Single)t1); #if DEBUG } #endif @@ -204613,7 +207268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackNV((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[454], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -204642,7 +207297,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackNV((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[454], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -204669,7 +207324,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackNV((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[454], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -204697,7 +207352,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackNV((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[454], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -204712,7 +207367,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEdgeFlagFormatNV((Int32)stride); + InteropHelper.Call(EntryPoints[458], (Int32)stride); #if DEBUG } #endif @@ -204727,7 +207382,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndConditionalRenderNV(); + InteropHelper.Call(EntryPoints[479]); #if DEBUG } #endif @@ -204742,7 +207397,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndOcclusionQueryNV(); + InteropHelper.Call(EntryPoints[483]); #if DEBUG } #endif @@ -204757,7 +207412,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTransformFeedbackNV(); + InteropHelper.Call(EntryPoints[490]); #if DEBUG } #endif @@ -204772,7 +207427,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndVideoCaptureNV((UInt32)video_capture_slot); + InteropHelper.Call(EntryPoints[492], (UInt32)video_capture_slot); #if DEBUG } #endif @@ -204788,7 +207443,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndVideoCaptureNV((UInt32)video_capture_slot); + InteropHelper.Call(EntryPoints[492], (UInt32)video_capture_slot); #if DEBUG } #endif @@ -204803,7 +207458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalMapsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)mode); + InteropHelper.Call(EntryPoints[505], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)mode); #if DEBUG } #endif @@ -204822,7 +207477,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (IntPtr)@params_ptr); } } #if DEBUG @@ -204843,7 +207498,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (IntPtr)@params_ptr); } } #if DEBUG @@ -204861,7 +207516,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Single*)@params); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (IntPtr)@params); #if DEBUG } #endif @@ -204881,7 +207536,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (IntPtr)@params_ptr); } } #if DEBUG @@ -204903,7 +207558,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (IntPtr)@params_ptr); } } #if DEBUG @@ -204921,7 +207576,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glExecuteProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Single*)@params); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (IntPtr)@params); #if DEBUG } #endif @@ -204936,7 +207591,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinalCombinerInputNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)input, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)mapping, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)componentUsage); + InteropHelper.Call(EntryPoints[515], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)input, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)mapping, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)componentUsage); #if DEBUG } #endif @@ -204951,7 +207606,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[519], (UInt32)fence); #if DEBUG } #endif @@ -204967,7 +207622,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishFenceNV((UInt32)fence); + InteropHelper.Call(EntryPoints[519], (UInt32)fence); #if DEBUG } #endif @@ -204982,7 +207637,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushPixelDataRangeNV((OpenTK.Graphics.OpenGL.NvPixelDataRange)target); + InteropHelper.Call(EntryPoints[526], (OpenTK.Graphics.OpenGL.NvPixelDataRange)target); #if DEBUG } #endif @@ -204997,7 +207652,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushVertexArrayRangeNV(); + InteropHelper.Call(EntryPoints[530]); #if DEBUG } #endif @@ -205012,7 +207667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordFormatNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[537], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -205027,7 +207682,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordhNV((Half)fog); + InteropHelper.Call(EntryPoints[540], (Half)fog); #if DEBUG } #endif @@ -205043,7 +207698,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogCoordhvNV((Half*)fog); + InteropHelper.Call(EntryPoints[541], (IntPtr)fog); #if DEBUG } #endif @@ -205063,7 +207718,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* fences_ptr = &retval; - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences_ptr); return retval; } #if DEBUG @@ -205084,7 +207739,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -205105,7 +207760,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -205124,7 +207779,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -205144,7 +207799,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences_ptr); } } #if DEBUG @@ -205166,7 +207821,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* fences_ptr = &fences) { - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences_ptr); fences = *fences_ptr; } } @@ -205185,7 +207840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFencesNV((Int32)n, (UInt32*)fences); + InteropHelper.Call(EntryPoints[600], (Int32)n, (IntPtr)fences); #if DEBUG } #endif @@ -205205,7 +207860,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -205226,7 +207881,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -205247,7 +207902,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -205266,7 +207921,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -205286,7 +207941,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -205308,7 +207963,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -205327,7 +207982,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenOcclusionQueriesNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[606], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -205342,7 +207997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenPathsNV((Int32)range); + return InteropHelper.CallReturn(EntryPoints[607], (Int32)range); #if DEBUG } #endif @@ -205362,7 +208017,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* programs_ptr = &retval; - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs_ptr); return retval; } #if DEBUG @@ -205383,7 +208038,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = programs) { - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -205404,7 +208059,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = &programs) { - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs_ptr); programs = *programs_ptr; } } @@ -205423,7 +208078,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -205443,7 +208098,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = programs) { - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -205465,7 +208120,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = &programs) { - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs_ptr); programs = *programs_ptr; } } @@ -205484,7 +208139,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramsNV((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[612], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -205504,7 +208159,7 @@ namespace OpenTK.Graphics.OpenGL const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -205537,7 +208192,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -205570,7 +208225,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -205601,7 +208256,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -205633,7 +208288,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -205667,7 +208322,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -205698,7 +208353,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacksNV((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[622], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -205719,7 +208374,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.NvTransformFeedback* type_ptr = &type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[638], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -205740,7 +208395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.NvTransformFeedback*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[638], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -205762,7 +208417,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL.NvTransformFeedback* type_ptr = &type) { - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[638], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -205783,7 +208438,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveVaryingNV((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL.NvTransformFeedback*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[638], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -205819,7 +208474,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetBufferParameterui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[651], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -205857,7 +208512,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetBufferParameterui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[651], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -205893,7 +208548,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameterui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[651], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params); #if DEBUG } #endif @@ -205930,7 +208585,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetBufferParameterui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[651], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -205969,7 +208624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetBufferParameterui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[651], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206005,7 +208660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameterui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[651], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206024,7 +208679,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[668], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206045,7 +208700,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[668], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206064,7 +208719,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[668], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206083,7 +208738,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[669], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206104,7 +208759,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[669], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206123,7 +208778,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[669], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206142,7 +208797,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[670], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206163,7 +208818,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[670], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206182,7 +208837,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCombinerOutputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[670], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206201,7 +208856,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[671], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206222,7 +208877,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[671], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206241,7 +208896,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCombinerOutputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[671], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)portion, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206260,7 +208915,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[672], (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206281,7 +208936,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[672], (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206300,7 +208955,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCombinerStageParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[672], (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)stage, (OpenTK.Graphics.OpenGL.NvRegisterCombiners2)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206319,7 +208974,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[694], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206340,7 +208995,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[694], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206359,7 +209014,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[694], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206379,7 +209034,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[694], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206401,7 +209056,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[694], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206420,7 +209075,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[694], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206439,7 +209094,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[695], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206460,7 +209115,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[695], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206479,7 +209134,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFinalCombinerInputParameterfvNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[695], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206498,7 +209153,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[696], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206519,7 +209174,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[696], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206538,7 +209193,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFinalCombinerInputParameterivNV((OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[696], (OpenTK.Graphics.OpenGL.NvRegisterCombiners)variable, (OpenTK.Graphics.OpenGL.NvRegisterCombiners)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206553,7 +209208,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetImageHandleNV((UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.NvBindlessTexture)format); + return InteropHelper.CallReturn(EntryPoints[724], (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.NvBindlessTexture)format); #if DEBUG } #endif @@ -206569,7 +209224,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetImageHandleNV((UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.NvBindlessTexture)format); + return InteropHelper.CallReturn(EntryPoints[724], (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL.NvBindlessTexture)format); #if DEBUG } #endif @@ -206588,7 +209243,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* result_ptr = result) { - Delegates.glGetIntegerui64i_vNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[733], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (IntPtr)result_ptr); } } #if DEBUG @@ -206609,7 +209264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* result_ptr = &result) { - Delegates.glGetIntegerui64i_vNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[733], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (IntPtr)result_ptr); result = *result_ptr; } } @@ -206628,7 +209283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerui64i_vNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (UInt64*)result); + InteropHelper.Call(EntryPoints[733], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (IntPtr)result); #if DEBUG } #endif @@ -206648,7 +209303,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* result_ptr = result) { - Delegates.glGetIntegerui64i_vNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[733], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (IntPtr)result_ptr); } } #if DEBUG @@ -206670,7 +209325,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* result_ptr = &result) { - Delegates.glGetIntegerui64i_vNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[733], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (IntPtr)result_ptr); result = *result_ptr; } } @@ -206689,7 +209344,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerui64i_vNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (UInt64*)result); + InteropHelper.Call(EntryPoints[733], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)value, (UInt32)index, (IntPtr)result); #if DEBUG } #endif @@ -206708,7 +209363,7 @@ namespace OpenTK.Graphics.OpenGL { Int64 retval; Int64* result_ptr = &retval; - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result_ptr); return retval; } #if DEBUG @@ -206729,7 +209384,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* result_ptr = result) { - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result_ptr); } } #if DEBUG @@ -206750,7 +209405,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* result_ptr = &result) { - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result_ptr); result = *result_ptr; } } @@ -206769,7 +209424,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result); #if DEBUG } #endif @@ -206789,7 +209444,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* result_ptr = result) { - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result_ptr); } } #if DEBUG @@ -206811,7 +209466,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* result_ptr = &result) { - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result_ptr); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result_ptr); result = *result_ptr; } } @@ -206830,7 +209485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerui64vNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (UInt64*)result); + InteropHelper.Call(EntryPoints[734], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)value, (IntPtr)result); #if DEBUG } #endif @@ -206849,7 +209504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[750], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206870,7 +209525,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[750], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206889,7 +209544,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[750], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206909,7 +209564,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[750], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206931,7 +209586,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[750], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -206950,7 +209605,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapAttribParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[750], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -206969,7 +209624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[751], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -206990,7 +209645,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[751], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207009,7 +209664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[751], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207029,7 +209684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[751], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207051,7 +209706,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[751], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207070,7 +209725,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapAttribParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[751], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207085,7 +209740,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); #if DEBUG } #endif @@ -207104,7 +209759,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -207128,7 +209783,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -207152,7 +209807,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -207176,7 +209831,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); points = (T6)points_ptr.Target; } finally @@ -207198,7 +209853,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points); #if DEBUG } #endif @@ -207218,7 +209873,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -207243,7 +209898,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -207268,7 +209923,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -207293,7 +209948,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glGetMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[752], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); points = (T6)points_ptr.Target; } finally @@ -207318,7 +209973,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetMapParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[756], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207339,7 +209994,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMapParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[756], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207358,7 +210013,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[756], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207377,7 +210032,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMapParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[757], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207398,7 +210053,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMapParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[757], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207417,7 +210072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[757], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207453,7 +210108,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = val) { - Delegates.glGetMultisamplefvNV((OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[770], (OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -207491,7 +210146,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = &val) { - Delegates.glGetMultisamplefvNV((OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[770], (OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (IntPtr)val_ptr); val = *val_ptr; } } @@ -207527,7 +210182,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultisamplefvNV((OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[770], (OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -207564,7 +210219,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = val) { - Delegates.glGetMultisamplefvNV((OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[770], (OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -207603,7 +210258,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* val_ptr = &val) { - Delegates.glGetMultisamplefvNV((OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[770], (OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (IntPtr)val_ptr); val = *val_ptr; } } @@ -207639,7 +210294,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultisamplefvNV((OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[770], (OpenTK.Graphics.OpenGL.NvExplicitMultisample)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -207658,7 +210313,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetNamedBufferParameterui64vNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[784], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207679,7 +210334,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetNamedBufferParameterui64vNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[784], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207698,7 +210353,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferParameterui64vNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[784], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207718,7 +210373,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetNamedBufferParameterui64vNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[784], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207740,7 +210395,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetNamedBufferParameterui64vNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[784], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207759,7 +210414,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedBufferParameterui64vNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[784], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207778,7 +210433,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[826], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207799,7 +210454,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[826], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207818,7 +210473,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[826], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207838,7 +210493,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[826], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207860,7 +210515,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[826], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207879,7 +210534,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetOcclusionQueryivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[826], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207899,7 +210554,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[827], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -207921,7 +210576,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[827], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -207940,7 +210595,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetOcclusionQueryuivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[827], (UInt32)id, (OpenTK.Graphics.OpenGL.NvOcclusionQuery)pname, (IntPtr)@params); #if DEBUG } #endif @@ -207959,7 +210614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glGetPathColorGenfvNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[828], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -207980,7 +210635,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glGetPathColorGenfvNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[828], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -207999,7 +210654,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathColorGenfvNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value); + InteropHelper.Call(EntryPoints[828], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -208018,7 +210673,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glGetPathColorGenivNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[829], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -208039,7 +210694,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glGetPathColorGenivNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[829], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -208058,7 +210713,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathColorGenivNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value); + InteropHelper.Call(EntryPoints[829], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -208077,7 +210732,7 @@ namespace OpenTK.Graphics.OpenGL { Byte retval; Byte* commands_ptr = &retval; - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands_ptr); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands_ptr); return retval; } #if DEBUG @@ -208099,7 +210754,7 @@ namespace OpenTK.Graphics.OpenGL { Byte retval; Byte* commands_ptr = &retval; - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands_ptr); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands_ptr); return retval; } #if DEBUG @@ -208120,7 +210775,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = commands) { - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands_ptr); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands_ptr); } } #if DEBUG @@ -208141,7 +210796,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = &commands) { - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands_ptr); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands_ptr); commands = *commands_ptr; } } @@ -208160,7 +210815,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands); #if DEBUG } #endif @@ -208180,7 +210835,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = commands) { - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands_ptr); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands_ptr); } } #if DEBUG @@ -208202,7 +210857,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = &commands) { - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands_ptr); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands_ptr); commands = *commands_ptr; } } @@ -208221,7 +210876,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathCommandsNV((UInt32)path, (Byte*)commands); + InteropHelper.Call(EntryPoints[830], (UInt32)path, (IntPtr)commands); #if DEBUG } #endif @@ -208240,7 +210895,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* coords_ptr = &retval; - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords_ptr); return retval; } #if DEBUG @@ -208262,7 +210917,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* coords_ptr = &retval; - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords_ptr); return retval; } #if DEBUG @@ -208283,7 +210938,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = coords) { - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords_ptr); } } #if DEBUG @@ -208304,7 +210959,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = &coords) { - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords_ptr); coords = *coords_ptr; } } @@ -208323,7 +210978,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords); #if DEBUG } #endif @@ -208343,7 +210998,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = coords) { - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords_ptr); } } #if DEBUG @@ -208365,7 +211020,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coords_ptr = &coords) { - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords_ptr); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords_ptr); coords = *coords_ptr; } } @@ -208384,7 +211039,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathCoordsNV((UInt32)path, (Single*)coords); + InteropHelper.Call(EntryPoints[831], (UInt32)path, (IntPtr)coords); #if DEBUG } #endif @@ -208403,7 +211058,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* dashArray_ptr = &retval; - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray_ptr); return retval; } #if DEBUG @@ -208425,7 +211080,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* dashArray_ptr = &retval; - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray_ptr); return retval; } #if DEBUG @@ -208446,7 +211101,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = dashArray) { - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray_ptr); } } #if DEBUG @@ -208467,7 +211122,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = &dashArray) { - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray_ptr); dashArray = *dashArray_ptr; } } @@ -208486,7 +211141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray); #if DEBUG } #endif @@ -208506,7 +211161,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = dashArray) { - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray_ptr); } } #if DEBUG @@ -208528,7 +211183,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = &dashArray) { - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray_ptr); dashArray = *dashArray_ptr; } } @@ -208547,7 +211202,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathDashArrayNV((UInt32)path, (Single*)dashArray); + InteropHelper.Call(EntryPoints[832], (UInt32)path, (IntPtr)dashArray); #if DEBUG } #endif @@ -208562,7 +211217,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetPathLengthNV((UInt32)path, (Int32)startSegment, (Int32)numSegments); + return InteropHelper.CallReturn(EntryPoints[833], (UInt32)path, (Int32)startSegment, (Int32)numSegments); #if DEBUG } #endif @@ -208578,7 +211233,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetPathLengthNV((UInt32)path, (Int32)startSegment, (Int32)numSegments); + return InteropHelper.CallReturn(EntryPoints[833], (UInt32)path, (Int32)startSegment, (Int32)numSegments); #if DEBUG } #endif @@ -208597,7 +211252,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = metrics) { - Delegates.glGetPathMetricRangeNV((UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[834], (UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (IntPtr)metrics_ptr); } } #if DEBUG @@ -208618,7 +211273,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = &metrics) { - Delegates.glGetPathMetricRangeNV((UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[834], (UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } } @@ -208637,7 +211292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathMetricRangeNV((UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[834], (UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (IntPtr)metrics); #if DEBUG } #endif @@ -208657,7 +211312,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = metrics) { - Delegates.glGetPathMetricRangeNV((UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[834], (UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (IntPtr)metrics_ptr); } } #if DEBUG @@ -208679,7 +211334,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = &metrics) { - Delegates.glGetPathMetricRangeNV((UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[834], (UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } } @@ -208698,7 +211353,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathMetricRangeNV((UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[834], (UInt32)metricQueryMask, (UInt32)firstPathName, (Int32)numPaths, (Int32)stride, (IntPtr)metrics); #if DEBUG } #endif @@ -208717,7 +211372,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = metrics) { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } } #if DEBUG @@ -208738,7 +211393,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = &metrics) { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } } @@ -208757,7 +211412,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); #if DEBUG } #endif @@ -208780,7 +211435,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } finally { @@ -208810,7 +211465,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } finally @@ -208838,7 +211493,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); } finally { @@ -208866,7 +211521,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } finally { @@ -208896,7 +211551,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } finally @@ -208924,7 +211579,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); } finally { @@ -208952,7 +211607,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } finally { @@ -208982,7 +211637,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } finally @@ -209010,7 +211665,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); } finally { @@ -209038,7 +211693,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); paths = (T3)paths_ptr.Target; } finally @@ -209069,7 +211724,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); paths = (T3)paths_ptr.Target; metrics = *metrics_ptr; } @@ -209098,7 +211753,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); paths = (T3)paths_ptr.Target; } finally @@ -209124,7 +211779,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = metrics) { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } } #if DEBUG @@ -209146,7 +211801,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* metrics_ptr = &metrics) { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } } @@ -209165,7 +211820,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); #if DEBUG } #endif @@ -209189,7 +211844,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } finally { @@ -209220,7 +211875,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } finally @@ -209248,7 +211903,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); } finally { @@ -209277,7 +211932,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } finally { @@ -209308,7 +211963,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } finally @@ -209336,7 +211991,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); } finally { @@ -209365,7 +212020,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); } finally { @@ -209396,7 +212051,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); metrics = *metrics_ptr; } finally @@ -209424,7 +212079,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); } finally { @@ -209453,7 +212108,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); paths = (T3)paths_ptr.Target; } finally @@ -209485,7 +212140,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics_ptr); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics_ptr); paths = (T3)paths_ptr.Target; metrics = *metrics_ptr; } @@ -209514,7 +212169,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathMetricsNV((UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (Single*)metrics); + InteropHelper.Call(EntryPoints[835], (UInt32)metricQueryMask, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)stride, (IntPtr)metrics); paths = (T3)paths_ptr.Target; } finally @@ -209539,7 +212194,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glGetPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[836], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -209560,7 +212215,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glGetPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[836], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -209579,7 +212234,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value); + InteropHelper.Call(EntryPoints[836], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -209599,7 +212254,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glGetPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[836], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -209621,7 +212276,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glGetPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[836], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -209640,7 +212295,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value); + InteropHelper.Call(EntryPoints[836], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -209659,7 +212314,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glGetPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[837], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -209680,7 +212335,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glGetPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[837], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -209699,7 +212354,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value); + InteropHelper.Call(EntryPoints[837], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -209719,7 +212374,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glGetPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[837], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -209741,7 +212396,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glGetPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[837], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -209760,7 +212415,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value); + InteropHelper.Call(EntryPoints[837], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -209779,7 +212434,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* returnedSpacing_ptr = returnedSpacing) { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } } #if DEBUG @@ -209800,7 +212455,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* returnedSpacing_ptr = &returnedSpacing) { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } } @@ -209819,7 +212474,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); #if DEBUG } #endif @@ -209839,7 +212494,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* returnedSpacing_ptr = returnedSpacing) { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } } #if DEBUG @@ -209861,7 +212516,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* returnedSpacing_ptr = &returnedSpacing) { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } } @@ -209880,7 +212535,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); #if DEBUG } #endif @@ -209903,7 +212558,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } finally { @@ -209933,7 +212588,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } finally @@ -209961,7 +212616,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); } finally { @@ -209990,7 +212645,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } finally { @@ -210021,7 +212676,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } finally @@ -210049,7 +212704,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); } finally { @@ -210077,7 +212732,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } finally { @@ -210107,7 +212762,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } finally @@ -210135,7 +212790,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); } finally { @@ -210164,7 +212819,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } finally { @@ -210195,7 +212850,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } finally @@ -210223,7 +212878,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); } finally { @@ -210251,7 +212906,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } finally { @@ -210281,7 +212936,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } finally @@ -210309,7 +212964,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); } finally { @@ -210338,7 +212993,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); } finally { @@ -210369,7 +213024,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); returnedSpacing = *returnedSpacing_ptr; } finally @@ -210397,7 +213052,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); } finally { @@ -210425,7 +213080,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); paths = (T3)paths_ptr.Target; } finally @@ -210456,7 +213111,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); paths = (T3)paths_ptr.Target; returnedSpacing = *returnedSpacing_ptr; } @@ -210485,7 +213140,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); paths = (T3)paths_ptr.Target; } finally @@ -210515,7 +213170,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); paths = (T3)paths_ptr.Target; } finally @@ -210547,7 +213202,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing_ptr); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing_ptr); paths = (T3)paths_ptr.Target; returnedSpacing = *returnedSpacing_ptr; } @@ -210576,7 +213231,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glGetPathSpacingNV((OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)returnedSpacing); + InteropHelper.Call(EntryPoints[838], (OpenTK.Graphics.OpenGL.NvPathRendering)pathListMode, (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Single)advanceScale, (Single)kerningScale, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)returnedSpacing); paths = (T3)paths_ptr.Target; } finally @@ -210601,7 +213256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glGetPathTexGenfvNV((OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[839], (OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -210622,7 +213277,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = &value) { - Delegates.glGetPathTexGenfvNV((OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[839], (OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -210641,7 +213296,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathTexGenfvNV((OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value); + InteropHelper.Call(EntryPoints[839], (OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -210660,7 +213315,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glGetPathTexGenivNV((OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[840], (OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -210681,7 +213336,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = &value) { - Delegates.glGetPathTexGenivNV((OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[840], (OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); value = *value_ptr; } } @@ -210700,7 +213355,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPathTexGenivNV((OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value); + InteropHelper.Call(EntryPoints[840], (OpenTK.Graphics.OpenGL.TextureUnit)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -210719,7 +213374,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[864], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -210740,7 +213395,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[864], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -210759,7 +213414,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[864], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -210779,7 +213434,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[864], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -210801,7 +213456,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[864], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -210820,7 +213475,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[864], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -210840,7 +213495,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[865], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -210862,7 +213517,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[865], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -210881,7 +213536,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramEnvParameterIuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + InteropHelper.Call(EntryPoints[865], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -210917,7 +213572,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[870], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -210955,7 +213610,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[870], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -210991,7 +213646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[870], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -211028,7 +213683,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[870], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -211067,7 +213722,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[870], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211103,7 +213758,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramivNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[870], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -211122,7 +213777,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[873], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -211143,7 +213798,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[873], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211162,7 +213817,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[873], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -211182,7 +213837,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[873], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -211204,7 +213859,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[873], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211223,7 +213878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterIivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[873], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -211243,7 +213898,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[874], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -211265,7 +213920,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[874], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211284,7 +213939,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramLocalParameterIuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + InteropHelper.Call(EntryPoints[874], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -211304,7 +213959,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[875], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -211326,7 +213981,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[875], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211345,7 +214000,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)@params); + InteropHelper.Call(EntryPoints[875], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)@params); #if DEBUG } #endif @@ -211366,7 +214021,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[875], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -211389,7 +214044,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[875], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211408,7 +214063,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramNamedParameterdvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)@params); + InteropHelper.Call(EntryPoints[875], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)@params); #if DEBUG } #endif @@ -211428,7 +214083,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramNamedParameterfvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[876], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -211450,7 +214105,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramNamedParameterfvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[876], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211469,7 +214124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramNamedParameterfvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)@params); + InteropHelper.Call(EntryPoints[876], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)@params); #if DEBUG } #endif @@ -211490,7 +214145,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramNamedParameterfvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[876], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -211513,7 +214168,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramNamedParameterfvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[876], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211532,7 +214187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramNamedParameterfvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)@params); + InteropHelper.Call(EntryPoints[876], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)@params); #if DEBUG } #endif @@ -211551,7 +214206,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[877], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -211572,7 +214227,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[877], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211591,7 +214246,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[877], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -211611,7 +214266,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[877], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -211633,7 +214288,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[877], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211652,7 +214307,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramParameterdvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[877], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -211671,7 +214326,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[878], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -211692,7 +214347,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[878], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211711,7 +214366,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[878], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -211731,7 +214386,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[878], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -211753,7 +214408,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[878], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -211772,7 +214427,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramParameterfvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[878], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -211791,7 +214446,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[890], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)program_ptr); } } #if DEBUG @@ -211812,7 +214467,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = &program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[890], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)program_ptr); program = *program_ptr; } } @@ -211831,7 +214486,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Byte*)program); + InteropHelper.Call(EntryPoints[890], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)program); #if DEBUG } #endif @@ -211851,7 +214506,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[890], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)program_ptr); } } #if DEBUG @@ -211873,7 +214528,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = &program) { - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[890], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)program_ptr); program = *program_ptr; } } @@ -211892,7 +214547,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStringNV((UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Byte*)program); + InteropHelper.Call(EntryPoints[890], (UInt32)id, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)program); #if DEBUG } #endif @@ -211911,7 +214566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = param) { - Delegates.glGetProgramSubroutineParameteruivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[891], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (IntPtr)param_ptr); } } #if DEBUG @@ -211932,7 +214587,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* param_ptr = ¶m) { - Delegates.glGetProgramSubroutineParameteruivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[891], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (IntPtr)param_ptr); param = *param_ptr; } } @@ -211951,7 +214606,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramSubroutineParameteruivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (UInt32*)param); + InteropHelper.Call(EntryPoints[891], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (IntPtr)param); #if DEBUG } #endif @@ -211971,7 +214626,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* param_ptr = param) { - Delegates.glGetProgramSubroutineParameteruivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[891], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (IntPtr)param_ptr); } } #if DEBUG @@ -211993,7 +214648,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* param_ptr = ¶m) { - Delegates.glGetProgramSubroutineParameteruivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[891], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (IntPtr)param_ptr); param = *param_ptr; } } @@ -212012,7 +214667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramSubroutineParameteruivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (UInt32*)param); + InteropHelper.Call(EntryPoints[891], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (UInt32)index, (IntPtr)param); #if DEBUG } #endif @@ -212027,7 +214682,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureHandleNV((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[945], (UInt32)texture); #if DEBUG } #endif @@ -212043,7 +214698,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureHandleNV((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[945], (UInt32)texture); #if DEBUG } #endif @@ -212058,7 +214713,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureSamplerHandleNV((UInt32)texture, (UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[954], (UInt32)texture, (UInt32)sampler); #if DEBUG } #endif @@ -212074,7 +214729,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureSamplerHandleNV((UInt32)texture, (UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[954], (UInt32)texture, (UInt32)sampler); #if DEBUG } #endif @@ -212093,7 +214748,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[955], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212112,7 +214767,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[955], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -212132,7 +214787,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[955], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212151,7 +214806,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTrackMatrixivNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[955], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -212207,7 +214862,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* location_ptr = &location) { - Delegates.glGetTransformFeedbackVaryingNV((UInt32)program, (UInt32)index, (Int32*)location_ptr); + InteropHelper.Call(EntryPoints[958], (UInt32)program, (UInt32)index, (IntPtr)location_ptr); location = *location_ptr; } } @@ -212263,7 +214918,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVaryingNV((UInt32)program, (UInt32)index, (Int32*)location); + InteropHelper.Call(EntryPoints[958], (UInt32)program, (UInt32)index, (IntPtr)location); #if DEBUG } #endif @@ -212320,7 +214975,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* location_ptr = &location) { - Delegates.glGetTransformFeedbackVaryingNV((UInt32)program, (UInt32)index, (Int32*)location_ptr); + InteropHelper.Call(EntryPoints[958], (UInt32)program, (UInt32)index, (IntPtr)location_ptr); location = *location_ptr; } } @@ -212376,7 +215031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVaryingNV((UInt32)program, (UInt32)index, (Int32*)location); + InteropHelper.Call(EntryPoints[958], (UInt32)program, (UInt32)index, (IntPtr)location); #if DEBUG } #endif @@ -212412,7 +215067,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetUniformi64vNV((UInt32)program, (Int32)location, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[964], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -212450,7 +215105,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetUniformi64vNV((UInt32)program, (Int32)location, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[964], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212486,7 +215141,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformi64vNV((UInt32)program, (Int32)location, (Int64*)@params); + InteropHelper.Call(EntryPoints[964], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -212523,7 +215178,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetUniformi64vNV((UInt32)program, (Int32)location, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[964], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -212562,7 +215217,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetUniformi64vNV((UInt32)program, (Int32)location, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[964], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212598,7 +215253,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformi64vNV((UInt32)program, (Int32)location, (Int64*)@params); + InteropHelper.Call(EntryPoints[964], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -212635,7 +215290,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetUniformui64vNV((UInt32)program, (Int32)location, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[972], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -212674,7 +215329,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetUniformui64vNV((UInt32)program, (Int32)location, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[972], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212710,7 +215365,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformui64vNV((UInt32)program, (Int32)location, (UInt64*)@params); + InteropHelper.Call(EntryPoints[972], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -212725,7 +215380,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetVaryingLocationNV((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[981], (UInt32)program, (String)name); #if DEBUG } #endif @@ -212741,7 +215396,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetVaryingLocationNV((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[981], (UInt32)program, (String)name); #if DEBUG } #endif @@ -212777,7 +215432,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[990], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212813,7 +215468,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[990], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -212850,7 +215505,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[990], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212886,7 +215541,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[990], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -212922,7 +215577,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[993], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -212958,7 +215613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[993], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -212995,7 +215650,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[993], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213031,7 +215686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfvNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[993], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213067,7 +215722,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1000], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213103,7 +215758,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1000], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213140,7 +215795,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1000], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213176,7 +215831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribivNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1000], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213195,7 +215850,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetVertexAttribLi64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1003], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213216,7 +215871,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLi64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1003], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213235,7 +215890,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLi64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[1003], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213255,7 +215910,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetVertexAttribLi64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1003], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213277,7 +215932,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLi64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1003], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213296,7 +215951,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLi64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[1003], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213316,7 +215971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetVertexAttribLui64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1005], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213338,7 +215993,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLui64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1005], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213357,7 +216012,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLui64vNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[1005], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213372,7 +216027,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -213391,7 +216046,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -213415,7 +216070,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -213439,7 +216094,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -213463,7 +216118,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -213485,7 +216140,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -213505,7 +216160,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -213530,7 +216185,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -213555,7 +216210,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -213580,7 +216235,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointervNV((UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1008], (UInt32)index, (OpenTK.Graphics.OpenGL.NvVertexProgram)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -213605,7 +216260,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVideoCaptureivNV((UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1009], (UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213626,7 +216281,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVideoCaptureivNV((UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1009], (UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213645,7 +216300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureivNV((UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1009], (UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213665,7 +216320,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVideoCaptureivNV((UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1009], (UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213687,7 +216342,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVideoCaptureivNV((UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1009], (UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213706,7 +216361,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureivNV((UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1009], (UInt32)video_capture_slot, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213725,7 +216380,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVideoCaptureStreamdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1010], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213746,7 +216401,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVideoCaptureStreamdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1010], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213765,7 +216420,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureStreamdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1010], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213785,7 +216440,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glGetVideoCaptureStreamdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1010], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213807,7 +216462,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVideoCaptureStreamdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[1010], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213826,7 +216481,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureStreamdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[1010], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213845,7 +216500,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVideoCaptureStreamfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1011], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213866,7 +216521,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVideoCaptureStreamfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1011], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213885,7 +216540,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureStreamfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1011], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213905,7 +216560,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetVideoCaptureStreamfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1011], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213927,7 +216582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVideoCaptureStreamfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1011], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -213946,7 +216601,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureStreamfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1011], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -213965,7 +216620,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVideoCaptureStreamivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1012], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -213986,7 +216641,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVideoCaptureStreamivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1012], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214005,7 +216660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureStreamivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1012], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214025,7 +216680,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVideoCaptureStreamivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1012], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214047,7 +216702,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVideoCaptureStreamivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1012], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214066,7 +216721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoCaptureStreamivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1012], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214085,7 +216740,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetVideoi64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1013], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214106,7 +216761,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetVideoi64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1013], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214125,7 +216780,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoi64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[1013], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214145,7 +216800,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = @params) { - Delegates.glGetVideoi64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1013], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214167,7 +216822,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetVideoi64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[1013], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214186,7 +216841,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoi64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[1013], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214205,7 +216860,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVideoivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1014], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214226,7 +216881,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVideoivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1014], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214245,7 +216900,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1014], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214265,7 +216920,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVideoivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1014], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214287,7 +216942,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVideoivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1014], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214306,7 +216961,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1014], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214326,7 +216981,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetVideoui64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1015], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214348,7 +217003,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetVideoui64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[1015], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214367,7 +217022,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideoui64vNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[1015], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214387,7 +217042,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetVideouivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1016], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -214409,7 +217064,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetVideouivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1016], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -214428,7 +217083,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVideouivNV((UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1016], (UInt32)video_slot, (OpenTK.Graphics.OpenGL.NvPresentVideo)pname, (IntPtr)@params); #if DEBUG } #endif @@ -214443,7 +217098,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexFormatNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[1038], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -214458,7 +217113,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInterpolatePathsNV((UInt32)resultPath, (UInt32)pathA, (UInt32)pathB, (Single)weight); + InteropHelper.Call(EntryPoints[1059], (UInt32)resultPath, (UInt32)pathA, (UInt32)pathB, (Single)weight); #if DEBUG } #endif @@ -214474,7 +217129,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInterpolatePathsNV((UInt32)resultPath, (UInt32)pathA, (UInt32)pathB, (Single)weight); + InteropHelper.Call(EntryPoints[1059], (UInt32)resultPath, (UInt32)pathA, (UInt32)pathB, (Single)weight); #if DEBUG } #endif @@ -214489,7 +217144,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBufferResidentNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target); + return InteropHelper.CallReturn(EntryPoints[1069], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target); #if DEBUG } #endif @@ -214504,7 +217159,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1074], (UInt32)fence); #if DEBUG } #endif @@ -214520,7 +217175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1074], (UInt32)fence); #if DEBUG } #endif @@ -214535,7 +217190,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsImageHandleResidentNV((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1078], (UInt64)handle); #if DEBUG } #endif @@ -214551,7 +217206,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsImageHandleResidentNV((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1078], (UInt64)handle); #if DEBUG } #endif @@ -214566,7 +217221,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsNamedBufferResidentNV((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1081], (UInt32)buffer); #if DEBUG } #endif @@ -214582,7 +217237,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsNamedBufferResidentNV((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[1081], (UInt32)buffer); #if DEBUG } #endif @@ -214597,7 +217252,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsOcclusionQueryNV((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1084], (UInt32)id); #if DEBUG } #endif @@ -214613,7 +217268,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsOcclusionQueryNV((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1084], (UInt32)id); #if DEBUG } #endif @@ -214628,7 +217283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsPathNV((UInt32)path); + return InteropHelper.CallReturn(EntryPoints[1085], (UInt32)path); #if DEBUG } #endif @@ -214644,7 +217299,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsPathNV((UInt32)path); + return InteropHelper.CallReturn(EntryPoints[1085], (UInt32)path); #if DEBUG } #endif @@ -214659,7 +217314,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsPointInFillPathNV((UInt32)path, (UInt32)mask, (Single)x, (Single)y); + return InteropHelper.CallReturn(EntryPoints[1086], (UInt32)path, (UInt32)mask, (Single)x, (Single)y); #if DEBUG } #endif @@ -214675,7 +217330,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsPointInFillPathNV((UInt32)path, (UInt32)mask, (Single)x, (Single)y); + return InteropHelper.CallReturn(EntryPoints[1086], (UInt32)path, (UInt32)mask, (Single)x, (Single)y); #if DEBUG } #endif @@ -214690,7 +217345,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsPointInStrokePathNV((UInt32)path, (Single)x, (Single)y); + return InteropHelper.CallReturn(EntryPoints[1087], (UInt32)path, (Single)x, (Single)y); #if DEBUG } #endif @@ -214706,7 +217361,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsPointInStrokePathNV((UInt32)path, (Single)x, (Single)y); + return InteropHelper.CallReturn(EntryPoints[1087], (UInt32)path, (Single)x, (Single)y); #if DEBUG } #endif @@ -214728,7 +217383,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramNV((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1090], (UInt32)id); #if DEBUG } #endif @@ -214751,7 +217406,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramNV((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1090], (UInt32)id); #if DEBUG } #endif @@ -214766,7 +217421,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureHandleResidentNV((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1103], (UInt64)handle); #if DEBUG } #endif @@ -214782,7 +217437,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureHandleResidentNV((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[1103], (UInt64)handle); #if DEBUG } #endif @@ -214804,7 +217459,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedbackNV((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1105], (UInt32)id); #if DEBUG } #endif @@ -214827,7 +217482,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedbackNV((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[1105], (UInt32)id); #if DEBUG } #endif @@ -214846,7 +217501,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[1140], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (IntPtr)program_ptr); } } #if DEBUG @@ -214867,7 +217522,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = &program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[1140], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (IntPtr)program_ptr); } } #if DEBUG @@ -214885,7 +217540,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (Byte*)program); + InteropHelper.Call(EntryPoints[1140], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (IntPtr)program); #if DEBUG } #endif @@ -214905,7 +217560,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[1140], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (IntPtr)program_ptr); } } #if DEBUG @@ -214927,7 +217582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* program_ptr = &program) { - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (Byte*)program_ptr); + InteropHelper.Call(EntryPoints[1140], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (IntPtr)program_ptr); } } #if DEBUG @@ -214945,7 +217600,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadProgramNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (Byte*)program); + InteropHelper.Call(EntryPoints[1140], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)id, (Int32)len, (IntPtr)program); #if DEBUG } #endif @@ -214960,7 +217615,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeBufferNonResidentNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target); + InteropHelper.Call(EntryPoints[1148], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target); #if DEBUG } #endif @@ -214975,7 +217630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeBufferResidentNV((OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)access); + InteropHelper.Call(EntryPoints[1149], (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)target, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)access); #if DEBUG } #endif @@ -214990,7 +217645,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleNonResidentNV((UInt64)handle); + InteropHelper.Call(EntryPoints[1151], (UInt64)handle); #if DEBUG } #endif @@ -215006,7 +217661,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleNonResidentNV((UInt64)handle); + InteropHelper.Call(EntryPoints[1151], (UInt64)handle); #if DEBUG } #endif @@ -215021,7 +217676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleResidentNV((UInt64)handle, (OpenTK.Graphics.OpenGL.NvBindlessTexture)access); + InteropHelper.Call(EntryPoints[1153], (UInt64)handle, (OpenTK.Graphics.OpenGL.NvBindlessTexture)access); #if DEBUG } #endif @@ -215037,7 +217692,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleResidentNV((UInt64)handle, (OpenTK.Graphics.OpenGL.NvBindlessTexture)access); + InteropHelper.Call(EntryPoints[1153], (UInt64)handle, (OpenTK.Graphics.OpenGL.NvBindlessTexture)access); #if DEBUG } #endif @@ -215052,7 +217707,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeNamedBufferNonResidentNV((UInt32)buffer); + InteropHelper.Call(EntryPoints[1154], (UInt32)buffer); #if DEBUG } #endif @@ -215068,7 +217723,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeNamedBufferNonResidentNV((UInt32)buffer); + InteropHelper.Call(EntryPoints[1154], (UInt32)buffer); #if DEBUG } #endif @@ -215083,7 +217738,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeNamedBufferResidentNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)access); + InteropHelper.Call(EntryPoints[1155], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)access); #if DEBUG } #endif @@ -215099,7 +217754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeNamedBufferResidentNV((UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)access); + InteropHelper.Call(EntryPoints[1155], (UInt32)buffer, (OpenTK.Graphics.OpenGL.NvShaderBufferLoad)access); #if DEBUG } #endif @@ -215114,7 +217769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleNonResidentNV((UInt64)handle); + InteropHelper.Call(EntryPoints[1157], (UInt64)handle); #if DEBUG } #endif @@ -215130,7 +217785,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleNonResidentNV((UInt64)handle); + InteropHelper.Call(EntryPoints[1157], (UInt64)handle); #if DEBUG } #endif @@ -215145,7 +217800,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleResidentNV((UInt64)handle); + InteropHelper.Call(EntryPoints[1159], (UInt64)handle); #if DEBUG } #endif @@ -215161,7 +217816,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleResidentNV((UInt64)handle); + InteropHelper.Call(EntryPoints[1159], (UInt64)handle); #if DEBUG } #endif @@ -215176,7 +217831,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); #if DEBUG } #endif @@ -215195,7 +217850,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -215219,7 +217874,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -215243,7 +217898,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -215267,7 +217922,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); points = (T8)points_ptr.Target; } finally @@ -215289,7 +217944,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points); #if DEBUG } #endif @@ -215309,7 +217964,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -215334,7 +217989,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -215359,7 +218014,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); } finally { @@ -215384,7 +218039,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle points_ptr = GCHandle.Alloc(points, GCHandleType.Pinned); try { - Delegates.glMapControlPointsNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1169], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (UInt32)index, (OpenTK.Graphics.OpenGL.NvEvaluators)type, (Int32)ustride, (Int32)vstride, (Int32)uorder, (Int32)vorder, (bool)packed, (IntPtr)points_ptr.AddrOfPinnedObject()); points = (T8)points_ptr.Target; } finally @@ -215409,7 +218064,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glMapParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1179], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -215430,7 +218085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glMapParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1179], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -215448,7 +218103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapParameterfvNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1179], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -215467,7 +218122,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glMapParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1180], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -215488,7 +218143,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glMapParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1180], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -215506,7 +218161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapParameterivNV((OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1180], (OpenTK.Graphics.OpenGL.NvEvaluators)target, (OpenTK.Graphics.OpenGL.NvEvaluators)pname, (IntPtr)@params); #if DEBUG } #endif @@ -215521,7 +218176,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect, (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1226], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect, (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); #if DEBUG } #endif @@ -215540,7 +218195,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1226], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); } finally { @@ -215564,7 +218219,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1226], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); } finally { @@ -215588,7 +218243,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1226], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); } finally { @@ -215612,7 +218267,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1226], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); indirect = (T1)indirect_ptr.Target; } finally @@ -215633,7 +218288,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect, (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1234], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect, (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); #if DEBUG } #endif @@ -215652,7 +218307,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1234], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); } finally { @@ -215676,7 +218331,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1234], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); } finally { @@ -215700,7 +218355,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1234], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); } finally { @@ -215724,7 +218379,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirectBindlessNV((OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); + InteropHelper.Call(EntryPoints[1234], (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)mode, (OpenTK.Graphics.OpenGL.NvBindlessMultiDrawIndirect)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawCount, (Int32)stride, (Int32)vertexBufferCount); indirect = (T2)indirect_ptr.Target; } finally @@ -215745,7 +218400,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s); + InteropHelper.Call(EntryPoints[1250], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s); #if DEBUG } #endif @@ -215761,7 +218416,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v); + InteropHelper.Call(EntryPoints[1251], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -215776,7 +218431,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s, (Half)t); + InteropHelper.Call(EntryPoints[1272], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s, (Half)t); #if DEBUG } #endif @@ -215795,7 +218450,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[1273], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -215816,7 +218471,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[1273], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -215834,7 +218489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v); + InteropHelper.Call(EntryPoints[1273], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -215849,7 +218504,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s, (Half)t, (Half)r); + InteropHelper.Call(EntryPoints[1294], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s, (Half)t, (Half)r); #if DEBUG } #endif @@ -215868,7 +218523,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[1295], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -215889,7 +218544,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[1295], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -215907,7 +218562,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v); + InteropHelper.Call(EntryPoints[1295], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -215922,7 +218577,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4hNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s, (Half)t, (Half)r, (Half)q); + InteropHelper.Call(EntryPoints[1316], (OpenTK.Graphics.OpenGL.TextureUnit)target, (Half)s, (Half)t, (Half)r, (Half)q); #if DEBUG } #endif @@ -215941,7 +218596,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[1317], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -215962,7 +218617,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[1317], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v_ptr); } } #if DEBUG @@ -215980,7 +218635,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4hvNV((OpenTK.Graphics.OpenGL.TextureUnit)target, (Half*)v); + InteropHelper.Call(EntryPoints[1317], (OpenTK.Graphics.OpenGL.TextureUnit)target, (IntPtr)v); #if DEBUG } #endif @@ -215995,7 +218650,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3hNV((Half)nx, (Half)ny, (Half)nz); + InteropHelper.Call(EntryPoints[1406], (Half)nx, (Half)ny, (Half)nz); #if DEBUG } #endif @@ -216014,7 +218669,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glNormal3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1407], (IntPtr)v_ptr); } } #if DEBUG @@ -216035,7 +218690,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glNormal3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1407], (IntPtr)v_ptr); } } #if DEBUG @@ -216053,7 +218708,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3hvNV((Half*)v); + InteropHelper.Call(EntryPoints[1407], (IntPtr)v); #if DEBUG } #endif @@ -216068,7 +218723,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalFormatNV((OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[1414], (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -216087,7 +218742,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coeffs_ptr = coeffs) { - Delegates.glPathColorGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (OpenTK.Graphics.OpenGL.NvPathRendering)colorFormat, (Single*)coeffs_ptr); + InteropHelper.Call(EntryPoints[1445], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (OpenTK.Graphics.OpenGL.NvPathRendering)colorFormat, (IntPtr)coeffs_ptr); } } #if DEBUG @@ -216108,7 +218763,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coeffs_ptr = &coeffs) { - Delegates.glPathColorGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (OpenTK.Graphics.OpenGL.NvPathRendering)colorFormat, (Single*)coeffs_ptr); + InteropHelper.Call(EntryPoints[1445], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (OpenTK.Graphics.OpenGL.NvPathRendering)colorFormat, (IntPtr)coeffs_ptr); } } #if DEBUG @@ -216126,7 +218781,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathColorGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (OpenTK.Graphics.OpenGL.NvPathRendering)colorFormat, (Single*)coeffs); + InteropHelper.Call(EntryPoints[1445], (OpenTK.Graphics.OpenGL.NvPathRendering)color, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (OpenTK.Graphics.OpenGL.NvPathRendering)colorFormat, (IntPtr)coeffs); #if DEBUG } #endif @@ -216145,7 +218800,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = commands) { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -216170,7 +218825,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216200,7 +218855,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216230,7 +218885,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216260,7 +218915,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T5)coords_ptr.Target; } finally @@ -216287,7 +218942,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = &commands) { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -216312,7 +218967,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216342,7 +218997,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216372,7 +219027,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216402,7 +219057,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T5)coords_ptr.Target; } finally @@ -216426,7 +219081,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -216446,7 +219101,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216471,7 +219126,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216496,7 +219151,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216521,7 +219176,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T5)coords_ptr.Target; } finally @@ -216547,7 +219202,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = commands) { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -216573,7 +219228,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216604,7 +219259,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216635,7 +219290,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216666,7 +219321,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T5)coords_ptr.Target; } finally @@ -216694,7 +219349,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = &commands) { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -216720,7 +219375,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216751,7 +219406,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216782,7 +219437,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216813,7 +219468,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T5)coords_ptr.Target; } finally @@ -216837,7 +219492,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -216857,7 +219512,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216882,7 +219537,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216907,7 +219562,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216932,7 +219587,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCommandsNV((UInt32)path, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1446], (UInt32)path, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T5)coords_ptr.Target; } finally @@ -216953,7 +219608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -216972,7 +219627,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -216996,7 +219651,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -217020,7 +219675,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -217044,7 +219699,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T3)coords_ptr.Target; } finally @@ -217066,7 +219721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -217086,7 +219741,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -217111,7 +219766,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -217136,7 +219791,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -217161,7 +219816,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathCoordsNV((UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1447], (UInt32)path, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T3)coords_ptr.Target; } finally @@ -217182,7 +219837,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathCoverDepthFuncNV((OpenTK.Graphics.OpenGL.DepthFunction)func); + InteropHelper.Call(EntryPoints[1448], (OpenTK.Graphics.OpenGL.DepthFunction)func); #if DEBUG } #endif @@ -217201,7 +219856,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = dashArray) { - Delegates.glPathDashArrayNV((UInt32)path, (Int32)dashCount, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[1449], (UInt32)path, (Int32)dashCount, (IntPtr)dashArray_ptr); } } #if DEBUG @@ -217222,7 +219877,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = &dashArray) { - Delegates.glPathDashArrayNV((UInt32)path, (Int32)dashCount, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[1449], (UInt32)path, (Int32)dashCount, (IntPtr)dashArray_ptr); } } #if DEBUG @@ -217240,7 +219895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathDashArrayNV((UInt32)path, (Int32)dashCount, (Single*)dashArray); + InteropHelper.Call(EntryPoints[1449], (UInt32)path, (Int32)dashCount, (IntPtr)dashArray); #if DEBUG } #endif @@ -217260,7 +219915,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = dashArray) { - Delegates.glPathDashArrayNV((UInt32)path, (Int32)dashCount, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[1449], (UInt32)path, (Int32)dashCount, (IntPtr)dashArray_ptr); } } #if DEBUG @@ -217282,7 +219937,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* dashArray_ptr = &dashArray) { - Delegates.glPathDashArrayNV((UInt32)path, (Int32)dashCount, (Single*)dashArray_ptr); + InteropHelper.Call(EntryPoints[1449], (UInt32)path, (Int32)dashCount, (IntPtr)dashArray_ptr); } } #if DEBUG @@ -217300,7 +219955,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathDashArrayNV((UInt32)path, (Int32)dashCount, (Single*)dashArray); + InteropHelper.Call(EntryPoints[1449], (UInt32)path, (Int32)dashCount, (IntPtr)dashArray); #if DEBUG } #endif @@ -217315,7 +219970,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathFogGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)genMode); + InteropHelper.Call(EntryPoints[1450], (OpenTK.Graphics.OpenGL.NvPathRendering)genMode); #if DEBUG } #endif @@ -217330,7 +219985,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); #if DEBUG } #endif @@ -217349,7 +220004,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217373,7 +220028,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217397,7 +220052,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217421,7 +220076,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); fontName = (T2)fontName_ptr.Target; } finally @@ -217443,7 +220098,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); #if DEBUG } #endif @@ -217463,7 +220118,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217488,7 +220143,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217513,7 +220168,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217538,7 +220193,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle fontName_ptr = GCHandle.Alloc(fontName, GCHandleType.Pinned); try { - Delegates.glPathGlyphRangeNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1451], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (UInt32)firstGlyph, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); fontName = (T2)fontName_ptr.Target; } finally @@ -217559,7 +220214,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); #if DEBUG } #endif @@ -217580,7 +220235,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217607,7 +220262,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217634,7 +220289,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217661,7 +220316,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); fontName = (T2)fontName_ptr.Target; charcodes = (T6)charcodes_ptr.Target; } @@ -217685,7 +220340,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName, (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes, (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); #if DEBUG } #endif @@ -217707,7 +220362,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217735,7 +220390,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217763,7 +220418,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); } finally { @@ -217791,7 +220446,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle charcodes_ptr = GCHandle.Alloc(charcodes, GCHandleType.Pinned); try { - Delegates.glPathGlyphsNV((UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); + InteropHelper.Call(EntryPoints[1452], (UInt32)firstPathName, (OpenTK.Graphics.OpenGL.NvPathRendering)fontTarget, (IntPtr)fontName_ptr.AddrOfPinnedObject(), (UInt32)fontStyle, (Int32)numGlyphs, (OpenTK.Graphics.OpenGL.NvPathRendering)type, (IntPtr)charcodes_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvPathRendering)handleMissingGlyphs, (UInt32)pathParameterTemplate, (Single)emScale); fontName = (T2)fontName_ptr.Target; charcodes = (T6)charcodes_ptr.Target; } @@ -217814,7 +220469,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameterfNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single)value); + InteropHelper.Call(EntryPoints[1453], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single)value); #if DEBUG } #endif @@ -217830,7 +220485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameterfNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single)value); + InteropHelper.Call(EntryPoints[1453], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single)value); #if DEBUG } #endif @@ -217849,7 +220504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1454], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -217867,7 +220522,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value); + InteropHelper.Call(EntryPoints[1454], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -217887,7 +220542,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* value_ptr = value) { - Delegates.glPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[1454], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -217905,7 +220560,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameterfvNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Single*)value); + InteropHelper.Call(EntryPoints[1454], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -217920,7 +220575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameteriNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1455], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32)value); #if DEBUG } #endif @@ -217936,7 +220591,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameteriNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32)value); + InteropHelper.Call(EntryPoints[1455], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32)value); #if DEBUG } #endif @@ -217955,7 +220610,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1456], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -217973,7 +220628,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value); + InteropHelper.Call(EntryPoints[1456], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -217993,7 +220648,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* value_ptr = value) { - Delegates.glPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[1456], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value_ptr); } } #if DEBUG @@ -218011,7 +220666,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathParameterivNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (Int32*)value); + InteropHelper.Call(EntryPoints[1456], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)pname, (IntPtr)value); #if DEBUG } #endif @@ -218026,7 +220681,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathStencilDepthOffsetNV((Single)factor, (Single)units); + InteropHelper.Call(EntryPoints[1457], (Single)factor, (Single)units); #if DEBUG } #endif @@ -218041,7 +220696,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathStencilFuncNV((OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1458], (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -218057,7 +220712,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathStencilFuncNV((OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[1458], (OpenTK.Graphics.OpenGL.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -218072,7 +220727,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString); #if DEBUG } #endif @@ -218091,7 +220746,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); } finally { @@ -218115,7 +220770,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); } finally { @@ -218139,7 +220794,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); } finally { @@ -218163,7 +220818,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); pathString = (T3)pathString_ptr.Target; } finally @@ -218185,7 +220840,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString); #if DEBUG } #endif @@ -218205,7 +220860,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); } finally { @@ -218230,7 +220885,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); } finally { @@ -218255,7 +220910,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); } finally { @@ -218280,7 +220935,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pathString_ptr = GCHandle.Alloc(pathString, GCHandleType.Pinned); try { - Delegates.glPathStringNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1459], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)format, (Int32)length, (IntPtr)pathString_ptr.AddrOfPinnedObject()); pathString = (T3)pathString_ptr.Target; } finally @@ -218305,7 +220960,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = commands) { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -218330,7 +220985,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218360,7 +221015,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218390,7 +221045,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218420,7 +221075,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T7)coords_ptr.Target; } finally @@ -218447,7 +221102,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = &commands) { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -218472,7 +221127,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218502,7 +221157,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218532,7 +221187,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218562,7 +221217,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T7)coords_ptr.Target; } finally @@ -218586,7 +221241,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -218606,7 +221261,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218631,7 +221286,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218656,7 +221311,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218681,7 +221336,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T7)coords_ptr.Target; } finally @@ -218707,7 +221362,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = commands) { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -218733,7 +221388,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218764,7 +221419,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218795,7 +221450,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218826,7 +221481,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T7)coords_ptr.Target; } finally @@ -218854,7 +221509,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* commands_ptr = &commands) { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); } } #if DEBUG @@ -218880,7 +221535,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218911,7 +221566,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218942,7 +221597,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -218973,7 +221628,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands_ptr, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T7)coords_ptr.Target; } finally @@ -218997,7 +221652,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -219017,7 +221672,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219042,7 +221697,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219067,7 +221722,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219092,7 +221747,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCommandsNV((UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (Byte*)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1460], (UInt32)path, (Int32)commandStart, (Int32)commandsToDelete, (Int32)numCommands, (IntPtr)commands, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T7)coords_ptr.Target; } finally @@ -219113,7 +221768,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -219132,7 +221787,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219156,7 +221811,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219180,7 +221835,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219204,7 +221859,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T4)coords_ptr.Target; } finally @@ -219226,7 +221881,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords); #if DEBUG } #endif @@ -219246,7 +221901,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219271,7 +221926,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219296,7 +221951,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); } finally { @@ -219321,7 +221976,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle coords_ptr = GCHandle.Alloc(coords, GCHandleType.Pinned); try { - Delegates.glPathSubCoordsNV((UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1461], (UInt32)path, (Int32)coordStart, (Int32)numCoords, (OpenTK.Graphics.OpenGL.NvPathRendering)coordType, (IntPtr)coords_ptr.AddrOfPinnedObject()); coords = (T4)coords_ptr.Target; } finally @@ -219346,7 +222001,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coeffs_ptr = coeffs) { - Delegates.glPathTexGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (Int32)components, (Single*)coeffs_ptr); + InteropHelper.Call(EntryPoints[1462], (OpenTK.Graphics.OpenGL.NvPathRendering)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (Int32)components, (IntPtr)coeffs_ptr); } } #if DEBUG @@ -219367,7 +222022,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* coeffs_ptr = &coeffs) { - Delegates.glPathTexGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (Int32)components, (Single*)coeffs_ptr); + InteropHelper.Call(EntryPoints[1462], (OpenTK.Graphics.OpenGL.NvPathRendering)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (Int32)components, (IntPtr)coeffs_ptr); } } #if DEBUG @@ -219385,7 +222040,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPathTexGenNV((OpenTK.Graphics.OpenGL.NvPathRendering)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (Int32)components, (Single*)coeffs); + InteropHelper.Call(EntryPoints[1462], (OpenTK.Graphics.OpenGL.NvPathRendering)texCoordSet, (OpenTK.Graphics.OpenGL.NvPathRendering)genMode, (Int32)components, (IntPtr)coeffs); #if DEBUG } #endif @@ -219402,7 +222057,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPauseTransformFeedbackNV(); + InteropHelper.Call(EntryPoints[1464]); #if DEBUG } #endif @@ -219417,7 +222072,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelDataRangeNV((OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1465], (OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer); #if DEBUG } #endif @@ -219436,7 +222091,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPixelDataRangeNV((OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1465], (OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -219460,7 +222115,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPixelDataRangeNV((OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1465], (OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -219484,7 +222139,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPixelDataRangeNV((OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1465], (OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -219508,7 +222163,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glPixelDataRangeNV((OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1465], (OpenTK.Graphics.OpenGL.NvPixelDataRange)target, (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -219536,7 +222191,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tangentX_ptr = &tangentX) fixed (Single* tangentY_ptr = &tangentY) { - bool retval = Delegates.glPointAlongPathNV((UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (Single*)x_ptr, (Single*)y_ptr, (Single*)tangentX_ptr, (Single*)tangentY_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[1489], (UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (IntPtr)x_ptr, (IntPtr)y_ptr, (IntPtr)tangentX_ptr, (IntPtr)tangentY_ptr); x = *x_ptr; y = *y_ptr; tangentX = *tangentX_ptr; @@ -219559,7 +222214,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glPointAlongPathNV((UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (Single*)x, (Single*)y, (Single*)tangentX, (Single*)tangentY); + return InteropHelper.CallReturn(EntryPoints[1489], (UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (IntPtr)x, (IntPtr)y, (IntPtr)tangentX, (IntPtr)tangentY); #if DEBUG } #endif @@ -219582,7 +222237,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tangentX_ptr = &tangentX) fixed (Single* tangentY_ptr = &tangentY) { - bool retval = Delegates.glPointAlongPathNV((UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (Single*)x_ptr, (Single*)y_ptr, (Single*)tangentX_ptr, (Single*)tangentY_ptr); + bool retval = InteropHelper.CallReturn(EntryPoints[1489], (UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (IntPtr)x_ptr, (IntPtr)y_ptr, (IntPtr)tangentX_ptr, (IntPtr)tangentY_ptr); x = *x_ptr; y = *y_ptr; tangentX = *tangentX_ptr; @@ -219605,7 +222260,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glPointAlongPathNV((UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (Single*)x, (Single*)y, (Single*)tangentX, (Single*)tangentY); + return InteropHelper.CallReturn(EntryPoints[1489], (UInt32)path, (Int32)startSegment, (Int32)numSegments, (Single)distance, (IntPtr)x, (IntPtr)y, (IntPtr)tangentX, (IntPtr)tangentY); #if DEBUG } #endif @@ -219637,7 +222292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameteriNV((OpenTK.Graphics.OpenGL.NvPointSprite)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1499], (OpenTK.Graphics.OpenGL.NvPointSprite)pname, (Int32)param); #if DEBUG } #endif @@ -219673,7 +222328,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameterivNV((OpenTK.Graphics.OpenGL.NvPointSprite)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1501], (OpenTK.Graphics.OpenGL.NvPointSprite)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -219708,7 +222363,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterivNV((OpenTK.Graphics.OpenGL.NvPointSprite)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1501], (OpenTK.Graphics.OpenGL.NvPointSprite)pname, (IntPtr)@params); #if DEBUG } #endif @@ -219723,7 +222378,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPresentFrameDualFillNV((UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (OpenTK.Graphics.OpenGL.NvPresentVideo)target2, (UInt32)fill2, (OpenTK.Graphics.OpenGL.NvPresentVideo)target3, (UInt32)fill3); + InteropHelper.Call(EntryPoints[1520], (UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (OpenTK.Graphics.OpenGL.NvPresentVideo)target2, (UInt32)fill2, (OpenTK.Graphics.OpenGL.NvPresentVideo)target3, (UInt32)fill3); #if DEBUG } #endif @@ -219739,7 +222394,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPresentFrameDualFillNV((UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (OpenTK.Graphics.OpenGL.NvPresentVideo)target2, (UInt32)fill2, (OpenTK.Graphics.OpenGL.NvPresentVideo)target3, (UInt32)fill3); + InteropHelper.Call(EntryPoints[1520], (UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (OpenTK.Graphics.OpenGL.NvPresentVideo)target2, (UInt32)fill2, (OpenTK.Graphics.OpenGL.NvPresentVideo)target3, (UInt32)fill3); #if DEBUG } #endif @@ -219754,7 +222409,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPresentFrameKeyedNV((UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (UInt32)key0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (UInt32)key1); + InteropHelper.Call(EntryPoints[1521], (UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (UInt32)key0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (UInt32)key1); #if DEBUG } #endif @@ -219770,7 +222425,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPresentFrameKeyedNV((UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (UInt32)key0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (UInt32)key1); + InteropHelper.Call(EntryPoints[1521], (UInt32)video_slot, (UInt64)minPresentTime, (UInt32)beginPresentTimeId, (UInt32)presentDurationId, (OpenTK.Graphics.OpenGL.NvPresentVideo)type, (OpenTK.Graphics.OpenGL.NvPresentVideo)target0, (UInt32)fill0, (UInt32)key0, (OpenTK.Graphics.OpenGL.NvPresentVideo)target1, (UInt32)fill1, (UInt32)key1); #if DEBUG } #endif @@ -219792,7 +222447,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartIndexNV((UInt32)index); + InteropHelper.Call(EntryPoints[1523], (UInt32)index); #if DEBUG } #endif @@ -219815,7 +222470,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartIndexNV((UInt32)index); + InteropHelper.Call(EntryPoints[1523], (UInt32)index); #if DEBUG } #endif @@ -219830,7 +222485,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartNV(); + InteropHelper.Call(EntryPoints[1524]); #if DEBUG } #endif @@ -219849,7 +222504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1529], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -219870,7 +222525,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1529], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -219888,7 +222543,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1529], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -219908,7 +222563,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1529], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -219930,7 +222585,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1529], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -219948,7 +222603,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBufferParametersfvNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Single*)@params); + InteropHelper.Call(EntryPoints[1529], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -219967,7 +222622,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1530], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -219988,7 +222643,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1530], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220006,7 +222661,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1530], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220026,7 +222681,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1530], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220048,7 +222703,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1530], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220066,7 +222721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBufferParametersIivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1530], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220086,7 +222741,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1531], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220108,7 +222763,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1531], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220126,7 +222781,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBufferParametersIuivNV((OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1531], (OpenTK.Graphics.OpenGL.NvParameterBufferObject)target, (UInt32)bindingIndex, (UInt32)wordIndex, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220141,7 +222796,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameterI4iNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1536], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -220157,7 +222812,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameterI4iNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1536], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -220176,7 +222831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1537], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220197,7 +222852,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1537], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220215,7 +222870,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[1537], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -220235,7 +222890,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1537], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220257,7 +222912,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1537], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220275,7 +222930,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[1537], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -220291,7 +222946,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameterI4uiNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[1538], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -220311,7 +222966,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1539], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220333,7 +222988,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1539], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220351,7 +223006,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParameterI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1539], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -220370,7 +223025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1541], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220391,7 +223046,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1541], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220409,7 +223064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1541], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220429,7 +223084,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1541], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220451,7 +223106,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1541], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220469,7 +223124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1541], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220489,7 +223144,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1542], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220511,7 +223166,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1542], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220529,7 +223184,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramEnvParametersI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1542], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220544,7 +223199,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameterI4iNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1547], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -220560,7 +223215,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameterI4iNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[1547], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -220579,7 +223234,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1548], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220600,7 +223255,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1548], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220618,7 +223273,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[1548], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -220638,7 +223293,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1548], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220660,7 +223315,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1548], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220678,7 +223333,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameterI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32*)@params); + InteropHelper.Call(EntryPoints[1548], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -220694,7 +223349,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameterI4uiNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[1549], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -220714,7 +223369,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1550], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220736,7 +223391,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1550], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params_ptr); } } #if DEBUG @@ -220754,7 +223409,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParameterI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1550], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (IntPtr)@params); #if DEBUG } #endif @@ -220773,7 +223428,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1552], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220794,7 +223449,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1552], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220812,7 +223467,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1552], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220832,7 +223487,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1552], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220854,7 +223509,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1552], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220872,7 +223527,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParametersI4ivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (Int32*)@params); + InteropHelper.Call(EntryPoints[1552], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220892,7 +223547,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1553], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220914,7 +223569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1553], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -220932,7 +223587,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramLocalParametersI4uivNV((OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1553], (OpenTK.Graphics.OpenGL.NvGpuProgram4)target, (UInt32)index, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -220951,7 +223606,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* name_ptr = &name) { - Delegates.glProgramNamedParameter4dNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1554], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (Double)x, (Double)y, (Double)z, (Double)w); } } #if DEBUG @@ -220969,7 +223624,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4dNV((UInt32)id, (Int32)len, (Byte*)name, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1554], (UInt32)id, (Int32)len, (IntPtr)name, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -220989,7 +223644,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* name_ptr = &name) { - Delegates.glProgramNamedParameter4dNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1554], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (Double)x, (Double)y, (Double)z, (Double)w); } } #if DEBUG @@ -221007,7 +223662,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4dNV((UInt32)id, (Int32)len, (Byte*)name, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1554], (UInt32)id, (Int32)len, (IntPtr)name, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -221027,7 +223682,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* v_ptr = v) { - Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1555], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221049,7 +223704,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* v_ptr = &v) { - Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1555], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221067,7 +223722,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)v); + InteropHelper.Call(EntryPoints[1555], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)v); #if DEBUG } #endif @@ -221088,7 +223743,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* v_ptr = v) { - Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1555], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221111,7 +223766,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Double* v_ptr = &v) { - Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1555], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221129,7 +223784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4dvNV((UInt32)id, (Int32)len, (Byte*)name, (Double*)v); + InteropHelper.Call(EntryPoints[1555], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)v); #if DEBUG } #endif @@ -221148,7 +223803,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* name_ptr = &name) { - Delegates.glProgramNamedParameter4fNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1556], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (Single)x, (Single)y, (Single)z, (Single)w); } } #if DEBUG @@ -221166,7 +223821,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4fNV((UInt32)id, (Int32)len, (Byte*)name, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1556], (UInt32)id, (Int32)len, (IntPtr)name, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -221186,7 +223841,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* name_ptr = &name) { - Delegates.glProgramNamedParameter4fNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1556], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (Single)x, (Single)y, (Single)z, (Single)w); } } #if DEBUG @@ -221204,7 +223859,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4fNV((UInt32)id, (Int32)len, (Byte*)name, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1556], (UInt32)id, (Int32)len, (IntPtr)name, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -221224,7 +223879,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* v_ptr = v) { - Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1557], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221246,7 +223901,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* v_ptr = &v) { - Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1557], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221264,7 +223919,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)v); + InteropHelper.Call(EntryPoints[1557], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)v); #if DEBUG } #endif @@ -221285,7 +223940,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* v_ptr = v) { - Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1557], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221308,7 +223963,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* name_ptr = &name) fixed (Single* v_ptr = &v) { - Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1557], (UInt32)id, (Int32)len, (IntPtr)name_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -221326,7 +223981,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramNamedParameter4fvNV((UInt32)id, (Int32)len, (Byte*)name, (Single*)v); + InteropHelper.Call(EntryPoints[1557], (UInt32)id, (Int32)len, (IntPtr)name, (IntPtr)v); #if DEBUG } #endif @@ -221358,7 +224013,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4dNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1558], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -221391,7 +224046,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4dNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[1558], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -221427,7 +224082,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1559], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221465,7 +224120,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1559], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221500,7 +224155,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[1559], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -221537,7 +224192,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1559], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221576,7 +224231,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1559], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221611,7 +224266,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[1559], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -221643,7 +224298,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4fNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1560], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -221676,7 +224331,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4fNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1560], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -221712,7 +224367,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1561], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221750,7 +224405,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1561], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221785,7 +224440,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[1561], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -221822,7 +224477,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1561], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221861,7 +224516,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1561], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -221896,7 +224551,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameter4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[1561], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -221915,7 +224570,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -221936,7 +224591,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -221954,7 +224609,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -221974,7 +224629,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -221996,7 +224651,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222014,7 +224669,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -222035,7 +224690,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222058,7 +224713,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222077,7 +224732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameters4dvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[1565], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -222096,7 +224751,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222117,7 +224772,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222135,7 +224790,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -222155,7 +224810,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222177,7 +224832,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222195,7 +224850,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -222216,7 +224871,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222239,7 +224894,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -222258,7 +224913,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameters4fvNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[1566], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -222277,7 +224932,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glProgramSubroutineParametersuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1568], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -222298,7 +224953,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glProgramSubroutineParametersuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1568], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -222316,7 +224971,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramSubroutineParametersuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1568], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -222336,7 +224991,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = @params) { - Delegates.glProgramSubroutineParametersuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1568], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -222358,7 +225013,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* @params_ptr = &@params) { - Delegates.glProgramSubroutineParametersuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[1568], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (IntPtr)@params_ptr); } } #if DEBUG @@ -222376,7 +225031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramSubroutineParametersuivNV((OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (UInt32*)@params); + InteropHelper.Call(EntryPoints[1568], (OpenTK.Graphics.OpenGL.NvGpuProgram5)target, (Int32)count, (IntPtr)@params); #if DEBUG } #endif @@ -222426,7 +225081,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i64NV((UInt32)program, (Int32)location, (Int64)x); + InteropHelper.Call(EntryPoints[1578], (UInt32)program, (Int32)location, (Int64)x); #if DEBUG } #endif @@ -222477,7 +225132,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i64NV((UInt32)program, (Int32)location, (Int64)x); + InteropHelper.Call(EntryPoints[1578], (UInt32)program, (Int32)location, (Int64)x); #if DEBUG } #endif @@ -222531,7 +225186,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform1i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1579], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -222587,7 +225242,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform1i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1579], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -222640,7 +225295,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1579], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -222695,7 +225350,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform1i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1579], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -222752,7 +225407,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform1i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1579], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -222805,7 +225460,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1579], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -222856,7 +225511,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ui64NV((UInt32)program, (Int32)location, (UInt64)x); + InteropHelper.Call(EntryPoints[1584], (UInt32)program, (Int32)location, (UInt64)x); #if DEBUG } #endif @@ -222911,7 +225566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1585], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -222968,7 +225623,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1585], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223021,7 +225676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[1585], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -223071,7 +225726,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i64NV((UInt32)program, (Int32)location, (Int64)x, (Int64)y); + InteropHelper.Call(EntryPoints[1598], (UInt32)program, (Int32)location, (Int64)x, (Int64)y); #if DEBUG } #endif @@ -223122,7 +225777,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i64NV((UInt32)program, (Int32)location, (Int64)x, (Int64)y); + InteropHelper.Call(EntryPoints[1598], (UInt32)program, (Int32)location, (Int64)x, (Int64)y); #if DEBUG } #endif @@ -223176,7 +225831,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform2i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1599], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223232,7 +225887,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform2i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1599], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223285,7 +225940,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1599], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -223340,7 +225995,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform2i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1599], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223397,7 +226052,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform2i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1599], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223450,7 +226105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1599], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -223501,7 +226156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ui64NV((UInt32)program, (Int32)location, (UInt64)x, (UInt64)y); + InteropHelper.Call(EntryPoints[1604], (UInt32)program, (Int32)location, (UInt64)x, (UInt64)y); #if DEBUG } #endif @@ -223556,7 +226211,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1605], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223613,7 +226268,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1605], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223666,7 +226321,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[1605], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -223716,7 +226371,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i64NV((UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z); + InteropHelper.Call(EntryPoints[1618], (UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z); #if DEBUG } #endif @@ -223767,7 +226422,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i64NV((UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z); + InteropHelper.Call(EntryPoints[1618], (UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z); #if DEBUG } #endif @@ -223821,7 +226476,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform3i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1619], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223877,7 +226532,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform3i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1619], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -223930,7 +226585,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1619], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -223985,7 +226640,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform3i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1619], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224042,7 +226697,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform3i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1619], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224095,7 +226750,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1619], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -224146,7 +226801,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ui64NV((UInt32)program, (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z); + InteropHelper.Call(EntryPoints[1624], (UInt32)program, (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z); #if DEBUG } #endif @@ -224201,7 +226856,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glProgramUniform3ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1625], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224258,7 +226913,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glProgramUniform3ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1625], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224311,7 +226966,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[1625], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -224361,7 +227016,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i64NV((UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z, (Int64)w); + InteropHelper.Call(EntryPoints[1638], (UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z, (Int64)w); #if DEBUG } #endif @@ -224412,7 +227067,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i64NV((UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z, (Int64)w); + InteropHelper.Call(EntryPoints[1638], (UInt32)program, (Int32)location, (Int64)x, (Int64)y, (Int64)z, (Int64)w); #if DEBUG } #endif @@ -224466,7 +227121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform4i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1639], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224522,7 +227177,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform4i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1639], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224575,7 +227230,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1639], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -224630,7 +227285,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniform4i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1639], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224687,7 +227342,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniform4i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[1639], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224740,7 +227395,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i64vNV((UInt32)program, (Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[1639], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -224791,7 +227446,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ui64NV((UInt32)program, (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); + InteropHelper.Call(EntryPoints[1644], (UInt32)program, (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); #if DEBUG } #endif @@ -224846,7 +227501,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glProgramUniform4ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1645], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224903,7 +227558,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glProgramUniform4ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1645], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -224956,7 +227611,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[1645], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -224971,7 +227626,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64NV((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[1650], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -224987,7 +227642,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64NV((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[1650], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -225006,7 +227661,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* values_ptr = values) { - Delegates.glProgramUniformHandleui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1652], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -225027,7 +227682,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* values_ptr = &values) { - Delegates.glProgramUniformHandleui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1652], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -225045,7 +227700,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values); + InteropHelper.Call(EntryPoints[1652], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values); #if DEBUG } #endif @@ -225065,7 +227720,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* values_ptr = values) { - Delegates.glProgramUniformHandleui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1652], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -225087,7 +227742,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* values_ptr = &values) { - Delegates.glProgramUniformHandleui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[1652], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -225105,7 +227760,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values); + InteropHelper.Call(EntryPoints[1652], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values); #if DEBUG } #endif @@ -225155,7 +227810,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformui64NV((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[1689], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -225206,7 +227861,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformui64NV((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[1689], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -225260,7 +227915,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glProgramUniformui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1690], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -225316,7 +227971,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glProgramUniformui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1690], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -225369,7 +228024,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[1690], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -225424,7 +228079,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glProgramUniformui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1690], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -225481,7 +228136,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glProgramUniformui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[1690], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -225534,7 +228189,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformui64vNV((UInt32)program, (Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[1690], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -225549,7 +228204,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramVertexLimitNV((OpenTK.Graphics.OpenGL.NvGeometryProgram4)target, (Int32)limit); + InteropHelper.Call(EntryPoints[1691], (OpenTK.Graphics.OpenGL.NvGeometryProgram4)target, (Int32)limit); #if DEBUG } #endif @@ -225564,7 +228219,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisampleCoverageNV((OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[1753], (OpenTK.Graphics.OpenGL.RenderbufferTarget)target, (Int32)coverageSamples, (Int32)colorSamples, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -225583,7 +228238,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = programs) { - Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[1779], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -225604,7 +228259,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* programs_ptr = &programs) { - Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[1779], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -225622,7 +228277,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[1779], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -225642,7 +228297,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = programs) { - Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[1779], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -225664,7 +228319,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* programs_ptr = &programs) { - Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs_ptr); + InteropHelper.Call(EntryPoints[1779], (Int32)n, (IntPtr)programs_ptr); } } #if DEBUG @@ -225682,7 +228337,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRequestResidentProgramsNV((Int32)n, (UInt32*)programs); + InteropHelper.Call(EntryPoints[1779], (Int32)n, (IntPtr)programs); #if DEBUG } #endif @@ -225699,7 +228354,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResumeTransformFeedbackNV(); + InteropHelper.Call(EntryPoints[1786]); #if DEBUG } #endif @@ -225714,7 +228369,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaskIndexedNV((UInt32)index, (UInt32)mask); + InteropHelper.Call(EntryPoints[1797], (UInt32)index, (UInt32)mask); #if DEBUG } #endif @@ -225730,7 +228385,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaskIndexedNV((UInt32)index, (UInt32)mask); + InteropHelper.Call(EntryPoints[1797], (UInt32)index, (UInt32)mask); #if DEBUG } #endif @@ -225745,7 +228400,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3hNV((Half)red, (Half)green, (Half)blue); + InteropHelper.Call(EntryPoints[1826], (Half)red, (Half)green, (Half)blue); #if DEBUG } #endif @@ -225764,7 +228419,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glSecondaryColor3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1827], (IntPtr)v_ptr); } } #if DEBUG @@ -225785,7 +228440,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glSecondaryColor3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1827], (IntPtr)v_ptr); } } #if DEBUG @@ -225803,7 +228458,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColor3hvNV((Half*)v); + InteropHelper.Call(EntryPoints[1827], (IntPtr)v); #if DEBUG } #endif @@ -225818,7 +228473,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorFormatNV((Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[1848], (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -225833,7 +228488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)condition); + InteropHelper.Call(EntryPoints[1859], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)condition); #if DEBUG } #endif @@ -225849,7 +228504,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)condition); + InteropHelper.Call(EntryPoints[1859], (UInt32)fence, (OpenTK.Graphics.OpenGL.NvFence)condition); #if DEBUG } #endif @@ -225868,7 +228523,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -225889,7 +228544,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -225907,7 +228562,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -225927,7 +228582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -225949,7 +228604,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -225967,7 +228622,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -225990,7 +228645,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226020,7 +228675,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226047,7 +228702,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226076,7 +228731,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226107,7 +228762,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226134,7 +228789,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226162,7 +228817,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226192,7 +228847,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226219,7 +228874,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226248,7 +228903,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226279,7 +228934,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226306,7 +228961,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226334,7 +228989,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226364,7 +229019,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226391,7 +229046,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226420,7 +229075,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226451,7 +229106,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226478,7 +229133,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226506,7 +229161,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -226537,7 +229192,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -226565,7 +229220,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -226595,7 +229250,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -226627,7 +229282,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -226655,7 +229310,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilFillPathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1879], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -226676,7 +229331,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFillPathNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask); + InteropHelper.Call(EntryPoints[1880], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask); #if DEBUG } #endif @@ -226692,7 +229347,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFillPathNV((UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask); + InteropHelper.Call(EntryPoints[1880], (UInt32)path, (OpenTK.Graphics.OpenGL.NvPathRendering)fillMode, (UInt32)mask); #if DEBUG } #endif @@ -226711,7 +229366,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -226732,7 +229387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -226750,7 +229405,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -226770,7 +229425,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -226792,7 +229447,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -226810,7 +229465,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths, (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -226833,7 +229488,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226863,7 +229518,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226890,7 +229545,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -226919,7 +229574,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226950,7 +229605,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -226977,7 +229632,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -227005,7 +229660,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227035,7 +229690,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227062,7 +229717,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -227091,7 +229746,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227122,7 +229777,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227149,7 +229804,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -227177,7 +229832,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227207,7 +229862,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227234,7 +229889,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -227263,7 +229918,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227294,7 +229949,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } finally { @@ -227321,7 +229976,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); } finally { @@ -227349,7 +230004,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -227380,7 +230035,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -227408,7 +230063,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -227438,7 +230093,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -227470,7 +230125,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); paths = (T2)paths_ptr.Target; } finally @@ -227498,7 +230153,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle paths_ptr = GCHandle.Alloc(paths, GCHandleType.Pinned); try { - Delegates.glStencilStrokePathInstancedNV((Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[1890], (Int32)numPaths, (OpenTK.Graphics.OpenGL.NvPathRendering)pathNameType, (IntPtr)paths_ptr.AddrOfPinnedObject(), (UInt32)pathBase, (Int32)reference, (UInt32)mask, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); paths = (T2)paths_ptr.Target; } finally @@ -227519,7 +230174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilStrokePathNV((UInt32)path, (Int32)reference, (UInt32)mask); + InteropHelper.Call(EntryPoints[1891], (UInt32)path, (Int32)reference, (UInt32)mask); #if DEBUG } #endif @@ -227535,7 +230190,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilStrokePathNV((UInt32)path, (Int32)reference, (UInt32)mask); + InteropHelper.Call(EntryPoints[1891], (UInt32)path, (Int32)reference, (UInt32)mask); #if DEBUG } #endif @@ -227550,7 +230205,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1912], (UInt32)fence); #if DEBUG } #endif @@ -227566,7 +230221,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glTestFenceNV((UInt32)fence); + return InteropHelper.CallReturn(EntryPoints[1912], (UInt32)fence); #if DEBUG } #endif @@ -227581,7 +230236,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1hNV((Half)s); + InteropHelper.Call(EntryPoints[1926], (Half)s); #if DEBUG } #endif @@ -227597,7 +230252,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1hvNV((Half*)v); + InteropHelper.Call(EntryPoints[1927], (IntPtr)v); #if DEBUG } #endif @@ -227612,7 +230267,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2hNV((Half)s, (Half)t); + InteropHelper.Call(EntryPoints[1950], (Half)s, (Half)t); #if DEBUG } #endif @@ -227631,7 +230286,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glTexCoord2hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1951], (IntPtr)v_ptr); } } #if DEBUG @@ -227652,7 +230307,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glTexCoord2hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1951], (IntPtr)v_ptr); } } #if DEBUG @@ -227670,7 +230325,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2hvNV((Half*)v); + InteropHelper.Call(EntryPoints[1951], (IntPtr)v); #if DEBUG } #endif @@ -227685,7 +230340,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3hNV((Half)s, (Half)t, (Half)r); + InteropHelper.Call(EntryPoints[1964], (Half)s, (Half)t, (Half)r); #if DEBUG } #endif @@ -227704,7 +230359,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glTexCoord3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1965], (IntPtr)v_ptr); } } #if DEBUG @@ -227725,7 +230380,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glTexCoord3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1965], (IntPtr)v_ptr); } } #if DEBUG @@ -227743,7 +230398,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3hvNV((Half*)v); + InteropHelper.Call(EntryPoints[1965], (IntPtr)v); #if DEBUG } #endif @@ -227758,7 +230413,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4hNV((Half)s, (Half)t, (Half)r, (Half)q); + InteropHelper.Call(EntryPoints[1982], (Half)s, (Half)t, (Half)r, (Half)q); #if DEBUG } #endif @@ -227777,7 +230432,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glTexCoord4hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1983], (IntPtr)v_ptr); } } #if DEBUG @@ -227798,7 +230453,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glTexCoord4hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[1983], (IntPtr)v_ptr); } } #if DEBUG @@ -227816,7 +230471,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4hvNV((Half*)v); + InteropHelper.Call(EntryPoints[1983], (IntPtr)v); #if DEBUG } #endif @@ -227831,7 +230486,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordFormatNV((Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[1990], (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -227846,7 +230501,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2DMultisampleCoverageNV((OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2021], (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -227861,7 +230516,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DMultisampleCoverageNV((OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2025], (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -227876,7 +230531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexRenderbufferNV((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[2038], (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -227892,7 +230547,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexRenderbufferNV((OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[2038], (OpenTK.Graphics.OpenGL.TextureTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -227907,7 +230562,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureBarrierNV(); + InteropHelper.Call(EntryPoints[2052]); #if DEBUG } #endif @@ -227922,7 +230577,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DMultisampleCoverageNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2058], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -227938,7 +230593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DMultisampleCoverageNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2058], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -227953,7 +230608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DMultisampleNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2059], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -227969,7 +230624,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage2DMultisampleNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2059], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -227984,7 +230639,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DMultisampleCoverageNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2061], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -228000,7 +230655,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DMultisampleCoverageNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2061], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)coverageSamples, (Int32)colorSamples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -228015,7 +230670,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DMultisampleNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2062], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -228031,7 +230686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureImage3DMultisampleNV((UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); + InteropHelper.Call(EntryPoints[2062], (UInt32)texture, (OpenTK.Graphics.OpenGL.NvTextureMultisample)target, (Int32)samples, (Int32)internalFormat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedSampleLocations); #if DEBUG } #endif @@ -228046,7 +230701,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTrackMatrixNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.NvVertexProgram)matrix, (OpenTK.Graphics.OpenGL.NvVertexProgram)transform); + InteropHelper.Call(EntryPoints[2085], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.NvVertexProgram)matrix, (OpenTK.Graphics.OpenGL.NvVertexProgram)transform); #if DEBUG } #endif @@ -228062,7 +230717,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTrackMatrixNV((OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.NvVertexProgram)matrix, (OpenTK.Graphics.OpenGL.NvVertexProgram)transform); + InteropHelper.Call(EntryPoints[2085], (OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb)target, (UInt32)address, (OpenTK.Graphics.OpenGL.NvVertexProgram)matrix, (OpenTK.Graphics.OpenGL.NvVertexProgram)transform); #if DEBUG } #endif @@ -228081,7 +230736,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* attribs_ptr = attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2086], (UInt32)count, (IntPtr)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228102,7 +230757,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* attribs_ptr = &attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2086], (UInt32)count, (IntPtr)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228120,7 +230775,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2086], (UInt32)count, (IntPtr)attribs, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); #if DEBUG } #endif @@ -228140,7 +230795,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* attribs_ptr = attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2086], (UInt32)count, (IntPtr)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228162,7 +230817,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* attribs_ptr = &attribs) { - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2086], (UInt32)count, (IntPtr)attribs_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228180,7 +230835,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackAttribsNV((UInt32)count, (Int32*)attribs, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2086], (UInt32)count, (IntPtr)attribs, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); #if DEBUG } #endif @@ -228200,7 +230855,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* attribs_ptr = attribs) fixed (Int32* bufstreams_ptr = bufstreams) { - Delegates.glTransformFeedbackStreamAttribsNV((Int32)count, (Int32*)attribs_ptr, (Int32)nbuffers, (Int32*)bufstreams_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2087], (Int32)count, (IntPtr)attribs_ptr, (Int32)nbuffers, (IntPtr)bufstreams_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228222,7 +230877,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* attribs_ptr = &attribs) fixed (Int32* bufstreams_ptr = &bufstreams) { - Delegates.glTransformFeedbackStreamAttribsNV((Int32)count, (Int32*)attribs_ptr, (Int32)nbuffers, (Int32*)bufstreams_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2087], (Int32)count, (IntPtr)attribs_ptr, (Int32)nbuffers, (IntPtr)bufstreams_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228240,7 +230895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackStreamAttribsNV((Int32)count, (Int32*)attribs, (Int32)nbuffers, (Int32*)bufstreams, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2087], (Int32)count, (IntPtr)attribs, (Int32)nbuffers, (IntPtr)bufstreams, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); #if DEBUG } #endif @@ -228281,7 +230936,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* locations_ptr = locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2090], (UInt32)program, (Int32)count, (IntPtr)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228324,7 +230979,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* locations_ptr = &locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2090], (UInt32)program, (Int32)count, (IntPtr)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228364,7 +231019,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2090], (UInt32)program, (Int32)count, (IntPtr)locations, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); #if DEBUG } #endif @@ -228406,7 +231061,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* locations_ptr = locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2090], (UInt32)program, (Int32)count, (IntPtr)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228450,7 +231105,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* locations_ptr = &locations) { - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2090], (UInt32)program, (Int32)count, (IntPtr)locations_ptr, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); } } #if DEBUG @@ -228490,7 +231145,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryingsNV((UInt32)program, (Int32)count, (Int32*)locations, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); + InteropHelper.Call(EntryPoints[2090], (UInt32)program, (Int32)count, (IntPtr)locations, (OpenTK.Graphics.OpenGL.NvTransformFeedback)bufferMode); #if DEBUG } #endif @@ -228509,7 +231164,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glTransformPathNV((UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[2091], (UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -228530,7 +231185,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glTransformPathNV((UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[2091], (UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -228548,7 +231203,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformPathNV((UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[2091], (UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -228568,7 +231223,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = transformValues) { - Delegates.glTransformPathNV((UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[2091], (UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -228590,7 +231245,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* transformValues_ptr = &transformValues) { - Delegates.glTransformPathNV((UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues_ptr); + InteropHelper.Call(EntryPoints[2091], (UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues_ptr); } } #if DEBUG @@ -228608,7 +231263,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformPathNV((UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (Single*)transformValues); + InteropHelper.Call(EntryPoints[2091], (UInt32)resultPath, (UInt32)srcPath, (OpenTK.Graphics.OpenGL.NvPathRendering)transformType, (IntPtr)transformValues); #if DEBUG } #endif @@ -228653,7 +231308,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1i64NV((Int32)location, (Int64)x); + InteropHelper.Call(EntryPoints[2102], (Int32)location, (Int64)x); #if DEBUG } #endif @@ -228702,7 +231357,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniform1i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2103], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -228753,7 +231408,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniform1i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2103], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -228801,7 +231456,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1i64vNV((Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[2103], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -228847,7 +231502,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1ui64NV((Int32)location, (UInt64)x); + InteropHelper.Call(EntryPoints[2108], (Int32)location, (UInt64)x); #if DEBUG } #endif @@ -228897,7 +231552,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniform1ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2109], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -228949,7 +231604,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniform1ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2109], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -228997,7 +231652,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1ui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2109], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -229042,7 +231697,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2i64NV((Int32)location, (Int64)x, (Int64)y); + InteropHelper.Call(EntryPoints[2120], (Int32)location, (Int64)x, (Int64)y); #if DEBUG } #endif @@ -229091,7 +231746,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniform2i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2121], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229142,7 +231797,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniform2i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2121], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229190,7 +231845,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2i64vNV((Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[2121], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -229236,7 +231891,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2ui64NV((Int32)location, (UInt64)x, (UInt64)y); + InteropHelper.Call(EntryPoints[2126], (Int32)location, (UInt64)x, (UInt64)y); #if DEBUG } #endif @@ -229286,7 +231941,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniform2ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2127], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229338,7 +231993,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniform2ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2127], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229386,7 +232041,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2ui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2127], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -229431,7 +232086,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3i64NV((Int32)location, (Int64)x, (Int64)y, (Int64)z); + InteropHelper.Call(EntryPoints[2138], (Int32)location, (Int64)x, (Int64)y, (Int64)z); #if DEBUG } #endif @@ -229480,7 +232135,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniform3i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2139], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229531,7 +232186,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniform3i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2139], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229579,7 +232234,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3i64vNV((Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[2139], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -229625,7 +232280,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3ui64NV((Int32)location, (UInt64)x, (UInt64)y, (UInt64)z); + InteropHelper.Call(EntryPoints[2144], (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z); #if DEBUG } #endif @@ -229675,7 +232330,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniform3ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2145], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229727,7 +232382,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniform3ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2145], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229775,7 +232430,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3ui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2145], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -229820,7 +232475,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4i64NV((Int32)location, (Int64)x, (Int64)y, (Int64)z, (Int64)w); + InteropHelper.Call(EntryPoints[2156], (Int32)location, (Int64)x, (Int64)y, (Int64)z, (Int64)w); #if DEBUG } #endif @@ -229869,7 +232524,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniform4i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2157], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229920,7 +232575,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniform4i64vNV((Int32)location, (Int32)count, (Int64*)value_ptr); + InteropHelper.Call(EntryPoints[2157], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -229968,7 +232623,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4i64vNV((Int32)location, (Int32)count, (Int64*)value); + InteropHelper.Call(EntryPoints[2157], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -230014,7 +232669,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4ui64NV((Int32)location, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); + InteropHelper.Call(EntryPoints[2162], (Int32)location, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); #if DEBUG } #endif @@ -230064,7 +232719,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniform4ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2163], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230116,7 +232771,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniform4ui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2163], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230164,7 +232819,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4ui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2163], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -230179,7 +232834,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64NV((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[2170], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -230195,7 +232850,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64NV((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[2170], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -230214,7 +232869,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniformHandleui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2172], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230235,7 +232890,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniformHandleui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2172], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230253,7 +232908,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2172], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -230273,7 +232928,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniformHandleui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2172], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230295,7 +232950,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniformHandleui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2172], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230313,7 +232968,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2172], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -230358,7 +233013,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformui64NV((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[2195], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -230404,7 +233059,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformui64NV((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[2195], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -230453,7 +233108,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = value) { - Delegates.glUniformui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2196], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230504,7 +233159,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* value_ptr = &value) { - Delegates.glUniformui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2196], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230552,7 +233207,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2196], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -230602,7 +233257,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = value) { - Delegates.glUniformui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2196], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230654,7 +233309,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* value_ptr = &value) { - Delegates.glUniformui64vNV((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[2196], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -230702,7 +233357,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformui64vNV((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[2196], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -230717,7 +233372,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUFiniNV(); + InteropHelper.Call(EntryPoints[2223]); #if DEBUG } #endif @@ -230737,7 +233392,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = length) fixed (Int32* values_ptr = values) { - Delegates.glVDPAUGetSurfaceivNV((IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[2224], (IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); } } #if DEBUG @@ -230759,7 +233414,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glVDPAUGetSurfaceivNV((IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[2224], (IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -230779,7 +233434,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUGetSurfaceivNV((IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[2224], (IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -230794,7 +233449,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUInitNV((IntPtr)vdpDevice, (IntPtr)getProcAddress); + InteropHelper.Call(EntryPoints[2225], (IntPtr)vdpDevice, (IntPtr)getProcAddress); #if DEBUG } #endif @@ -230815,7 +233470,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle getProcAddress_ptr = GCHandle.Alloc(getProcAddress, GCHandleType.Pinned); try { - Delegates.glVDPAUInitNV((IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2225], (IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); } finally { @@ -230842,7 +233497,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle getProcAddress_ptr = GCHandle.Alloc(getProcAddress, GCHandleType.Pinned); try { - Delegates.glVDPAUInitNV((IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2225], (IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); } finally { @@ -230869,7 +233524,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle getProcAddress_ptr = GCHandle.Alloc(getProcAddress, GCHandleType.Pinned); try { - Delegates.glVDPAUInitNV((IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2225], (IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); } finally { @@ -230896,7 +233551,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle getProcAddress_ptr = GCHandle.Alloc(getProcAddress, GCHandleType.Pinned); try { - Delegates.glVDPAUInitNV((IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2225], (IntPtr)vdpDevice_ptr.AddrOfPinnedObject(), (IntPtr)getProcAddress_ptr.AddrOfPinnedObject()); vdpDevice = (T0)vdpDevice_ptr.Target; getProcAddress = (T1)getProcAddress_ptr.Target; } @@ -230919,7 +233574,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUIsSurfaceNV((IntPtr)surface); + InteropHelper.Call(EntryPoints[2226], (IntPtr)surface); #if DEBUG } #endif @@ -230938,7 +233593,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (IntPtr* surfaces_ptr = surfaces) { - Delegates.glVDPAUMapSurfacesNV((Int32)numSurfaces, (IntPtr*)surfaces_ptr); + InteropHelper.Call(EntryPoints[2227], (Int32)numSurfaces, (IntPtr)surfaces_ptr); } } #if DEBUG @@ -230959,7 +233614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (IntPtr* surfaces_ptr = &surfaces) { - Delegates.glVDPAUMapSurfacesNV((Int32)numSurfaces, (IntPtr*)surfaces_ptr); + InteropHelper.Call(EntryPoints[2227], (Int32)numSurfaces, (IntPtr)surfaces_ptr); } } #if DEBUG @@ -230977,7 +233632,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUMapSurfacesNV((Int32)numSurfaces, (IntPtr*)surfaces); + InteropHelper.Call(EntryPoints[2227], (Int32)numSurfaces, (IntPtr)surfaces); #if DEBUG } #endif @@ -230996,7 +233651,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textureNames_ptr = textureNames) { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231017,7 +233672,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textureNames_ptr = &textureNames) { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231035,7 +233690,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); #if DEBUG } #endif @@ -231055,7 +233710,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textureNames_ptr = textureNames) { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231077,7 +233732,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textureNames_ptr = &textureNames) { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231095,7 +233750,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); #if DEBUG } #endif @@ -231118,7 +233773,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231148,7 +233803,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231175,7 +233830,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -231204,7 +233859,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231235,7 +233890,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231262,7 +233917,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -231290,7 +233945,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231320,7 +233975,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231347,7 +234002,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -231376,7 +234031,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231407,7 +234062,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231434,7 +234089,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -231462,7 +234117,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231492,7 +234147,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231519,7 +234174,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -231548,7 +234203,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231579,7 +234234,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231606,7 +234261,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -231634,7 +234289,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -231666,7 +234321,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -231695,7 +234350,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -231726,7 +234381,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -231759,7 +234414,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -231788,7 +234443,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterOutputSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2228], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -231814,7 +234469,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textureNames_ptr = textureNames) { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231835,7 +234490,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* textureNames_ptr = &textureNames) { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231853,7 +234508,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); #if DEBUG } #endif @@ -231873,7 +234528,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textureNames_ptr = textureNames) { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231895,7 +234550,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* textureNames_ptr = &textureNames) { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } } #if DEBUG @@ -231913,7 +234568,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); #if DEBUG } #endif @@ -231936,7 +234591,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231966,7 +234621,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -231993,7 +234648,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -232022,7 +234677,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232053,7 +234708,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232080,7 +234735,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -232108,7 +234763,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232138,7 +234793,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232165,7 +234820,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -232194,7 +234849,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232225,7 +234880,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232252,7 +234907,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -232280,7 +234935,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232310,7 +234965,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232337,7 +234992,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -232366,7 +235021,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232397,7 +235052,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); } finally { @@ -232424,7 +235079,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - return Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + return InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); } finally { @@ -232452,7 +235107,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -232484,7 +235139,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -232513,7 +235168,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -232544,7 +235199,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -232577,7 +235232,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames_ptr); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames_ptr); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -232606,7 +235261,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle vdpSurface_ptr = GCHandle.Alloc(vdpSurface, GCHandleType.Pinned); try { - IntPtr retval = Delegates.glVDPAURegisterVideoSurfaceNV((IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (UInt32*)textureNames); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[2229], (IntPtr)vdpSurface_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL.NvVdpauInterop)target, (Int32)numTextureNames, (IntPtr)textureNames); vdpSurface = (T0)vdpSurface_ptr.Target; return retval; } @@ -232628,7 +235283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUSurfaceAccessNV((IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)access); + InteropHelper.Call(EntryPoints[2230], (IntPtr)surface, (OpenTK.Graphics.OpenGL.NvVdpauInterop)access); #if DEBUG } #endif @@ -232647,7 +235302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (IntPtr* surfaces_ptr = surfaces) { - Delegates.glVDPAUUnmapSurfacesNV((Int32)numSurface, (IntPtr*)surfaces_ptr); + InteropHelper.Call(EntryPoints[2231], (Int32)numSurface, (IntPtr)surfaces_ptr); } } #if DEBUG @@ -232668,7 +235323,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (IntPtr* surfaces_ptr = &surfaces) { - Delegates.glVDPAUUnmapSurfacesNV((Int32)numSurface, (IntPtr*)surfaces_ptr); + InteropHelper.Call(EntryPoints[2231], (Int32)numSurface, (IntPtr)surfaces_ptr); } } #if DEBUG @@ -232686,7 +235341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUUnmapSurfacesNV((Int32)numSurface, (IntPtr*)surfaces); + InteropHelper.Call(EntryPoints[2231], (Int32)numSurface, (IntPtr)surfaces); #if DEBUG } #endif @@ -232701,7 +235356,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVDPAUUnregisterSurfaceNV((IntPtr)surface); + InteropHelper.Call(EntryPoints[2232], (IntPtr)surface); #if DEBUG } #endif @@ -232716,7 +235371,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2hNV((Half)x, (Half)y); + InteropHelper.Call(EntryPoints[2239], (Half)x, (Half)y); #if DEBUG } #endif @@ -232735,7 +235390,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertex2hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[2240], (IntPtr)v_ptr); } } #if DEBUG @@ -232756,7 +235411,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertex2hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[2240], (IntPtr)v_ptr); } } #if DEBUG @@ -232774,7 +235429,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2hvNV((Half*)v); + InteropHelper.Call(EntryPoints[2240], (IntPtr)v); #if DEBUG } #endif @@ -232789,7 +235444,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3hNV((Half)x, (Half)y, (Half)z); + InteropHelper.Call(EntryPoints[2253], (Half)x, (Half)y, (Half)z); #if DEBUG } #endif @@ -232808,7 +235463,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertex3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[2254], (IntPtr)v_ptr); } } #if DEBUG @@ -232829,7 +235484,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertex3hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[2254], (IntPtr)v_ptr); } } #if DEBUG @@ -232847,7 +235502,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3hvNV((Half*)v); + InteropHelper.Call(EntryPoints[2254], (IntPtr)v); #if DEBUG } #endif @@ -232862,7 +235517,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4hNV((Half)x, (Half)y, (Half)z, (Half)w); + InteropHelper.Call(EntryPoints[2267], (Half)x, (Half)y, (Half)z, (Half)w); #if DEBUG } #endif @@ -232881,7 +235536,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertex4hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[2268], (IntPtr)v_ptr); } } #if DEBUG @@ -232902,7 +235557,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertex4hvNV((Half*)v_ptr); + InteropHelper.Call(EntryPoints[2268], (IntPtr)v_ptr); } } #if DEBUG @@ -232920,7 +235575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4hvNV((Half*)v); + InteropHelper.Call(EntryPoints[2268], (IntPtr)v); #if DEBUG } #endif @@ -232935,7 +235590,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexArrayRangeNV((Int32)length, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2284], (Int32)length, (IntPtr)pointer); #if DEBUG } #endif @@ -232954,7 +235609,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeNV((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2284], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -232978,7 +235633,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeNV((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2284], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -233002,7 +235657,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeNV((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2284], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -233026,7 +235681,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexArrayRangeNV((Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2284], (Int32)length, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T1)pointer_ptr.Target; } finally @@ -233079,7 +235734,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dNV((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2299], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -233127,7 +235782,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dNV((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[2299], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -233175,7 +235830,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2302], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233223,7 +235878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2302], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233270,7 +235925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fNV((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[2305], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -233318,7 +235973,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fNV((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[2305], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -233366,7 +236021,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2308], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233414,7 +236069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2308], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233429,7 +236084,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hNV((UInt32)index, (Half)x); + InteropHelper.Call(EntryPoints[2309], (UInt32)index, (Half)x); #if DEBUG } #endif @@ -233445,7 +236100,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hNV((UInt32)index, (Half)x); + InteropHelper.Call(EntryPoints[2309], (UInt32)index, (Half)x); #if DEBUG } #endif @@ -233461,7 +236116,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2310], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233477,7 +236132,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2310], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233524,7 +236179,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sNV((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[2313], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -233572,7 +236227,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sNV((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[2313], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -233620,7 +236275,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2316], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233668,7 +236323,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2316], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233715,7 +236370,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dNV((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2319], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -233763,7 +236418,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dNV((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[2319], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -233814,7 +236469,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2322], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -233867,7 +236522,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2322], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -233917,7 +236572,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2322], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -233969,7 +236624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2322], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234023,7 +236678,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2322], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234073,7 +236728,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2322], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -234120,7 +236775,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fNV((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2325], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -234168,7 +236823,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fNV((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[2325], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -234219,7 +236874,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2328], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234272,7 +236927,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2328], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234322,7 +236977,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2328], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -234374,7 +237029,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2328], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234428,7 +237083,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2328], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234478,7 +237133,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2328], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -234493,7 +237148,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hNV((UInt32)index, (Half)x, (Half)y); + InteropHelper.Call(EntryPoints[2329], (UInt32)index, (Half)x, (Half)y); #if DEBUG } #endif @@ -234509,7 +237164,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hNV((UInt32)index, (Half)x, (Half)y); + InteropHelper.Call(EntryPoints[2329], (UInt32)index, (Half)x, (Half)y); #if DEBUG } #endif @@ -234528,7 +237183,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2330], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234549,7 +237204,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2330], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234567,7 +237222,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2330], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -234587,7 +237242,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2330], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234609,7 +237264,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttrib2hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2330], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234627,7 +237282,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2330], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -234674,7 +237329,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sNV((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2333], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -234722,7 +237377,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sNV((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[2333], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -234773,7 +237428,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2336], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234826,7 +237481,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2336], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234876,7 +237531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2336], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -234928,7 +237583,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2336], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -234982,7 +237637,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2336], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235032,7 +237687,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2336], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -235079,7 +237734,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dNV((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2339], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -235127,7 +237782,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dNV((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[2339], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -235178,7 +237833,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2342], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235231,7 +237886,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2342], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235281,7 +237936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2342], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -235333,7 +237988,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2342], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235387,7 +238042,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2342], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235437,7 +238092,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2342], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -235484,7 +238139,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fNV((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2345], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -235532,7 +238187,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fNV((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[2345], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -235583,7 +238238,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2348], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235636,7 +238291,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2348], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235686,7 +238341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2348], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -235738,7 +238393,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2348], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235792,7 +238447,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2348], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235842,7 +238497,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2348], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -235857,7 +238512,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hNV((UInt32)index, (Half)x, (Half)y, (Half)z); + InteropHelper.Call(EntryPoints[2349], (UInt32)index, (Half)x, (Half)y, (Half)z); #if DEBUG } #endif @@ -235873,7 +238528,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hNV((UInt32)index, (Half)x, (Half)y, (Half)z); + InteropHelper.Call(EntryPoints[2349], (UInt32)index, (Half)x, (Half)y, (Half)z); #if DEBUG } #endif @@ -235892,7 +238547,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2350], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235913,7 +238568,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2350], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235931,7 +238586,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2350], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -235951,7 +238606,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2350], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235973,7 +238628,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttrib3hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2350], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -235991,7 +238646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2350], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -236038,7 +238693,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2353], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -236086,7 +238741,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[2353], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -236137,7 +238792,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2356], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236190,7 +238845,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2356], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236240,7 +238895,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2356], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -236292,7 +238947,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2356], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236346,7 +239001,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2356], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236396,7 +239051,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2356], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -236443,7 +239098,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dNV((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2361], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -236491,7 +239146,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dNV((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[2361], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -236542,7 +239197,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2364], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236595,7 +239250,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2364], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236645,7 +239300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2364], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -236697,7 +239352,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2364], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236751,7 +239406,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2364], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -236801,7 +239456,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dvNV((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[2364], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -236848,7 +239503,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fNV((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2367], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -236896,7 +239551,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fNV((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[2367], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -236947,7 +239602,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2370], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237000,7 +239655,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2370], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237050,7 +239705,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2370], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -237102,7 +239757,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2370], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237156,7 +239811,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2370], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237206,7 +239861,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fvNV((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[2370], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -237221,7 +239876,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hNV((UInt32)index, (Half)x, (Half)y, (Half)z, (Half)w); + InteropHelper.Call(EntryPoints[2371], (UInt32)index, (Half)x, (Half)y, (Half)z, (Half)w); #if DEBUG } #endif @@ -237237,7 +239892,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hNV((UInt32)index, (Half)x, (Half)y, (Half)z, (Half)w); + InteropHelper.Call(EntryPoints[2371], (UInt32)index, (Half)x, (Half)y, (Half)z, (Half)w); #if DEBUG } #endif @@ -237256,7 +239911,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2372], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237277,7 +239932,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2372], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237295,7 +239950,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2372], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -237315,7 +239970,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2372], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237337,7 +239992,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttrib4hvNV((UInt32)index, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2372], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237355,7 +240010,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4hvNV((UInt32)index, (Half*)v); + InteropHelper.Call(EntryPoints[2372], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -237402,7 +240057,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2391], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -237450,7 +240105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sNV((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[2391], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -237501,7 +240156,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2394], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237554,7 +240209,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2394], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237604,7 +240259,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2394], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -237656,7 +240311,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2394], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237710,7 +240365,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2394], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237760,7 +240415,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4svNV((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[2394], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -237807,7 +240462,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubNV((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[2395], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -237855,7 +240510,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubNV((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[2395], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -237906,7 +240561,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2398], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -237959,7 +240614,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2398], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238009,7 +240664,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2398], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238061,7 +240716,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2398], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238115,7 +240770,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2398], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238165,7 +240820,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubvNV((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[2398], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238207,7 +240862,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribFormatNV((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (bool)normalized, (Int32)stride); + InteropHelper.Call(EntryPoints[2408], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (bool)normalized, (Int32)stride); #if DEBUG } #endif @@ -238250,7 +240905,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribFormatNV((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (bool)normalized, (Int32)stride); + InteropHelper.Call(EntryPoints[2408], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (bool)normalized, (Int32)stride); #if DEBUG } #endif @@ -238265,7 +240920,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIFormatNV((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[2450], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -238281,7 +240936,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIFormatNV((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[2450], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -238296,7 +240951,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1i64NV((UInt32)index, (Int64)x); + InteropHelper.Call(EntryPoints[2457], (UInt32)index, (Int64)x); #if DEBUG } #endif @@ -238312,7 +240967,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1i64NV((UInt32)index, (Int64)x); + InteropHelper.Call(EntryPoints[2457], (UInt32)index, (Int64)x); #if DEBUG } #endif @@ -238328,7 +240983,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2458], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238344,7 +240999,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2458], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238360,7 +241015,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64NV((UInt32)index, (UInt64)x); + InteropHelper.Call(EntryPoints[2460], (UInt32)index, (UInt64)x); #if DEBUG } #endif @@ -238376,7 +241031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64vNV((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[2462], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238391,7 +241046,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2i64NV((UInt32)index, (Int64)x, (Int64)y); + InteropHelper.Call(EntryPoints[2467], (UInt32)index, (Int64)x, (Int64)y); #if DEBUG } #endif @@ -238407,7 +241062,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2i64NV((UInt32)index, (Int64)x, (Int64)y); + InteropHelper.Call(EntryPoints[2467], (UInt32)index, (Int64)x, (Int64)y); #if DEBUG } #endif @@ -238426,7 +241081,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL2i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2468], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238447,7 +241102,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = &v) { - Delegates.glVertexAttribL2i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2468], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238465,7 +241120,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2468], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238485,7 +241140,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL2i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2468], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238507,7 +241162,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = &v) { - Delegates.glVertexAttribL2i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2468], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238525,7 +241180,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2468], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238541,7 +241196,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2ui64NV((UInt32)index, (UInt64)x, (UInt64)y); + InteropHelper.Call(EntryPoints[2469], (UInt32)index, (UInt64)x, (UInt64)y); #if DEBUG } #endif @@ -238561,7 +241216,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = v) { - Delegates.glVertexAttribL2ui64vNV((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2470], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238583,7 +241238,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = &v) { - Delegates.glVertexAttribL2ui64vNV((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2470], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238601,7 +241256,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2ui64vNV((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[2470], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238616,7 +241271,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3i64NV((UInt32)index, (Int64)x, (Int64)y, (Int64)z); + InteropHelper.Call(EntryPoints[2475], (UInt32)index, (Int64)x, (Int64)y, (Int64)z); #if DEBUG } #endif @@ -238632,7 +241287,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3i64NV((UInt32)index, (Int64)x, (Int64)y, (Int64)z); + InteropHelper.Call(EntryPoints[2475], (UInt32)index, (Int64)x, (Int64)y, (Int64)z); #if DEBUG } #endif @@ -238651,7 +241306,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL3i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2476], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238672,7 +241327,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = &v) { - Delegates.glVertexAttribL3i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2476], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238690,7 +241345,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2476], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238710,7 +241365,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL3i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2476], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238732,7 +241387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = &v) { - Delegates.glVertexAttribL3i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2476], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238750,7 +241405,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2476], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238766,7 +241421,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3ui64NV((UInt32)index, (UInt64)x, (UInt64)y, (UInt64)z); + InteropHelper.Call(EntryPoints[2477], (UInt32)index, (UInt64)x, (UInt64)y, (UInt64)z); #if DEBUG } #endif @@ -238786,7 +241441,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = v) { - Delegates.glVertexAttribL3ui64vNV((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2478], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238808,7 +241463,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = &v) { - Delegates.glVertexAttribL3ui64vNV((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2478], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238826,7 +241481,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3ui64vNV((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[2478], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238841,7 +241496,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4i64NV((UInt32)index, (Int64)x, (Int64)y, (Int64)z, (Int64)w); + InteropHelper.Call(EntryPoints[2483], (UInt32)index, (Int64)x, (Int64)y, (Int64)z, (Int64)w); #if DEBUG } #endif @@ -238857,7 +241512,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4i64NV((UInt32)index, (Int64)x, (Int64)y, (Int64)z, (Int64)w); + InteropHelper.Call(EntryPoints[2483], (UInt32)index, (Int64)x, (Int64)y, (Int64)z, (Int64)w); #if DEBUG } #endif @@ -238876,7 +241531,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL4i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2484], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238897,7 +241552,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = &v) { - Delegates.glVertexAttribL4i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2484], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238915,7 +241570,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2484], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238935,7 +241590,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL4i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2484], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238957,7 +241612,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int64* v_ptr = &v) { - Delegates.glVertexAttribL4i64vNV((UInt32)index, (Int64*)v_ptr); + InteropHelper.Call(EntryPoints[2484], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -238975,7 +241630,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4i64vNV((UInt32)index, (Int64*)v); + InteropHelper.Call(EntryPoints[2484], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -238991,7 +241646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4ui64NV((UInt32)index, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); + InteropHelper.Call(EntryPoints[2485], (UInt32)index, (UInt64)x, (UInt64)y, (UInt64)z, (UInt64)w); #if DEBUG } #endif @@ -239011,7 +241666,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = v) { - Delegates.glVertexAttribL4ui64vNV((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2486], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -239033,7 +241688,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt64* v_ptr = &v) { - Delegates.glVertexAttribL4ui64vNV((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[2486], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -239051,7 +241706,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4ui64vNV((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[2486], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -239066,7 +241721,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLFormatNV((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)type, (Int32)stride); + InteropHelper.Call(EntryPoints[2488], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)type, (Int32)stride); #if DEBUG } #endif @@ -239082,7 +241737,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLFormatNV((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)type, (Int32)stride); + InteropHelper.Call(EntryPoints[2488], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexAttribInteger64bit)type, (Int32)stride); #if DEBUG } #endif @@ -239129,7 +241784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -239180,7 +241835,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -239236,7 +241891,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -239292,7 +241947,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -239348,7 +242003,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -239402,7 +242057,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -239454,7 +242109,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -239511,7 +242166,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -239568,7 +242223,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -239625,7 +242280,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointerNV((UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2502], (UInt32)index, (Int32)fsize, (OpenTK.Graphics.OpenGL.VertexAttribParameterArb)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -239650,7 +242305,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2503], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239671,7 +242326,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2503], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239689,7 +242344,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2503], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -239709,7 +242364,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2503], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239731,7 +242386,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2503], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239749,7 +242404,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2503], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -239768,7 +242423,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2504], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239789,7 +242444,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2504], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239807,7 +242462,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2504], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -239827,7 +242482,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2504], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239849,7 +242504,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2504], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -239867,7 +242522,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2504], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -239886,7 +242541,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2505], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -239907,7 +242562,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2505], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -239925,7 +242580,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2505], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -239945,7 +242600,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2505], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -239967,7 +242622,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2505], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -239985,7 +242640,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2505], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -240004,7 +242659,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2506], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240025,7 +242680,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2506], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240043,7 +242698,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2506], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240063,7 +242718,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2506], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240085,7 +242740,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2506], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240103,7 +242758,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs1svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2506], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240122,7 +242777,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2507], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240143,7 +242798,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2507], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240161,7 +242816,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2507], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240181,7 +242836,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2507], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240203,7 +242858,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2507], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240221,7 +242876,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2507], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240240,7 +242895,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2508], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240261,7 +242916,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2508], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240279,7 +242934,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2508], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240299,7 +242954,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2508], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240321,7 +242976,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2508], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240339,7 +242994,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2508], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240358,7 +243013,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2509], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240379,7 +243034,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2509], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240397,7 +243052,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2509], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -240417,7 +243072,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2509], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240439,7 +243094,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2509], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240457,7 +243112,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2509], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -240476,7 +243131,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2510], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240497,7 +243152,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2510], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240515,7 +243170,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2510], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240535,7 +243190,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2510], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240557,7 +243212,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2510], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240575,7 +243230,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs2svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2510], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240594,7 +243249,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2511], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240615,7 +243270,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2511], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240633,7 +243288,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2511], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240653,7 +243308,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2511], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240675,7 +243330,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2511], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240693,7 +243348,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2511], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240712,7 +243367,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2512], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240733,7 +243388,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2512], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240751,7 +243406,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2512], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240771,7 +243426,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2512], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240793,7 +243448,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2512], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240811,7 +243466,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2512], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -240830,7 +243485,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2513], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240851,7 +243506,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2513], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240869,7 +243524,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2513], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -240889,7 +243544,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2513], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240911,7 +243566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2513], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -240929,7 +243584,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2513], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -240948,7 +243603,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2514], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240969,7 +243624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2514], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -240987,7 +243642,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2514], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241007,7 +243662,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2514], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241029,7 +243684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2514], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241047,7 +243702,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs3svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2514], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241066,7 +243721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2515], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241087,7 +243742,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2515], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241105,7 +243760,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2515], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241125,7 +243780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2515], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241147,7 +243802,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[2515], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241165,7 +243820,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4dvNV((UInt32)index, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[2515], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241184,7 +243839,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2516], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241205,7 +243860,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2516], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241223,7 +243878,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2516], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241243,7 +243898,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = v) { - Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2516], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241265,7 +243920,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[2516], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241283,7 +243938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4fvNV((UInt32)index, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[2516], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241302,7 +243957,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2517], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -241323,7 +243978,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2517], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -241341,7 +243996,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2517], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -241361,7 +244016,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2517], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -241383,7 +244038,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Half* v_ptr = &v) { - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (Half*)v_ptr); + InteropHelper.Call(EntryPoints[2517], (UInt32)index, (Int32)n, (IntPtr)v_ptr); } } #if DEBUG @@ -241401,7 +244056,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4hvNV((UInt32)index, (Int32)n, (Half*)v); + InteropHelper.Call(EntryPoints[2517], (UInt32)index, (Int32)n, (IntPtr)v); #if DEBUG } #endif @@ -241420,7 +244075,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2518], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241441,7 +244096,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2518], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241459,7 +244114,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2518], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241479,7 +244134,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2518], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241501,7 +244156,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[2518], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241519,7 +244174,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4svNV((UInt32)index, (Int32)count, (Int16*)v); + InteropHelper.Call(EntryPoints[2518], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241538,7 +244193,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2519], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241559,7 +244214,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2519], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241577,7 +244232,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v); + InteropHelper.Call(EntryPoints[2519], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241597,7 +244252,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2519], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241619,7 +244274,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[2519], (UInt32)index, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -241637,7 +244292,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribs4ubvNV((UInt32)index, (Int32)count, (Byte*)v); + InteropHelper.Call(EntryPoints[2519], (UInt32)index, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -241652,7 +244307,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexFormatNV((Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); + InteropHelper.Call(EntryPoints[2524], (Int32)size, (OpenTK.Graphics.OpenGL.NvVertexBufferUnifiedMemory)type, (Int32)stride); #if DEBUG } #endif @@ -241667,7 +244322,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeighthNV((Half)weight); + InteropHelper.Call(EntryPoints[2569], (Half)weight); #if DEBUG } #endif @@ -241683,7 +244338,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexWeighthvNV((Half*)weight); + InteropHelper.Call(EntryPoints[2570], (IntPtr)weight); #if DEBUG } #endif @@ -241703,7 +244358,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* sequence_num_ptr = sequence_num) fixed (Int64* capture_time_ptr = capture_time) { - return Delegates.glVideoCaptureNV((UInt32)video_capture_slot, (UInt32*)sequence_num_ptr, (UInt64*)capture_time_ptr); + return InteropHelper.CallReturn(EntryPoints[2572], (UInt32)video_capture_slot, (IntPtr)sequence_num_ptr, (IntPtr)capture_time_ptr); } } #if DEBUG @@ -241725,7 +244380,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* sequence_num_ptr = &sequence_num) fixed (Int64* capture_time_ptr = &capture_time) { - OpenTK.Graphics.OpenGL.NvVideoCapture retval = Delegates.glVideoCaptureNV((UInt32)video_capture_slot, (UInt32*)sequence_num_ptr, (UInt64*)capture_time_ptr); + OpenTK.Graphics.OpenGL.NvVideoCapture retval = InteropHelper.CallReturn(EntryPoints[2572], (UInt32)video_capture_slot, (IntPtr)sequence_num_ptr, (IntPtr)capture_time_ptr); sequence_num = *sequence_num_ptr; capture_time = *capture_time_ptr; return retval; @@ -241746,7 +244401,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glVideoCaptureNV((UInt32)video_capture_slot, (UInt32*)sequence_num, (UInt64*)capture_time); + return InteropHelper.CallReturn(EntryPoints[2572], (UInt32)video_capture_slot, (IntPtr)sequence_num, (IntPtr)capture_time); #if DEBUG } #endif @@ -241767,7 +244422,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* sequence_num_ptr = sequence_num) fixed (UInt64* capture_time_ptr = capture_time) { - return Delegates.glVideoCaptureNV((UInt32)video_capture_slot, (UInt32*)sequence_num_ptr, (UInt64*)capture_time_ptr); + return InteropHelper.CallReturn(EntryPoints[2572], (UInt32)video_capture_slot, (IntPtr)sequence_num_ptr, (IntPtr)capture_time_ptr); } } #if DEBUG @@ -241790,7 +244445,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* sequence_num_ptr = &sequence_num) fixed (UInt64* capture_time_ptr = &capture_time) { - OpenTK.Graphics.OpenGL.NvVideoCapture retval = Delegates.glVideoCaptureNV((UInt32)video_capture_slot, (UInt32*)sequence_num_ptr, (UInt64*)capture_time_ptr); + OpenTK.Graphics.OpenGL.NvVideoCapture retval = InteropHelper.CallReturn(EntryPoints[2572], (UInt32)video_capture_slot, (IntPtr)sequence_num_ptr, (IntPtr)capture_time_ptr); sequence_num = *sequence_num_ptr; capture_time = *capture_time_ptr; return retval; @@ -241811,7 +244466,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glVideoCaptureNV((UInt32)video_capture_slot, (UInt32*)sequence_num, (UInt64*)capture_time); + return InteropHelper.CallReturn(EntryPoints[2572], (UInt32)video_capture_slot, (IntPtr)sequence_num, (IntPtr)capture_time); #if DEBUG } #endif @@ -241830,7 +244485,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glVideoCaptureStreamParameterdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[2573], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -241851,7 +244506,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glVideoCaptureStreamParameterdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[2573], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -241869,7 +244524,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVideoCaptureStreamParameterdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[2573], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -241889,7 +244544,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = @params) { - Delegates.glVideoCaptureStreamParameterdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[2573], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -241911,7 +244566,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* @params_ptr = &@params) { - Delegates.glVideoCaptureStreamParameterdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[2573], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -241929,7 +244584,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVideoCaptureStreamParameterdvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[2573], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -241948,7 +244603,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glVideoCaptureStreamParameterfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2574], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -241969,7 +244624,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glVideoCaptureStreamParameterfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2574], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -241987,7 +244642,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVideoCaptureStreamParameterfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2574], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -242007,7 +244662,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glVideoCaptureStreamParameterfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2574], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242029,7 +244684,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glVideoCaptureStreamParameterfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[2574], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242047,7 +244702,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVideoCaptureStreamParameterfvNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[2574], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -242066,7 +244721,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glVideoCaptureStreamParameterivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2575], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242087,7 +244742,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glVideoCaptureStreamParameterivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2575], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242105,7 +244760,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVideoCaptureStreamParameterivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2575], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -242125,7 +244780,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glVideoCaptureStreamParameterivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2575], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242147,7 +244802,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glVideoCaptureStreamParameterivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[2575], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242165,7 +244820,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVideoCaptureStreamParameterivNV((UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[2575], (UInt32)video_capture_slot, (UInt32)stream, (OpenTK.Graphics.OpenGL.NvVideoCapture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -242185,7 +244840,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* paths_ptr = paths) fixed (Single* weights_ptr = weights) { - Delegates.glWeightPathsNV((UInt32)resultPath, (Int32)numPaths, (UInt32*)paths_ptr, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2585], (UInt32)resultPath, (Int32)numPaths, (IntPtr)paths_ptr, (IntPtr)weights_ptr); } } #if DEBUG @@ -242207,7 +244862,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* paths_ptr = &paths) fixed (Single* weights_ptr = &weights) { - Delegates.glWeightPathsNV((UInt32)resultPath, (Int32)numPaths, (UInt32*)paths_ptr, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2585], (UInt32)resultPath, (Int32)numPaths, (IntPtr)paths_ptr, (IntPtr)weights_ptr); } } #if DEBUG @@ -242225,7 +244880,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightPathsNV((UInt32)resultPath, (Int32)numPaths, (UInt32*)paths, (Single*)weights); + InteropHelper.Call(EntryPoints[2585], (UInt32)resultPath, (Int32)numPaths, (IntPtr)paths, (IntPtr)weights); #if DEBUG } #endif @@ -242246,7 +244901,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* paths_ptr = paths) fixed (Single* weights_ptr = weights) { - Delegates.glWeightPathsNV((UInt32)resultPath, (Int32)numPaths, (UInt32*)paths_ptr, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2585], (UInt32)resultPath, (Int32)numPaths, (IntPtr)paths_ptr, (IntPtr)weights_ptr); } } #if DEBUG @@ -242269,7 +244924,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* paths_ptr = &paths) fixed (Single* weights_ptr = &weights) { - Delegates.glWeightPathsNV((UInt32)resultPath, (Int32)numPaths, (UInt32*)paths_ptr, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2585], (UInt32)resultPath, (Int32)numPaths, (IntPtr)paths_ptr, (IntPtr)weights_ptr); } } #if DEBUG @@ -242287,7 +244942,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glWeightPathsNV((UInt32)resultPath, (Int32)numPaths, (UInt32*)paths, (Single*)weights); + InteropHelper.Call(EntryPoints[2585], (UInt32)resultPath, (Int32)numPaths, (IntPtr)paths, (IntPtr)weights); #if DEBUG } #endif @@ -242318,7 +244973,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRenderNVX((UInt32)id); + InteropHelper.Call(EntryPoints[27], (UInt32)id); #if DEBUG } #endif @@ -242346,7 +245001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRenderNVX((UInt32)id); + InteropHelper.Call(EntryPoints[27], (UInt32)id); #if DEBUG } #endif @@ -242361,7 +245016,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndConditionalRenderNVX(); + InteropHelper.Call(EntryPoints[480]); #if DEBUG } #endif @@ -242380,7 +245035,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAccumxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)op, (int)value); + InteropHelper.Call(EntryPoints[1], (OpenTK.Graphics.OpenGL.OesFixedPoint)op, (int)value); #if DEBUG } #endif @@ -242395,7 +245050,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAlphaFuncxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)func, (int)@ref); + InteropHelper.Call(EntryPoints[13], (OpenTK.Graphics.OpenGL.OesFixedPoint)func, (int)@ref); #if DEBUG } #endif @@ -242414,7 +245069,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* bitmap_ptr = bitmap) { - Delegates.glBitmapxOES((Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (Byte*)bitmap_ptr); + InteropHelper.Call(EntryPoints[100], (Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (IntPtr)bitmap_ptr); } } #if DEBUG @@ -242435,7 +245090,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* bitmap_ptr = &bitmap) { - Delegates.glBitmapxOES((Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (Byte*)bitmap_ptr); + InteropHelper.Call(EntryPoints[100], (Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (IntPtr)bitmap_ptr); } } #if DEBUG @@ -242453,7 +245108,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBitmapxOES((Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (Byte*)bitmap); + InteropHelper.Call(EntryPoints[100], (Int32)width, (Int32)height, (int)xorig, (int)yorig, (int)xmove, (int)ymove, (IntPtr)bitmap); #if DEBUG } #endif @@ -242468,7 +245123,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColorxOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[104], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -242483,7 +245138,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearAccumxOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[144], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -242498,7 +245153,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColorxOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[154], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -242520,7 +245175,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthfOES((Single)depth); + InteropHelper.Call(EntryPoints[158], (Single)depth); #if DEBUG } #endif @@ -242535,7 +245190,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthxOES((int)depth); + InteropHelper.Call(EntryPoints[159], (int)depth); #if DEBUG } #endif @@ -242566,7 +245221,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* equation_ptr = equation) { - Delegates.glClipPlanefOES((OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -242599,7 +245254,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* equation_ptr = &equation) { - Delegates.glClipPlanefOES((OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -242629,7 +245284,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanefOES((OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (Single*)equation); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (IntPtr)equation); #if DEBUG } #endif @@ -242648,7 +245303,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* equation_ptr = equation) { - Delegates.glClipPlanexOES((OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -242669,7 +245324,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* equation_ptr = &equation) { - Delegates.glClipPlanexOES((OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -242687,7 +245342,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClipPlanexOES((OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (int*)equation); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (IntPtr)equation); #if DEBUG } #endif @@ -242702,7 +245357,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3xOES((int)red, (int)green, (int)blue); + InteropHelper.Call(EntryPoints[194], (int)red, (int)green, (int)blue); #if DEBUG } #endif @@ -242721,7 +245376,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* components_ptr = components) { - Delegates.glColor3xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[195], (IntPtr)components_ptr); } } #if DEBUG @@ -242742,7 +245397,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* components_ptr = &components) { - Delegates.glColor3xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[195], (IntPtr)components_ptr); } } #if DEBUG @@ -242760,7 +245415,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3xvOES((int*)components); + InteropHelper.Call(EntryPoints[195], (IntPtr)components); #if DEBUG } #endif @@ -242775,7 +245430,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4xOES((int)red, (int)green, (int)blue, (int)alpha); + InteropHelper.Call(EntryPoints[220], (int)red, (int)green, (int)blue, (int)alpha); #if DEBUG } #endif @@ -242794,7 +245449,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* components_ptr = components) { - Delegates.glColor4xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[221], (IntPtr)components_ptr); } } #if DEBUG @@ -242815,7 +245470,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* components_ptr = &components) { - Delegates.glColor4xvOES((int*)components_ptr); + InteropHelper.Call(EntryPoints[221], (IntPtr)components_ptr); } } #if DEBUG @@ -242833,7 +245488,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4xvOES((int*)components); + InteropHelper.Call(EntryPoints[221], (IntPtr)components); #if DEBUG } #endif @@ -242848,7 +245503,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[293], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -242867,7 +245522,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glConvolutionParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[294], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -242885,7 +245540,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[294], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -242912,7 +245567,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangefOES((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[401], (Single)n, (Single)f); #if DEBUG } #endif @@ -242927,7 +245582,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangexOES((int)n, (int)f); + InteropHelper.Call(EntryPoints[403], (int)n, (int)f); #if DEBUG } #endif @@ -242942,7 +245597,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1xOES((int)u); + InteropHelper.Call(EntryPoints[497], (int)u); #if DEBUG } #endif @@ -242958,7 +245613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord1xvOES((int*)coords); + InteropHelper.Call(EntryPoints[498], (IntPtr)coords); #if DEBUG } #endif @@ -242973,7 +245628,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2xOES((int)u, (int)v); + InteropHelper.Call(EntryPoints[503], (int)u, (int)v); #if DEBUG } #endif @@ -242992,7 +245647,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glEvalCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[504], (IntPtr)coords_ptr); } } #if DEBUG @@ -243013,7 +245668,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glEvalCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[504], (IntPtr)coords_ptr); } } #if DEBUG @@ -243031,7 +245686,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEvalCoord2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[504], (IntPtr)coords); #if DEBUG } #endif @@ -243050,7 +245705,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* buffer_ptr = buffer) { - Delegates.glFeedbackBufferxOES((Int32)n, (OpenTK.Graphics.OpenGL.OesFixedPoint)type, (int*)buffer_ptr); + InteropHelper.Call(EntryPoints[513], (Int32)n, (OpenTK.Graphics.OpenGL.OesFixedPoint)type, (IntPtr)buffer_ptr); } } #if DEBUG @@ -243071,7 +245726,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* buffer_ptr = &buffer) { - Delegates.glFeedbackBufferxOES((Int32)n, (OpenTK.Graphics.OpenGL.OesFixedPoint)type, (int*)buffer_ptr); + InteropHelper.Call(EntryPoints[513], (Int32)n, (OpenTK.Graphics.OpenGL.OesFixedPoint)type, (IntPtr)buffer_ptr); } } #if DEBUG @@ -243089,7 +245744,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFeedbackBufferxOES((Int32)n, (OpenTK.Graphics.OpenGL.OesFixedPoint)type, (int*)buffer); + InteropHelper.Call(EntryPoints[513], (Int32)n, (OpenTK.Graphics.OpenGL.OesFixedPoint)type, (IntPtr)buffer); #if DEBUG } #endif @@ -243104,7 +245759,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[550], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -243123,7 +245778,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* param_ptr = param) { - Delegates.glFogxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[551], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -243141,7 +245796,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)param); + InteropHelper.Call(EntryPoints[551], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)param); #if DEBUG } #endif @@ -243173,7 +245828,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumfOES((Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); + InteropHelper.Call(EntryPoints[590], (Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); #if DEBUG } #endif @@ -243188,7 +245843,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrustumxOES((int)l, (int)r, (int)b, (int)t, (int)n, (int)f); + InteropHelper.Call(EntryPoints[591], (int)l, (int)r, (int)b, (int)t, (int)n, (int)f); #if DEBUG } #endif @@ -243219,7 +245874,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* equation_ptr = equation) { - Delegates.glGetClipPlanefOES((OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[657], (OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -243252,7 +245907,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* equation_ptr = &equation) { - Delegates.glGetClipPlanefOES((OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (Single*)equation_ptr); + InteropHelper.Call(EntryPoints[657], (OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -243283,7 +245938,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlanefOES((OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (Single*)equation); + InteropHelper.Call(EntryPoints[657], (OpenTK.Graphics.OpenGL.OesSinglePrecision)plane, (IntPtr)equation); #if DEBUG } #endif @@ -243302,7 +245957,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* equation_ptr = equation) { - Delegates.glGetClipPlanexOES((OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[658], (OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (IntPtr)equation_ptr); } } #if DEBUG @@ -243323,7 +245978,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* equation_ptr = &equation) { - Delegates.glGetClipPlanexOES((OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (int*)equation_ptr); + InteropHelper.Call(EntryPoints[658], (OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (IntPtr)equation_ptr); equation = *equation_ptr; } } @@ -243342,7 +245997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetClipPlanexOES((OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (int*)equation); + InteropHelper.Call(EntryPoints[658], (OpenTK.Graphics.OpenGL.OesFixedPoint)plane, (IntPtr)equation); #if DEBUG } #endif @@ -243361,7 +246016,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetConvolutionParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[683], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243382,7 +246037,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[683], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243401,7 +246056,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[683], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243420,7 +246075,7 @@ namespace OpenTK.Graphics.OpenGL { int retval; int* @params_ptr = &retval; - Delegates.glGetFixedvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[697], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -243441,7 +246096,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetFixedvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[697], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243462,7 +246117,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetFixedvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[697], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243481,7 +246136,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFixedvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[697], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243500,7 +246155,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetHistogramParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[722], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243521,7 +246176,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetHistogramParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[722], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243540,7 +246195,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[722], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243559,7 +246214,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetLightxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[743], (OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243580,7 +246235,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetLightxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[743], (OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243599,7 +246254,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetLightxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[743], (OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243618,7 +246273,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* v_ptr = v) { - Delegates.glGetMapxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)query, (int*)v_ptr); + InteropHelper.Call(EntryPoints[758], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)query, (IntPtr)v_ptr); } } #if DEBUG @@ -243639,7 +246294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* v_ptr = &v) { - Delegates.glGetMapxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)query, (int*)v_ptr); + InteropHelper.Call(EntryPoints[758], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)query, (IntPtr)v_ptr); v = *v_ptr; } } @@ -243658,7 +246313,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMapxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)query, (int*)v); + InteropHelper.Call(EntryPoints[758], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)query, (IntPtr)v); #if DEBUG } #endif @@ -243673,7 +246328,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[761], (OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -243692,7 +246347,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetMaterialxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[762], (OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243710,7 +246365,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMaterialxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[762], (OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243729,7 +246384,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetTexEnvxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[926], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243750,7 +246405,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexEnvxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[926], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243769,7 +246424,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexEnvxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[926], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243788,7 +246443,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetTexGenxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[931], (OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243809,7 +246464,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexGenxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[931], (OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243828,7 +246483,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexGenxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[931], (OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243847,7 +246502,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetTexLevelParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (Int32)level, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[935], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (Int32)level, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243868,7 +246523,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexLevelParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (Int32)level, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[935], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (Int32)level, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243887,7 +246542,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexLevelParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (Int32)level, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[935], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (Int32)level, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243906,7 +246561,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glGetTexParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[943], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -243927,7 +246582,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = &@params) { - Delegates.glGetTexParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[943], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -243946,7 +246601,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[943], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -243961,7 +246616,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexxOES((int)component); + InteropHelper.Call(EntryPoints[1052], (int)component); #if DEBUG } #endif @@ -243977,7 +246632,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIndexxvOES((int*)component); + InteropHelper.Call(EntryPoints[1053], (IntPtr)component); #if DEBUG } #endif @@ -243992,7 +246647,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[1120], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -244011,7 +246666,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* param_ptr = param) { - Delegates.glLightModelxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[1121], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -244029,7 +246684,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightModelxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)param); + InteropHelper.Call(EntryPoints[1121], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)param); #if DEBUG } #endif @@ -244044,7 +246699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[1122], (OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -244063,7 +246718,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glLightxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[1123], (OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -244081,7 +246736,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[1123], (OpenTK.Graphics.OpenGL.OesFixedPoint)light, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -244096,7 +246751,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidthxOES((int)width); + InteropHelper.Call(EntryPoints[1126], (int)width); #if DEBUG } #endif @@ -244115,7 +246770,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = m) { - Delegates.glLoadMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1138], (IntPtr)m_ptr); } } #if DEBUG @@ -244136,7 +246791,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = &m) { - Delegates.glLoadMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1138], (IntPtr)m_ptr); } } #if DEBUG @@ -244154,7 +246809,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[1138], (IntPtr)m); #if DEBUG } #endif @@ -244173,7 +246828,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = m) { - Delegates.glLoadTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1145], (IntPtr)m_ptr); } } #if DEBUG @@ -244194,7 +246849,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = &m) { - Delegates.glLoadTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1145], (IntPtr)m_ptr); } } #if DEBUG @@ -244212,7 +246867,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadTransposeMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[1145], (IntPtr)m); #if DEBUG } #endif @@ -244227,7 +246882,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap1xOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (int)u1, (int)u2, (Int32)stride, (Int32)order, (int)points); + InteropHelper.Call(EntryPoints[1162], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (int)u1, (int)u2, (Int32)stride, (Int32)order, (int)points); #if DEBUG } #endif @@ -244242,7 +246897,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMap2xOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (int)u1, (int)u2, (Int32)ustride, (Int32)uorder, (int)v1, (int)v2, (Int32)vstride, (Int32)vorder, (int)points); + InteropHelper.Call(EntryPoints[1165], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (int)u1, (int)u2, (Int32)ustride, (Int32)uorder, (int)v1, (int)v2, (Int32)vstride, (Int32)vorder, (int)points); #if DEBUG } #endif @@ -244257,7 +246912,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid1xOES((Int32)n, (int)u1, (int)u2); + InteropHelper.Call(EntryPoints[1172], (Int32)n, (int)u1, (int)u2); #if DEBUG } #endif @@ -244272,7 +246927,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMapGrid2xOES((Int32)n, (int)u1, (int)u2, (int)v1, (int)v2); + InteropHelper.Call(EntryPoints[1175], (Int32)n, (int)u1, (int)u2, (int)v1, (int)v2); #if DEBUG } #endif @@ -244287,7 +246942,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[1190], (OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -244306,7 +246961,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* param_ptr = param) { - Delegates.glMaterialxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)param_ptr); + InteropHelper.Call(EntryPoints[1191], (OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -244324,7 +246979,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMaterialxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)param); + InteropHelper.Call(EntryPoints[1191], (OpenTK.Graphics.OpenGL.OesFixedPoint)face, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)param); #if DEBUG } #endif @@ -244351,7 +247006,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s); + InteropHelper.Call(EntryPoints[1240], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s); #if DEBUG } #endif @@ -244379,7 +247034,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s); + InteropHelper.Call(EntryPoints[1240], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s); #if DEBUG } #endif @@ -244407,7 +247062,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1241], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244435,7 +247090,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1241], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244450,7 +247105,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1xOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s); + InteropHelper.Call(EntryPoints[1260], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s); #if DEBUG } #endif @@ -244466,7 +247121,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord1xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords); + InteropHelper.Call(EntryPoints[1261], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244493,7 +247148,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[1262], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t); #if DEBUG } #endif @@ -244521,7 +247176,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[1262], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t); #if DEBUG } #endif @@ -244552,7 +247207,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1263], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244585,7 +247240,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1263], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244615,7 +247270,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1263], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244647,7 +247302,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1263], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244681,7 +247336,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1263], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244711,7 +247366,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1263], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244726,7 +247381,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2xOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s, (int)t); + InteropHelper.Call(EntryPoints[1282], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s, (int)t); #if DEBUG } #endif @@ -244745,7 +247400,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glMultiTexCoord2xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[1283], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244766,7 +247421,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glMultiTexCoord2xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[1283], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244784,7 +247439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord2xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords); + InteropHelper.Call(EntryPoints[1283], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244811,7 +247466,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[1284], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -244839,7 +247494,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[1284], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -244870,7 +247525,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1285], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244903,7 +247558,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1285], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244933,7 +247588,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1285], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -244965,7 +247620,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1285], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -244999,7 +247654,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1285], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245029,7 +247684,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1285], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -245044,7 +247699,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3xOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s, (int)t, (int)r); + InteropHelper.Call(EntryPoints[1304], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s, (int)t, (int)r); #if DEBUG } #endif @@ -245063,7 +247718,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glMultiTexCoord3xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[1305], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245084,7 +247739,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glMultiTexCoord3xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[1305], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245102,7 +247757,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord3xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords); + InteropHelper.Call(EntryPoints[1305], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords); #if DEBUG } #endif @@ -245129,7 +247784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[1306], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -245157,7 +247812,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[1306], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -245188,7 +247843,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1307], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245221,7 +247876,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1307], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245251,7 +247906,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1307], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -245283,7 +247938,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1307], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245317,7 +247972,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1307], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245347,7 +248002,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4bvOES((OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (SByte*)coords); + InteropHelper.Call(EntryPoints[1307], (OpenTK.Graphics.OpenGL.OesByteCoordinates)texture, (IntPtr)coords); #if DEBUG } #endif @@ -245362,7 +248017,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4xOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s, (int)t, (int)r, (int)q); + InteropHelper.Call(EntryPoints[1326], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int)s, (int)t, (int)r, (int)q); #if DEBUG } #endif @@ -245381,7 +248036,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glMultiTexCoord4xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[1327], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245402,7 +248057,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glMultiTexCoord4xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords_ptr); + InteropHelper.Call(EntryPoints[1327], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords_ptr); } } #if DEBUG @@ -245420,7 +248075,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoord4xvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (int*)coords); + InteropHelper.Call(EntryPoints[1327], (OpenTK.Graphics.OpenGL.OesFixedPoint)texture, (IntPtr)coords); #if DEBUG } #endif @@ -245439,7 +248094,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = m) { - Delegates.glMultMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1362], (IntPtr)m_ptr); } } #if DEBUG @@ -245460,7 +248115,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = &m) { - Delegates.glMultMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1362], (IntPtr)m_ptr); } } #if DEBUG @@ -245478,7 +248133,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[1362], (IntPtr)m); #if DEBUG } #endif @@ -245497,7 +248152,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = m) { - Delegates.glMultTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1367], (IntPtr)m_ptr); } } #if DEBUG @@ -245518,7 +248173,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* m_ptr = &m) { - Delegates.glMultTransposeMatrixxOES((int*)m_ptr); + InteropHelper.Call(EntryPoints[1367], (IntPtr)m_ptr); } } #if DEBUG @@ -245536,7 +248191,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultTransposeMatrixxOES((int*)m); + InteropHelper.Call(EntryPoints[1367], (IntPtr)m); #if DEBUG } #endif @@ -245551,7 +248206,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3xOES((int)nx, (int)ny, (int)nz); + InteropHelper.Call(EntryPoints[1412], (int)nx, (int)ny, (int)nz); #if DEBUG } #endif @@ -245570,7 +248225,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glNormal3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1413], (IntPtr)coords_ptr); } } #if DEBUG @@ -245591,7 +248246,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glNormal3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1413], (IntPtr)coords_ptr); } } #if DEBUG @@ -245609,7 +248264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1413], (IntPtr)coords); #if DEBUG } #endif @@ -245641,7 +248296,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthofOES((Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); + InteropHelper.Call(EntryPoints[1438], (Single)l, (Single)r, (Single)b, (Single)t, (Single)n, (Single)f); #if DEBUG } #endif @@ -245656,7 +248311,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glOrthoxOES((int)l, (int)r, (int)b, (int)t, (int)n, (int)f); + InteropHelper.Call(EntryPoints[1439], (int)l, (int)r, (int)b, (int)t, (int)n, (int)f); #if DEBUG } #endif @@ -245671,7 +248326,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPassThroughxOES((int)token); + InteropHelper.Call(EntryPoints[1442], (int)token); #if DEBUG } #endif @@ -245686,7 +248341,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTransferxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[1480], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -245701,7 +248356,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelZoomxOES((int)xfactor, (int)yfactor); + InteropHelper.Call(EntryPoints[1486], (int)xfactor, (int)yfactor); #if DEBUG } #endif @@ -245716,7 +248371,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[1502], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -245735,7 +248390,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glPointParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[1503], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -245753,7 +248408,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[1503], (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -245768,7 +248423,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSizexOES((int)size); + InteropHelper.Call(EntryPoints[1505], (int)size); #if DEBUG } #endif @@ -245783,7 +248438,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffsetxOES((int)factor, (int)units); + InteropHelper.Call(EntryPoints[1511], (int)factor, (int)units); #if DEBUG } #endif @@ -245803,7 +248458,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = textures) fixed (int* priorities_ptr = priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[1527], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -245825,7 +248480,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* textures_ptr = &textures) fixed (int* priorities_ptr = &priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[1527], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -245843,7 +248498,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures, (int*)priorities); + InteropHelper.Call(EntryPoints[1527], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -245864,7 +248519,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = textures) fixed (int* priorities_ptr = priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[1527], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -245887,7 +248542,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* textures_ptr = &textures) fixed (int* priorities_ptr = &priorities) { - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures_ptr, (int*)priorities_ptr); + InteropHelper.Call(EntryPoints[1527], (Int32)n, (IntPtr)textures_ptr, (IntPtr)priorities_ptr); } } #if DEBUG @@ -245905,7 +248560,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrioritizeTexturesxOES((Int32)n, (UInt32*)textures, (int*)priorities); + InteropHelper.Call(EntryPoints[1527], (Int32)n, (IntPtr)textures, (IntPtr)priorities); #if DEBUG } #endif @@ -245925,7 +248580,7 @@ namespace OpenTK.Graphics.OpenGL fixed (int* mantissa_ptr = mantissa) fixed (Int32* exponent_ptr = exponent) { - return Delegates.glQueryMatrixxOES((int*)mantissa_ptr, (Int32*)exponent_ptr); + return InteropHelper.CallReturn(EntryPoints[1703], (IntPtr)mantissa_ptr, (IntPtr)exponent_ptr); } } #if DEBUG @@ -245947,7 +248602,7 @@ namespace OpenTK.Graphics.OpenGL fixed (int* mantissa_ptr = &mantissa) fixed (Int32* exponent_ptr = &exponent) { - Int32 retval = Delegates.glQueryMatrixxOES((int*)mantissa_ptr, (Int32*)exponent_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[1703], (IntPtr)mantissa_ptr, (IntPtr)exponent_ptr); mantissa = *mantissa_ptr; exponent = *exponent_ptr; return retval; @@ -245968,7 +248623,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glQueryMatrixxOES((int*)mantissa, (Int32*)exponent); + return InteropHelper.CallReturn(EntryPoints[1703], (IntPtr)mantissa, (IntPtr)exponent); #if DEBUG } #endif @@ -245983,7 +248638,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2xOES((int)x, (int)y); + InteropHelper.Call(EntryPoints[1712], (int)x, (int)y); #if DEBUG } #endif @@ -246002,7 +248657,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glRasterPos2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1713], (IntPtr)coords_ptr); } } #if DEBUG @@ -246023,7 +248678,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glRasterPos2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1713], (IntPtr)coords_ptr); } } #if DEBUG @@ -246041,7 +248696,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1713], (IntPtr)coords); #if DEBUG } #endif @@ -246056,7 +248711,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3xOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[1722], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -246075,7 +248730,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glRasterPos3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1723], (IntPtr)coords_ptr); } } #if DEBUG @@ -246096,7 +248751,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glRasterPos3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1723], (IntPtr)coords_ptr); } } #if DEBUG @@ -246114,7 +248769,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1723], (IntPtr)coords); #if DEBUG } #endif @@ -246129,7 +248784,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4xOES((int)x, (int)y, (int)z, (int)w); + InteropHelper.Call(EntryPoints[1732], (int)x, (int)y, (int)z, (int)w); #if DEBUG } #endif @@ -246148,7 +248803,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glRasterPos4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1733], (IntPtr)coords_ptr); } } #if DEBUG @@ -246169,7 +248824,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glRasterPos4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1733], (IntPtr)coords_ptr); } } #if DEBUG @@ -246187,7 +248842,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRasterPos4xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1733], (IntPtr)coords); #if DEBUG } #endif @@ -246202,7 +248857,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectxOES((int)x1, (int)y1, (int)x2, (int)y2); + InteropHelper.Call(EntryPoints[1746], (int)x1, (int)y1, (int)x2, (int)y2); #if DEBUG } #endif @@ -246222,7 +248877,7 @@ namespace OpenTK.Graphics.OpenGL fixed (int* v1_ptr = v1) fixed (int* v2_ptr = v2) { - Delegates.glRectxvOES((int*)v1_ptr, (int*)v2_ptr); + InteropHelper.Call(EntryPoints[1747], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -246244,7 +248899,7 @@ namespace OpenTK.Graphics.OpenGL fixed (int* v1_ptr = &v1) fixed (int* v2_ptr = &v2) { - Delegates.glRectxvOES((int*)v1_ptr, (int*)v2_ptr); + InteropHelper.Call(EntryPoints[1747], (IntPtr)v1_ptr, (IntPtr)v2_ptr); } } #if DEBUG @@ -246262,7 +248917,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRectxvOES((int*)v1, (int*)v2); + InteropHelper.Call(EntryPoints[1747], (IntPtr)v1, (IntPtr)v2); #if DEBUG } #endif @@ -246277,7 +248932,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRotatexOES((int)angle, (int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[1789], (int)angle, (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -246304,7 +248959,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverageOES((int)value, (bool)invert); + InteropHelper.Call(EntryPoints[1792], (int)value, (bool)invert); #if DEBUG } #endif @@ -246319,7 +248974,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoveragexOES((int)value, (bool)invert); + InteropHelper.Call(EntryPoints[1793], (int)value, (bool)invert); #if DEBUG } #endif @@ -246334,7 +248989,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScalexOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[1809], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -246356,7 +249011,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bOES((SByte)s); + InteropHelper.Call(EntryPoints[1920], (SByte)s); #if DEBUG } #endif @@ -246379,7 +249034,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bOES((SByte)s); + InteropHelper.Call(EntryPoints[1920], (SByte)s); #if DEBUG } #endif @@ -246402,7 +249057,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1921], (IntPtr)coords); #if DEBUG } #endif @@ -246425,7 +249080,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1921], (IntPtr)coords); #if DEBUG } #endif @@ -246440,7 +249095,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1xOES((int)s); + InteropHelper.Call(EntryPoints[1932], (int)s); #if DEBUG } #endif @@ -246456,7 +249111,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord1xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1933], (IntPtr)coords); #if DEBUG } #endif @@ -246478,7 +249133,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bOES((SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[1934], (SByte)s, (SByte)t); #if DEBUG } #endif @@ -246501,7 +249156,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bOES((SByte)s, (SByte)t); + InteropHelper.Call(EntryPoints[1934], (SByte)s, (SByte)t); #if DEBUG } #endif @@ -246527,7 +249182,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1935], (IntPtr)coords_ptr); } } #if DEBUG @@ -246555,7 +249210,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1935], (IntPtr)coords_ptr); } } #if DEBUG @@ -246580,7 +249235,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1935], (IntPtr)coords); #if DEBUG } #endif @@ -246607,7 +249262,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1935], (IntPtr)coords_ptr); } } #if DEBUG @@ -246636,7 +249291,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glTexCoord2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1935], (IntPtr)coords_ptr); } } #if DEBUG @@ -246661,7 +249316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1935], (IntPtr)coords); #if DEBUG } #endif @@ -246676,7 +249331,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2xOES((int)s, (int)t); + InteropHelper.Call(EntryPoints[1956], (int)s, (int)t); #if DEBUG } #endif @@ -246695,7 +249350,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glTexCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1957], (IntPtr)coords_ptr); } } #if DEBUG @@ -246716,7 +249371,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glTexCoord2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1957], (IntPtr)coords_ptr); } } #if DEBUG @@ -246734,7 +249389,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1957], (IntPtr)coords); #if DEBUG } #endif @@ -246756,7 +249411,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bOES((SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[1958], (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -246779,7 +249434,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bOES((SByte)s, (SByte)t, (SByte)r); + InteropHelper.Call(EntryPoints[1958], (SByte)s, (SByte)t, (SByte)r); #if DEBUG } #endif @@ -246805,7 +249460,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1959], (IntPtr)coords_ptr); } } #if DEBUG @@ -246833,7 +249488,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1959], (IntPtr)coords_ptr); } } #if DEBUG @@ -246858,7 +249513,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1959], (IntPtr)coords); #if DEBUG } #endif @@ -246885,7 +249540,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1959], (IntPtr)coords_ptr); } } #if DEBUG @@ -246914,7 +249569,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glTexCoord3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1959], (IntPtr)coords_ptr); } } #if DEBUG @@ -246939,7 +249594,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1959], (IntPtr)coords); #if DEBUG } #endif @@ -246954,7 +249609,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3xOES((int)s, (int)t, (int)r); + InteropHelper.Call(EntryPoints[1970], (int)s, (int)t, (int)r); #if DEBUG } #endif @@ -246973,7 +249628,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glTexCoord3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1971], (IntPtr)coords_ptr); } } #if DEBUG @@ -246994,7 +249649,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glTexCoord3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1971], (IntPtr)coords_ptr); } } #if DEBUG @@ -247012,7 +249667,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1971], (IntPtr)coords); #if DEBUG } #endif @@ -247034,7 +249689,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bOES((SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[1972], (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -247057,7 +249712,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bOES((SByte)s, (SByte)t, (SByte)r, (SByte)q); + InteropHelper.Call(EntryPoints[1972], (SByte)s, (SByte)t, (SByte)r, (SByte)q); #if DEBUG } #endif @@ -247083,7 +249738,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1973], (IntPtr)coords_ptr); } } #if DEBUG @@ -247111,7 +249766,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1973], (IntPtr)coords_ptr); } } #if DEBUG @@ -247136,7 +249791,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1973], (IntPtr)coords); #if DEBUG } #endif @@ -247163,7 +249818,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1973], (IntPtr)coords_ptr); } } #if DEBUG @@ -247192,7 +249847,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glTexCoord4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[1973], (IntPtr)coords_ptr); } } #if DEBUG @@ -247217,7 +249872,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[1973], (IntPtr)coords); #if DEBUG } #endif @@ -247232,7 +249887,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4xOES((int)s, (int)t, (int)r, (int)q); + InteropHelper.Call(EntryPoints[1988], (int)s, (int)t, (int)r, (int)q); #if DEBUG } #endif @@ -247251,7 +249906,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glTexCoord4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1989], (IntPtr)coords_ptr); } } #if DEBUG @@ -247272,7 +249927,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glTexCoord4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[1989], (IntPtr)coords_ptr); } } #if DEBUG @@ -247290,7 +249945,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4xvOES((int*)coords); + InteropHelper.Call(EntryPoints[1989], (IntPtr)coords); #if DEBUG } #endif @@ -247305,7 +249960,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[2007], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -247324,7 +249979,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glTexEnvxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[2008], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -247342,7 +249997,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexEnvxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[2008], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -247357,7 +250012,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[2016], (OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -247376,7 +250031,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glTexGenxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[2017], (OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -247394,7 +250049,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexGenxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[2017], (OpenTK.Graphics.OpenGL.OesFixedPoint)coord, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -247409,7 +250064,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterxOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); + InteropHelper.Call(EntryPoints[2036], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int)param); #if DEBUG } #endif @@ -247428,7 +250083,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* @params_ptr = @params) { - Delegates.glTexParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params_ptr); + InteropHelper.Call(EntryPoints[2037], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -247446,7 +250101,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterxvOES((OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (int*)@params); + InteropHelper.Call(EntryPoints[2037], (OpenTK.Graphics.OpenGL.OesFixedPoint)target, (OpenTK.Graphics.OpenGL.OesFixedPoint)pname, (IntPtr)@params); #if DEBUG } #endif @@ -247461,7 +250116,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTranslatexOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[2094], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -247483,7 +250138,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bOES((SByte)x); + InteropHelper.Call(EntryPoints[2233], (SByte)x); #if DEBUG } #endif @@ -247506,7 +250161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bOES((SByte)x); + InteropHelper.Call(EntryPoints[2233], (SByte)x); #if DEBUG } #endif @@ -247532,7 +250187,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glVertex2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2234], (IntPtr)coords_ptr); } } #if DEBUG @@ -247557,7 +250212,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[2234], (IntPtr)coords); #if DEBUG } #endif @@ -247584,7 +250239,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glVertex2bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2234], (IntPtr)coords_ptr); } } #if DEBUG @@ -247609,7 +250264,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[2234], (IntPtr)coords); #if DEBUG } #endif @@ -247624,7 +250279,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2xOES((int)x); + InteropHelper.Call(EntryPoints[2245], (int)x); #if DEBUG } #endif @@ -247643,7 +250298,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glVertex2xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[2246], (IntPtr)coords_ptr); } } #if DEBUG @@ -247661,7 +250316,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex2xvOES((int*)coords); + InteropHelper.Call(EntryPoints[2246], (IntPtr)coords); #if DEBUG } #endif @@ -247683,7 +250338,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bOES((SByte)x, (SByte)y); + InteropHelper.Call(EntryPoints[2247], (SByte)x, (SByte)y); #if DEBUG } #endif @@ -247706,7 +250361,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bOES((SByte)x, (SByte)y); + InteropHelper.Call(EntryPoints[2247], (SByte)x, (SByte)y); #if DEBUG } #endif @@ -247732,7 +250387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2248], (IntPtr)coords_ptr); } } #if DEBUG @@ -247760,7 +250415,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2248], (IntPtr)coords_ptr); } } #if DEBUG @@ -247785,7 +250440,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[2248], (IntPtr)coords); #if DEBUG } #endif @@ -247812,7 +250467,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2248], (IntPtr)coords_ptr); } } #if DEBUG @@ -247841,7 +250496,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glVertex3bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2248], (IntPtr)coords_ptr); } } #if DEBUG @@ -247866,7 +250521,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[2248], (IntPtr)coords); #if DEBUG } #endif @@ -247881,7 +250536,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3xOES((int)x, (int)y); + InteropHelper.Call(EntryPoints[2259], (int)x, (int)y); #if DEBUG } #endif @@ -247900,7 +250555,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glVertex3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[2260], (IntPtr)coords_ptr); } } #if DEBUG @@ -247921,7 +250576,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glVertex3xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[2260], (IntPtr)coords_ptr); } } #if DEBUG @@ -247939,7 +250594,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex3xvOES((int*)coords); + InteropHelper.Call(EntryPoints[2260], (IntPtr)coords); #if DEBUG } #endif @@ -247961,7 +250616,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bOES((SByte)x, (SByte)y, (SByte)z); + InteropHelper.Call(EntryPoints[2261], (SByte)x, (SByte)y, (SByte)z); #if DEBUG } #endif @@ -247984,7 +250639,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bOES((SByte)x, (SByte)y, (SByte)z); + InteropHelper.Call(EntryPoints[2261], (SByte)x, (SByte)y, (SByte)z); #if DEBUG } #endif @@ -248010,7 +250665,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2262], (IntPtr)coords_ptr); } } #if DEBUG @@ -248038,7 +250693,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* coords_ptr = &coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2262], (IntPtr)coords_ptr); } } #if DEBUG @@ -248063,7 +250718,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[2262], (IntPtr)coords); #if DEBUG } #endif @@ -248090,7 +250745,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2262], (IntPtr)coords_ptr); } } #if DEBUG @@ -248119,7 +250774,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (SByte* coords_ptr = &coords) { - Delegates.glVertex4bvOES((SByte*)coords_ptr); + InteropHelper.Call(EntryPoints[2262], (IntPtr)coords_ptr); } } #if DEBUG @@ -248144,7 +250799,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4bvOES((SByte*)coords); + InteropHelper.Call(EntryPoints[2262], (IntPtr)coords); #if DEBUG } #endif @@ -248159,7 +250814,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4xOES((int)x, (int)y, (int)z); + InteropHelper.Call(EntryPoints[2273], (int)x, (int)y, (int)z); #if DEBUG } #endif @@ -248178,7 +250833,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = coords) { - Delegates.glVertex4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[2274], (IntPtr)coords_ptr); } } #if DEBUG @@ -248199,7 +250854,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (int* coords_ptr = &coords) { - Delegates.glVertex4xvOES((int*)coords_ptr); + InteropHelper.Call(EntryPoints[2274], (IntPtr)coords_ptr); } } #if DEBUG @@ -248217,7 +250872,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertex4xvOES((int*)coords); + InteropHelper.Call(EntryPoints[2274], (IntPtr)coords); #if DEBUG } #endif @@ -248248,7 +250903,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHintPGI((OpenTK.Graphics.OpenGL.PgiMiscHints)target, (Int32)mode); + InteropHelper.Call(EntryPoints[1026], (OpenTK.Graphics.OpenGL.PgiMiscHints)target, (Int32)mode); #if DEBUG } #endif @@ -248288,7 +250943,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -248326,7 +250981,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -248361,7 +251016,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params); #if DEBUG } #endif @@ -248397,7 +251052,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glColorTableParameterivSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -248435,7 +251090,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glColorTableParameterivSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -248470,7 +251125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableParameterivSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params); #if DEBUG } #endif @@ -248517,7 +251172,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -248568,7 +251223,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -248624,7 +251279,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -248680,7 +251335,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -248736,7 +251391,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T5)table_ptr.Target; } finally @@ -248784,7 +251439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[299], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -248820,7 +251475,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[663], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -248858,7 +251513,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[663], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -248894,7 +251549,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameterfvSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[663], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params); #if DEBUG } #endif @@ -248930,7 +251585,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[666], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -248968,7 +251623,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[666], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -249004,7 +251659,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameterivSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[666], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.SgiColorTable)pname, (IntPtr)@params); #if DEBUG } #endif @@ -249041,7 +251696,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[667], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -249082,7 +251737,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[667], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -249128,7 +251783,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[667], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -249174,7 +251829,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[667], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -249220,7 +251875,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTableSGI((OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[667], (OpenTK.Graphics.OpenGL.SgiColorTable)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T3)table_ptr.Target; } finally @@ -249249,7 +251904,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[406], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (IntPtr)points_ptr); } } #if DEBUG @@ -249270,7 +251925,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[406], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (IntPtr)points_ptr); } } #if DEBUG @@ -249288,7 +251943,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points); + InteropHelper.Call(EntryPoints[406], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (IntPtr)points); #if DEBUG } #endif @@ -249307,7 +251962,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glFogFuncSGIS((Int32)n, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[546], (Int32)n, (IntPtr)points_ptr); } } #if DEBUG @@ -249328,7 +251983,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glFogFuncSGIS((Int32)n, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[546], (Int32)n, (IntPtr)points_ptr); } } #if DEBUG @@ -249346,7 +252001,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFogFuncSGIS((Int32)n, (Single*)points); + InteropHelper.Call(EntryPoints[546], (Int32)n, (IntPtr)points); #if DEBUG } #endif @@ -249365,7 +252020,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* points_ptr = &retval; - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[688], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points_ptr); return retval; } #if DEBUG @@ -249386,7 +252041,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[688], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points_ptr); } } #if DEBUG @@ -249407,7 +252062,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[688], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points_ptr); points = *points_ptr; } } @@ -249426,7 +252081,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDetailTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points); + InteropHelper.Call(EntryPoints[688], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points); #if DEBUG } #endif @@ -249445,7 +252100,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* points_ptr = &retval; - Delegates.glGetFogFuncSGIS((Single*)points_ptr); + InteropHelper.Call(EntryPoints[702], (IntPtr)points_ptr); return retval; } #if DEBUG @@ -249466,7 +252121,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glGetFogFuncSGIS((Single*)points_ptr); + InteropHelper.Call(EntryPoints[702], (IntPtr)points_ptr); } } #if DEBUG @@ -249487,7 +252142,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glGetFogFuncSGIS((Single*)points_ptr); + InteropHelper.Call(EntryPoints[702], (IntPtr)points_ptr); points = *points_ptr; } } @@ -249506,7 +252161,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFogFuncSGIS((Single*)points); + InteropHelper.Call(EntryPoints[702], (IntPtr)points); #if DEBUG } #endif @@ -249525,7 +252180,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* @params_ptr = &retval; - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[851], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); return retval; } #if DEBUG @@ -249546,7 +252201,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[851], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -249567,7 +252222,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[851], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -249586,7 +252241,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[851], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -249605,7 +252260,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[852], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -249626,7 +252281,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[852], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -249645,7 +252300,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[852], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -249664,7 +252319,7 @@ namespace OpenTK.Graphics.OpenGL { Single retval; Single* points_ptr = &retval; - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[916], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points_ptr); return retval; } #if DEBUG @@ -249685,7 +252340,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[916], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points_ptr); } } #if DEBUG @@ -249706,7 +252361,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[916], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points_ptr); points = *points_ptr; } } @@ -249725,7 +252380,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Single*)points); + InteropHelper.Call(EntryPoints[916], (OpenTK.Graphics.OpenGL.TextureTarget)target, (IntPtr)points); #if DEBUG } #endif @@ -249744,7 +252399,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* weights_ptr = weights) { - Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[927], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (IntPtr)weights_ptr); } } #if DEBUG @@ -249765,7 +252420,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* weights_ptr = &weights) { - Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[927], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (IntPtr)weights_ptr); weights = *weights_ptr; } } @@ -249784,7 +252439,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Single*)weights); + InteropHelper.Call(EntryPoints[927], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (IntPtr)weights); #if DEBUG } #endif @@ -249799,7 +252454,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTexGenParameterfSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single)param); + InteropHelper.Call(EntryPoints[1473], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single)param); #if DEBUG } #endif @@ -249818,7 +252473,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1474], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -249836,7 +252491,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTexGenParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1474], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -249851,7 +252506,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTexGenParameteriSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1475], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32)param); #if DEBUG } #endif @@ -249870,7 +252525,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1476], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -249888,7 +252543,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTexGenParameterivSGIS((OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1476], (OpenTK.Graphics.OpenGL.SgisPixelTexture)pname, (IntPtr)@params); #if DEBUG } #endif @@ -249920,7 +252575,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfSGIS((OpenTK.Graphics.OpenGL.SgisPointParameters)pname, (Single)param); + InteropHelper.Call(EntryPoints[1493], (OpenTK.Graphics.OpenGL.SgisPointParameters)pname, (Single)param); #if DEBUG } #endif @@ -249956,7 +252611,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPointParameters)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1497], (OpenTK.Graphics.OpenGL.SgisPointParameters)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -249991,7 +252646,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfvSGIS((OpenTK.Graphics.OpenGL.SgisPointParameters)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1497], (OpenTK.Graphics.OpenGL.SgisPointParameters)pname, (IntPtr)@params); #if DEBUG } #endif @@ -250006,7 +252661,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaskSGIS((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[1798], (Single)value, (bool)invert); #if DEBUG } #endif @@ -250021,7 +252676,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplePatternSGIS((OpenTK.Graphics.OpenGL.SgisMultisample)pattern); + InteropHelper.Call(EntryPoints[1800], (OpenTK.Graphics.OpenGL.SgisMultisample)pattern); #if DEBUG } #endif @@ -250040,7 +252695,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1872], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (IntPtr)points_ptr); } } #if DEBUG @@ -250061,7 +252716,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[1872], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (IntPtr)points_ptr); } } #if DEBUG @@ -250079,7 +252734,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSharpenTexFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (Single*)points); + InteropHelper.Call(EntryPoints[1872], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)n, (IntPtr)points); #if DEBUG } #endif @@ -250098,7 +252753,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* weights_ptr = weights) { - Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Int32)n, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2009], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Int32)n, (IntPtr)weights_ptr); } } #if DEBUG @@ -250119,7 +252774,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* weights_ptr = &weights) { - Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Int32)n, (Single*)weights_ptr); + InteropHelper.Call(EntryPoints[2009], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Int32)n, (IntPtr)weights_ptr); } } #if DEBUG @@ -250137,7 +252792,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexFilterFuncSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Int32)n, (Single*)weights); + InteropHelper.Call(EntryPoints[2009], (OpenTK.Graphics.OpenGL.TextureTarget)target, (OpenTK.Graphics.OpenGL.SgisTextureFilter4)filter, (Int32)n, (IntPtr)weights); #if DEBUG } #endif @@ -250152,7 +252807,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2026], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -250171,7 +252826,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2026], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -250195,7 +252850,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2026], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -250219,7 +252874,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2026], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -250243,7 +252898,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2026], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (Int32)border, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -250264,7 +252919,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[2051], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -250283,7 +252938,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2051], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -250307,7 +252962,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2051], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -250331,7 +252986,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2051], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -250355,7 +253010,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage4DSGIS((OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[2051], (OpenTK.Graphics.OpenGL.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)woffset, (Int32)width, (Int32)height, (Int32)depth, (Int32)size4d, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T12)pixels_ptr.Target; } finally @@ -250376,7 +253031,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureColorMaskSGIS((bool)red, (bool)green, (bool)blue, (bool)alpha); + InteropHelper.Call(EntryPoints[2055], (bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -250395,7 +253050,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAsyncMarkerSGIX((UInt32)marker); + InteropHelper.Call(EntryPoints[21], (UInt32)marker); #if DEBUG } #endif @@ -250411,7 +253066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAsyncMarkerSGIX((UInt32)marker); + InteropHelper.Call(EntryPoints[21], (UInt32)marker); #if DEBUG } #endif @@ -250430,7 +253085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = points) { - Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (IntPtr)points_ptr); } } #if DEBUG @@ -250451,7 +253106,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* points_ptr = &points) { - Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points_ptr); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (IntPtr)points_ptr); } } #if DEBUG @@ -250469,7 +253124,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeformationMap3dSGIX((OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (Double*)points); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Double)u1, (Double)u2, (Int32)ustride, (Int32)uorder, (Double)v1, (Double)v2, (Int32)vstride, (Int32)vorder, (Double)w1, (Double)w2, (Int32)wstride, (Int32)worder, (IntPtr)points); #if DEBUG } #endif @@ -250488,7 +253143,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = points) { - Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[357], (OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (IntPtr)points_ptr); } } #if DEBUG @@ -250509,7 +253164,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* points_ptr = &points) { - Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points_ptr); + InteropHelper.Call(EntryPoints[357], (OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (IntPtr)points_ptr); } } #if DEBUG @@ -250527,7 +253182,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeformationMap3fSGIX((OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (Single*)points); + InteropHelper.Call(EntryPoints[357], (OpenTK.Graphics.OpenGL.SgixPolynomialFfd)target, (Single)u1, (Single)u2, (Int32)ustride, (Int32)uorder, (Single)v1, (Single)v2, (Int32)vstride, (Int32)vorder, (Single)w1, (Single)w2, (Int32)wstride, (Int32)worder, (IntPtr)points); #if DEBUG } #endif @@ -250542,7 +253197,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeformSGIX((UInt32)mask); + InteropHelper.Call(EntryPoints[358], (UInt32)mask); #if DEBUG } #endif @@ -250558,7 +253213,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeformSGIX((UInt32)mask); + InteropHelper.Call(EntryPoints[358], (UInt32)mask); #if DEBUG } #endif @@ -250573,7 +253228,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); + InteropHelper.Call(EntryPoints[359], (UInt32)marker, (Int32)range); #if DEBUG } #endif @@ -250589,7 +253244,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteAsyncMarkersSGIX((UInt32)marker, (Int32)range); + InteropHelper.Call(EntryPoints[359], (UInt32)marker, (Int32)range); #if DEBUG } #endif @@ -250608,7 +253263,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* markerp_ptr = &markerp) { - Int32 retval = Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[517], (IntPtr)markerp_ptr); markerp = *markerp_ptr; return retval; } @@ -250628,7 +253283,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFinishAsyncSGIX((UInt32*)markerp); + return InteropHelper.CallReturn(EntryPoints[517], (IntPtr)markerp); #if DEBUG } #endif @@ -250648,7 +253303,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* markerp_ptr = &markerp) { - Int32 retval = Delegates.glFinishAsyncSGIX((UInt32*)markerp_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[517], (IntPtr)markerp_ptr); markerp = *markerp_ptr; return retval; } @@ -250668,7 +253323,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFinishAsyncSGIX((UInt32*)markerp); + return InteropHelper.CallReturn(EntryPoints[517], (IntPtr)markerp); #if DEBUG } #endif @@ -250683,7 +253338,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushRasterSGIX(); + InteropHelper.Call(EntryPoints[527]); #if DEBUG } #endif @@ -250698,7 +253353,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentColorMaterialSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)mode); + InteropHelper.Call(EntryPoints[552], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)mode); #if DEBUG } #endif @@ -250713,7 +253368,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightfSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single)param); + InteropHelper.Call(EntryPoints[553], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single)param); #if DEBUG } #endif @@ -250732,7 +253387,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[554], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -250750,7 +253405,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[554], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params); #if DEBUG } #endif @@ -250765,7 +253420,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightiSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32)param); + InteropHelper.Call(EntryPoints[555], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32)param); #if DEBUG } #endif @@ -250784,7 +253439,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glFragmentLightivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[556], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -250802,7 +253457,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[556], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params); #if DEBUG } #endif @@ -250817,7 +253472,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightModelfSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single)param); + InteropHelper.Call(EntryPoints[557], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single)param); #if DEBUG } #endif @@ -250836,7 +253491,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[558], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -250854,7 +253509,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightModelfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[558], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params); #if DEBUG } #endif @@ -250869,7 +253524,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightModeliSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32)param); + InteropHelper.Call(EntryPoints[559], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32)param); #if DEBUG } #endif @@ -250888,7 +253543,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[560], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -250906,7 +253561,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentLightModelivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[560], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params); #if DEBUG } #endif @@ -250921,7 +253576,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentMaterialfSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[561], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single)param); #if DEBUG } #endif @@ -250940,7 +253595,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[562], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -250958,7 +253613,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[562], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -250973,7 +253628,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentMaterialiSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[563], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32)param); #if DEBUG } #endif @@ -250992,7 +253647,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[564], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251010,7 +253665,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[564], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251025,7 +253680,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrameZoomSGIX((Int32)factor); + InteropHelper.Call(EntryPoints[586], (Int32)factor); #if DEBUG } #endif @@ -251040,7 +253695,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGenAsyncMarkersSGIX((Int32)range); + return InteropHelper.CallReturn(EntryPoints[592], (Int32)range); #if DEBUG } #endif @@ -251059,7 +253714,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[706], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251080,7 +253735,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[706], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251099,7 +253754,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFragmentLightfvSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[706], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251118,7 +253773,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[707], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251139,7 +253794,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[707], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251158,7 +253813,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFragmentLightivSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[707], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)light, (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251177,7 +253832,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[708], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251198,7 +253853,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[708], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251217,7 +253872,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFragmentMaterialfvSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[708], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251236,7 +253891,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[709], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251257,7 +253912,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[709], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251276,7 +253931,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFragmentMaterialivSGIX((OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[709], (OpenTK.Graphics.OpenGL.MaterialFace)face, (OpenTK.Graphics.OpenGL.MaterialParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251291,7 +253946,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetInstrumentsSGIX(); + return InteropHelper.CallReturn(EntryPoints[728]); #if DEBUG } #endif @@ -251310,7 +253965,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[745], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251331,7 +253986,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[745], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251350,7 +254005,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[745], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251370,7 +254025,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[745], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251392,7 +254047,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = &@params) { - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[745], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251411,7 +254066,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[745], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251430,7 +254085,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[746], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251451,7 +254106,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[746], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251470,7 +254125,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[746], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251490,7 +254145,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[746], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251512,7 +254167,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[746], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -251531,7 +254186,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[746], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251547,7 +254202,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251567,7 +254222,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -251592,7 +254247,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -251617,7 +254272,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -251642,7 +254297,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -251663,7 +254318,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251682,7 +254337,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -251706,7 +254361,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -251730,7 +254385,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -251754,7 +254409,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glIglooInterfaceSGIX((OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1029], (OpenTK.Graphics.OpenGL.SgixIglooInterface)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -251779,7 +254434,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffer_ptr = buffer) { - Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer_ptr); + InteropHelper.Call(EntryPoints[1057], (Int32)size, (IntPtr)buffer_ptr); } } #if DEBUG @@ -251800,7 +254455,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* buffer_ptr = &buffer) { - Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer_ptr); + InteropHelper.Call(EntryPoints[1057], (Int32)size, (IntPtr)buffer_ptr); buffer = *buffer_ptr; } } @@ -251819,7 +254474,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInstrumentsBufferSGIX((Int32)size, (Int32*)buffer); + InteropHelper.Call(EntryPoints[1057], (Int32)size, (IntPtr)buffer); #if DEBUG } #endif @@ -251834,7 +254489,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); + return InteropHelper.CallReturn(EntryPoints[1066], (UInt32)marker); #if DEBUG } #endif @@ -251850,7 +254505,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsAsyncMarkerSGIX((UInt32)marker); + return InteropHelper.CallReturn(EntryPoints[1066], (UInt32)marker); #if DEBUG } #endif @@ -251865,7 +254520,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLightEnviSGIX((OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1111], (OpenTK.Graphics.OpenGL.SgixFragmentLighting)pname, (Int32)param); #if DEBUG } #endif @@ -251880,7 +254535,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[1130], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single)param); #if DEBUG } #endif @@ -251896,7 +254551,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameterfSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[1130], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single)param); #if DEBUG } #endif @@ -251915,7 +254570,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1131], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251933,7 +254588,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1131], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251953,7 +254608,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1131], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -251971,7 +254626,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameterfvSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1131], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -251986,7 +254641,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1132], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -252002,7 +254657,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameteriSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1132], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -252021,7 +254676,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1133], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -252039,7 +254694,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1133], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -252059,7 +254714,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1133], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -252077,7 +254732,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glListParameterivSGIX((UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1133], (UInt32)list, (OpenTK.Graphics.OpenGL.ListParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -252092,7 +254747,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadIdentityDeformationMapSGIX((UInt32)mask); + InteropHelper.Call(EntryPoints[1135], (UInt32)mask); #if DEBUG } #endif @@ -252108,7 +254763,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLoadIdentityDeformationMapSGIX((UInt32)mask); + InteropHelper.Call(EntryPoints[1135], (UInt32)mask); #if DEBUG } #endif @@ -252123,7 +254778,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelTexGenSGIX((OpenTK.Graphics.OpenGL.SgixPixelTexture)mode); + InteropHelper.Call(EntryPoints[1477], (OpenTK.Graphics.OpenGL.SgixPixelTexture)mode); #if DEBUG } #endif @@ -252142,7 +254797,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* markerp_ptr = &markerp) { - Int32 retval = Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[1506], (IntPtr)markerp_ptr); markerp = *markerp_ptr; return retval; } @@ -252162,7 +254817,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glPollAsyncSGIX((UInt32*)markerp); + return InteropHelper.CallReturn(EntryPoints[1506], (IntPtr)markerp); #if DEBUG } #endif @@ -252182,7 +254837,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* markerp_ptr = &markerp) { - Int32 retval = Delegates.glPollAsyncSGIX((UInt32*)markerp_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[1506], (IntPtr)markerp_ptr); markerp = *markerp_ptr; return retval; } @@ -252202,7 +254857,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glPollAsyncSGIX((UInt32*)markerp); + return InteropHelper.CallReturn(EntryPoints[1506], (IntPtr)markerp); #if DEBUG } #endif @@ -252221,7 +254876,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* marker_p_ptr = &marker_p) { - Int32 retval = Delegates.glPollInstrumentsSGIX((Int32*)marker_p_ptr); + Int32 retval = InteropHelper.CallReturn(EntryPoints[1507], (IntPtr)marker_p_ptr); marker_p = *marker_p_ptr; return retval; } @@ -252241,7 +254896,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glPollInstrumentsSGIX((Int32*)marker_p); + return InteropHelper.CallReturn(EntryPoints[1507], (IntPtr)marker_p); #if DEBUG } #endif @@ -252256,7 +254911,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadInstrumentsSGIX((Int32)marker); + InteropHelper.Call(EntryPoints[1735], (Int32)marker); #if DEBUG } #endif @@ -252275,7 +254930,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* equation_ptr = equation) { - Delegates.glReferencePlaneSGIX((Double*)equation_ptr); + InteropHelper.Call(EntryPoints[1748], (IntPtr)equation_ptr); } } #if DEBUG @@ -252296,7 +254951,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Double* equation_ptr = &equation) { - Delegates.glReferencePlaneSGIX((Double*)equation_ptr); + InteropHelper.Call(EntryPoints[1748], (IntPtr)equation_ptr); } } #if DEBUG @@ -252314,7 +254969,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReferencePlaneSGIX((Double*)equation); + InteropHelper.Call(EntryPoints[1748], (IntPtr)equation); #if DEBUG } #endif @@ -252329,7 +254984,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSpriteParameterfSGIX((OpenTK.Graphics.OpenGL.SgixSprite)pname, (Single)param); + InteropHelper.Call(EntryPoints[1873], (OpenTK.Graphics.OpenGL.SgixSprite)pname, (Single)param); #if DEBUG } #endif @@ -252348,7 +255003,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Single* @params_ptr = @params) { - Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.OpenGL.SgixSprite)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[1874], (OpenTK.Graphics.OpenGL.SgixSprite)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -252366,7 +255021,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSpriteParameterfvSGIX((OpenTK.Graphics.OpenGL.SgixSprite)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[1874], (OpenTK.Graphics.OpenGL.SgixSprite)pname, (IntPtr)@params); #if DEBUG } #endif @@ -252381,7 +255036,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSpriteParameteriSGIX((OpenTK.Graphics.OpenGL.SgixSprite)pname, (Int32)param); + InteropHelper.Call(EntryPoints[1875], (OpenTK.Graphics.OpenGL.SgixSprite)pname, (Int32)param); #if DEBUG } #endif @@ -252400,7 +255055,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* @params_ptr = @params) { - Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.OpenGL.SgixSprite)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[1876], (OpenTK.Graphics.OpenGL.SgixSprite)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -252418,7 +255073,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSpriteParameterivSGIX((OpenTK.Graphics.OpenGL.SgixSprite)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[1876], (OpenTK.Graphics.OpenGL.SgixSprite)pname, (IntPtr)@params); #if DEBUG } #endif @@ -252433,7 +255088,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStartInstrumentsSGIX(); + InteropHelper.Call(EntryPoints[1877]); #if DEBUG } #endif @@ -252448,7 +255103,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStopInstrumentsSGIX((Int32)marker); + InteropHelper.Call(EntryPoints[1892], (Int32)marker); #if DEBUG } #endif @@ -252463,7 +255118,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTagSampleBufferSGIX(); + InteropHelper.Call(EntryPoints[1896]); #if DEBUG } #endif @@ -252482,7 +255137,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[180], (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -252502,7 +255157,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glColor3fVertex3fvSUN((Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[181], (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252524,7 +255179,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glColor3fVertex3fvSUN((Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[181], (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252542,7 +255197,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor3fVertex3fvSUN((Single*)c, (Single*)v); + InteropHelper.Call(EntryPoints[181], (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -252557,7 +255212,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4fNormal3fVertex3fSUN((Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[201], (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -252578,7 +255233,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[202], (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252601,7 +255256,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[202], (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252619,7 +255274,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4fNormal3fVertex3fvSUN((Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[202], (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -252634,7 +255289,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ubVertex2fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[212], (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y); #if DEBUG } #endif @@ -252654,7 +255309,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glColor4ubVertex2fvSUN((Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[213], (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252676,7 +255331,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glColor4ubVertex2fvSUN((Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[213], (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252694,7 +255349,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ubVertex2fvSUN((Byte*)c, (Single*)v); + InteropHelper.Call(EntryPoints[213], (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -252709,7 +255364,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ubVertex3fSUN((Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[214], (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -252729,7 +255384,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glColor4ubVertex3fvSUN((Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[215], (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252751,7 +255406,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glColor4ubVertex3fvSUN((Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[215], (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252769,7 +255424,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColor4ubVertex3fvSUN((Byte*)c, (Single*)v); + InteropHelper.Call(EntryPoints[215], (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -252785,7 +255440,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawMeshArraysSUN((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)width); + InteropHelper.Call(EntryPoints[444], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)width); #if DEBUG } #endif @@ -252800,7 +255455,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawMeshArraysSUN((OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)width); + InteropHelper.Call(EntryPoints[444], (OpenTK.Graphics.OpenGL.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)width); #if DEBUG } #endif @@ -252816,7 +255471,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactorbSUN((SByte)factor); + InteropHelper.Call(EntryPoints[1017], (SByte)factor); #if DEBUG } #endif @@ -252831,7 +255486,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactordSUN((Double)factor); + InteropHelper.Call(EntryPoints[1018], (Double)factor); #if DEBUG } #endif @@ -252846,7 +255501,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactorfSUN((Single)factor); + InteropHelper.Call(EntryPoints[1019], (Single)factor); #if DEBUG } #endif @@ -252861,7 +255516,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactoriSUN((Int32)factor); + InteropHelper.Call(EntryPoints[1020], (Int32)factor); #if DEBUG } #endif @@ -252876,7 +255531,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactorsSUN((Int16)factor); + InteropHelper.Call(EntryPoints[1021], (Int16)factor); #if DEBUG } #endif @@ -252891,7 +255546,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactorubSUN((Byte)factor); + InteropHelper.Call(EntryPoints[1022], (Byte)factor); #if DEBUG } #endif @@ -252907,7 +255562,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactoruiSUN((UInt32)factor); + InteropHelper.Call(EntryPoints[1023], (UInt32)factor); #if DEBUG } #endif @@ -252922,7 +255577,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); + InteropHelper.Call(EntryPoints[1024], (UInt16)factor); #if DEBUG } #endif @@ -252938,7 +255593,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGlobalAlphaFactorusSUN((UInt16)factor); + InteropHelper.Call(EntryPoints[1024], (UInt16)factor); #if DEBUG } #endif @@ -252953,7 +255608,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3fVertex3fSUN((Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1404], (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -252973,7 +255628,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glNormal3fVertex3fvSUN((Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1405], (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -252995,7 +255650,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glNormal3fVertex3fvSUN((Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1405], (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253013,7 +255668,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormal3fVertex3fvSUN((Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1405], (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -253028,7 +255683,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[1756], (OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -253047,7 +255702,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1756], (OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -253071,7 +255726,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1756], (OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -253095,7 +255750,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1756], (OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -253119,7 +255774,7 @@ namespace OpenTK.Graphics.OpenGL GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glReplacementCodePointerSUN((OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[1756], (OpenTK.Graphics.OpenGL.SunTriangleList)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -253140,7 +255795,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeubSUN((Byte)code); + InteropHelper.Call(EntryPoints[1757], (Byte)code); #if DEBUG } #endif @@ -253159,7 +255814,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Byte* code_ptr = code) { - Delegates.glReplacementCodeubvSUN((Byte*)code_ptr); + InteropHelper.Call(EntryPoints[1758], (IntPtr)code_ptr); } } #if DEBUG @@ -253177,7 +255832,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeubvSUN((Byte*)code); + InteropHelper.Call(EntryPoints[1758], (IntPtr)code); #if DEBUG } #endif @@ -253192,7 +255847,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1759], (UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253208,7 +255863,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1759], (UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253229,7 +255884,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1760], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253252,7 +255907,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1760], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253270,7 +255925,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); + InteropHelper.Call(EntryPoints[1760], (IntPtr)rc, (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -253292,7 +255947,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1760], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253316,7 +255971,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1760], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253334,7 +255989,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)v); + InteropHelper.Call(EntryPoints[1760], (IntPtr)rc, (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -253349,7 +256004,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1761], (UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253365,7 +256020,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1761], (UInt32)rc, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253387,7 +256042,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1762], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253411,7 +256066,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1762], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253429,7 +256084,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1762], (IntPtr)rc, (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -253452,7 +256107,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1762], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253477,7 +256132,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1762], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253495,7 +256150,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1762], (IntPtr)rc, (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -253510,7 +256165,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1763], (UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253526,7 +256181,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4ubVertex3fSUN((UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1763], (UInt32)rc, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253547,7 +256202,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1764], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253570,7 +256225,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1764], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253588,7 +256243,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); + InteropHelper.Call(EntryPoints[1764], (IntPtr)rc, (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -253610,7 +256265,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1764], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253634,7 +256289,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1764], (IntPtr)rc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253652,7 +256307,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiColor4ubVertex3fvSUN((UInt32*)rc, (Byte*)c, (Single*)v); + InteropHelper.Call(EntryPoints[1764], (IntPtr)rc, (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -253667,7 +256322,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1765], (UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253683,7 +256338,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiNormal3fVertex3fSUN((UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1765], (UInt32)rc, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253704,7 +256359,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1766], (IntPtr)rc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253727,7 +256382,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1766], (IntPtr)rc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253745,7 +256400,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1766], (IntPtr)rc, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -253767,7 +256422,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1766], (IntPtr)rc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253791,7 +256446,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1766], (IntPtr)rc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253809,7 +256464,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiNormal3fVertex3fvSUN((UInt32*)rc, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1766], (IntPtr)rc, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -253824,7 +256479,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiSUN((UInt32)code); + InteropHelper.Call(EntryPoints[1767], (UInt32)code); #if DEBUG } #endif @@ -253840,7 +256495,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiSUN((UInt32)code); + InteropHelper.Call(EntryPoints[1767], (UInt32)code); #if DEBUG } #endif @@ -253855,7 +256510,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1768], (UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253871,7 +256526,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1768], (UInt32)rc, (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -253894,7 +256549,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1769], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253919,7 +256574,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1769], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253937,7 +256592,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1769], (IntPtr)rc, (IntPtr)tc, (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -253961,7 +256616,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1769], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -253987,7 +256642,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1769], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254005,7 +256660,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1769], (IntPtr)rc, (IntPtr)tc, (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -254020,7 +256675,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1770], (UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254036,7 +256691,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1770], (UInt32)rc, (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254058,7 +256713,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1771], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254082,7 +256737,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1771], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254100,7 +256755,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1771], (IntPtr)rc, (IntPtr)tc, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -254123,7 +256778,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1771], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254148,7 +256803,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1771], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254166,7 +256821,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1771], (IntPtr)rc, (IntPtr)tc, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -254181,7 +256836,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1772], (UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254197,7 +256852,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fVertex3fSUN((UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1772], (UInt32)rc, (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254218,7 +256873,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1773], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254241,7 +256896,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1773], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254259,7 +256914,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); + InteropHelper.Call(EntryPoints[1773], (IntPtr)rc, (IntPtr)tc, (IntPtr)v); #if DEBUG } #endif @@ -254281,7 +256936,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1773], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254305,7 +256960,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc_ptr, (Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1773], (IntPtr)rc_ptr, (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254323,7 +256978,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiTexCoord2fVertex3fvSUN((UInt32*)rc, (Single*)tc, (Single*)v); + InteropHelper.Call(EntryPoints[1773], (IntPtr)rc, (IntPtr)tc, (IntPtr)v); #if DEBUG } #endif @@ -254338,7 +256993,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1774], (UInt32)rc, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254354,7 +257009,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiVertex3fSUN((UInt32)rc, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1774], (UInt32)rc, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254374,7 +257029,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1775], (IntPtr)rc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254396,7 +257051,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Int32* rc_ptr = &rc) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1775], (IntPtr)rc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254414,7 +257069,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); + InteropHelper.Call(EntryPoints[1775], (IntPtr)rc, (IntPtr)v); #if DEBUG } #endif @@ -254435,7 +257090,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = v) { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1775], (IntPtr)rc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254458,7 +257113,7 @@ namespace OpenTK.Graphics.OpenGL fixed (UInt32* rc_ptr = &rc) fixed (Single* v_ptr = &v) { - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1775], (IntPtr)rc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254476,7 +257131,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuiVertex3fvSUN((UInt32*)rc, (Single*)v); + InteropHelper.Call(EntryPoints[1775], (IntPtr)rc, (IntPtr)v); #if DEBUG } #endif @@ -254495,7 +257150,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int32* code_ptr = code) { - Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); + InteropHelper.Call(EntryPoints[1776], (IntPtr)code_ptr); } } #if DEBUG @@ -254513,7 +257168,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuivSUN((UInt32*)code); + InteropHelper.Call(EntryPoints[1776], (IntPtr)code); #if DEBUG } #endif @@ -254533,7 +257188,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt32* code_ptr = code) { - Delegates.glReplacementCodeuivSUN((UInt32*)code_ptr); + InteropHelper.Call(EntryPoints[1776], (IntPtr)code_ptr); } } #if DEBUG @@ -254551,7 +257206,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeuivSUN((UInt32*)code); + InteropHelper.Call(EntryPoints[1776], (IntPtr)code); #if DEBUG } #endif @@ -254566,7 +257221,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeusSUN((UInt16)code); + InteropHelper.Call(EntryPoints[1777], (UInt16)code); #if DEBUG } #endif @@ -254582,7 +257237,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeusSUN((UInt16)code); + InteropHelper.Call(EntryPoints[1777], (UInt16)code); #if DEBUG } #endif @@ -254601,7 +257256,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (Int16* code_ptr = code) { - Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); + InteropHelper.Call(EntryPoints[1778], (IntPtr)code_ptr); } } #if DEBUG @@ -254619,7 +257274,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeusvSUN((UInt16*)code); + InteropHelper.Call(EntryPoints[1778], (IntPtr)code); #if DEBUG } #endif @@ -254639,7 +257294,7 @@ namespace OpenTK.Graphics.OpenGL { fixed (UInt16* code_ptr = code) { - Delegates.glReplacementCodeusvSUN((UInt16*)code_ptr); + InteropHelper.Call(EntryPoints[1778], (IntPtr)code_ptr); } } #if DEBUG @@ -254657,7 +257312,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReplacementCodeusvSUN((UInt16*)code); + InteropHelper.Call(EntryPoints[1778], (IntPtr)code); #if DEBUG } #endif @@ -254672,7 +257327,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fColor3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1939], (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254693,7 +257348,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1940], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254716,7 +257371,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1940], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254734,7 +257389,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fColor3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)v); + InteropHelper.Call(EntryPoints[1940], (IntPtr)tc, (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -254749,7 +257404,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fColor4fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1941], (Single)s, (Single)t, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254771,7 +257426,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1942], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254795,7 +257450,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1942], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254813,7 +257468,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fColor4fNormal3fVertex3fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1942], (IntPtr)tc, (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -254828,7 +257483,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fColor4ubVertex3fSUN((Single)s, (Single)t, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1943], (Single)s, (Single)t, (Byte)r, (Byte)g, (Byte)b, (Byte)a, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254849,7 +257504,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = c) fixed (Single* v_ptr = v) { - Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1944], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254872,7 +257527,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Byte* c_ptr = &c) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc_ptr, (Byte*)c_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1944], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254890,7 +257545,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fColor4ubVertex3fvSUN((Single*)tc, (Byte*)c, (Single*)v); + InteropHelper.Call(EntryPoints[1944], (IntPtr)tc, (IntPtr)c, (IntPtr)v); #if DEBUG } #endif @@ -254905,7 +257560,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fNormal3fVertex3fSUN((Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1945], (Single)s, (Single)t, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -254926,7 +257581,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1946], (IntPtr)tc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254949,7 +257604,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1946], (IntPtr)tc_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -254967,7 +257622,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fNormal3fVertex3fvSUN((Single*)tc, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1946], (IntPtr)tc, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -254982,7 +257637,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fVertex3fSUN((Single)s, (Single)t, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[1948], (Single)s, (Single)t, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -255002,7 +257657,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) { - Delegates.glTexCoord2fVertex3fvSUN((Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1949], (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -255024,7 +257679,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord2fVertex3fvSUN((Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1949], (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -255042,7 +257697,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord2fVertex3fvSUN((Single*)tc, (Single*)v); + InteropHelper.Call(EntryPoints[1949], (IntPtr)tc, (IntPtr)v); #if DEBUG } #endif @@ -255057,7 +257712,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4fColor4fNormal3fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1977], (Single)s, (Single)t, (Single)p, (Single)q, (Single)r, (Single)g, (Single)b, (Single)a, (Single)nx, (Single)ny, (Single)nz, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -255079,7 +257734,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = n) fixed (Single* v_ptr = v) { - Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1978], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -255103,7 +257758,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* n_ptr = &n) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc_ptr, (Single*)c_ptr, (Single*)n_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1978], (IntPtr)tc_ptr, (IntPtr)c_ptr, (IntPtr)n_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -255121,7 +257776,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4fColor4fNormal3fVertex4fvSUN((Single*)tc, (Single*)c, (Single*)n, (Single*)v); + InteropHelper.Call(EntryPoints[1978], (IntPtr)tc, (IntPtr)c, (IntPtr)n, (IntPtr)v); #if DEBUG } #endif @@ -255136,7 +257791,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4fVertex4fSUN((Single)s, (Single)t, (Single)p, (Single)q, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[1980], (Single)s, (Single)t, (Single)p, (Single)q, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -255156,7 +257811,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = tc) fixed (Single* v_ptr = v) { - Delegates.glTexCoord4fVertex4fvSUN((Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1981], (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -255178,7 +257833,7 @@ namespace OpenTK.Graphics.OpenGL fixed (Single* tc_ptr = &tc) fixed (Single* v_ptr = &v) { - Delegates.glTexCoord4fVertex4fvSUN((Single*)tc_ptr, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[1981], (IntPtr)tc_ptr, (IntPtr)v_ptr); } } #if DEBUG @@ -255196,7 +257851,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoord4fVertex4fvSUN((Single*)tc, (Single*)v); + InteropHelper.Call(EntryPoints[1981], (IntPtr)tc, (IntPtr)v); #if DEBUG } #endif @@ -255215,7 +257870,7 @@ namespace OpenTK.Graphics.OpenGL using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinishTextureSUNX(); + InteropHelper.Call(EntryPoints[521]); #if DEBUG } #endif diff --git a/Source/OpenTK/Graphics/OpenGL4/GL4.cs b/Source/OpenTK/Graphics/OpenGL4/GL4.cs index b2a9a8a4..25db090d 100644 --- a/Source/OpenTK/Graphics/OpenGL4/GL4.cs +++ b/Source/OpenTK/Graphics/OpenGL4/GL4.cs @@ -37,6 +37,685 @@ namespace OpenTK.Graphics.OpenGL4 partial class GL { + static GL() + { + EntryPointNames = new string[] + { + "glActiveShaderProgram", + "glActiveTexture", + "glAttachShader", + "glBeginConditionalRender", + "glBeginQuery", + "glBeginQueryIndexed", + "glBeginTransformFeedback", + "glBindAttribLocation", + "glBindBuffer", + "glBindBufferBase", + "glBindBufferRange", + "glBindBuffersBase", + "glBindBuffersRange", + "glBindFragDataLocation", + "glBindFragDataLocationIndexed", + "glBindFramebuffer", + "glBindImageTexture", + "glBindImageTextures", + "glBindProgramPipeline", + "glBindRenderbuffer", + "glBindSampler", + "glBindSamplers", + "glBindTexture", + "glBindTextures", + "glBindTransformFeedback", + "glBindVertexArray", + "glBindVertexBuffer", + "glBindVertexBuffers", + "glBlendColor", + "glBlendEquation", + "glBlendEquationi", + "glBlendEquationiARB", + "glBlendEquationSeparate", + "glBlendEquationSeparatei", + "glBlendEquationSeparateiARB", + "glBlendFunc", + "glBlendFunci", + "glBlendFunciARB", + "glBlendFuncSeparate", + "glBlendFuncSeparatei", + "glBlendFuncSeparateiARB", + "glBlitFramebuffer", + "glBufferData", + "glBufferStorage", + "glBufferSubData", + "glCheckFramebufferStatus", + "glClampColor", + "glClear", + "glClearBufferData", + "glClearBufferfi", + "glClearBufferfv", + "glClearBufferiv", + "glClearBufferSubData", + "glClearBufferuiv", + "glClearColor", + "glClearDepth", + "glClearDepthf", + "glClearStencil", + "glClearTexImage", + "glClearTexSubImage", + "glClientWaitSync", + "glColorMask", + "glColorMaski", + "glColorP3ui", + "glColorP3uiv", + "glColorP4ui", + "glColorP4uiv", + "glColorSubTable", + "glColorTable", + "glColorTableParameterfv", + "glColorTableParameteriv", + "glCompileShader", + "glCompileShaderIncludeARB", + "glCompressedTexImage1D", + "glCompressedTexImage2D", + "glCompressedTexImage3D", + "glCompressedTexSubImage1D", + "glCompressedTexSubImage2D", + "glCompressedTexSubImage3D", + "glConvolutionFilter1D", + "glConvolutionFilter2D", + "glConvolutionParameterf", + "glConvolutionParameterfv", + "glConvolutionParameteri", + "glConvolutionParameteriv", + "glCopyBufferSubData", + "glCopyColorSubTable", + "glCopyColorTable", + "glCopyConvolutionFilter1D", + "glCopyConvolutionFilter2D", + "glCopyImageSubData", + "glCopyTexImage1D", + "glCopyTexImage2D", + "glCopyTexSubImage1D", + "glCopyTexSubImage2D", + "glCopyTexSubImage3D", + "glCreateProgram", + "glCreateShader", + "glCreateShaderProgramv", + "glCreateSyncFromCLeventARB", + "glCullFace", + "glDebugMessageCallback", + "glDebugMessageCallbackARB", + "glDebugMessageCallbackKHR", + "glDebugMessageControl", + "glDebugMessageControlARB", + "glDebugMessageControlKHR", + "glDebugMessageInsert", + "glDebugMessageInsertARB", + "glDebugMessageInsertKHR", + "glDeleteBuffers", + "glDeleteFramebuffers", + "glDeleteNamedStringARB", + "glDeleteProgram", + "glDeleteProgramPipelines", + "glDeleteQueries", + "glDeleteRenderbuffers", + "glDeleteSamplers", + "glDeleteShader", + "glDeleteSync", + "glDeleteTextures", + "glDeleteTransformFeedbacks", + "glDeleteVertexArrays", + "glDepthFunc", + "glDepthMask", + "glDepthRange", + "glDepthRangeArrayv", + "glDepthRangef", + "glDepthRangeIndexed", + "glDetachShader", + "glDisable", + "glDisablei", + "glDisableVertexAttribArray", + "glDispatchCompute", + "glDispatchComputeGroupSizeARB", + "glDispatchComputeIndirect", + "glDrawArrays", + "glDrawArraysIndirect", + "glDrawArraysInstanced", + "glDrawArraysInstancedBaseInstance", + "glDrawBuffer", + "glDrawBuffers", + "glDrawElements", + "glDrawElementsBaseVertex", + "glDrawElementsIndirect", + "glDrawElementsInstanced", + "glDrawElementsInstancedBaseInstance", + "glDrawElementsInstancedBaseVertex", + "glDrawElementsInstancedBaseVertexBaseInstance", + "glDrawRangeElements", + "glDrawRangeElementsBaseVertex", + "glDrawTransformFeedback", + "glDrawTransformFeedbackInstanced", + "glDrawTransformFeedbackStream", + "glDrawTransformFeedbackStreamInstanced", + "glEnable", + "glEnablei", + "glEnableVertexAttribArray", + "glEndConditionalRender", + "glEndQuery", + "glEndQueryIndexed", + "glEndTransformFeedback", + "glFenceSync", + "glFinish", + "glFlush", + "glFlushMappedBufferRange", + "glFramebufferParameteri", + "glFramebufferRenderbuffer", + "glFramebufferTexture", + "glFramebufferTexture1D", + "glFramebufferTexture2D", + "glFramebufferTexture3D", + "glFramebufferTextureLayer", + "glFrontFace", + "glGenBuffers", + "glGenerateMipmap", + "glGenFramebuffers", + "glGenProgramPipelines", + "glGenQueries", + "glGenRenderbuffers", + "glGenSamplers", + "glGenTextures", + "glGenTransformFeedbacks", + "glGenVertexArrays", + "glGetActiveAtomicCounterBufferiv", + "glGetActiveAttrib", + "glGetActiveSubroutineName", + "glGetActiveSubroutineUniformiv", + "glGetActiveSubroutineUniformName", + "glGetActiveUniform", + "glGetActiveUniformBlockiv", + "glGetActiveUniformBlockName", + "glGetActiveUniformName", + "glGetActiveUniformsiv", + "glGetAttachedShaders", + "glGetAttribLocation", + "glGetBooleani_v", + "glGetBooleanv", + "glGetBufferParameteri64v", + "glGetBufferParameteriv", + "glGetBufferPointerv", + "glGetBufferSubData", + "glGetColorTable", + "glGetColorTableParameterfv", + "glGetColorTableParameteriv", + "glGetCompressedTexImage", + "glGetConvolutionFilter", + "glGetConvolutionParameterfv", + "glGetConvolutionParameteriv", + "glGetDebugMessageLog", + "glGetDebugMessageLogARB", + "glGetDebugMessageLogKHR", + "glGetDoublei_v", + "glGetDoublev", + "glGetError", + "glGetFloati_v", + "glGetFloatv", + "glGetFragDataIndex", + "glGetFragDataLocation", + "glGetFramebufferAttachmentParameteriv", + "glGetFramebufferParameteriv", + "glGetGraphicsResetStatusARB", + "glGetHistogram", + "glGetHistogramParameterfv", + "glGetHistogramParameteriv", + "glGetImageHandleARB", + "glGetInteger64i_v", + "glGetInteger64v", + "glGetIntegeri_v", + "glGetIntegerv", + "glGetInternalformati64v", + "glGetInternalformativ", + "glGetMinmax", + "glGetMinmaxParameterfv", + "glGetMinmaxParameteriv", + "glGetMultisamplefv", + "glGetNamedStringARB", + "glGetNamedStringivARB", + "glGetnColorTableARB", + "glGetnCompressedTexImageARB", + "glGetnConvolutionFilterARB", + "glGetnHistogramARB", + "glGetnMapdvARB", + "glGetnMapfvARB", + "glGetnMapivARB", + "glGetnMinmaxARB", + "glGetnPixelMapfvARB", + "glGetnPixelMapuivARB", + "glGetnPixelMapusvARB", + "glGetnPolygonStippleARB", + "glGetnSeparableFilterARB", + "glGetnTexImageARB", + "glGetnUniformdvARB", + "glGetnUniformfvARB", + "glGetnUniformivARB", + "glGetnUniformuivARB", + "glGetObjectLabel", + "glGetObjectLabelKHR", + "glGetObjectPtrLabel", + "glGetObjectPtrLabelKHR", + "glGetPointerv", + "glGetPointervKHR", + "glGetProgramBinary", + "glGetProgramInfoLog", + "glGetProgramInterfaceiv", + "glGetProgramiv", + "glGetProgramPipelineInfoLog", + "glGetProgramPipelineiv", + "glGetProgramResourceIndex", + "glGetProgramResourceiv", + "glGetProgramResourceLocation", + "glGetProgramResourceLocationIndex", + "glGetProgramResourceName", + "glGetProgramStageiv", + "glGetQueryIndexediv", + "glGetQueryiv", + "glGetQueryObjecti64v", + "glGetQueryObjectiv", + "glGetQueryObjectui64v", + "glGetQueryObjectuiv", + "glGetRenderbufferParameteriv", + "glGetSamplerParameterfv", + "glGetSamplerParameterIiv", + "glGetSamplerParameterIuiv", + "glGetSamplerParameteriv", + "glGetSeparableFilter", + "glGetShaderInfoLog", + "glGetShaderiv", + "glGetShaderPrecisionFormat", + "glGetShaderSource", + "glGetString", + "glGetStringi", + "glGetSubroutineIndex", + "glGetSubroutineUniformLocation", + "glGetSynciv", + "glGetTexImage", + "glGetTexLevelParameterfv", + "glGetTexLevelParameteriv", + "glGetTexParameterfv", + "glGetTexParameterIiv", + "glGetTexParameterIuiv", + "glGetTexParameteriv", + "glGetTextureHandleARB", + "glGetTextureSamplerHandleARB", + "glGetTransformFeedbackVarying", + "glGetUniformBlockIndex", + "glGetUniformdv", + "glGetUniformfv", + "glGetUniformIndices", + "glGetUniformiv", + "glGetUniformLocation", + "glGetUniformSubroutineuiv", + "glGetUniformuiv", + "glGetVertexAttribdv", + "glGetVertexAttribfv", + "glGetVertexAttribIiv", + "glGetVertexAttribIuiv", + "glGetVertexAttribiv", + "glGetVertexAttribLdv", + "glGetVertexAttribLui64vARB", + "glGetVertexAttribPointerv", + "glHint", + "glHistogram", + "glInvalidateBufferData", + "glInvalidateBufferSubData", + "glInvalidateFramebuffer", + "glInvalidateSubFramebuffer", + "glInvalidateTexImage", + "glInvalidateTexSubImage", + "glIsBuffer", + "glIsEnabled", + "glIsEnabledi", + "glIsFramebuffer", + "glIsImageHandleResidentARB", + "glIsNamedStringARB", + "glIsProgram", + "glIsProgramPipeline", + "glIsQuery", + "glIsRenderbuffer", + "glIsSampler", + "glIsShader", + "glIsSync", + "glIsTexture", + "glIsTextureHandleResidentARB", + "glIsTransformFeedback", + "glIsVertexArray", + "glLineWidth", + "glLinkProgram", + "glLogicOp", + "glMakeImageHandleNonResidentARB", + "glMakeImageHandleResidentARB", + "glMakeTextureHandleNonResidentARB", + "glMakeTextureHandleResidentARB", + "glMapBuffer", + "glMapBufferRange", + "glMemoryBarrier", + "glMinmax", + "glMinSampleShading", + "glMinSampleShadingARB", + "glMultiDrawArrays", + "glMultiDrawArraysIndirect", + "glMultiDrawArraysIndirectCountARB", + "glMultiDrawElements", + "glMultiDrawElementsBaseVertex", + "glMultiDrawElementsIndirect", + "glMultiDrawElementsIndirectCountARB", + "glMultiTexCoordP1ui", + "glMultiTexCoordP1uiv", + "glMultiTexCoordP2ui", + "glMultiTexCoordP2uiv", + "glMultiTexCoordP3ui", + "glMultiTexCoordP3uiv", + "glMultiTexCoordP4ui", + "glMultiTexCoordP4uiv", + "glNamedStringARB", + "glNormalP3ui", + "glNormalP3uiv", + "glObjectLabel", + "glObjectLabelKHR", + "glObjectPtrLabel", + "glObjectPtrLabelKHR", + "glPatchParameterfv", + "glPatchParameteri", + "glPauseTransformFeedback", + "glPixelStoref", + "glPixelStorei", + "glPointParameterf", + "glPointParameterfv", + "glPointParameteri", + "glPointParameteriv", + "glPointSize", + "glPolygonMode", + "glPolygonOffset", + "glPopDebugGroup", + "glPopDebugGroupKHR", + "glPrimitiveRestartIndex", + "glProgramBinary", + "glProgramParameteri", + "glProgramUniform1d", + "glProgramUniform1dv", + "glProgramUniform1f", + "glProgramUniform1fv", + "glProgramUniform1i", + "glProgramUniform1iv", + "glProgramUniform1ui", + "glProgramUniform1uiv", + "glProgramUniform2d", + "glProgramUniform2dv", + "glProgramUniform2f", + "glProgramUniform2fv", + "glProgramUniform2i", + "glProgramUniform2iv", + "glProgramUniform2ui", + "glProgramUniform2uiv", + "glProgramUniform3d", + "glProgramUniform3dv", + "glProgramUniform3f", + "glProgramUniform3fv", + "glProgramUniform3i", + "glProgramUniform3iv", + "glProgramUniform3ui", + "glProgramUniform3uiv", + "glProgramUniform4d", + "glProgramUniform4dv", + "glProgramUniform4f", + "glProgramUniform4fv", + "glProgramUniform4i", + "glProgramUniform4iv", + "glProgramUniform4ui", + "glProgramUniform4uiv", + "glProgramUniformHandleui64ARB", + "glProgramUniformHandleui64vARB", + "glProgramUniformMatrix2dv", + "glProgramUniformMatrix2fv", + "glProgramUniformMatrix2x3dv", + "glProgramUniformMatrix2x3fv", + "glProgramUniformMatrix2x4dv", + "glProgramUniformMatrix2x4fv", + "glProgramUniformMatrix3dv", + "glProgramUniformMatrix3fv", + "glProgramUniformMatrix3x2dv", + "glProgramUniformMatrix3x2fv", + "glProgramUniformMatrix3x4dv", + "glProgramUniformMatrix3x4fv", + "glProgramUniformMatrix4dv", + "glProgramUniformMatrix4fv", + "glProgramUniformMatrix4x2dv", + "glProgramUniformMatrix4x2fv", + "glProgramUniformMatrix4x3dv", + "glProgramUniformMatrix4x3fv", + "glProvokingVertex", + "glPushDebugGroup", + "glPushDebugGroupKHR", + "glQueryCounter", + "glReadBuffer", + "glReadnPixelsARB", + "glReadPixels", + "glReleaseShaderCompiler", + "glRenderbufferStorage", + "glRenderbufferStorageMultisample", + "glResetHistogram", + "glResetMinmax", + "glResumeTransformFeedback", + "glSampleCoverage", + "glSampleMaski", + "glSamplerParameterf", + "glSamplerParameterfv", + "glSamplerParameteri", + "glSamplerParameterIiv", + "glSamplerParameterIuiv", + "glSamplerParameteriv", + "glScissor", + "glScissorArrayv", + "glScissorIndexed", + "glScissorIndexedv", + "glSecondaryColorP3ui", + "glSecondaryColorP3uiv", + "glSeparableFilter2D", + "glShaderBinary", + "glShaderSource", + "glShaderStorageBlockBinding", + "glStencilFunc", + "glStencilFuncSeparate", + "glStencilMask", + "glStencilMaskSeparate", + "glStencilOp", + "glStencilOpSeparate", + "glTexBuffer", + "glTexBufferRange", + "glTexCoordP1ui", + "glTexCoordP1uiv", + "glTexCoordP2ui", + "glTexCoordP2uiv", + "glTexCoordP3ui", + "glTexCoordP3uiv", + "glTexCoordP4ui", + "glTexCoordP4uiv", + "glTexImage1D", + "glTexImage2D", + "glTexImage2DMultisample", + "glTexImage3D", + "glTexImage3DMultisample", + "glTexPageCommitmentARB", + "glTexParameterf", + "glTexParameterfv", + "glTexParameteri", + "glTexParameterIiv", + "glTexParameterIuiv", + "glTexParameteriv", + "glTexStorage1D", + "glTexStorage2D", + "glTexStorage2DMultisample", + "glTexStorage3D", + "glTexStorage3DMultisample", + "glTexSubImage1D", + "glTexSubImage2D", + "glTexSubImage3D", + "glTextureView", + "glTransformFeedbackVaryings", + "glUniform1d", + "glUniform1dv", + "glUniform1f", + "glUniform1fv", + "glUniform1i", + "glUniform1iv", + "glUniform1ui", + "glUniform1uiv", + "glUniform2d", + "glUniform2dv", + "glUniform2f", + "glUniform2fv", + "glUniform2i", + "glUniform2iv", + "glUniform2ui", + "glUniform2uiv", + "glUniform3d", + "glUniform3dv", + "glUniform3f", + "glUniform3fv", + "glUniform3i", + "glUniform3iv", + "glUniform3ui", + "glUniform3uiv", + "glUniform4d", + "glUniform4dv", + "glUniform4f", + "glUniform4fv", + "glUniform4i", + "glUniform4iv", + "glUniform4ui", + "glUniform4uiv", + "glUniformBlockBinding", + "glUniformHandleui64ARB", + "glUniformHandleui64vARB", + "glUniformMatrix2dv", + "glUniformMatrix2fv", + "glUniformMatrix2x3dv", + "glUniformMatrix2x3fv", + "glUniformMatrix2x4dv", + "glUniformMatrix2x4fv", + "glUniformMatrix3dv", + "glUniformMatrix3fv", + "glUniformMatrix3x2dv", + "glUniformMatrix3x2fv", + "glUniformMatrix3x4dv", + "glUniformMatrix3x4fv", + "glUniformMatrix4dv", + "glUniformMatrix4fv", + "glUniformMatrix4x2dv", + "glUniformMatrix4x2fv", + "glUniformMatrix4x3dv", + "glUniformMatrix4x3fv", + "glUniformSubroutinesuiv", + "glUnmapBuffer", + "glUseProgram", + "glUseProgramStages", + "glValidateProgram", + "glValidateProgramPipeline", + "glVertexAttrib1d", + "glVertexAttrib1dv", + "glVertexAttrib1f", + "glVertexAttrib1fv", + "glVertexAttrib1s", + "glVertexAttrib1sv", + "glVertexAttrib2d", + "glVertexAttrib2dv", + "glVertexAttrib2f", + "glVertexAttrib2fv", + "glVertexAttrib2s", + "glVertexAttrib2sv", + "glVertexAttrib3d", + "glVertexAttrib3dv", + "glVertexAttrib3f", + "glVertexAttrib3fv", + "glVertexAttrib3s", + "glVertexAttrib3sv", + "glVertexAttrib4bv", + "glVertexAttrib4d", + "glVertexAttrib4dv", + "glVertexAttrib4f", + "glVertexAttrib4fv", + "glVertexAttrib4iv", + "glVertexAttrib4Nbv", + "glVertexAttrib4Niv", + "glVertexAttrib4Nsv", + "glVertexAttrib4Nub", + "glVertexAttrib4Nubv", + "glVertexAttrib4Nuiv", + "glVertexAttrib4Nusv", + "glVertexAttrib4s", + "glVertexAttrib4sv", + "glVertexAttrib4ubv", + "glVertexAttrib4uiv", + "glVertexAttrib4usv", + "glVertexAttribBinding", + "glVertexAttribDivisor", + "glVertexAttribFormat", + "glVertexAttribI1i", + "glVertexAttribI1iv", + "glVertexAttribI1ui", + "glVertexAttribI1uiv", + "glVertexAttribI2i", + "glVertexAttribI2iv", + "glVertexAttribI2ui", + "glVertexAttribI2uiv", + "glVertexAttribI3i", + "glVertexAttribI3iv", + "glVertexAttribI3ui", + "glVertexAttribI3uiv", + "glVertexAttribI4bv", + "glVertexAttribI4i", + "glVertexAttribI4iv", + "glVertexAttribI4sv", + "glVertexAttribI4ubv", + "glVertexAttribI4ui", + "glVertexAttribI4uiv", + "glVertexAttribI4usv", + "glVertexAttribIFormat", + "glVertexAttribIPointer", + "glVertexAttribL1d", + "glVertexAttribL1dv", + "glVertexAttribL1ui64ARB", + "glVertexAttribL1ui64vARB", + "glVertexAttribL2d", + "glVertexAttribL2dv", + "glVertexAttribL3d", + "glVertexAttribL3dv", + "glVertexAttribL4d", + "glVertexAttribL4dv", + "glVertexAttribLFormat", + "glVertexAttribLPointer", + "glVertexAttribP1ui", + "glVertexAttribP1uiv", + "glVertexAttribP2ui", + "glVertexAttribP2uiv", + "glVertexAttribP3ui", + "glVertexAttribP3uiv", + "glVertexAttribP4ui", + "glVertexAttribP4uiv", + "glVertexAttribPointer", + "glVertexBindingDivisor", + "glVertexP2ui", + "glVertexP2uiv", + "glVertexP3ui", + "glVertexP3uiv", + "glVertexP4ui", + "glVertexP4uiv", + "glViewport", + "glViewportArrayv", + "glViewportIndexedf", + "glViewportIndexedfv", + "glWaitSync", + }; + EntryPoints = new IntPtr[EntryPointNames.Length]; + } public static partial class Arb { @@ -61,7 +740,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationiARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[31], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); #if DEBUG } #endif @@ -89,7 +768,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationiARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[31], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); #if DEBUG } #endif @@ -121,7 +800,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.All)modeRGB, (OpenTK.Graphics.OpenGL4.All)modeAlpha); + InteropHelper.Call(EntryPoints[34], (UInt32)buf, (OpenTK.Graphics.OpenGL4.All)modeRGB, (OpenTK.Graphics.OpenGL4.All)modeAlpha); #if DEBUG } #endif @@ -154,7 +833,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.All)modeRGB, (OpenTK.Graphics.OpenGL4.All)modeAlpha); + InteropHelper.Call(EntryPoints[34], (UInt32)buf, (OpenTK.Graphics.OpenGL4.All)modeRGB, (OpenTK.Graphics.OpenGL4.All)modeAlpha); #if DEBUG } #endif @@ -186,7 +865,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunciARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.All)src, (OpenTK.Graphics.OpenGL4.All)dst); + InteropHelper.Call(EntryPoints[37], (UInt32)buf, (OpenTK.Graphics.OpenGL4.All)src, (OpenTK.Graphics.OpenGL4.All)dst); #if DEBUG } #endif @@ -219,7 +898,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunciARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.All)src, (OpenTK.Graphics.OpenGL4.All)dst); + InteropHelper.Call(EntryPoints[37], (UInt32)buf, (OpenTK.Graphics.OpenGL4.All)src, (OpenTK.Graphics.OpenGL4.All)dst); #if DEBUG } #endif @@ -261,7 +940,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.All)srcRGB, (OpenTK.Graphics.OpenGL4.All)dstRGB, (OpenTK.Graphics.OpenGL4.All)srcAlpha, (OpenTK.Graphics.OpenGL4.All)dstAlpha); + InteropHelper.Call(EntryPoints[40], (UInt32)buf, (OpenTK.Graphics.OpenGL4.All)srcRGB, (OpenTK.Graphics.OpenGL4.All)dstRGB, (OpenTK.Graphics.OpenGL4.All)srcAlpha, (OpenTK.Graphics.OpenGL4.All)dstAlpha); #if DEBUG } #endif @@ -304,7 +983,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparateiARB((UInt32)buf, (OpenTK.Graphics.OpenGL4.All)srcRGB, (OpenTK.Graphics.OpenGL4.All)dstRGB, (OpenTK.Graphics.OpenGL4.All)srcAlpha, (OpenTK.Graphics.OpenGL4.All)dstAlpha); + InteropHelper.Call(EntryPoints[40], (UInt32)buf, (OpenTK.Graphics.OpenGL4.All)srcRGB, (OpenTK.Graphics.OpenGL4.All)dstRGB, (OpenTK.Graphics.OpenGL4.All)srcAlpha, (OpenTK.Graphics.OpenGL4.All)dstAlpha); #if DEBUG } #endif @@ -323,7 +1002,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[72], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -344,7 +1023,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[72], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -362,7 +1041,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length); + InteropHelper.Call(EntryPoints[72], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length); #if DEBUG } #endif @@ -382,7 +1061,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[72], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -404,7 +1083,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[72], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length_ptr); } } #if DEBUG @@ -422,7 +1101,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShaderIncludeARB((UInt32)shader, (Int32)count, (String[])path, (Int32*)length); + InteropHelper.Call(EntryPoints[72], (UInt32)shader, (Int32)count, (String[])path, (IntPtr)length); #if DEBUG } #endif @@ -442,7 +1121,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* context_ptr = context) fixed (IntPtr* @event_ptr = @event) { - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[99], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); } } #if DEBUG @@ -465,7 +1144,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* context_ptr = context) fixed (IntPtr* @event_ptr = @event) { - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[99], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); } } #if DEBUG @@ -487,7 +1166,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* context_ptr = &context) fixed (IntPtr* @event_ptr = &@event) { - IntPtr retval = Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[99], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); context = *context_ptr; @event = *@event_ptr; return retval; @@ -513,7 +1192,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* context_ptr = &context) fixed (IntPtr* @event_ptr = &@event) { - IntPtr retval = Delegates.glCreateSyncFromCLeventARB((IntPtr*)context_ptr, (IntPtr*)@event_ptr, (UInt32)flags); + IntPtr retval = InteropHelper.CallReturn(EntryPoints[99], (IntPtr)context_ptr, (IntPtr)@event_ptr, (UInt32)flags); context = *context_ptr; @event = *@event_ptr; return retval; @@ -534,7 +1213,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context, (IntPtr*)@event, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[99], (IntPtr)context, (IntPtr)@event, (UInt32)flags); #if DEBUG } #endif @@ -550,7 +1229,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateSyncFromCLeventARB((IntPtr*)context, (IntPtr*)@event, (UInt32)flags); + return InteropHelper.CallReturn(EntryPoints[99], (IntPtr)context, (IntPtr)@event, (UInt32)flags); #if DEBUG } #endif @@ -577,7 +1256,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[102], (DebugProcArb)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -608,7 +1287,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[102], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -644,7 +1323,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[102], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -680,7 +1359,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[102], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -716,7 +1395,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackARB((DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[102], (DebugProcArb)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -773,7 +1452,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -826,7 +1505,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -876,7 +1555,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -928,7 +1607,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -982,7 +1661,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -1032,7 +1711,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[105], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -1079,7 +1758,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -1127,7 +1806,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertARB((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[108], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -1142,7 +1821,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteNamedStringARB((Int32)namelen, (String)name); + InteropHelper.Call(EntryPoints[112], (Int32)namelen, (String)name); #if DEBUG } #endif @@ -1157,7 +1836,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchComputeGroupSizeARB((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); + InteropHelper.Call(EntryPoints[134], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); #if DEBUG } #endif @@ -1173,7 +1852,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchComputeGroupSizeARB((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); + InteropHelper.Call(EntryPoints[134], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z, (UInt32)group_size_x, (UInt32)group_size_y, (UInt32)group_size_z); #if DEBUG } #endif @@ -1238,7 +1917,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[210], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -1305,7 +1984,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[210], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -1371,7 +2050,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources, (OpenTK.Graphics.OpenGL4.All*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL4.All*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[210], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -1437,7 +2116,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[210], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -1505,7 +2184,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[210], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -1571,7 +2250,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogARB((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources, (OpenTK.Graphics.OpenGL4.All*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL4.All*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[210], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -1586,7 +2265,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetGraphicsResetStatusARB(); + return InteropHelper.CallReturn(EntryPoints[221]); #if DEBUG } #endif @@ -1601,7 +2280,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetImageHandleARB((UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.All)format); + return InteropHelper.CallReturn(EntryPoints[225], (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.All)format); #if DEBUG } #endif @@ -1617,7 +2296,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetImageHandleARB((UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.All)format); + return InteropHelper.CallReturn(EntryPoints[225], (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.All)format); #if DEBUG } #endif @@ -1636,7 +2315,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* stringlen_ptr = &stringlen) { - Delegates.glGetNamedStringARB((Int32)namelen, (String)name, (Int32)bufSize, (Int32*)stringlen_ptr, (StringBuilder)@string); + InteropHelper.Call(EntryPoints[236], (Int32)namelen, (String)name, (Int32)bufSize, (IntPtr)stringlen_ptr, (StringBuilder)@string); stringlen = *stringlen_ptr; } } @@ -1655,7 +2334,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedStringARB((Int32)namelen, (String)name, (Int32)bufSize, (Int32*)stringlen, (StringBuilder)@string); + InteropHelper.Call(EntryPoints[236], (Int32)namelen, (String)name, (Int32)bufSize, (IntPtr)stringlen, (StringBuilder)@string); #if DEBUG } #endif @@ -1674,7 +2353,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetNamedStringivARB((Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[237], (Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -1695,7 +2374,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetNamedStringivARB((Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[237], (Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -1714,7 +2393,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetNamedStringivARB((Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[237], (Int32)namelen, (String)name, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -1729,7 +2408,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table); #if DEBUG } #endif @@ -1748,7 +2427,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -1772,7 +2451,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -1796,7 +2475,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -1820,7 +2499,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetnColorTableARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[238], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T4)table_ptr.Target; } finally @@ -1841,7 +2520,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img); #if DEBUG } #endif @@ -1860,7 +2539,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -1884,7 +2563,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -1908,7 +2587,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -1932,7 +2611,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnCompressedTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[239], (OpenTK.Graphics.OpenGL4.All)target, (Int32)lod, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T3)img_ptr.Target; } finally @@ -1953,7 +2632,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image); #if DEBUG } #endif @@ -1972,7 +2651,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -1996,7 +2675,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -2020,7 +2699,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -2044,7 +2723,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetnConvolutionFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[240], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T4)image_ptr.Target; } finally @@ -2065,7 +2744,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2084,7 +2763,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -2108,7 +2787,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -2132,7 +2811,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -2156,7 +2835,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnHistogramARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[241], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T5)values_ptr.Target; } finally @@ -2181,7 +2860,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glGetnMapdvARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v_ptr); } } #if DEBUG @@ -2202,7 +2881,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glGetnMapdvARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v_ptr); v = *v_ptr; } } @@ -2221,7 +2900,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMapdvARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Double*)v); + InteropHelper.Call(EntryPoints[242], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v); #if DEBUG } #endif @@ -2240,7 +2919,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glGetnMapfvARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v_ptr); } } #if DEBUG @@ -2261,7 +2940,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glGetnMapfvARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v_ptr); v = *v_ptr; } } @@ -2280,7 +2959,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMapfvARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Single*)v); + InteropHelper.Call(EntryPoints[243], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v); #if DEBUG } #endif @@ -2299,7 +2978,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glGetnMapivARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v_ptr); } } #if DEBUG @@ -2320,7 +2999,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glGetnMapivARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v_ptr); v = *v_ptr; } } @@ -2339,7 +3018,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMapivARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (Int32*)v); + InteropHelper.Call(EntryPoints[244], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)query, (Int32)bufSize, (IntPtr)v); #if DEBUG } #endif @@ -2354,7 +3033,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2373,7 +3052,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -2397,7 +3076,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -2421,7 +3100,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -2445,7 +3124,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetnMinmaxARB((OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[245], (OpenTK.Graphics.OpenGL4.All)target, (bool)reset, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T5)values_ptr.Target; } finally @@ -2470,7 +3149,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* values_ptr = values) { - Delegates.glGetnPixelMapfvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -2491,7 +3170,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* values_ptr = &values) { - Delegates.glGetnPixelMapfvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -2510,7 +3189,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapfvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (Single*)values); + InteropHelper.Call(EntryPoints[246], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2529,7 +3208,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -2550,7 +3229,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = &values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -2569,7 +3248,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt32*)values); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2589,7 +3268,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* values_ptr = values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -2611,7 +3290,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* values_ptr = &values) { - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt32*)values_ptr); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -2630,7 +3309,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapuivARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt32*)values); + InteropHelper.Call(EntryPoints[247], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2649,7 +3328,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* values_ptr = values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -2670,7 +3349,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* values_ptr = &values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -2689,7 +3368,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt16*)values); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2709,7 +3388,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* values_ptr = values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); } } #if DEBUG @@ -2731,7 +3410,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* values_ptr = &values) { - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt16*)values_ptr); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values_ptr); values = *values_ptr; } } @@ -2750,7 +3429,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPixelMapusvARB((OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (UInt16*)values); + InteropHelper.Call(EntryPoints[248], (OpenTK.Graphics.OpenGL4.All)map, (Int32)bufSize, (IntPtr)values); #if DEBUG } #endif @@ -2770,7 +3449,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 bufSize = 1; Byte retval; Byte* pattern_ptr = &retval; - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern_ptr); + InteropHelper.Call(EntryPoints[249], (Int32)bufSize, (IntPtr)pattern_ptr); return retval; } #if DEBUG @@ -2791,7 +3470,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* pattern_ptr = pattern) { - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern_ptr); + InteropHelper.Call(EntryPoints[249], (Int32)bufSize, (IntPtr)pattern_ptr); } } #if DEBUG @@ -2812,7 +3491,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* pattern_ptr = &pattern) { - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern_ptr); + InteropHelper.Call(EntryPoints[249], (Int32)bufSize, (IntPtr)pattern_ptr); pattern = *pattern_ptr; } } @@ -2831,7 +3510,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnPolygonStippleARB((Int32)bufSize, (Byte*)pattern); + InteropHelper.Call(EntryPoints[249], (Int32)bufSize, (IntPtr)pattern); #if DEBUG } #endif @@ -2846,7 +3525,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row, (Int32)columnBufSize, (IntPtr)column, (IntPtr)span); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row, (Int32)columnBufSize, (IntPtr)column, (IntPtr)span); #if DEBUG } #endif @@ -2869,7 +3548,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -2899,7 +3578,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -2929,7 +3608,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -2959,7 +3638,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetnSeparableFilterARB((OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[250], (OpenTK.Graphics.OpenGL4.All)target, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)rowBufSize, (IntPtr)row_ptr.AddrOfPinnedObject(), (Int32)columnBufSize, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); row = (T4)row_ptr.Target; column = (T6)column_ptr.Target; span = (T7)span_ptr.Target; @@ -2984,7 +3663,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img); + InteropHelper.Call(EntryPoints[251], (OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img); #if DEBUG } #endif @@ -3003,7 +3682,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[251], (OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -3027,7 +3706,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[251], (OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -3051,7 +3730,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[251], (OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -3075,7 +3754,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetnTexImageARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[251], (OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T5)img_ptr.Target; } finally @@ -3100,7 +3779,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3121,7 +3800,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3140,7 +3819,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3160,7 +3839,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3182,7 +3861,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3201,7 +3880,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformdvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Double*)@params); + InteropHelper.Call(EntryPoints[252], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3220,7 +3899,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[253], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3241,7 +3920,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[253], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3260,7 +3939,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[253], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3280,7 +3959,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[253], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3302,7 +3981,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[253], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3321,7 +4000,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformfvARB((UInt32)program, (Int32)location, (Int32)bufSize, (Single*)@params); + InteropHelper.Call(EntryPoints[253], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3340,7 +4019,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[254], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3361,7 +4040,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[254], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3380,7 +4059,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[254], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3400,7 +4079,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[254], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3422,7 +4101,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[254], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3441,7 +4120,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformivARB((UInt32)program, (Int32)location, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[254], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3461,7 +4140,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetnUniformuivARB((UInt32)program, (Int32)location, (Int32)bufSize, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[255], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -3483,7 +4162,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetnUniformuivARB((UInt32)program, (Int32)location, (Int32)bufSize, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[255], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3502,7 +4181,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetnUniformuivARB((UInt32)program, (Int32)location, (Int32)bufSize, (UInt32*)@params); + InteropHelper.Call(EntryPoints[255], (UInt32)program, (Int32)location, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -3517,7 +4196,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureHandleARB((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[302], (UInt32)texture); #if DEBUG } #endif @@ -3533,7 +4212,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureHandleARB((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[302], (UInt32)texture); #if DEBUG } #endif @@ -3548,7 +4227,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureSamplerHandleARB((UInt32)texture, (UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[303], (UInt32)texture, (UInt32)sampler); #if DEBUG } #endif @@ -3564,7 +4243,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetTextureSamplerHandleARB((UInt32)texture, (UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[303], (UInt32)texture, (UInt32)sampler); #if DEBUG } #endif @@ -3583,7 +4262,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -3604,7 +4283,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3623,7 +4302,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[319], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -3643,7 +4322,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -3665,7 +4344,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[319], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -3684,7 +4363,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLui64vARB((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[319], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameterArb)pname, (IntPtr)@params); #if DEBUG } #endif @@ -3699,7 +4378,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsImageHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[333], (UInt64)handle); #if DEBUG } #endif @@ -3715,7 +4394,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsImageHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[333], (UInt64)handle); #if DEBUG } #endif @@ -3730,7 +4409,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsNamedStringARB((Int32)namelen, (String)name); + return InteropHelper.CallReturn(EntryPoints[334], (Int32)namelen, (String)name); #if DEBUG } #endif @@ -3745,7 +4424,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[343], (UInt64)handle); #if DEBUG } #endif @@ -3761,7 +4440,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTextureHandleResidentARB((UInt64)handle); + return InteropHelper.CallReturn(EntryPoints[343], (UInt64)handle); #if DEBUG } #endif @@ -3776,7 +4455,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[349], (UInt64)handle); #if DEBUG } #endif @@ -3792,7 +4471,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[349], (UInt64)handle); #if DEBUG } #endif @@ -3807,7 +4486,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleResidentARB((UInt64)handle, (OpenTK.Graphics.OpenGL4.All)access); + InteropHelper.Call(EntryPoints[350], (UInt64)handle, (OpenTK.Graphics.OpenGL4.All)access); #if DEBUG } #endif @@ -3823,7 +4502,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeImageHandleResidentARB((UInt64)handle, (OpenTK.Graphics.OpenGL4.All)access); + InteropHelper.Call(EntryPoints[350], (UInt64)handle, (OpenTK.Graphics.OpenGL4.All)access); #if DEBUG } #endif @@ -3838,7 +4517,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[351], (UInt64)handle); #if DEBUG } #endif @@ -3854,7 +4533,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleNonResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[351], (UInt64)handle); #if DEBUG } #endif @@ -3869,7 +4548,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[352], (UInt64)handle); #if DEBUG } #endif @@ -3885,7 +4564,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMakeTextureHandleResidentARB((UInt64)handle); + InteropHelper.Call(EntryPoints[352], (UInt64)handle); #if DEBUG } #endif @@ -3907,7 +4586,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinSampleShadingARB((Single)value); + InteropHelper.Call(EntryPoints[358], (Single)value); #if DEBUG } #endif @@ -3922,7 +4601,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysIndirectCountARB((OpenTK.Graphics.OpenGL4.All)mode, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[361], (OpenTK.Graphics.OpenGL4.All)mode, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); #if DEBUG } #endif @@ -3937,7 +4616,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsIndirectCountARB((OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[365], (OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect, (IntPtr)drawcount, (Int32)maxdrawcount, (Int32)stride); #if DEBUG } #endif @@ -3952,7 +4631,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNamedStringARB((OpenTK.Graphics.OpenGL4.All)type, (Int32)namelen, (String)name, (Int32)stringlen, (String)@string); + InteropHelper.Call(EntryPoints[374], (OpenTK.Graphics.OpenGL4.All)type, (Int32)namelen, (String)name, (Int32)stringlen, (String)@string); #if DEBUG } #endif @@ -3967,7 +4646,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64ARB((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[430], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -3983,7 +4662,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64ARB((UInt32)program, (Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[430], (UInt32)program, (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -4002,7 +4681,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* values_ptr = values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[431], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -4023,7 +4702,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* values_ptr = &values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[431], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -4041,7 +4720,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values); + InteropHelper.Call(EntryPoints[431], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values); #if DEBUG } #endif @@ -4061,7 +4740,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* values_ptr = values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[431], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -4083,7 +4762,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* values_ptr = &values) { - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values_ptr); + InteropHelper.Call(EntryPoints[431], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values_ptr); } } #if DEBUG @@ -4101,7 +4780,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformHandleui64vARB((UInt32)program, (Int32)location, (Int32)count, (UInt64*)values); + InteropHelper.Call(EntryPoints[431], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)values); #if DEBUG } #endif @@ -4116,7 +4795,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[455], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data); #if DEBUG } #endif @@ -4135,7 +4814,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[455], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -4159,7 +4838,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[455], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -4183,7 +4862,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[455], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -4207,7 +4886,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glReadnPixelsARB((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[455], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.All)format, (OpenTK.Graphics.OpenGL4.All)type, (Int32)bufSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -4228,7 +4907,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexPageCommitmentARB((OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); + InteropHelper.Call(EntryPoints[502], (OpenTK.Graphics.OpenGL4.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (bool)resident); #if DEBUG } #endif @@ -4243,7 +4922,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64ARB((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[552], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -4259,7 +4938,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64ARB((Int32)location, (UInt64)value); + InteropHelper.Call(EntryPoints[552], (Int32)location, (UInt64)value); #if DEBUG } #endif @@ -4278,7 +4957,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* value_ptr = value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[553], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -4299,7 +4978,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* value_ptr = &value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[553], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -4317,7 +4996,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[553], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -4337,7 +5016,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* value_ptr = value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[553], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -4359,7 +5038,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* value_ptr = &value) { - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value_ptr); + InteropHelper.Call(EntryPoints[553], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -4377,7 +5056,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformHandleui64vARB((Int32)location, (Int32)count, (UInt64*)value); + InteropHelper.Call(EntryPoints[553], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -4392,7 +5071,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64ARB((UInt32)index, (UInt64)x); + InteropHelper.Call(EntryPoints[641], (UInt32)index, (UInt64)x); #if DEBUG } #endif @@ -4408,7 +5087,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64ARB((UInt32)index, (UInt64)x); + InteropHelper.Call(EntryPoints[641], (UInt32)index, (UInt64)x); #if DEBUG } #endif @@ -4427,7 +5106,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* v_ptr = v) { - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[642], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -4445,7 +5124,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[642], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -4465,7 +5144,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* v_ptr = v) { - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v_ptr); + InteropHelper.Call(EntryPoints[642], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -4483,7 +5162,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1ui64vARB((UInt32)index, (UInt64*)v); + InteropHelper.Call(EntryPoints[642], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -4512,7 +5191,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgram((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[0], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -4540,7 +5219,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveShaderProgram((UInt32)pipeline, (UInt32)program); + InteropHelper.Call(EntryPoints[0], (UInt32)pipeline, (UInt32)program); #if DEBUG } #endif @@ -4562,7 +5241,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glActiveTexture((OpenTK.Graphics.OpenGL4.TextureUnit)texture); + InteropHelper.Call(EntryPoints[1], (OpenTK.Graphics.OpenGL4.TextureUnit)texture); #if DEBUG } #endif @@ -4589,7 +5268,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[2], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -4617,7 +5296,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glAttachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[2], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -4644,7 +5323,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRender((UInt32)id, (OpenTK.Graphics.OpenGL4.ConditionalRenderType)mode); + InteropHelper.Call(EntryPoints[3], (UInt32)id, (OpenTK.Graphics.OpenGL4.ConditionalRenderType)mode); #if DEBUG } #endif @@ -4672,7 +5351,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginConditionalRender((UInt32)id, (OpenTK.Graphics.OpenGL4.ConditionalRenderType)mode); + InteropHelper.Call(EntryPoints[3], (UInt32)id, (OpenTK.Graphics.OpenGL4.ConditionalRenderType)mode); #if DEBUG } #endif @@ -4699,7 +5378,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[4], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -4727,7 +5406,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQuery((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[4], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)id); #if DEBUG } #endif @@ -4759,7 +5438,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryIndexed((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (UInt32)id); + InteropHelper.Call(EntryPoints[5], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (UInt32)id); #if DEBUG } #endif @@ -4792,7 +5471,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginQueryIndexed((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (UInt32)id); + InteropHelper.Call(EntryPoints[5], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (UInt32)id); #if DEBUG } #endif @@ -4814,7 +5493,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBeginTransformFeedback((OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType)primitiveMode); + InteropHelper.Call(EntryPoints[6], (OpenTK.Graphics.OpenGL4.TransformFeedbackPrimitiveType)primitiveMode); #if DEBUG } #endif @@ -4846,7 +5525,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[7], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -4879,7 +5558,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindAttribLocation((UInt32)program, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[7], (UInt32)program, (UInt32)index, (String)name); #if DEBUG } #endif @@ -4906,7 +5585,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.OpenGL4.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -4934,7 +5613,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffer((OpenTK.Graphics.OpenGL4.BufferTarget)target, (UInt32)buffer); + InteropHelper.Call(EntryPoints[8], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (UInt32)buffer); #if DEBUG } #endif @@ -4966,7 +5645,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -4999,7 +5678,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); + InteropHelper.Call(EntryPoints[9], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer); #if DEBUG } #endif @@ -5041,7 +5720,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -5084,7 +5763,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBufferRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[10], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)index, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -5125,7 +5804,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -5168,7 +5847,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -5208,7 +5887,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers); #if DEBUG } #endif @@ -5250,7 +5929,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -5294,7 +5973,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr); } } #if DEBUG @@ -5334,7 +6013,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersBase((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[11], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers); #if DEBUG } #endif @@ -5377,7 +6056,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = offsets) fixed (IntPtr* sizes_ptr = sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -5422,7 +6101,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = &offsets) fixed (IntPtr* sizes_ptr = &sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -5462,7 +6141,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (IntPtr*)sizes); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)sizes); #if DEBUG } #endif @@ -5506,7 +6185,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = offsets) fixed (IntPtr* sizes_ptr = sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -5552,7 +6231,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = &offsets) fixed (IntPtr* sizes_ptr = &sizes) { - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (IntPtr*)sizes_ptr); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)sizes_ptr); } } #if DEBUG @@ -5592,7 +6271,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindBuffersRange((OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (IntPtr*)sizes); + InteropHelper.Call(EntryPoints[12], (OpenTK.Graphics.OpenGL4.BufferRangeTarget)target, (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)sizes); #if DEBUG } #endif @@ -5624,7 +6303,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocation((UInt32)program, (UInt32)color, (String)name); + InteropHelper.Call(EntryPoints[13], (UInt32)program, (UInt32)color, (String)name); #if DEBUG } #endif @@ -5657,7 +6336,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocation((UInt32)program, (UInt32)color, (String)name); + InteropHelper.Call(EntryPoints[13], (UInt32)program, (UInt32)color, (String)name); #if DEBUG } #endif @@ -5694,7 +6373,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocationIndexed((UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[14], (UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); #if DEBUG } #endif @@ -5732,7 +6411,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFragDataLocationIndexed((UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); + InteropHelper.Call(EntryPoints[14], (UInt32)program, (UInt32)colorNumber, (UInt32)index, (String)name); #if DEBUG } #endif @@ -5759,7 +6438,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -5787,7 +6466,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (UInt32)framebuffer); + InteropHelper.Call(EntryPoints[15], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (UInt32)framebuffer); #if DEBUG } #endif @@ -5839,7 +6518,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTexture((UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.TextureAccess)access, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)format); + InteropHelper.Call(EntryPoints[16], (UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.TextureAccess)access, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)format); #if DEBUG } #endif @@ -5892,7 +6571,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTexture((UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.TextureAccess)access, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)format); + InteropHelper.Call(EntryPoints[16], (UInt32)unit, (UInt32)texture, (Int32)level, (bool)layered, (Int32)layer, (OpenTK.Graphics.OpenGL4.TextureAccess)access, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)format); #if DEBUG } #endif @@ -5928,7 +6607,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[17], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -5966,7 +6645,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = &textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[17], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6001,7 +6680,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[17], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -6038,7 +6717,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[17], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6077,7 +6756,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[17], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6112,7 +6791,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindImageTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[17], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -6134,7 +6813,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[18], (UInt32)pipeline); #if DEBUG } #endif @@ -6157,7 +6836,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[18], (UInt32)pipeline); #if DEBUG } #endif @@ -6184,7 +6863,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[19], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -6212,7 +6891,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindRenderbuffer((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[19], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (UInt32)renderbuffer); #if DEBUG } #endif @@ -6239,7 +6918,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSampler((UInt32)unit, (UInt32)sampler); + InteropHelper.Call(EntryPoints[20], (UInt32)unit, (UInt32)sampler); #if DEBUG } #endif @@ -6267,7 +6946,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSampler((UInt32)unit, (UInt32)sampler); + InteropHelper.Call(EntryPoints[20], (UInt32)unit, (UInt32)sampler); #if DEBUG } #endif @@ -6303,7 +6982,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* samplers_ptr = samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[21], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -6341,7 +7020,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[21], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -6376,7 +7055,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[21], (UInt32)first, (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -6413,7 +7092,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[21], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -6452,7 +7131,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[21], (UInt32)first, (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -6487,7 +7166,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindSamplers((UInt32)first, (Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[21], (UInt32)first, (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -6514,7 +7193,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[22], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -6542,7 +7221,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTexture((OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)texture); + InteropHelper.Call(EntryPoints[22], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)texture); #if DEBUG } #endif @@ -6578,7 +7257,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[23], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6616,7 +7295,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = &textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[23], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6651,7 +7330,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[23], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -6688,7 +7367,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[23], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6727,7 +7406,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[23], (UInt32)first, (Int32)count, (IntPtr)textures_ptr); } } #if DEBUG @@ -6762,7 +7441,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTextures((UInt32)first, (Int32)count, (UInt32*)textures); + InteropHelper.Call(EntryPoints[23], (UInt32)first, (Int32)count, (IntPtr)textures); #if DEBUG } #endif @@ -6789,7 +7468,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.OpenGL4.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.OpenGL4.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -6817,7 +7496,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindTransformFeedback((OpenTK.Graphics.OpenGL4.TransformFeedbackTarget)target, (UInt32)id); + InteropHelper.Call(EntryPoints[24], (OpenTK.Graphics.OpenGL4.TransformFeedbackTarget)target, (UInt32)id); #if DEBUG } #endif @@ -6839,7 +7518,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArray((UInt32)array); + InteropHelper.Call(EntryPoints[25], (UInt32)array); #if DEBUG } #endif @@ -6862,7 +7541,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexArray((UInt32)array); + InteropHelper.Call(EntryPoints[25], (UInt32)array); #if DEBUG } #endif @@ -6899,7 +7578,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffer((UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); + InteropHelper.Call(EntryPoints[26], (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); #if DEBUG } #endif @@ -6937,7 +7616,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffer((UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); + InteropHelper.Call(EntryPoints[26], (UInt32)bindingindex, (UInt32)buffer, (IntPtr)offset, (Int32)stride); #if DEBUG } #endif @@ -6985,7 +7664,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = offsets) fixed (Int32* strides_ptr = strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[27], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -7035,7 +7714,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = &offsets) fixed (Int32* strides_ptr = &strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[27], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -7080,7 +7759,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (Int32*)strides); + InteropHelper.Call(EntryPoints[27], (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)strides); #if DEBUG } #endif @@ -7129,7 +7808,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = offsets) fixed (Int32* strides_ptr = strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[27], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -7180,7 +7859,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (IntPtr* offsets_ptr = &offsets) fixed (Int32* strides_ptr = &strides) { - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers_ptr, (IntPtr*)offsets_ptr, (Int32*)strides_ptr); + InteropHelper.Call(EntryPoints[27], (UInt32)first, (Int32)count, (IntPtr)buffers_ptr, (IntPtr)offsets_ptr, (IntPtr)strides_ptr); } } #if DEBUG @@ -7225,7 +7904,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBindVertexBuffers((UInt32)first, (Int32)count, (UInt32*)buffers, (IntPtr*)offsets, (Int32*)strides); + InteropHelper.Call(EntryPoints[27], (UInt32)first, (Int32)count, (IntPtr)buffers, (IntPtr)offsets, (IntPtr)strides); #if DEBUG } #endif @@ -7247,7 +7926,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[28], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -7274,7 +7953,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquation((OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[29], (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); #if DEBUG } #endif @@ -7301,7 +7980,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationi((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[30], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); #if DEBUG } #endif @@ -7329,7 +8008,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationi((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); + InteropHelper.Call(EntryPoints[30], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)mode); #if DEBUG } #endif @@ -7361,7 +8040,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparate((OpenTK.Graphics.OpenGL4.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[32], (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -7393,7 +8072,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[33], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -7426,7 +8105,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendEquationSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeAlpha); + InteropHelper.Call(EntryPoints[33], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeRGB, (OpenTK.Graphics.OpenGL4.BlendEquationMode)modeAlpha); #if DEBUG } #endif @@ -7458,7 +8137,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunc((OpenTK.Graphics.OpenGL4.BlendingFactorSrc)sfactor, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dfactor); + InteropHelper.Call(EntryPoints[35], (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)sfactor, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dfactor); #if DEBUG } #endif @@ -7490,7 +8169,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunci((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dst); + InteropHelper.Call(EntryPoints[36], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dst); #if DEBUG } #endif @@ -7523,7 +8202,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFunci((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dst); + InteropHelper.Call(EntryPoints[36], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)src, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dst); #if DEBUG } #endif @@ -7565,7 +8244,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparate((OpenTK.Graphics.OpenGL4.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dfactorAlpha); + InteropHelper.Call(EntryPoints[38], (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)sfactorRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dfactorRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)sfactorAlpha, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dfactorAlpha); #if DEBUG } #endif @@ -7607,7 +8286,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstAlpha); + InteropHelper.Call(EntryPoints[39], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstAlpha); #if DEBUG } #endif @@ -7650,7 +8329,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlendFuncSeparatei((UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstAlpha); + InteropHelper.Call(EntryPoints[39], (UInt32)buf, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstRGB, (OpenTK.Graphics.OpenGL4.BlendingFactorSrc)srcAlpha, (OpenTK.Graphics.OpenGL4.BlendingFactorDest)dstAlpha); #if DEBUG } #endif @@ -7687,7 +8366,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBlitFramebuffer((Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL4.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL4.BlitFramebufferFilter)filter); + InteropHelper.Call(EntryPoints[41], (Int32)srcX0, (Int32)srcY0, (Int32)srcX1, (Int32)srcY1, (Int32)dstX0, (Int32)dstY0, (Int32)dstX1, (Int32)dstY1, (OpenTK.Graphics.OpenGL4.ClearBufferMask)mask, (OpenTK.Graphics.OpenGL4.BlitFramebufferFilter)filter); #if DEBUG } #endif @@ -7724,7 +8403,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); #if DEBUG } #endif @@ -7765,7 +8444,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); } finally { @@ -7811,7 +8490,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); } finally { @@ -7857,7 +8536,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); } finally { @@ -7903,7 +8582,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); + InteropHelper.Call(EntryPoints[42], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferUsageHint)usage); data = (T2)data_ptr.Target; } finally @@ -7946,7 +8625,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); #if DEBUG } #endif @@ -7987,7 +8666,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); } finally { @@ -8033,7 +8712,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); } finally { @@ -8079,7 +8758,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); } finally { @@ -8125,7 +8804,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferStorage((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); + InteropHelper.Call(EntryPoints[43], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.OpenGL4.BufferStorageFlags)flags); data = (T2)data_ptr.Target; } finally @@ -8168,7 +8847,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -8209,7 +8888,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8255,7 +8934,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8301,7 +8980,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8347,7 +9026,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[44], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -8375,7 +9054,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCheckFramebufferStatus((OpenTK.Graphics.OpenGL4.FramebufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[45], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target); #if DEBUG } #endif @@ -8402,7 +9081,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClampColor((OpenTK.Graphics.OpenGL4.ClampColorTarget)target, (OpenTK.Graphics.OpenGL4.ClampColorMode)clamp); + InteropHelper.Call(EntryPoints[46], (OpenTK.Graphics.OpenGL4.ClampColorTarget)target, (OpenTK.Graphics.OpenGL4.ClampColorMode)clamp); #if DEBUG } #endif @@ -8424,7 +9103,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClear((OpenTK.Graphics.OpenGL4.ClearBufferMask)mask); + InteropHelper.Call(EntryPoints[47], (OpenTK.Graphics.OpenGL4.ClearBufferMask)mask); #if DEBUG } #endif @@ -8471,7 +9150,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data); #if DEBUG } #endif @@ -8522,7 +9201,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8578,7 +9257,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8634,7 +9313,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -8690,7 +9369,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[48], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -8738,7 +9417,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfi((OpenTK.Graphics.OpenGL4.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); + InteropHelper.Call(EntryPoints[49], (OpenTK.Graphics.OpenGL4.ClearBufferCombined)buffer, (Int32)drawbuffer, (Single)depth, (Int32)stencil); #if DEBUG } #endif @@ -8784,7 +9463,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glClearBufferfv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -8832,7 +9511,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glClearBufferfv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -8877,7 +9556,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferfv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (Single*)value); + InteropHelper.Call(EntryPoints[50], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -8923,7 +9602,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glClearBufferiv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -8971,7 +9650,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glClearBufferiv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -9016,7 +9695,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferiv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (Int32*)value); + InteropHelper.Call(EntryPoints[51], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -9068,7 +9747,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data); #if DEBUG } #endif @@ -9124,7 +9803,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9185,7 +9864,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9246,7 +9925,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9307,7 +9986,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[52], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (IntPtr)offset, (IntPtr)size, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -9360,7 +10039,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -9409,7 +10088,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glClearBufferuiv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value_ptr); } } #if DEBUG @@ -9454,7 +10133,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearBufferuiv((OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (UInt32*)value); + InteropHelper.Call(EntryPoints[53], (OpenTK.Graphics.OpenGL4.ClearBuffer)buffer, (Int32)drawbuffer, (IntPtr)value); #if DEBUG } #endif @@ -9476,7 +10155,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha); + InteropHelper.Call(EntryPoints[54], (Single)red, (Single)green, (Single)blue, (Single)alpha); #if DEBUG } #endif @@ -9498,7 +10177,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepth((Double)depth); + InteropHelper.Call(EntryPoints[55], (Double)depth); #if DEBUG } #endif @@ -9520,7 +10199,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearDepthf((Single)d); + InteropHelper.Call(EntryPoints[56], (Single)d); #if DEBUG } #endif @@ -9542,7 +10221,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearStencil((Int32)s); + InteropHelper.Call(EntryPoints[57], (Int32)s); #if DEBUG } #endif @@ -9584,7 +10263,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -9630,7 +10309,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9681,7 +10360,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9732,7 +10411,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9783,7 +10462,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -9832,7 +10511,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -9879,7 +10558,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9931,7 +10610,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -9983,7 +10662,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10035,7 +10714,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexImage((UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[58], (UInt32)texture, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T4)data_ptr.Target; } finally @@ -10113,7 +10792,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -10189,7 +10868,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10270,7 +10949,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10351,7 +11030,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10432,7 +11111,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -10511,7 +11190,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -10588,7 +11267,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10670,7 +11349,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10752,7 +11431,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -10834,7 +11513,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glClearTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[59], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -10872,7 +11551,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[60], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -10905,7 +11584,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glClientWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[60], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.ClientWaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -10932,7 +11611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha); + InteropHelper.Call(EntryPoints[61], (bool)red, (bool)green, (bool)blue, (bool)alpha); #if DEBUG } #endif @@ -10959,7 +11638,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaski((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + InteropHelper.Call(EntryPoints[62], (UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); #if DEBUG } #endif @@ -10987,7 +11666,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorMaski((UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); + InteropHelper.Call(EntryPoints[62], (UInt32)index, (bool)r, (bool)g, (bool)b, (bool)a); #if DEBUG } #endif @@ -11002,7 +11681,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[63], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -11018,7 +11697,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[63], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -11034,7 +11713,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[64], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -11050,7 +11729,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[64], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -11065,7 +11744,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[65], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -11081,7 +11760,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[65], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -11097,7 +11776,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[66], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -11113,7 +11792,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorP4uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[66], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -11160,7 +11839,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data); #if DEBUG } #endif @@ -11211,7 +11890,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -11267,7 +11946,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -11323,7 +12002,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -11379,7 +12058,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glColorSubTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[67], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)count, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T5)data_ptr.Target; } finally @@ -11432,7 +12111,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -11483,7 +12162,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -11539,7 +12218,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -11595,7 +12274,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -11651,7 +12330,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[68], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T5)table_ptr.Target; } finally @@ -11693,7 +12372,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -11731,7 +12410,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -11766,7 +12445,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableParameterfv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[69], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -11802,7 +12481,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -11840,7 +12519,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -11875,7 +12554,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glColorTableParameteriv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[70], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.ColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -11897,7 +12576,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[71], (UInt32)shader); #if DEBUG } #endif @@ -11920,7 +12599,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompileShader((UInt32)shader); + InteropHelper.Call(EntryPoints[71], (UInt32)shader); #if DEBUG } #endif @@ -11972,7 +12651,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -12028,7 +12707,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12089,7 +12768,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12150,7 +12829,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12211,7 +12890,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[73], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -12274,7 +12953,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -12335,7 +13014,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12401,7 +13080,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12467,7 +13146,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12533,7 +13212,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[74], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T7)data_ptr.Target; } finally @@ -12601,7 +13280,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -12667,7 +13346,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12738,7 +13417,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12809,7 +13488,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -12880,7 +13559,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[75], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -12938,7 +13617,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -12994,7 +13673,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13055,7 +13734,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13116,7 +13795,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13177,7 +13856,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[76], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T6)data_ptr.Target; } finally @@ -13245,7 +13924,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -13311,7 +13990,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13382,7 +14061,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13453,7 +14132,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13524,7 +14203,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[77], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T8)data_ptr.Target; } finally @@ -13597,7 +14276,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data); #if DEBUG } #endif @@ -13668,7 +14347,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13744,7 +14423,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13820,7 +14499,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -13896,7 +14575,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glCompressedTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[78], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T10)data_ptr.Target; } finally @@ -13949,7 +14628,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -14000,7 +14679,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14056,7 +14735,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14112,7 +14791,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14168,7 +14847,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter1D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[79], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T5)image_ptr.Target; } finally @@ -14226,7 +14905,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -14282,7 +14961,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14343,7 +15022,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14404,7 +15083,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -14465,7 +15144,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glConvolutionFilter2D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[80], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T6)image_ptr.Target; } finally @@ -14506,7 +15185,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterf((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Single)@params); + InteropHelper.Call(EntryPoints[81], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Single)@params); #if DEBUG } #endif @@ -14545,7 +15224,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[82], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14583,7 +15262,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameterfv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[82], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14618,7 +15297,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameteri((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Int32)@params); + InteropHelper.Call(EntryPoints[83], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Int32)@params); #if DEBUG } #endif @@ -14657,7 +15336,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -14695,7 +15374,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glConvolutionParameteriv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[84], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.ConvolutionParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -14737,7 +15416,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)readTarget, (OpenTK.Graphics.OpenGL4.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); + InteropHelper.Call(EntryPoints[85], (OpenTK.Graphics.OpenGL4.BufferTarget)readTarget, (OpenTK.Graphics.OpenGL4.BufferTarget)writeTarget, (IntPtr)readOffset, (IntPtr)writeOffset, (IntPtr)size); #if DEBUG } #endif @@ -14774,7 +15453,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyColorSubTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[86], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (Int32)start, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -14816,7 +15495,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[87], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -14853,7 +15532,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyConvolutionFilter1D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[88], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -14895,7 +15574,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyConvolutionFilter2D((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[89], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -14982,7 +15661,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyImageSubData((UInt32)srcName, (OpenTK.Graphics.OpenGL4.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL4.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); + InteropHelper.Call(EntryPoints[90], (UInt32)srcName, (OpenTK.Graphics.OpenGL4.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL4.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); #if DEBUG } #endif @@ -15070,7 +15749,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyImageSubData((UInt32)srcName, (OpenTK.Graphics.OpenGL4.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL4.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); + InteropHelper.Call(EntryPoints[90], (UInt32)srcName, (OpenTK.Graphics.OpenGL4.ImageTarget)srcTarget, (Int32)srcLevel, (Int32)srcX, (Int32)srcY, (Int32)srcZ, (UInt32)dstName, (OpenTK.Graphics.OpenGL4.ImageTarget)dstTarget, (Int32)dstLevel, (Int32)dstX, (Int32)dstY, (Int32)dstZ, (Int32)srcWidth, (Int32)srcHeight, (Int32)srcDepth); #if DEBUG } #endif @@ -15117,7 +15796,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); + InteropHelper.Call(EntryPoints[91], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)border); #if DEBUG } #endif @@ -15169,7 +15848,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); + InteropHelper.Call(EntryPoints[92], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border); #if DEBUG } #endif @@ -15211,7 +15890,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); + InteropHelper.Call(EntryPoints[93], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)x, (Int32)y, (Int32)width); #if DEBUG } #endif @@ -15263,7 +15942,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[94], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -15320,7 +15999,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCopyTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[95], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -15337,7 +16016,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateProgram(); + return InteropHelper.CallReturn(EntryPoints[96]); #if DEBUG } #endif @@ -15359,7 +16038,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShader((OpenTK.Graphics.OpenGL4.ShaderType)type); + return InteropHelper.CallReturn(EntryPoints[97], (OpenTK.Graphics.OpenGL4.ShaderType)type); #if DEBUG } #endif @@ -15391,7 +16070,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glCreateShaderProgramv((OpenTK.Graphics.OpenGL4.ShaderType)type, (Int32)count, (String[])strings); + return InteropHelper.CallReturn(EntryPoints[98], (OpenTK.Graphics.OpenGL4.ShaderType)type, (Int32)count, (String[])strings); #if DEBUG } #endif @@ -15413,7 +16092,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glCullFace((OpenTK.Graphics.OpenGL4.CullFaceMode)mode); + InteropHelper.Call(EntryPoints[100], (OpenTK.Graphics.OpenGL4.CullFaceMode)mode); #if DEBUG } #endif @@ -15440,7 +16119,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[101], (DebugProc)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -15471,7 +16150,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -15507,7 +16186,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -15543,7 +16222,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -15579,7 +16258,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallback((DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[101], (DebugProc)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -15636,7 +16315,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -15689,7 +16368,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -15739,7 +16418,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -15791,7 +16470,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -15845,7 +16524,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -15895,7 +16574,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControl((OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[104], (OpenTK.Graphics.OpenGL4.DebugSourceControl)source, (OpenTK.Graphics.OpenGL4.DebugTypeControl)type, (OpenTK.Graphics.OpenGL4.DebugSeverityControl)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -15942,7 +16621,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL4.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL4.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -15990,7 +16669,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsert((OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL4.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.DebugSeverity)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[107], (OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (OpenTK.Graphics.OpenGL4.DebugType)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.DebugSeverity)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -16021,7 +16700,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -16054,7 +16733,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* buffers_ptr = (UInt32*)&buffers; - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers_ptr); } #if DEBUG } @@ -16086,7 +16765,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -16119,7 +16798,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -16149,7 +16828,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -16181,7 +16860,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -16215,7 +16894,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -16245,7 +16924,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[110], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -16276,7 +16955,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -16309,7 +16988,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* framebuffers_ptr = (UInt32*)&framebuffers; - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers_ptr); } #if DEBUG } @@ -16341,7 +17020,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -16374,7 +17053,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -16404,7 +17083,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -16436,7 +17115,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -16470,7 +17149,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -16500,7 +17179,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[111], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -16522,7 +17201,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[113], (UInt32)program); #if DEBUG } #endif @@ -16545,7 +17224,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgram((UInt32)program); + InteropHelper.Call(EntryPoints[113], (UInt32)program); #if DEBUG } #endif @@ -16576,7 +17255,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -16609,7 +17288,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* pipelines_ptr = (UInt32*)&pipelines; - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines_ptr); } #if DEBUG } @@ -16641,7 +17320,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -16674,7 +17353,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -16704,7 +17383,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -16736,7 +17415,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -16770,7 +17449,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -16800,7 +17479,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[114], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -16831,7 +17510,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -16864,7 +17543,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -16896,7 +17575,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -16929,7 +17608,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -16959,7 +17638,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -16991,7 +17670,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -17025,7 +17704,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -17055,7 +17734,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[115], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -17086,7 +17765,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -17119,7 +17798,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* renderbuffers_ptr = (UInt32*)&renderbuffers; - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers_ptr); } #if DEBUG } @@ -17151,7 +17830,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -17184,7 +17863,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -17214,7 +17893,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -17246,7 +17925,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -17280,7 +17959,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -17310,7 +17989,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[116], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -17341,7 +18020,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 count = 1; UInt32* samplers_ptr = (UInt32*)&samplers; - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers_ptr); } #if DEBUG } @@ -17374,7 +18053,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 count = 1; UInt32* samplers_ptr = (UInt32*)&samplers; - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers_ptr); } #if DEBUG } @@ -17406,7 +18085,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* samplers_ptr = samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -17439,7 +18118,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -17469,7 +18148,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -17501,7 +18180,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -17535,7 +18214,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -17565,7 +18244,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[117], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -17587,7 +18266,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[118], (UInt32)shader); #if DEBUG } #endif @@ -17610,7 +18289,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteShader((UInt32)shader); + InteropHelper.Call(EntryPoints[118], (UInt32)shader); #if DEBUG } #endif @@ -17632,7 +18311,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteSync((IntPtr)sync); + InteropHelper.Call(EntryPoints[119], (IntPtr)sync); #if DEBUG } #endif @@ -17663,7 +18342,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -17696,7 +18375,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* textures_ptr = (UInt32*)&textures; - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures_ptr); } #if DEBUG } @@ -17728,7 +18407,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -17761,7 +18440,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -17791,7 +18470,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -17823,7 +18502,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -17857,7 +18536,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -17887,7 +18566,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[120], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -17918,7 +18597,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -17951,7 +18630,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* ids_ptr = (UInt32*)&ids; - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids_ptr); } #if DEBUG } @@ -17983,7 +18662,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -18016,7 +18695,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -18046,7 +18725,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -18078,7 +18757,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -18112,7 +18791,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -18142,7 +18821,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[121], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -18173,7 +18852,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -18206,7 +18885,7 @@ namespace OpenTK.Graphics.OpenGL4 { const Int32 n = 1; UInt32* arrays_ptr = (UInt32*)&arrays; - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays_ptr); } #if DEBUG } @@ -18238,7 +18917,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -18271,7 +18950,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -18301,7 +18980,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -18333,7 +19012,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -18367,7 +19046,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -18397,7 +19076,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDeleteVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[122], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -18419,7 +19098,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthFunc((OpenTK.Graphics.OpenGL4.DepthFunction)func); + InteropHelper.Call(EntryPoints[123], (OpenTK.Graphics.OpenGL4.DepthFunction)func); #if DEBUG } #endif @@ -18441,7 +19120,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthMask((bool)flag); + InteropHelper.Call(EntryPoints[124], (bool)flag); #if DEBUG } #endif @@ -18468,7 +19147,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRange((Double)near, (Double)far); + InteropHelper.Call(EntryPoints[125], (Double)near, (Double)far); #if DEBUG } #endif @@ -18504,7 +19183,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -18542,7 +19221,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -18577,7 +19256,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[126], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -18614,7 +19293,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -18653,7 +19332,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[126], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -18688,7 +19367,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeArrayv((UInt32)first, (Int32)count, (Double*)v); + InteropHelper.Call(EntryPoints[126], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -18715,7 +19394,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangef((Single)n, (Single)f); + InteropHelper.Call(EntryPoints[127], (Single)n, (Single)f); #if DEBUG } #endif @@ -18747,7 +19426,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeIndexed((UInt32)index, (Double)n, (Double)f); + InteropHelper.Call(EntryPoints[128], (UInt32)index, (Double)n, (Double)f); #if DEBUG } #endif @@ -18780,7 +19459,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDepthRangeIndexed((UInt32)index, (Double)n, (Double)f); + InteropHelper.Call(EntryPoints[128], (UInt32)index, (Double)n, (Double)f); #if DEBUG } #endif @@ -18807,7 +19486,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -18835,7 +19514,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDetachShader((UInt32)program, (UInt32)shader); + InteropHelper.Call(EntryPoints[129], (UInt32)program, (UInt32)shader); #if DEBUG } #endif @@ -18850,7 +19529,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisable((OpenTK.Graphics.OpenGL4.EnableCap)cap); + InteropHelper.Call(EntryPoints[130], (OpenTK.Graphics.OpenGL4.EnableCap)cap); #if DEBUG } #endif @@ -18865,7 +19544,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisablei((OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -18881,7 +19560,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisablei((OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[131], (OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -18896,7 +19575,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[132], (UInt32)index); #if DEBUG } #endif @@ -18912,7 +19591,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDisableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[132], (UInt32)index); #if DEBUG } #endif @@ -18944,7 +19623,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchCompute((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); + InteropHelper.Call(EntryPoints[133], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); #if DEBUG } #endif @@ -18977,7 +19656,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchCompute((UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); + InteropHelper.Call(EntryPoints[133], (UInt32)num_groups_x, (UInt32)num_groups_y, (UInt32)num_groups_z); #if DEBUG } #endif @@ -18999,7 +19678,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDispatchComputeIndirect((IntPtr)indirect); + InteropHelper.Call(EntryPoints[135], (IntPtr)indirect); #if DEBUG } #endif @@ -19031,7 +19710,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArrays((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count); + InteropHelper.Call(EntryPoints[136], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count); #if DEBUG } #endif @@ -19058,7 +19737,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect); #if DEBUG } #endif @@ -19089,7 +19768,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -19125,7 +19804,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -19161,7 +19840,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -19197,7 +19876,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[137], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject()); indirect = (T1)indirect_ptr.Target; } finally @@ -19240,7 +19919,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); + InteropHelper.Call(EntryPoints[138], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount); #if DEBUG } #endif @@ -19282,7 +19961,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[139], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -19325,7 +20004,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawArraysInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[139], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)first, (Int32)count, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -19347,7 +20026,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffer((OpenTK.Graphics.OpenGL4.DrawBufferMode)mode); + InteropHelper.Call(EntryPoints[140], (OpenTK.Graphics.OpenGL4.DrawBufferMode)mode); #if DEBUG } #endif @@ -19378,7 +20057,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs_ptr = bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL4.DrawBuffersEnum*)bufs_ptr); + InteropHelper.Call(EntryPoints[141], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -19411,7 +20090,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (OpenTK.Graphics.OpenGL4.DrawBuffersEnum* bufs_ptr = &bufs) { - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL4.DrawBuffersEnum*)bufs_ptr); + InteropHelper.Call(EntryPoints[141], (Int32)n, (IntPtr)bufs_ptr); } } #if DEBUG @@ -19441,7 +20120,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawBuffers((Int32)n, (OpenTK.Graphics.OpenGL4.DrawBuffersEnum*)bufs); + InteropHelper.Call(EntryPoints[141], (Int32)n, (IntPtr)bufs); #if DEBUG } #endif @@ -19478,7 +20157,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -19519,7 +20198,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -19565,7 +20244,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -19611,7 +20290,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -19657,7 +20336,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[142], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T3)indices_ptr.Target; } finally @@ -19705,7 +20384,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -19751,7 +20430,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -19802,7 +20481,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -19853,7 +20532,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -19904,7 +20583,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[143], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -19942,7 +20621,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect); #if DEBUG } #endif @@ -19978,7 +20657,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -20019,7 +20698,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -20060,7 +20739,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); } finally { @@ -20101,7 +20780,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glDrawElementsIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[144], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject()); indirect = (T2)indirect_ptr.Target; } finally @@ -20149,7 +20828,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount); #if DEBUG } #endif @@ -20195,7 +20874,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -20246,7 +20925,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -20297,7 +20976,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); } finally { @@ -20348,7 +21027,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); + InteropHelper.Call(EntryPoints[145], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount); indices = (T3)indices_ptr.Target; } finally @@ -20401,7 +21080,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -20449,7 +21128,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (UInt32)baseinstance); #if DEBUG } #endif @@ -20500,7 +21179,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -20557,7 +21236,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -20613,7 +21292,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -20670,7 +21349,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -20726,7 +21405,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -20783,7 +21462,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); } finally { @@ -20839,7 +21518,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -20897,7 +21576,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[146], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -20950,7 +21629,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex); #if DEBUG } #endif @@ -21001,7 +21680,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -21057,7 +21736,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -21113,7 +21792,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); } finally { @@ -21169,7 +21848,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); + InteropHelper.Call(EntryPoints[147], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -21227,7 +21906,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); #if DEBUG } #endif @@ -21280,7 +21959,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); #if DEBUG } #endif @@ -21336,7 +22015,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -21398,7 +22077,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -21459,7 +22138,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -21521,7 +22200,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -21582,7 +22261,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -21644,7 +22323,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); } finally { @@ -21705,7 +22384,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -21768,7 +22447,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawElementsInstancedBaseVertexBaseInstance((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); + InteropHelper.Call(EntryPoints[148], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)instancecount, (Int32)basevertex, (UInt32)baseinstance); indices = (T3)indices_ptr.Target; } finally @@ -21821,7 +22500,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -21872,7 +22551,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -21928,7 +22607,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -21984,7 +22663,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -22040,7 +22719,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -22094,7 +22773,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices); #if DEBUG } #endif @@ -22146,7 +22825,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -22203,7 +22882,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -22260,7 +22939,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); } finally { @@ -22317,7 +22996,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[149], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject()); indices = (T5)indices_ptr.Target; } finally @@ -22375,7 +23054,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -22431,7 +23110,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -22492,7 +23171,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -22553,7 +23232,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -22614,7 +23293,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T5)indices_ptr.Target; } finally @@ -22673,7 +23352,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)basevertex); #if DEBUG } #endif @@ -22730,7 +23409,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -22792,7 +23471,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -22854,7 +23533,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); } finally { @@ -22916,7 +23595,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glDrawRangeElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); + InteropHelper.Call(EntryPoints[150], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)start, (UInt32)end, (Int32)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)basevertex); indices = (T5)indices_ptr.Target; } finally @@ -22949,7 +23628,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedback((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -22977,7 +23656,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedback((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id); + InteropHelper.Call(EntryPoints[151], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id); #if DEBUG } #endif @@ -23009,7 +23688,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); #if DEBUG } #endif @@ -23042,7 +23721,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); + InteropHelper.Call(EntryPoints[152], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (Int32)instancecount); #if DEBUG } #endif @@ -23074,7 +23753,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStream((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream); #if DEBUG } #endif @@ -23107,7 +23786,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStream((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream); + InteropHelper.Call(EntryPoints[153], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream); #if DEBUG } #endif @@ -23144,7 +23823,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStreamInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); + InteropHelper.Call(EntryPoints[154], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); #if DEBUG } #endif @@ -23182,7 +23861,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDrawTransformFeedbackStreamInstanced((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); + InteropHelper.Call(EntryPoints[154], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (UInt32)id, (UInt32)stream, (Int32)instancecount); #if DEBUG } #endif @@ -23209,7 +23888,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnable((OpenTK.Graphics.OpenGL4.EnableCap)cap); + InteropHelper.Call(EntryPoints[155], (OpenTK.Graphics.OpenGL4.EnableCap)cap); #if DEBUG } #endif @@ -23236,7 +23915,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnablei((OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[156], (OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -23264,7 +23943,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnablei((OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); + InteropHelper.Call(EntryPoints[156], (OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -23286,7 +23965,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[157], (UInt32)index); #if DEBUG } #endif @@ -23309,7 +23988,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEnableVertexAttribArray((UInt32)index); + InteropHelper.Call(EntryPoints[157], (UInt32)index); #if DEBUG } #endif @@ -23324,7 +24003,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndConditionalRender(); + InteropHelper.Call(EntryPoints[158]); #if DEBUG } #endif @@ -23339,7 +24018,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQuery((OpenTK.Graphics.OpenGL4.QueryTarget)target); + InteropHelper.Call(EntryPoints[159], (OpenTK.Graphics.OpenGL4.QueryTarget)target); #if DEBUG } #endif @@ -23354,7 +24033,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryIndexed((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index); #if DEBUG } #endif @@ -23370,7 +24049,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndQueryIndexed((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index); + InteropHelper.Call(EntryPoints[160], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index); #if DEBUG } #endif @@ -23385,7 +24064,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glEndTransformFeedback(); + InteropHelper.Call(EntryPoints[161]); #if DEBUG } #endif @@ -23412,7 +24091,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glFenceSync((OpenTK.Graphics.OpenGL4.SyncCondition)condition, (OpenTK.Graphics.OpenGL4.WaitSyncFlags)flags); + return InteropHelper.CallReturn(EntryPoints[162], (OpenTK.Graphics.OpenGL4.SyncCondition)condition, (OpenTK.Graphics.OpenGL4.WaitSyncFlags)flags); #if DEBUG } #endif @@ -23429,7 +24108,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFinish(); + InteropHelper.Call(EntryPoints[163]); #if DEBUG } #endif @@ -23446,7 +24125,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlush(); + InteropHelper.Call(EntryPoints[164]); #if DEBUG } #endif @@ -23478,7 +24157,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFlushMappedBufferRange((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[165], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -23510,7 +24189,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferParameteri((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[166], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (Int32)param); #if DEBUG } #endif @@ -23547,7 +24226,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -23585,7 +24264,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferRenderbuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); + InteropHelper.Call(EntryPoints[167], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.RenderbufferTarget)renderbuffertarget, (UInt32)renderbuffer); #if DEBUG } #endif @@ -23627,7 +24306,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[168], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -23670,7 +24349,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[168], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -23685,7 +24364,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture1D((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -23701,7 +24380,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture1D((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[169], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -23716,7 +24395,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -23732,7 +24411,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture2D((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[170], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -23747,7 +24426,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3D((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -23763,7 +24442,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTexture3D((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); + InteropHelper.Call(EntryPoints[171], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.TextureTarget)textarget, (UInt32)texture, (Int32)level, (Int32)zoffset); #if DEBUG } #endif @@ -23805,7 +24484,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -23848,7 +24527,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFramebufferTextureLayer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); + InteropHelper.Call(EntryPoints[172], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (UInt32)texture, (Int32)level, (Int32)layer); #if DEBUG } #endif @@ -23870,7 +24549,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glFrontFace((OpenTK.Graphics.OpenGL4.FrontFaceDirection)mode); + InteropHelper.Call(EntryPoints[173], (OpenTK.Graphics.OpenGL4.FrontFaceDirection)mode); #if DEBUG } #endif @@ -23902,7 +24581,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* buffers_ptr = &retval; - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers_ptr); return retval; } #if DEBUG @@ -23935,7 +24614,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -23968,7 +24647,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -23999,7 +24678,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -24031,7 +24710,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* buffers_ptr = buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers_ptr); } } #if DEBUG @@ -24065,7 +24744,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* buffers_ptr = &buffers) { - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers_ptr); buffers = *buffers_ptr; } } @@ -24096,7 +24775,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenBuffers((Int32)n, (UInt32*)buffers); + InteropHelper.Call(EntryPoints[174], (Int32)n, (IntPtr)buffers); #if DEBUG } #endif @@ -24118,7 +24797,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenerateMipmap((OpenTK.Graphics.OpenGL4.GenerateMipmapTarget)target); + InteropHelper.Call(EntryPoints[175], (OpenTK.Graphics.OpenGL4.GenerateMipmapTarget)target); #if DEBUG } #endif @@ -24150,7 +24829,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* framebuffers_ptr = &retval; - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers_ptr); return retval; } #if DEBUG @@ -24183,7 +24862,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -24216,7 +24895,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -24247,7 +24926,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -24279,7 +24958,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* framebuffers_ptr = framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers_ptr); } } #if DEBUG @@ -24313,7 +24992,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* framebuffers_ptr = &framebuffers) { - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers_ptr); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers_ptr); framebuffers = *framebuffers_ptr; } } @@ -24344,7 +25023,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenFramebuffers((Int32)n, (UInt32*)framebuffers); + InteropHelper.Call(EntryPoints[176], (Int32)n, (IntPtr)framebuffers); #if DEBUG } #endif @@ -24376,7 +25055,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* pipelines_ptr = &retval; - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines_ptr); return retval; } #if DEBUG @@ -24409,7 +25088,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -24442,7 +25121,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -24473,7 +25152,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -24505,7 +25184,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* pipelines_ptr = pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines_ptr); } } #if DEBUG @@ -24539,7 +25218,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* pipelines_ptr = &pipelines) { - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines_ptr); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines_ptr); pipelines = *pipelines_ptr; } } @@ -24570,7 +25249,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenProgramPipelines((Int32)n, (UInt32*)pipelines); + InteropHelper.Call(EntryPoints[177], (Int32)n, (IntPtr)pipelines); #if DEBUG } #endif @@ -24602,7 +25281,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -24635,7 +25314,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -24668,7 +25347,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -24699,7 +25378,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -24731,7 +25410,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -24765,7 +25444,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenQueries((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -24796,7 +25475,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenQueries((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[178], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -24828,7 +25507,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* renderbuffers_ptr = &retval; - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers_ptr); return retval; } #if DEBUG @@ -24861,7 +25540,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -24894,7 +25573,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -24925,7 +25604,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -24957,7 +25636,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* renderbuffers_ptr = renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers_ptr); } } #if DEBUG @@ -24991,7 +25670,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* renderbuffers_ptr = &renderbuffers) { - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers_ptr); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers_ptr); renderbuffers = *renderbuffers_ptr; } } @@ -25022,7 +25701,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenRenderbuffers((Int32)n, (UInt32*)renderbuffers); + InteropHelper.Call(EntryPoints[179], (Int32)n, (IntPtr)renderbuffers); #if DEBUG } #endif @@ -25054,7 +25733,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 count = 1; Int32 retval; Int32* samplers_ptr = &retval; - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers_ptr); return retval; } #if DEBUG @@ -25087,7 +25766,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* samplers_ptr = samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -25120,7 +25799,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* samplers_ptr = &samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers_ptr); samplers = *samplers_ptr; } } @@ -25151,7 +25830,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -25183,7 +25862,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* samplers_ptr = samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers_ptr); } } #if DEBUG @@ -25217,7 +25896,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* samplers_ptr = &samplers) { - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers_ptr); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers_ptr); samplers = *samplers_ptr; } } @@ -25248,7 +25927,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenSamplers((Int32)count, (UInt32*)samplers); + InteropHelper.Call(EntryPoints[180], (Int32)count, (IntPtr)samplers); #if DEBUG } #endif @@ -25280,7 +25959,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* textures_ptr = &retval; - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures_ptr); return retval; } #if DEBUG @@ -25313,7 +25992,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -25346,7 +26025,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -25377,7 +26056,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -25409,7 +26088,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures_ptr); } } #if DEBUG @@ -25443,7 +26122,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* textures_ptr = &textures) { - Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures_ptr); textures = *textures_ptr; } } @@ -25474,7 +26153,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTextures((Int32)n, (UInt32*)textures); + InteropHelper.Call(EntryPoints[181], (Int32)n, (IntPtr)textures); #if DEBUG } #endif @@ -25506,7 +26185,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* ids_ptr = &retval; - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids_ptr); return retval; } #if DEBUG @@ -25539,7 +26218,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -25572,7 +26251,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -25603,7 +26282,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -25635,7 +26314,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids_ptr); } } #if DEBUG @@ -25669,7 +26348,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids_ptr); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids_ptr); ids = *ids_ptr; } } @@ -25700,7 +26379,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenTransformFeedbacks((Int32)n, (UInt32*)ids); + InteropHelper.Call(EntryPoints[182], (Int32)n, (IntPtr)ids); #if DEBUG } #endif @@ -25732,7 +26411,7 @@ namespace OpenTK.Graphics.OpenGL4 const Int32 n = 1; Int32 retval; Int32* arrays_ptr = &retval; - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays_ptr); return retval; } #if DEBUG @@ -25765,7 +26444,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* arrays_ptr = arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -25798,7 +26477,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* arrays_ptr = &arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -25829,7 +26508,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -25861,7 +26540,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* arrays_ptr = arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays_ptr); } } #if DEBUG @@ -25895,7 +26574,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* arrays_ptr = &arrays) { - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays_ptr); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays_ptr); arrays = *arrays_ptr; } } @@ -25926,7 +26605,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGenVertexArrays((Int32)n, (UInt32*)arrays); + InteropHelper.Call(EntryPoints[183], (Int32)n, (IntPtr)arrays); #if DEBUG } #endif @@ -25967,7 +26646,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[184], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -26010,7 +26689,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[184], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -26051,7 +26730,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[184], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -26093,7 +26772,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[184], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -26137,7 +26816,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[184], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -26178,7 +26857,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAtomicCounterBufferiv((UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[184], (UInt32)program, (UInt32)bufferIndex, (OpenTK.Graphics.OpenGL4.AtomicCounterBufferParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -26236,7 +26915,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL4.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL4.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[185], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -26294,7 +26973,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL4.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[185], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -26353,7 +27032,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL4.ActiveAttribType* type_ptr = &type) { - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL4.ActiveAttribType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[185], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -26411,7 +27090,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveAttrib((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL4.ActiveAttribType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[185], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -26462,7 +27141,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[186], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -26513,7 +27192,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[186], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -26565,7 +27244,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[186], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -26616,7 +27295,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[186], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -26662,7 +27341,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[187], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -26710,7 +27389,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = &values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[187], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -26756,7 +27435,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[187], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -26803,7 +27482,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[187], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -26852,7 +27531,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = &values) { - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[187], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -26898,7 +27577,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[187], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (OpenTK.Graphics.OpenGL4.ActiveSubroutineUniformParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -26949,7 +27628,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[188], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -27000,7 +27679,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[188], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -27052,7 +27731,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[188], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -27103,7 +27782,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveSubroutineUniformName((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[188], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (UInt32)index, (Int32)bufsize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -27161,7 +27840,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL4.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[189], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -27219,7 +27898,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL4.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[189], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -27278,7 +27957,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL4.ActiveUniformType* type_ptr = &type) { - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[189], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -27336,7 +28015,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniform((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL4.ActiveUniformType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[189], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -27377,7 +28056,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[190], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27420,7 +28099,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[190], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27461,7 +28140,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[190], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27503,7 +28182,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[190], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -27547,7 +28226,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[190], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -27588,7 +28267,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockiv((UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[190], (UInt32)program, (UInt32)uniformBlockIndex, (OpenTK.Graphics.OpenGL4.ActiveUniformBlockParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -27634,7 +28313,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[191], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformBlockName); length = *length_ptr; } } @@ -27680,7 +28359,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[191], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformBlockName); #if DEBUG } #endif @@ -27727,7 +28406,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[191], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformBlockName); length = *length_ptr; } } @@ -27773,7 +28452,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformBlockName((UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformBlockName); + InteropHelper.Call(EntryPoints[191], (UInt32)program, (UInt32)uniformBlockIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformBlockName); #if DEBUG } #endif @@ -27819,7 +28498,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformName); length = *length_ptr; } } @@ -27865,7 +28544,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformName); #if DEBUG } #endif @@ -27912,7 +28591,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)uniformName); length = *length_ptr; } } @@ -27958,7 +28637,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformName((UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (Int32*)length, (StringBuilder)uniformName); + InteropHelper.Call(EntryPoints[192], (UInt32)program, (UInt32)uniformIndex, (Int32)bufSize, (IntPtr)length, (StringBuilder)uniformName); #if DEBUG } #endif @@ -28005,7 +28684,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28054,7 +28733,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28100,7 +28779,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28148,7 +28827,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (UInt32* uniformIndices_ptr = uniformIndices) fixed (Int32* @params_ptr = @params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28198,7 +28877,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (UInt32* uniformIndices_ptr = &uniformIndices) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices_ptr, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28244,7 +28923,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetActiveUniformsiv((UInt32)program, (Int32)uniformCount, (UInt32*)uniformIndices, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[193], (UInt32)program, (Int32)uniformCount, (IntPtr)uniformIndices, (OpenTK.Graphics.OpenGL4.ActiveUniformParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28286,7 +28965,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[194], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -28331,7 +29010,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* count_ptr = &count) fixed (Int32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[194], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -28373,7 +29052,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[194], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -28416,7 +29095,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[194], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; } } @@ -28462,7 +29141,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* count_ptr = &count) fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count_ptr, (UInt32*)shaders_ptr); + InteropHelper.Call(EntryPoints[194], (UInt32)program, (Int32)maxCount, (IntPtr)count_ptr, (IntPtr)shaders_ptr); count = *count_ptr; shaders = *shaders_ptr; } @@ -28504,7 +29183,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetAttachedShaders((UInt32)program, (Int32)maxCount, (Int32*)count, (UInt32*)shaders); + InteropHelper.Call(EntryPoints[194], (UInt32)program, (Int32)maxCount, (IntPtr)count, (IntPtr)shaders); #if DEBUG } #endif @@ -28531,7 +29210,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[195], (UInt32)program, (String)name); #if DEBUG } #endif @@ -28559,7 +29238,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetAttribLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[195], (UInt32)program, (String)name); #if DEBUG } #endif @@ -28578,7 +29257,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -28599,7 +29278,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -28618,7 +29297,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -28638,7 +29317,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -28660,7 +29339,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -28679,7 +29358,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleani_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (bool*)data); + InteropHelper.Call(EntryPoints[196], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -28698,7 +29377,7 @@ namespace OpenTK.Graphics.OpenGL4 { bool retval; bool* data_ptr = &retval; - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL4.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[197], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -28719,7 +29398,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (bool* data_ptr = data) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL4.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[197], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -28740,7 +29419,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (bool* data_ptr = &data) { - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL4.GetPName)pname, (bool*)data_ptr); + InteropHelper.Call(EntryPoints[197], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -28759,7 +29438,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBooleanv((OpenTK.Graphics.OpenGL4.GetPName)pname, (bool*)data); + InteropHelper.Call(EntryPoints[197], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -28795,7 +29474,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[198], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28833,7 +29512,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[198], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28869,7 +29548,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteri64v((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[198], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -28905,7 +29584,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[199], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -28943,7 +29622,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[199], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -28979,7 +29658,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferParameteriv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[199], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29011,7 +29690,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[200], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29047,7 +29726,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -29088,7 +29767,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -29129,7 +29808,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -29170,7 +29849,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetBufferPointerv((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[200], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferPointer)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T2)@params_ptr.Target; } finally @@ -29213,7 +29892,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); + InteropHelper.Call(EntryPoints[201], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data); #if DEBUG } #endif @@ -29254,7 +29933,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[201], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -29300,7 +29979,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[201], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -29346,7 +30025,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[201], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); } finally { @@ -29392,7 +30071,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned); try { - Delegates.glGetBufferSubData((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[201], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject()); data = (T3)data_ptr.Target; } finally @@ -29435,7 +30114,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table); #if DEBUG } #endif @@ -29476,7 +30155,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -29522,7 +30201,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -29568,7 +30247,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); } finally { @@ -29614,7 +30293,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle table_ptr = GCHandle.Alloc(table, GCHandleType.Pinned); try { - Delegates.glGetColorTable((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[202], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)table_ptr.AddrOfPinnedObject()); table = (T3)table_ptr.Target; } finally @@ -29656,7 +30335,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[203], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29694,7 +30373,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[203], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29730,7 +30409,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameterfv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[203], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29766,7 +30445,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[204], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -29804,7 +30483,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[204], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -29840,7 +30519,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetColorTableParameteriv((OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[204], (OpenTK.Graphics.OpenGL4.ColorTableTarget)target, (OpenTK.Graphics.OpenGL4.GetColorTableParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -29872,7 +30551,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img); #if DEBUG } #endif @@ -29908,7 +30587,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -29949,7 +30628,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -29990,7 +30669,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); } finally { @@ -30031,7 +30710,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle img_ptr = GCHandle.Alloc(img, GCHandleType.Pinned); try { - Delegates.glGetCompressedTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[205], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (IntPtr)img_ptr.AddrOfPinnedObject()); img = (T2)img_ptr.Target; } finally @@ -30074,7 +30753,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image); #if DEBUG } #endif @@ -30115,7 +30794,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -30161,7 +30840,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -30207,7 +30886,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); } finally { @@ -30253,7 +30932,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle image_ptr = GCHandle.Alloc(image, GCHandleType.Pinned); try { - Delegates.glGetConvolutionFilter((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[206], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)image_ptr.AddrOfPinnedObject()); image = (T3)image_ptr.Target; } finally @@ -30295,7 +30974,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -30333,7 +31012,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -30369,7 +31048,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameterfv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[207], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -30405,7 +31084,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -30443,7 +31122,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -30479,7 +31158,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetConvolutionParameteriv((OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[208], (OpenTK.Graphics.OpenGL4.ConvolutionTarget)target, (OpenTK.Graphics.OpenGL4.GetConvolutionParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -30544,7 +31223,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL4.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[209], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -30611,7 +31290,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL4.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[209], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -30677,7 +31356,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.DebugSource*)sources, (OpenTK.Graphics.OpenGL4.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL4.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[209], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -30743,7 +31422,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.DebugSeverity* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL4.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[209], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -30811,7 +31490,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.DebugSeverity* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.DebugSource*)sources_ptr, (OpenTK.Graphics.OpenGL4.DebugType*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.DebugSeverity*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[209], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -30877,7 +31556,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLog((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.DebugSource*)sources, (OpenTK.Graphics.OpenGL4.DebugType*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL4.DebugSeverity*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[209], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -30896,7 +31575,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* data_ptr = data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[212], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -30917,7 +31596,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* data_ptr = &data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[212], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -30936,7 +31615,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Double*)data); + InteropHelper.Call(EntryPoints[212], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -30956,7 +31635,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* data_ptr = data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[212], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -30978,7 +31657,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* data_ptr = &data) { - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[212], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -30997,7 +31676,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublei_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Double*)data); + InteropHelper.Call(EntryPoints[212], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -31016,7 +31695,7 @@ namespace OpenTK.Graphics.OpenGL4 { Double retval; Double* data_ptr = &retval; - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL4.GetPName)pname, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -31037,7 +31716,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* data_ptr = data) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL4.GetPName)pname, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -31058,7 +31737,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* data_ptr = &data) { - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL4.GetPName)pname, (Double*)data_ptr); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -31077,7 +31756,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetDoublev((OpenTK.Graphics.OpenGL4.GetPName)pname, (Double*)data); + InteropHelper.Call(EntryPoints[213], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -31090,7 +31769,7 @@ namespace OpenTK.Graphics.OpenGL4 public static OpenTK.Graphics.OpenGL4.ErrorCode GetError() { - return Delegates.glGetError(); + return InteropHelper.CallReturn(EntryPoints[214]); } /// [requires: v4.1 and ARB_viewport_array|VERSION_4_1] @@ -31106,7 +31785,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* data_ptr = data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -31127,7 +31806,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -31146,7 +31825,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Single*)data); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -31166,7 +31845,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* data_ptr = data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -31188,7 +31867,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -31207,7 +31886,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloati_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Single*)data); + InteropHelper.Call(EntryPoints[215], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -31226,7 +31905,7 @@ namespace OpenTK.Graphics.OpenGL4 { Single retval; Single* data_ptr = &retval; - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[216], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -31247,7 +31926,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* data_ptr = data) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[216], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -31268,7 +31947,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* data_ptr = &data) { - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Single*)data_ptr); + InteropHelper.Call(EntryPoints[216], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -31287,7 +31966,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFloatv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Single*)data); + InteropHelper.Call(EntryPoints[216], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -31314,7 +31993,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataIndex((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[217], (UInt32)program, (String)name); #if DEBUG } #endif @@ -31342,7 +32021,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataIndex((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[217], (UInt32)program, (String)name); #if DEBUG } #endif @@ -31369,7 +32048,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[218], (UInt32)program, (String)name); #if DEBUG } #endif @@ -31397,7 +32076,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetFragDataLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[218], (UInt32)program, (String)name); #if DEBUG } #endif @@ -31438,7 +32117,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[219], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.FramebufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31481,7 +32160,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.FramebufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[219], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.FramebufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31522,7 +32201,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferAttachmentParameteriv((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.FramebufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[219], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferAttachment)attachment, (OpenTK.Graphics.OpenGL4.FramebufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -31558,7 +32237,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetFramebufferParameteriv((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31596,7 +32275,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetFramebufferParameteriv((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31632,7 +32311,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetFramebufferParameteriv((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[220], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (OpenTK.Graphics.OpenGL4.FramebufferDefaultParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -31674,7 +32353,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values); + InteropHelper.Call(EntryPoints[222], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values); #if DEBUG } #endif @@ -31720,7 +32399,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[222], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -31771,7 +32450,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[222], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -31822,7 +32501,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[222], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -31873,7 +32552,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[222], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T4)values_ptr.Target; } finally @@ -31915,7 +32594,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[223], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -31953,7 +32632,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[223], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -31989,7 +32668,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameterfv((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[223], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -32025,7 +32704,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -32063,7 +32742,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32099,7 +32778,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetHistogramParameteriv((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[224], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (OpenTK.Graphics.OpenGL4.GetHistogramParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -32118,7 +32797,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[226], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -32139,7 +32818,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[226], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -32158,7 +32837,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[226], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -32178,7 +32857,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[226], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -32200,7 +32879,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[226], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -32219,7 +32898,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64i_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int64*)data); + InteropHelper.Call(EntryPoints[226], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -32238,7 +32917,7 @@ namespace OpenTK.Graphics.OpenGL4 { Int64 retval; Int64* data_ptr = &retval; - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[227], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -32259,7 +32938,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* data_ptr = data) { - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[227], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -32280,7 +32959,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* data_ptr = &data) { - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int64*)data_ptr); + InteropHelper.Call(EntryPoints[227], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -32299,7 +32978,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInteger64v((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int64*)data); + InteropHelper.Call(EntryPoints[227], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -32318,7 +32997,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -32339,7 +33018,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -32358,7 +33037,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -32378,7 +33057,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); } } #if DEBUG @@ -32400,7 +33079,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data_ptr); data = *data_ptr; } } @@ -32419,7 +33098,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegeri_v((OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (Int32*)data); + InteropHelper.Call(EntryPoints[228], (OpenTK.Graphics.OpenGL4.GetIndexedPName)target, (UInt32)index, (IntPtr)data); #if DEBUG } #endif @@ -32438,7 +33117,7 @@ namespace OpenTK.Graphics.OpenGL4 { Int32 retval; Int32* data_ptr = &retval; - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); return retval; } #if DEBUG @@ -32459,7 +33138,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* data_ptr = data) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); } } #if DEBUG @@ -32480,7 +33159,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* data_ptr = &data) { - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int32*)data_ptr); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data_ptr); data = *data_ptr; } } @@ -32499,7 +33178,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetIntegerv((OpenTK.Graphics.OpenGL4.GetPName)pname, (Int32*)data); + InteropHelper.Call(EntryPoints[229], (OpenTK.Graphics.OpenGL4.GetPName)pname, (IntPtr)data); #if DEBUG } #endif @@ -32518,7 +33197,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetInternalformati64v((OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -32539,7 +33218,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetInternalformati64v((OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32558,7 +33237,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInternalformati64v((OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (Int64*)@params); + InteropHelper.Call(EntryPoints[230], (OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -32604,7 +33283,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); } } #if DEBUG @@ -32652,7 +33331,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetInternalformativ((OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -32698,7 +33377,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetInternalformativ((OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (Int32*)@params); + InteropHelper.Call(EntryPoints[231], (OpenTK.Graphics.OpenGL4.ImageTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (OpenTK.Graphics.OpenGL4.InternalFormatParameter)pname, (Int32)bufSize, (IntPtr)@params); #if DEBUG } #endif @@ -32740,7 +33419,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values); #if DEBUG } #endif @@ -32786,7 +33465,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -32837,7 +33516,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -32888,7 +33567,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); } finally { @@ -32939,7 +33618,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle values_ptr = GCHandle.Alloc(values, GCHandleType.Pinned); try { - Delegates.glGetMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[232], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (bool)reset, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)values_ptr.AddrOfPinnedObject()); values = (T4)values_ptr.Target; } finally @@ -32981,7 +33660,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[233], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33019,7 +33698,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[233], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33055,7 +33734,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxParameterfv((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[233], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33091,7 +33770,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[234], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -33129,7 +33808,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[234], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -33165,7 +33844,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMinmaxParameteriv((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[234], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.GetMinmaxParameterPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -33201,7 +33880,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* val_ptr = val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -33239,7 +33918,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* val_ptr = &val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); val = *val_ptr; } } @@ -33275,7 +33954,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -33312,7 +33991,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* val_ptr = val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); } } #if DEBUG @@ -33351,7 +34030,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* val_ptr = &val) { - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (Single*)val_ptr); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val_ptr); val = *val_ptr; } } @@ -33387,7 +34066,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetMultisamplefv((OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (Single*)val); + InteropHelper.Call(EntryPoints[235], (OpenTK.Graphics.OpenGL4.GetMultisamplePName)pname, (UInt32)index, (IntPtr)val); #if DEBUG } #endif @@ -33433,7 +34112,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -33481,7 +34160,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -33527,7 +34206,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -33574,7 +34253,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -33623,7 +34302,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -33669,7 +34348,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[256], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -33710,7 +34389,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -33753,7 +34432,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -33794,7 +34473,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabel((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -33839,7 +34518,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -33891,7 +34570,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -33941,7 +34620,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -33991,7 +34670,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -34043,7 +34722,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -34093,7 +34772,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -34143,7 +34822,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -34195,7 +34874,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -34245,7 +34924,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -34295,7 +34974,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -34348,7 +35027,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -34399,7 +35078,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[258], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -34432,7 +35111,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -34463,7 +35142,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -34499,7 +35178,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -34535,7 +35214,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -34571,7 +35250,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointerv((OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[260], (OpenTK.Graphics.OpenGL4.GetPointervPName)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -34624,7 +35303,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -34679,7 +35358,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -34739,7 +35418,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -34799,7 +35478,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -34859,7 +35538,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -34912,7 +35591,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -34959,7 +35638,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -35011,7 +35690,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -35063,7 +35742,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -35115,7 +35794,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -35169,7 +35848,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = &length) fixed (OpenTK.Graphics.OpenGL4.BinaryFormat* binaryFormat_ptr = &binaryFormat) { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -35225,7 +35904,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -35286,7 +35965,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -35347,7 +36026,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; } @@ -35408,7 +36087,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)binaryFormat_ptr, (IntPtr)binary_ptr.AddrOfPinnedObject()); length = *length_ptr; binaryFormat = *binaryFormat_ptr; binary = (T4)binary_ptr.Target; @@ -35461,7 +36140,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary); #if DEBUG } #endif @@ -35508,7 +36187,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -35560,7 +36239,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -35612,7 +36291,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); } finally { @@ -35664,7 +36343,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glGetProgramBinary((UInt32)program, (Int32)bufSize, (Int32*)length, (OpenTK.Graphics.OpenGL4.BinaryFormat*)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[262], (UInt32)program, (Int32)bufSize, (IntPtr)length, (IntPtr)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject()); binary = (T4)binary_ptr.Target; } finally @@ -35711,7 +36390,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[263], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -35752,7 +36431,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[263], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -35794,7 +36473,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[263], (UInt32)program, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -35835,7 +36514,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInfoLog((UInt32)program, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[263], (UInt32)program, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -35876,7 +36555,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[264], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -35919,7 +36598,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[264], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -35960,7 +36639,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[264], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -36002,7 +36681,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[264], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -36046,7 +36725,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[264], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -36087,7 +36766,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramInterfaceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[264], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (OpenTK.Graphics.OpenGL4.ProgramInterfaceParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -36123,7 +36802,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[265], (UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -36161,7 +36840,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[265], (UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -36197,7 +36876,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[265], (UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -36234,7 +36913,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[265], (UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -36273,7 +36952,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[265], (UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -36309,7 +36988,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramiv((UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[265], (UInt32)program, (OpenTK.Graphics.OpenGL4.GetProgramParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -36350,7 +37029,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[266], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -36391,7 +37070,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[266], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -36433,7 +37112,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[266], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -36474,7 +37153,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineInfoLog((UInt32)pipeline, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[266], (UInt32)pipeline, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -36510,7 +37189,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[267], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -36548,7 +37227,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[267], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -36584,7 +37263,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[267], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -36621,7 +37300,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[267], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -36660,7 +37339,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[267], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -36696,7 +37375,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramPipelineiv((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[267], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramPipelineParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -36728,7 +37407,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceIndex((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[268], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -36761,7 +37440,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceIndex((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[268], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -36794,7 +37473,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = length) fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL4.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[269], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -36829,7 +37508,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = &length) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL4.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[269], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); length = *length_ptr; @params = *@params_ptr; } @@ -36861,7 +37540,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL4.ProgramProperty*)props, (Int32)bufSize, (Int32*)length, (Int32*)@params); + InteropHelper.Call(EntryPoints[269], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props, (Int32)bufSize, (IntPtr)length, (IntPtr)@params); #if DEBUG } #endif @@ -36895,7 +37574,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = length) fixed (Int32* @params_ptr = @params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL4.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[269], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); } } #if DEBUG @@ -36931,7 +37610,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = &length) fixed (Int32* @params_ptr = &@params) { - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL4.ProgramProperty*)props_ptr, (Int32)bufSize, (Int32*)length_ptr, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[269], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props_ptr, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)@params_ptr); length = *length_ptr; @params = *@params_ptr; } @@ -36963,7 +37642,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (OpenTK.Graphics.OpenGL4.ProgramProperty*)props, (Int32)bufSize, (Int32*)length, (Int32*)@params); + InteropHelper.Call(EntryPoints[269], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)propCount, (IntPtr)props, (Int32)bufSize, (IntPtr)length, (IntPtr)@params); #if DEBUG } #endif @@ -36995,7 +37674,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocation((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[270], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -37028,7 +37707,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocation((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[270], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -37060,7 +37739,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocationIndex((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[271], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -37093,7 +37772,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetProgramResourceLocationIndex((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); + return InteropHelper.CallReturn(EntryPoints[271], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (String)name); #if DEBUG } #endif @@ -37144,7 +37823,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[272], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); } } #if DEBUG @@ -37197,7 +37876,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[272], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -37248,7 +37927,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[272], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -37300,7 +37979,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[272], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); } } #if DEBUG @@ -37354,7 +38033,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[272], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)name); length = *length_ptr; } } @@ -37405,7 +38084,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramResourceName((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (Int32*)length, (StringBuilder)name); + InteropHelper.Call(EntryPoints[272], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramInterface)programInterface, (UInt32)index, (Int32)bufSize, (IntPtr)length, (StringBuilder)name); #if DEBUG } #endif @@ -37446,7 +38125,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = &values) { - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[273], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -37487,7 +38166,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[273], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -37529,7 +38208,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* values_ptr = &values) { - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[273], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (IntPtr)values_ptr); values = *values_ptr; } } @@ -37570,7 +38249,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetProgramStageiv((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (Int32*)values); + InteropHelper.Call(EntryPoints[273], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ProgramStageParameter)pname, (IntPtr)values); #if DEBUG } #endif @@ -37611,7 +38290,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -37654,7 +38333,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37695,7 +38374,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -37737,7 +38416,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -37781,7 +38460,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37822,7 +38501,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryIndexediv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[274], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (UInt32)index, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -37858,7 +38537,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -37896,7 +38575,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -37932,7 +38611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryiv((OpenTK.Graphics.OpenGL4.QueryTarget)target, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[275], (OpenTK.Graphics.OpenGL4.QueryTarget)target, (OpenTK.Graphics.OpenGL4.GetQueryParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -37968,7 +38647,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[276], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38006,7 +38685,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[276], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38042,7 +38721,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[276], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38079,7 +38758,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = @params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[276], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38118,7 +38797,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int64* @params_ptr = &@params) { - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int64*)@params_ptr); + InteropHelper.Call(EntryPoints[276], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38154,7 +38833,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjecti64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int64*)@params); + InteropHelper.Call(EntryPoints[276], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38190,7 +38869,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[277], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38228,7 +38907,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[277], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38264,7 +38943,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[277], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38301,7 +38980,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[277], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38340,7 +39019,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[277], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38376,7 +39055,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[277], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38413,7 +39092,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* @params_ptr = @params) { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[278], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38452,7 +39131,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt64* @params_ptr = &@params) { - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (UInt64*)@params_ptr); + InteropHelper.Call(EntryPoints[278], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38488,7 +39167,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectui64v((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (UInt64*)@params); + InteropHelper.Call(EntryPoints[278], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38525,7 +39204,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[279], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38564,7 +39243,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[279], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38600,7 +39279,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetQueryObjectuiv((UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[279], (UInt32)id, (OpenTK.Graphics.OpenGL4.GetQueryObjectParam)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38636,7 +39315,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38674,7 +39353,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38710,7 +39389,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetRenderbufferParameteriv((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[280], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38746,7 +39425,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[281], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38784,7 +39463,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[281], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38820,7 +39499,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[281], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38857,7 +39536,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[281], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38896,7 +39575,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[281], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38932,7 +39611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[281], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -38951,7 +39630,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[282], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -38972,7 +39651,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[282], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -38991,7 +39670,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[282], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39011,7 +39690,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[282], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39033,7 +39712,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[282], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39052,7 +39731,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[282], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39072,7 +39751,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[283], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39094,7 +39773,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[283], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39113,7 +39792,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[283], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39149,7 +39828,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[284], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39187,7 +39866,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[284], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39223,7 +39902,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[284], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39260,7 +39939,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[284], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39299,7 +39978,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[284], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39335,7 +40014,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[284], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39382,7 +40061,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span); #if DEBUG } #endif @@ -39437,7 +40116,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -39499,7 +40178,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -39561,7 +40240,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); } finally { @@ -39623,7 +40302,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned); try { - Delegates.glGetSeparableFilter((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[285], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject()); row = (T3)row_ptr.Target; column = (T4)column_ptr.Target; span = (T5)span_ptr.Target; @@ -39674,7 +40353,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[286], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -39715,7 +40394,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[286], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -39757,7 +40436,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[286], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)infoLog); length = *length_ptr; } } @@ -39798,7 +40477,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderInfoLog((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)infoLog); + InteropHelper.Call(EntryPoints[286], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)infoLog); #if DEBUG } #endif @@ -39834,7 +40513,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[287], (UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39872,7 +40551,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[287], (UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -39908,7 +40587,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[287], (UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -39945,7 +40624,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[287], (UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -39984,7 +40663,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[287], (UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -40020,7 +40699,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderiv((UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[287], (UInt32)shader, (OpenTK.Graphics.OpenGL4.ShaderParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -40062,7 +40741,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* range_ptr = range) fixed (Int32* precision_ptr = precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); } } #if DEBUG @@ -40106,7 +40785,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* range_ptr = &range) fixed (Int32* precision_ptr = &precision) { - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ShaderPrecision)precisiontype, (Int32*)range_ptr, (Int32*)precision_ptr); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ShaderPrecision)precisiontype, (IntPtr)range_ptr, (IntPtr)precision_ptr); range = *range_ptr; precision = *precision_ptr; } @@ -40148,7 +40827,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderPrecisionFormat((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ShaderPrecision)precisiontype, (Int32*)range, (Int32*)precision); + InteropHelper.Call(EntryPoints[288], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (OpenTK.Graphics.OpenGL4.ShaderPrecision)precisiontype, (IntPtr)range, (IntPtr)precision); #if DEBUG } #endif @@ -40189,7 +40868,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[289], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -40230,7 +40909,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[289], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -40272,7 +40951,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)source); + InteropHelper.Call(EntryPoints[289], (UInt32)shader, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)source); length = *length_ptr; } } @@ -40313,7 +40992,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetShaderSource((UInt32)shader, (Int32)bufSize, (Int32*)length, (StringBuilder)source); + InteropHelper.Call(EntryPoints[289], (UInt32)shader, (Int32)bufSize, (IntPtr)length, (StringBuilder)source); #if DEBUG } #endif @@ -40340,7 +41019,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.OpenGL4.StringName)name)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[290], (OpenTK.Graphics.OpenGL4.StringName)name)); } #if DEBUG } #endif @@ -40367,7 +41046,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.OpenGL4.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[291], (OpenTK.Graphics.OpenGL4.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -40395,7 +41074,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - unsafe { return new string((sbyte*)Delegates.glGetStringi((OpenTK.Graphics.OpenGL4.StringNameIndexed)name, (UInt32)index)); } + unsafe { return new string((sbyte*)InteropHelper.CallReturn(EntryPoints[291], (OpenTK.Graphics.OpenGL4.StringNameIndexed)name, (UInt32)index)); } #if DEBUG } #endif @@ -40427,7 +41106,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineIndex((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[292], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -40460,7 +41139,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineIndex((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[292], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -40492,7 +41171,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineUniformLocation((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[293], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -40525,7 +41204,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetSubroutineUniformLocation((UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); + return InteropHelper.CallReturn(EntryPoints[293], (UInt32)program, (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (String)name); #if DEBUG } #endif @@ -40572,7 +41251,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL4.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[294], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; } } @@ -40622,7 +41301,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* length_ptr = &length) fixed (Int32* values_ptr = &values) { - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL4.SyncParameterName)pname, (Int32)bufSize, (Int32*)length_ptr, (Int32*)values_ptr); + InteropHelper.Call(EntryPoints[294], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)values_ptr); length = *length_ptr; values = *values_ptr; } @@ -40669,7 +41348,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetSynciv((IntPtr)sync, (OpenTK.Graphics.OpenGL4.SyncParameterName)pname, (Int32)bufSize, (Int32*)length, (Int32*)values); + InteropHelper.Call(EntryPoints[294], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.SyncParameterName)pname, (Int32)bufSize, (IntPtr)length, (IntPtr)values); #if DEBUG } #endif @@ -40711,7 +41390,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -40757,7 +41436,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -40808,7 +41487,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -40859,7 +41538,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -40910,7 +41589,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glGetTexImage((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[295], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T4)pixels_ptr.Target; } finally @@ -40957,7 +41636,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[296], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -41000,7 +41679,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[296], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41041,7 +41720,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexLevelParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[296], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -41082,7 +41761,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[297], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -41125,7 +41804,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[297], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41166,7 +41845,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexLevelParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[297], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -41202,7 +41881,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[298], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -41240,7 +41919,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[298], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41276,7 +41955,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[298], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -41295,7 +41974,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameterIiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[299], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -41316,7 +41995,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameterIiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[299], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41335,7 +42014,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterIiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[299], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -41355,7 +42034,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetTexParameterIuiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[300], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -41377,7 +42056,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetTexParameterIuiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[300], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41396,7 +42075,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameterIuiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[300], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -41432,7 +42111,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[301], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -41470,7 +42149,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[301], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41506,7 +42185,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTexParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[301], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.GetTextureParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -41564,7 +42243,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL4.TransformFeedbackType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL4.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -41622,7 +42301,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL4.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -41681,7 +42360,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* size_ptr = &size) fixed (OpenTK.Graphics.OpenGL4.TransformFeedbackType* type_ptr = &type) { - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length_ptr, (Int32*)size_ptr, (OpenTK.Graphics.OpenGL4.TransformFeedbackType*)type_ptr, (StringBuilder)name); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length_ptr, (IntPtr)size_ptr, (IntPtr)type_ptr, (StringBuilder)name); length = *length_ptr; size = *size_ptr; type = *type_ptr; @@ -41739,7 +42418,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetTransformFeedbackVarying((UInt32)program, (UInt32)index, (Int32)bufSize, (Int32*)length, (Int32*)size, (OpenTK.Graphics.OpenGL4.TransformFeedbackType*)type, (StringBuilder)name); + InteropHelper.Call(EntryPoints[304], (UInt32)program, (UInt32)index, (Int32)bufSize, (IntPtr)length, (IntPtr)size, (IntPtr)type, (StringBuilder)name); #if DEBUG } #endif @@ -41766,7 +42445,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBlockIndex((UInt32)program, (String)uniformBlockName); + return InteropHelper.CallReturn(EntryPoints[305], (UInt32)program, (String)uniformBlockName); #if DEBUG } #endif @@ -41794,7 +42473,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformBlockIndex((UInt32)program, (String)uniformBlockName); + return InteropHelper.CallReturn(EntryPoints[305], (UInt32)program, (String)uniformBlockName); #if DEBUG } #endif @@ -41830,7 +42509,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -41868,7 +42547,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -41904,7 +42583,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -41941,7 +42620,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -41980,7 +42659,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42016,7 +42695,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformdv((UInt32)program, (Int32)location, (Double*)@params); + InteropHelper.Call(EntryPoints[306], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42052,7 +42731,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -42090,7 +42769,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42126,7 +42805,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42163,7 +42842,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -42202,7 +42881,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42238,7 +42917,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformfv((UInt32)program, (Int32)location, (Single*)@params); + InteropHelper.Call(EntryPoints[307], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42279,7 +42958,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* uniformIndices_ptr = uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); } } #if DEBUG @@ -42322,7 +43001,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* uniformIndices_ptr = &uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); uniformIndices = *uniformIndices_ptr; } } @@ -42363,7 +43042,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices); #if DEBUG } #endif @@ -42405,7 +43084,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* uniformIndices_ptr = uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); } } #if DEBUG @@ -42449,7 +43128,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* uniformIndices_ptr = &uniformIndices) { - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices_ptr); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices_ptr); uniformIndices = *uniformIndices_ptr; } } @@ -42490,7 +43169,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformIndices((UInt32)program, (Int32)uniformCount, (String[])uniformNames, (UInt32*)uniformIndices); + InteropHelper.Call(EntryPoints[308], (UInt32)program, (Int32)uniformCount, (String[])uniformNames, (IntPtr)uniformIndices); #if DEBUG } #endif @@ -42526,7 +43205,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -42564,7 +43243,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42600,7 +43279,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42637,7 +43316,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -42676,7 +43355,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42712,7 +43391,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformiv((UInt32)program, (Int32)location, (Int32*)@params); + InteropHelper.Call(EntryPoints[309], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42739,7 +43418,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[310], (UInt32)program, (String)name); #if DEBUG } #endif @@ -42767,7 +43446,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetUniformLocation((UInt32)program, (String)name); + return InteropHelper.CallReturn(EntryPoints[310], (UInt32)program, (String)name); #if DEBUG } #endif @@ -42803,7 +43482,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[311], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42839,7 +43518,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[311], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42876,7 +43555,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[311], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -42912,7 +43591,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformSubroutineuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[311], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -42949,7 +43628,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = @params) { - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[312], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); } } #if DEBUG @@ -42988,7 +43667,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[312], (UInt32)program, (Int32)location, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43024,7 +43703,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetUniformuiv((UInt32)program, (Int32)location, (UInt32*)@params); + InteropHelper.Call(EntryPoints[312], (UInt32)program, (Int32)location, (IntPtr)@params); #if DEBUG } #endif @@ -43060,7 +43739,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43098,7 +43777,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43134,7 +43813,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[313], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43171,7 +43850,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43210,7 +43889,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[313], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43246,7 +43925,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[313], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43282,7 +43961,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43320,7 +43999,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43356,7 +44035,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[314], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43393,7 +44072,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43432,7 +44111,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = &@params) { - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[314], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43468,7 +44147,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribfv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[314], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43487,7 +44166,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[315], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43506,7 +44185,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[315], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43526,7 +44205,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[315], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43545,7 +44224,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[315], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43565,7 +44244,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[316], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43584,7 +44263,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribIuiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[316], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43620,7 +44299,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43658,7 +44337,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43694,7 +44373,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[317], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43731,7 +44410,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43770,7 +44449,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[317], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43806,7 +44485,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribiv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[317], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43825,7 +44504,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43846,7 +44525,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43865,7 +44544,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[318], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43885,7 +44564,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = @params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -43907,7 +44586,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* @params_ptr = &@params) { - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params_ptr); + InteropHelper.Call(EntryPoints[318], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params_ptr); @params = *@params_ptr; } } @@ -43926,7 +44605,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribLdv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (Double*)@params); + InteropHelper.Call(EntryPoints[318], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribParameter)pname, (IntPtr)@params); #if DEBUG } #endif @@ -43958,7 +44637,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -43994,7 +44673,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -44035,7 +44714,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -44076,7 +44755,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -44117,7 +44796,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -44156,7 +44835,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer); #if DEBUG } #endif @@ -44193,7 +44872,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -44235,7 +44914,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -44277,7 +44956,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -44319,7 +44998,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glGetVertexAttribPointerv((UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[320], (UInt32)index, (OpenTK.Graphics.OpenGL4.VertexAttribPointerParameter)pname, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T2)pointer_ptr.Target; } finally @@ -44352,7 +45031,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHint((OpenTK.Graphics.OpenGL4.HintTarget)target, (OpenTK.Graphics.OpenGL4.HintMode)mode); + InteropHelper.Call(EntryPoints[321], (OpenTK.Graphics.OpenGL4.HintTarget)target, (OpenTK.Graphics.OpenGL4.HintMode)mode); #if DEBUG } #endif @@ -44389,7 +45068,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (bool)sink); + InteropHelper.Call(EntryPoints[322], (OpenTK.Graphics.OpenGL4.HistogramTarget)target, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (bool)sink); #if DEBUG } #endif @@ -44411,7 +45090,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferData((UInt32)buffer); + InteropHelper.Call(EntryPoints[323], (UInt32)buffer); #if DEBUG } #endif @@ -44434,7 +45113,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferData((UInt32)buffer); + InteropHelper.Call(EntryPoints[323], (UInt32)buffer); #if DEBUG } #endif @@ -44466,7 +45145,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferSubData((UInt32)buffer, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[324], (UInt32)buffer, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -44499,7 +45178,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateBufferSubData((UInt32)buffer, (IntPtr)offset, (IntPtr)length); + InteropHelper.Call(EntryPoints[324], (UInt32)buffer, (IntPtr)offset, (IntPtr)length); #if DEBUG } #endif @@ -44535,7 +45214,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments_ptr = attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL4.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[325], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -44573,7 +45252,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments_ptr = &attachments) { - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL4.FramebufferAttachment*)attachments_ptr); + InteropHelper.Call(EntryPoints[325], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr); } } #if DEBUG @@ -44608,7 +45287,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL4.FramebufferAttachment*)attachments); + InteropHelper.Call(EntryPoints[325], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments); #if DEBUG } #endif @@ -44664,7 +45343,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments_ptr = attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL4.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[326], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -44722,7 +45401,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (OpenTK.Graphics.OpenGL4.FramebufferAttachment* attachments_ptr = &attachments) { - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL4.FramebufferAttachment*)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[326], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments_ptr, (Int32)x, (Int32)y, (Int32)width, (Int32)height); } } #if DEBUG @@ -44777,7 +45456,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateSubFramebuffer((OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (OpenTK.Graphics.OpenGL4.FramebufferAttachment*)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[326], (OpenTK.Graphics.OpenGL4.FramebufferTarget)target, (Int32)numAttachments, (IntPtr)attachments, (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -44804,7 +45483,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexImage((UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[327], (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -44832,7 +45511,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexImage((UInt32)texture, (Int32)level); + InteropHelper.Call(EntryPoints[327], (UInt32)texture, (Int32)level); #if DEBUG } #endif @@ -44889,7 +45568,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[328], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -44947,7 +45626,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glInvalidateTexSubImage((UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[328], (UInt32)texture, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -44969,7 +45648,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[329], (UInt32)buffer); #if DEBUG } #endif @@ -44992,7 +45671,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsBuffer((UInt32)buffer); + return InteropHelper.CallReturn(EntryPoints[329], (UInt32)buffer); #if DEBUG } #endif @@ -45019,7 +45698,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabled((OpenTK.Graphics.OpenGL4.EnableCap)cap); + return InteropHelper.CallReturn(EntryPoints[330], (OpenTK.Graphics.OpenGL4.EnableCap)cap); #if DEBUG } #endif @@ -45046,7 +45725,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledi((OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[331], (OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -45074,7 +45753,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsEnabledi((OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); + return InteropHelper.CallReturn(EntryPoints[331], (OpenTK.Graphics.OpenGL4.IndexedEnableCap)target, (UInt32)index); #if DEBUG } #endif @@ -45096,7 +45775,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[332], (UInt32)framebuffer); #if DEBUG } #endif @@ -45119,7 +45798,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsFramebuffer((UInt32)framebuffer); + return InteropHelper.CallReturn(EntryPoints[332], (UInt32)framebuffer); #if DEBUG } #endif @@ -45141,7 +45820,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[335], (UInt32)program); #if DEBUG } #endif @@ -45164,7 +45843,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgram((UInt32)program); + return InteropHelper.CallReturn(EntryPoints[335], (UInt32)program); #if DEBUG } #endif @@ -45186,7 +45865,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipeline((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[336], (UInt32)pipeline); #if DEBUG } #endif @@ -45209,7 +45888,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsProgramPipeline((UInt32)pipeline); + return InteropHelper.CallReturn(EntryPoints[336], (UInt32)pipeline); #if DEBUG } #endif @@ -45231,7 +45910,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQuery((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[337], (UInt32)id); #if DEBUG } #endif @@ -45254,7 +45933,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsQuery((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[337], (UInt32)id); #if DEBUG } #endif @@ -45276,7 +45955,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[338], (UInt32)renderbuffer); #if DEBUG } #endif @@ -45299,7 +45978,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsRenderbuffer((UInt32)renderbuffer); + return InteropHelper.CallReturn(EntryPoints[338], (UInt32)renderbuffer); #if DEBUG } #endif @@ -45321,7 +46000,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSampler((UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[339], (UInt32)sampler); #if DEBUG } #endif @@ -45344,7 +46023,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSampler((UInt32)sampler); + return InteropHelper.CallReturn(EntryPoints[339], (UInt32)sampler); #if DEBUG } #endif @@ -45366,7 +46045,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[340], (UInt32)shader); #if DEBUG } #endif @@ -45389,7 +46068,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsShader((UInt32)shader); + return InteropHelper.CallReturn(EntryPoints[340], (UInt32)shader); #if DEBUG } #endif @@ -45411,7 +46090,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsSync((IntPtr)sync); + return InteropHelper.CallReturn(EntryPoints[341], (IntPtr)sync); #if DEBUG } #endif @@ -45433,7 +46112,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[342], (UInt32)texture); #if DEBUG } #endif @@ -45456,7 +46135,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTexture((UInt32)texture); + return InteropHelper.CallReturn(EntryPoints[342], (UInt32)texture); #if DEBUG } #endif @@ -45478,7 +46157,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedback((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[344], (UInt32)id); #if DEBUG } #endif @@ -45501,7 +46180,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsTransformFeedback((UInt32)id); + return InteropHelper.CallReturn(EntryPoints[344], (UInt32)id); #if DEBUG } #endif @@ -45523,7 +46202,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArray((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[345], (UInt32)array); #if DEBUG } #endif @@ -45546,7 +46225,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glIsVertexArray((UInt32)array); + return InteropHelper.CallReturn(EntryPoints[345], (UInt32)array); #if DEBUG } #endif @@ -45568,7 +46247,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLineWidth((Single)width); + InteropHelper.Call(EntryPoints[346], (Single)width); #if DEBUG } #endif @@ -45590,7 +46269,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[347], (UInt32)program); #if DEBUG } #endif @@ -45613,7 +46292,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLinkProgram((UInt32)program); + InteropHelper.Call(EntryPoints[347], (UInt32)program); #if DEBUG } #endif @@ -45635,7 +46314,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glLogicOp((OpenTK.Graphics.OpenGL4.LogicOp)opcode); + InteropHelper.Call(EntryPoints[348], (OpenTK.Graphics.OpenGL4.LogicOp)opcode); #if DEBUG } #endif @@ -45662,7 +46341,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBuffer((OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferAccess)access); + return InteropHelper.CallReturn(EntryPoints[353], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (OpenTK.Graphics.OpenGL4.BufferAccess)access); #if DEBUG } #endif @@ -45699,7 +46378,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glMapBufferRange((OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL4.BufferAccessMask)access); + return InteropHelper.CallReturn(EntryPoints[354], (OpenTK.Graphics.OpenGL4.BufferTarget)target, (IntPtr)offset, (IntPtr)length, (OpenTK.Graphics.OpenGL4.BufferAccessMask)access); #if DEBUG } #endif @@ -45721,7 +46400,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMemoryBarrier((OpenTK.Graphics.OpenGL4.MemoryBarrierFlags)barriers); + InteropHelper.Call(EntryPoints[355], (OpenTK.Graphics.OpenGL4.MemoryBarrierFlags)barriers); #if DEBUG } #endif @@ -45753,7 +46432,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (bool)sink); + InteropHelper.Call(EntryPoints[356], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (bool)sink); #if DEBUG } #endif @@ -45775,7 +46454,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMinSampleShading((Single)value); + InteropHelper.Call(EntryPoints[357], (Single)value); #if DEBUG } #endif @@ -45817,7 +46496,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* first_ptr = first) fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)drawcount); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)drawcount); } } #if DEBUG @@ -45861,7 +46540,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* first_ptr = &first) fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)first_ptr, (Int32*)count_ptr, (Int32)drawcount); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)first_ptr, (IntPtr)count_ptr, (Int32)drawcount); } } #if DEBUG @@ -45901,7 +46580,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArrays((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)first, (Int32*)count, (Int32)drawcount); + InteropHelper.Call(EntryPoints[359], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)first, (IntPtr)count, (Int32)drawcount); #if DEBUG } #endif @@ -45938,7 +46617,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); #if DEBUG } #endif @@ -45979,7 +46658,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -46025,7 +46704,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -46071,7 +46750,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -46117,7 +46796,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawArraysIndirect((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[360], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); indirect = (T1)indirect_ptr.Target; } finally @@ -46169,7 +46848,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* count_ptr = count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); } } #if DEBUG @@ -46221,7 +46900,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46278,7 +46957,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46335,7 +47014,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46392,7 +47071,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -46446,7 +47125,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* count_ptr = &count) { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); } } #if DEBUG @@ -46498,7 +47177,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46555,7 +47234,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46612,7 +47291,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46669,7 +47348,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -46720,7 +47399,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount); #if DEBUG } #endif @@ -46767,7 +47446,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46819,7 +47498,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46871,7 +47550,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); } finally { @@ -46923,7 +47602,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElements((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); + InteropHelper.Call(EntryPoints[362], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount); indices = (T3)indices_ptr.Target; } finally @@ -46981,7 +47660,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* count_ptr = count) fixed (Int32* basevertex_ptr = basevertex) { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex_ptr); } } #if DEBUG @@ -47039,7 +47718,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -47102,7 +47781,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -47165,7 +47844,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -47228,7 +47907,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); indices = (T3)indices_ptr.Target; } finally @@ -47288,7 +47967,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (Int32* count_ptr = &count) fixed (Int32* basevertex_ptr = &basevertex) { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex_ptr); } } #if DEBUG @@ -47346,7 +48025,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -47409,7 +48088,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -47472,7 +48151,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); } finally { @@ -47535,7 +48214,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex_ptr); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count_ptr, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex_ptr); indices = (T3)indices_ptr.Target; } finally @@ -47591,7 +48270,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices, (Int32)drawcount, (IntPtr)basevertex); #if DEBUG } #endif @@ -47643,7 +48322,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -47700,7 +48379,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -47757,7 +48436,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); } finally { @@ -47814,7 +48493,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsBaseVertex((OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (Int32*)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32*)basevertex); + InteropHelper.Call(EntryPoints[363], (OpenTK.Graphics.OpenGL4.PrimitiveType)mode, (IntPtr)count, (OpenTK.Graphics.OpenGL4.DrawElementsType)type, (IntPtr)indices_ptr.AddrOfPinnedObject(), (Int32)drawcount, (IntPtr)basevertex); indices = (T3)indices_ptr.Target; } finally @@ -47862,7 +48541,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect, (Int32)drawcount, (Int32)stride); #if DEBUG } #endif @@ -47908,7 +48587,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -47959,7 +48638,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -48010,7 +48689,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); } finally { @@ -48061,7 +48740,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle indirect_ptr = GCHandle.Alloc(indirect, GCHandleType.Pinned); try { - Delegates.glMultiDrawElementsIndirect((OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); + InteropHelper.Call(EntryPoints[364], (OpenTK.Graphics.OpenGL4.All)mode, (OpenTK.Graphics.OpenGL4.All)type, (IntPtr)indirect_ptr.AddrOfPinnedObject(), (Int32)drawcount, (Int32)stride); indirect = (T2)indirect_ptr.Target; } finally @@ -48082,7 +48761,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[366], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48098,7 +48777,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[366], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48114,7 +48793,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[367], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48130,7 +48809,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP1uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[367], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48145,7 +48824,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[368], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48161,7 +48840,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[368], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48177,7 +48856,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48193,7 +48872,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP2uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[369], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48208,7 +48887,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[370], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48224,7 +48903,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[370], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48240,7 +48919,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48256,7 +48935,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP3uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[371], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48271,7 +48950,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48287,7 +48966,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4ui((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[372], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48303,7 +48982,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48319,7 +48998,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glMultiTexCoordP4uiv((OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[373], (OpenTK.Graphics.OpenGL4.TextureUnit)texture, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48334,7 +49013,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[375], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48350,7 +49029,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[375], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -48366,7 +49045,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[376], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48382,7 +49061,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glNormalP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[376], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -48419,7 +49098,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[377], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -48457,7 +49136,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabel((OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[377], (OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -48489,7 +49168,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabel((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[379], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -48525,7 +49204,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[379], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -48566,7 +49245,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[379], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -48607,7 +49286,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[379], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -48648,7 +49327,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabel((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[379], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -48690,7 +49369,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* values_ptr = values) { - Delegates.glPatchParameterfv((OpenTK.Graphics.OpenGL4.PatchParameterFloat)pname, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[381], (OpenTK.Graphics.OpenGL4.PatchParameterFloat)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -48728,7 +49407,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* values_ptr = &values) { - Delegates.glPatchParameterfv((OpenTK.Graphics.OpenGL4.PatchParameterFloat)pname, (Single*)values_ptr); + InteropHelper.Call(EntryPoints[381], (OpenTK.Graphics.OpenGL4.PatchParameterFloat)pname, (IntPtr)values_ptr); } } #if DEBUG @@ -48763,7 +49442,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPatchParameterfv((OpenTK.Graphics.OpenGL4.PatchParameterFloat)pname, (Single*)values); + InteropHelper.Call(EntryPoints[381], (OpenTK.Graphics.OpenGL4.PatchParameterFloat)pname, (IntPtr)values); #if DEBUG } #endif @@ -48795,7 +49474,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPatchParameteri((OpenTK.Graphics.OpenGL4.PatchParameterInt)pname, (Int32)value); + InteropHelper.Call(EntryPoints[382], (OpenTK.Graphics.OpenGL4.PatchParameterInt)pname, (Int32)value); #if DEBUG } #endif @@ -48812,7 +49491,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPauseTransformFeedback(); + InteropHelper.Call(EntryPoints[383]); #if DEBUG } #endif @@ -48839,7 +49518,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStoref((OpenTK.Graphics.OpenGL4.PixelStoreParameter)pname, (Single)param); + InteropHelper.Call(EntryPoints[384], (OpenTK.Graphics.OpenGL4.PixelStoreParameter)pname, (Single)param); #if DEBUG } #endif @@ -48866,7 +49545,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPixelStorei((OpenTK.Graphics.OpenGL4.PixelStoreParameter)pname, (Int32)param); + InteropHelper.Call(EntryPoints[385], (OpenTK.Graphics.OpenGL4.PixelStoreParameter)pname, (Int32)param); #if DEBUG } #endif @@ -48898,7 +49577,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterf((OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[386], (OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Single)param); #if DEBUG } #endif @@ -48934,7 +49613,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[387], (OpenTK.Graphics.OpenGL4.PointParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -48969,7 +49648,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameterfv((OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[387], (OpenTK.Graphics.OpenGL4.PointParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -49001,7 +49680,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameteri((OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[388], (OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -49037,7 +49716,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[389], (OpenTK.Graphics.OpenGL4.PointParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -49072,7 +49751,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointParameteriv((OpenTK.Graphics.OpenGL4.PointParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[389], (OpenTK.Graphics.OpenGL4.PointParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -49094,7 +49773,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPointSize((Single)size); + InteropHelper.Call(EntryPoints[390], (Single)size); #if DEBUG } #endif @@ -49121,7 +49800,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonMode((OpenTK.Graphics.OpenGL4.MaterialFace)face, (OpenTK.Graphics.OpenGL4.PolygonMode)mode); + InteropHelper.Call(EntryPoints[391], (OpenTK.Graphics.OpenGL4.MaterialFace)face, (OpenTK.Graphics.OpenGL4.PolygonMode)mode); #if DEBUG } #endif @@ -49148,7 +49827,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPolygonOffset((Single)factor, (Single)units); + InteropHelper.Call(EntryPoints[392], (Single)factor, (Single)units); #if DEBUG } #endif @@ -49165,7 +49844,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroup(); + InteropHelper.Call(EntryPoints[393]); #if DEBUG } #endif @@ -49187,7 +49866,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartIndex((UInt32)index); + InteropHelper.Call(EntryPoints[395], (UInt32)index); #if DEBUG } #endif @@ -49210,7 +49889,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPrimitiveRestartIndex((UInt32)index); + InteropHelper.Call(EntryPoints[395], (UInt32)index); #if DEBUG } #endif @@ -49247,7 +49926,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -49288,7 +49967,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -49334,7 +50013,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -49380,7 +50059,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -49426,7 +50105,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -49470,7 +50149,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -49512,7 +50191,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -49559,7 +50238,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -49606,7 +50285,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -49653,7 +50332,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glProgramBinary((UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[396], (UInt32)program, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryFormat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T2)binary_ptr.Target; } finally @@ -49691,7 +50370,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[397], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -49724,7 +50403,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramParameteri((UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramParameterName)pname, (Int32)value); + InteropHelper.Call(EntryPoints[397], (UInt32)program, (OpenTK.Graphics.OpenGL4.ProgramParameterName)pname, (Int32)value); #if DEBUG } #endif @@ -49774,7 +50453,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1d((UInt32)program, (Int32)location, (Double)v0); + InteropHelper.Call(EntryPoints[398], (UInt32)program, (Int32)location, (Double)v0); #if DEBUG } #endif @@ -49825,7 +50504,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1d((UInt32)program, (Int32)location, (Double)v0); + InteropHelper.Call(EntryPoints[398], (UInt32)program, (Int32)location, (Double)v0); #if DEBUG } #endif @@ -49879,7 +50558,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[399], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -49932,7 +50611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[399], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -49987,7 +50666,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[399], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -50040,7 +50719,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[399], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -50090,7 +50769,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1f((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[400], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -50141,7 +50820,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1f((UInt32)program, (Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[400], (UInt32)program, (Int32)location, (Single)v0); #if DEBUG } #endif @@ -50195,7 +50874,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[401], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -50248,7 +50927,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[401], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -50303,7 +50982,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[401], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -50356,7 +51035,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[401], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -50406,7 +51085,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[402], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -50457,7 +51136,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1i((UInt32)program, (Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[402], (UInt32)program, (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -50511,7 +51190,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[403], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -50564,7 +51243,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[403], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -50619,7 +51298,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[403], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -50672,7 +51351,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[403], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -50723,7 +51402,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1ui((UInt32)program, (Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[404], (UInt32)program, (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -50778,7 +51457,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform1uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[405], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -50831,7 +51510,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform1uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[405], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -50881,7 +51560,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2d((UInt32)program, (Int32)location, (Double)v0, (Double)v1); + InteropHelper.Call(EntryPoints[406], (UInt32)program, (Int32)location, (Double)v0, (Double)v1); #if DEBUG } #endif @@ -50932,7 +51611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2d((UInt32)program, (Int32)location, (Double)v0, (Double)v1); + InteropHelper.Call(EntryPoints[406], (UInt32)program, (Int32)location, (Double)v0, (Double)v1); #if DEBUG } #endif @@ -50986,7 +51665,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[407], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51042,7 +51721,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[407], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51095,7 +51774,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[407], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -51150,7 +51829,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[407], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51207,7 +51886,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[407], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51260,7 +51939,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[407], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -51310,7 +51989,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2f((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[408], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -51361,7 +52040,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2f((UInt32)program, (Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[408], (UInt32)program, (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -51415,7 +52094,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[409], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51471,7 +52150,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[409], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51524,7 +52203,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[409], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -51579,7 +52258,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[409], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51636,7 +52315,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[409], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51689,7 +52368,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[409], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -51739,7 +52418,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[410], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -51790,7 +52469,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[410], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -51844,7 +52523,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[411], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -51897,7 +52576,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[411], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -51952,7 +52631,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[411], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52005,7 +52684,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[411], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -52056,7 +52735,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2ui((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[412], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -52111,7 +52790,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform2uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[413], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52168,7 +52847,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform2uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[413], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52221,7 +52900,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform2uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[413], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -52271,7 +52950,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); + InteropHelper.Call(EntryPoints[414], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); #if DEBUG } #endif @@ -52322,7 +53001,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); + InteropHelper.Call(EntryPoints[414], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2); #if DEBUG } #endif @@ -52376,7 +53055,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[415], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52432,7 +53111,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[415], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52485,7 +53164,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[415], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -52540,7 +53219,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[415], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52597,7 +53276,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[415], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52650,7 +53329,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[415], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -52700,7 +53379,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[416], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -52751,7 +53430,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[416], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -52805,7 +53484,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[417], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52861,7 +53540,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[417], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -52914,7 +53593,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[417], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -52969,7 +53648,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[417], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53026,7 +53705,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[417], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53079,7 +53758,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[417], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -53129,7 +53808,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[418], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -53180,7 +53859,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[418], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -53234,7 +53913,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[419], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53290,7 +53969,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[419], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53343,7 +54022,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[419], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -53398,7 +54077,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[419], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53455,7 +54134,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[419], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53508,7 +54187,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[419], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -53559,7 +54238,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3ui((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[420], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -53614,7 +54293,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform3uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[421], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53671,7 +54350,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform3uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[421], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53724,7 +54403,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform3uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[421], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -53774,7 +54453,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); + InteropHelper.Call(EntryPoints[422], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); #if DEBUG } #endif @@ -53825,7 +54504,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4d((UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); + InteropHelper.Call(EntryPoints[422], (UInt32)program, (Int32)location, (Double)v0, (Double)v1, (Double)v2, (Double)v3); #if DEBUG } #endif @@ -53879,7 +54558,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[423], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53935,7 +54614,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[423], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -53988,7 +54667,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[423], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -54043,7 +54722,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[423], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54100,7 +54779,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[423], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54153,7 +54832,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4dv((UInt32)program, (Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[423], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -54203,7 +54882,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[424], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -54254,7 +54933,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4f((UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[424], (UInt32)program, (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -54308,7 +54987,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[425], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54364,7 +55043,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[425], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54417,7 +55096,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[425], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -54472,7 +55151,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[425], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54529,7 +55208,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[425], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54582,7 +55261,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4fv((UInt32)program, (Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[425], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -54632,7 +55311,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[426], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -54683,7 +55362,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4i((UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[426], (UInt32)program, (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -54737,7 +55416,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[427], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54793,7 +55472,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[427], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54846,7 +55525,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[427], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -54901,7 +55580,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[427], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -54958,7 +55637,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[427], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -55011,7 +55690,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4iv((UInt32)program, (Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[427], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -55062,7 +55741,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4ui((UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[428], (UInt32)program, (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -55117,7 +55796,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glProgramUniform4uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[429], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -55174,7 +55853,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glProgramUniform4uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[429], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -55227,7 +55906,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniform4uiv((UInt32)program, (Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[429], (UInt32)program, (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -55246,7 +55925,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55267,7 +55946,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55285,7 +55964,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[432], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55305,7 +55984,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55327,7 +56006,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[432], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55345,7 +56024,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[432], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55364,7 +56043,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[433], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55385,7 +56064,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[433], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55403,7 +56082,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[433], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55423,7 +56102,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[433], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55445,7 +56124,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[433], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55463,7 +56142,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[433], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55482,7 +56161,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[434], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55503,7 +56182,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[434], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55521,7 +56200,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[434], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55541,7 +56220,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[434], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55563,7 +56242,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[434], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55581,7 +56260,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[434], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55600,7 +56279,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[435], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55621,7 +56300,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[435], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55639,7 +56318,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[435], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55659,7 +56338,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[435], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55681,7 +56360,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[435], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55699,7 +56378,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[435], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55718,7 +56397,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[436], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55739,7 +56418,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[436], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55757,7 +56436,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[436], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55777,7 +56456,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[436], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55799,7 +56478,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[436], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55817,7 +56496,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[436], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55836,7 +56515,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[437], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55857,7 +56536,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[437], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55875,7 +56554,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[437], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55895,7 +56574,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[437], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55917,7 +56596,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[437], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55935,7 +56614,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix2x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[437], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -55954,7 +56633,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55975,7 +56654,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -55993,7 +56672,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[438], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56013,7 +56692,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56035,7 +56714,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[438], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56053,7 +56732,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[438], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56072,7 +56751,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[439], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56093,7 +56772,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[439], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56111,7 +56790,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[439], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56131,7 +56810,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[439], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56153,7 +56832,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[439], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56171,7 +56850,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[439], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56190,7 +56869,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[440], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56211,7 +56890,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[440], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56229,7 +56908,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[440], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56249,7 +56928,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[440], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56271,7 +56950,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[440], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56289,7 +56968,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[440], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56308,7 +56987,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[441], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56329,7 +57008,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[441], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56347,7 +57026,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[441], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56367,7 +57046,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[441], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56389,7 +57068,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[441], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56407,7 +57086,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[441], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56426,7 +57105,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[442], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56447,7 +57126,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[442], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56465,7 +57144,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[442], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56485,7 +57164,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[442], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56507,7 +57186,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[442], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56525,7 +57204,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[442], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56544,7 +57223,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[443], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56565,7 +57244,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[443], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56583,7 +57262,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[443], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56603,7 +57282,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[443], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56625,7 +57304,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[443], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56643,7 +57322,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix3x4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[443], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56662,7 +57341,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[444], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56683,7 +57362,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[444], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56701,7 +57380,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[444], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56721,7 +57400,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[444], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56743,7 +57422,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[444], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56761,7 +57440,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[444], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56780,7 +57459,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[445], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56801,7 +57480,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[445], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56819,7 +57498,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[445], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56839,7 +57518,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[445], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56861,7 +57540,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[445], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56879,7 +57558,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[445], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56898,7 +57577,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[446], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56919,7 +57598,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[446], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56937,7 +57616,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[446], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -56957,7 +57636,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[446], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56979,7 +57658,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[446], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -56997,7 +57676,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[446], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57016,7 +57695,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[447], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57037,7 +57716,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[447], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57055,7 +57734,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[447], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57075,7 +57754,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[447], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57097,7 +57776,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[447], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57115,7 +57794,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x2fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[447], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57134,7 +57813,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[448], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57155,7 +57834,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[448], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57173,7 +57852,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[448], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57193,7 +57872,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[448], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57215,7 +57894,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[448], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57233,7 +57912,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3dv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[448], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57252,7 +57931,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[449], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57273,7 +57952,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[449], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57291,7 +57970,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[449], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57311,7 +57990,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[449], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57333,7 +58012,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[449], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -57351,7 +58030,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProgramUniformMatrix4x3fv((UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[449], (UInt32)program, (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -57373,7 +58052,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glProvokingVertex((OpenTK.Graphics.OpenGL4.ProvokingVertexMode)mode); + InteropHelper.Call(EntryPoints[450], (OpenTK.Graphics.OpenGL4.ProvokingVertexMode)mode); #if DEBUG } #endif @@ -57410,7 +58089,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[451], (OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -57448,7 +58127,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroup((OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[451], (OpenTK.Graphics.OpenGL4.DebugSourceExternal)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -57475,7 +58154,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounter((UInt32)id, (OpenTK.Graphics.OpenGL4.QueryCounterTarget)target); + InteropHelper.Call(EntryPoints[453], (UInt32)id, (OpenTK.Graphics.OpenGL4.QueryCounterTarget)target); #if DEBUG } #endif @@ -57503,7 +58182,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glQueryCounter((UInt32)id, (OpenTK.Graphics.OpenGL4.QueryCounterTarget)target); + InteropHelper.Call(EntryPoints[453], (UInt32)id, (OpenTK.Graphics.OpenGL4.QueryCounterTarget)target); #if DEBUG } #endif @@ -57525,7 +58204,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadBuffer((OpenTK.Graphics.OpenGL4.ReadBufferMode)mode); + InteropHelper.Call(EntryPoints[454], (OpenTK.Graphics.OpenGL4.ReadBufferMode)mode); #if DEBUG } #endif @@ -57567,7 +58246,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[456], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -57613,7 +58292,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[456], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -57664,7 +58343,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[456], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -57715,7 +58394,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[456], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -57766,7 +58445,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[456], (Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -57789,7 +58468,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glReleaseShaderCompiler(); + InteropHelper.Call(EntryPoints[457]); #if DEBUG } #endif @@ -57826,7 +58505,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorage((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[458], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (OpenTK.Graphics.OpenGL4.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -57868,7 +58547,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glRenderbufferStorageMultisample((OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[459], (OpenTK.Graphics.OpenGL4.RenderbufferTarget)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.RenderbufferStorage)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -57890,7 +58569,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResetHistogram((OpenTK.Graphics.OpenGL4.HistogramTarget)target); + InteropHelper.Call(EntryPoints[460], (OpenTK.Graphics.OpenGL4.HistogramTarget)target); #if DEBUG } #endif @@ -57912,7 +58591,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResetMinmax((OpenTK.Graphics.OpenGL4.MinmaxTarget)target); + InteropHelper.Call(EntryPoints[461], (OpenTK.Graphics.OpenGL4.MinmaxTarget)target); #if DEBUG } #endif @@ -57929,7 +58608,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glResumeTransformFeedback(); + InteropHelper.Call(EntryPoints[462]); #if DEBUG } #endif @@ -57956,7 +58635,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleCoverage((Single)value, (bool)invert); + InteropHelper.Call(EntryPoints[463], (Single)value, (bool)invert); #if DEBUG } #endif @@ -57983,7 +58662,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaski((UInt32)index, (UInt32)mask); + InteropHelper.Call(EntryPoints[464], (UInt32)index, (UInt32)mask); #if DEBUG } #endif @@ -58011,7 +58690,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSampleMaski((UInt32)index, (UInt32)mask); + InteropHelper.Call(EntryPoints[464], (UInt32)index, (UInt32)mask); #if DEBUG } #endif @@ -58048,7 +58727,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[465], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -58086,7 +58765,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterf((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[465], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single)param); #if DEBUG } #endif @@ -58127,7 +58806,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[466], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58167,7 +58846,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[466], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58209,7 +58888,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* param_ptr = param) { - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)param_ptr); + InteropHelper.Call(EntryPoints[466], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58249,7 +58928,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterfv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Single*)param); + InteropHelper.Call(EntryPoints[466], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58286,7 +58965,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[467], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -58324,7 +59003,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteri((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[467], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -58343,7 +59022,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[468], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58364,7 +59043,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* param_ptr = ¶m) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[468], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58382,7 +59061,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[468], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58402,7 +59081,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[468], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58424,7 +59103,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* param_ptr = ¶m) { - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[468], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58442,7 +59121,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterIiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[468], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58462,7 +59141,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* param_ptr = param) { - Delegates.glSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[469], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58484,7 +59163,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* param_ptr = ¶m) { - Delegates.glSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (UInt32*)param_ptr); + InteropHelper.Call(EntryPoints[469], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58502,7 +59181,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameterIuiv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (UInt32*)param); + InteropHelper.Call(EntryPoints[469], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58543,7 +59222,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[470], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58583,7 +59262,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[470], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58625,7 +59304,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* param_ptr = param) { - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param_ptr); + InteropHelper.Call(EntryPoints[470], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param_ptr); } } #if DEBUG @@ -58665,7 +59344,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSamplerParameteriv((UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (Int32*)param); + InteropHelper.Call(EntryPoints[470], (UInt32)sampler, (OpenTK.Graphics.OpenGL4.SamplerParameterName)pname, (IntPtr)param); #if DEBUG } #endif @@ -58692,7 +59371,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[471], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -58728,7 +59407,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[472], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -58766,7 +59445,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[472], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -58801,7 +59480,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v); + InteropHelper.Call(EntryPoints[472], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -58838,7 +59517,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[472], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -58877,7 +59556,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[472], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -58912,7 +59591,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorArrayv((UInt32)first, (Int32)count, (Int32*)v); + InteropHelper.Call(EntryPoints[472], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -58949,7 +59628,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexed((UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[473], (UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -58987,7 +59666,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexed((UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[473], (UInt32)index, (Int32)left, (Int32)bottom, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -59028,7 +59707,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -59071,7 +59750,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -59111,7 +59790,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -59153,7 +59832,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -59197,7 +59876,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -59237,7 +59916,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glScissorIndexedv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[474], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -59252,7 +59931,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[475], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -59268,7 +59947,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); + InteropHelper.Call(EntryPoints[475], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)color); #if DEBUG } #endif @@ -59284,7 +59963,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[476], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -59300,7 +59979,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSecondaryColorP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)color); + InteropHelper.Call(EntryPoints[476], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)color); #if DEBUG } #endif @@ -59357,7 +60036,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row, (IntPtr)column); + InteropHelper.Call(EntryPoints[477], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row, (IntPtr)column); #if DEBUG } #endif @@ -59420,7 +60099,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[477], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -59489,7 +60168,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[477], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -59558,7 +60237,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[477], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); } finally { @@ -59627,7 +60306,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned); try { - Delegates.glSeparableFilter2D((OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[477], (OpenTK.Graphics.OpenGL4.SeparableTarget)target, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject()); row = (T6)row_ptr.Target; column = (T7)column_ptr.Target; } @@ -59681,7 +60360,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -59733,7 +60412,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -59790,7 +60469,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -59847,7 +60526,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -59904,7 +60583,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -59958,7 +60637,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -60010,7 +60689,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60067,7 +60746,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60124,7 +60803,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60181,7 +60860,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -60232,7 +60911,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -60279,7 +60958,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60331,7 +61010,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60383,7 +61062,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60435,7 +61114,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -60488,7 +61167,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* shaders_ptr = shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -60541,7 +61220,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60599,7 +61278,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60657,7 +61336,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60715,7 +61394,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -60770,7 +61449,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* shaders_ptr = &shaders) { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); } } #if DEBUG @@ -60823,7 +61502,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60881,7 +61560,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60939,7 +61618,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -60997,7 +61676,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders_ptr, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -61048,7 +61727,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary, (Int32)length); #if DEBUG } #endif @@ -61095,7 +61774,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -61147,7 +61826,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -61199,7 +61878,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); } finally { @@ -61251,7 +61930,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle binary_ptr = GCHandle.Alloc(binary, GCHandleType.Pinned); try { - Delegates.glShaderBinary((Int32)count, (UInt32*)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); + InteropHelper.Call(EntryPoints[478], (Int32)count, (IntPtr)shaders, (OpenTK.Graphics.OpenGL4.BinaryFormat)binaryformat, (IntPtr)binary_ptr.AddrOfPinnedObject(), (Int32)length); binary = (T3)binary_ptr.Target; } finally @@ -61298,7 +61977,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[479], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -61341,7 +62020,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[479], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -61381,7 +62060,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[479], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -61423,7 +62102,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[479], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -61467,7 +62146,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length_ptr); + InteropHelper.Call(EntryPoints[479], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length_ptr); } } #if DEBUG @@ -61507,7 +62186,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderSource((UInt32)shader, (Int32)count, (String[])@string, (Int32*)length); + InteropHelper.Call(EntryPoints[479], (UInt32)shader, (Int32)count, (String[])@string, (IntPtr)length); #if DEBUG } #endif @@ -61539,7 +62218,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderStorageBlockBinding((UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); + InteropHelper.Call(EntryPoints[480], (UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); #if DEBUG } #endif @@ -61572,7 +62251,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glShaderStorageBlockBinding((UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); + InteropHelper.Call(EntryPoints[480], (UInt32)program, (UInt32)storageBlockIndex, (UInt32)storageBlockBinding); #if DEBUG } #endif @@ -61604,7 +62283,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[481], (OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -61637,7 +62316,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFunc((OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[481], (OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -61674,7 +62353,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.OpenGL4.StencilFace)face, (OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[482], (OpenTK.Graphics.OpenGL4.StencilFace)face, (OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -61712,7 +62391,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilFuncSeparate((OpenTK.Graphics.OpenGL4.StencilFace)face, (OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); + InteropHelper.Call(EntryPoints[482], (OpenTK.Graphics.OpenGL4.StencilFace)face, (OpenTK.Graphics.OpenGL4.StencilFunction)func, (Int32)@ref, (UInt32)mask); #if DEBUG } #endif @@ -61734,7 +62413,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[483], (UInt32)mask); #if DEBUG } #endif @@ -61757,7 +62436,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMask((UInt32)mask); + InteropHelper.Call(EntryPoints[483], (UInt32)mask); #if DEBUG } #endif @@ -61784,7 +62463,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.OpenGL4.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[484], (OpenTK.Graphics.OpenGL4.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -61812,7 +62491,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilMaskSeparate((OpenTK.Graphics.OpenGL4.StencilFace)face, (UInt32)mask); + InteropHelper.Call(EntryPoints[484], (OpenTK.Graphics.OpenGL4.StencilFace)face, (UInt32)mask); #if DEBUG } #endif @@ -61844,7 +62523,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOp((OpenTK.Graphics.OpenGL4.StencilOp)fail, (OpenTK.Graphics.OpenGL4.StencilOp)zfail, (OpenTK.Graphics.OpenGL4.StencilOp)zpass); + InteropHelper.Call(EntryPoints[485], (OpenTK.Graphics.OpenGL4.StencilOp)fail, (OpenTK.Graphics.OpenGL4.StencilOp)zfail, (OpenTK.Graphics.OpenGL4.StencilOp)zpass); #if DEBUG } #endif @@ -61881,7 +62560,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glStencilOpSeparate((OpenTK.Graphics.OpenGL4.StencilFace)face, (OpenTK.Graphics.OpenGL4.StencilOp)sfail, (OpenTK.Graphics.OpenGL4.StencilOp)dpfail, (OpenTK.Graphics.OpenGL4.StencilOp)dppass); + InteropHelper.Call(EntryPoints[486], (OpenTK.Graphics.OpenGL4.StencilFace)face, (OpenTK.Graphics.OpenGL4.StencilOp)sfail, (OpenTK.Graphics.OpenGL4.StencilOp)dpfail, (OpenTK.Graphics.OpenGL4.StencilOp)dppass); #if DEBUG } #endif @@ -61913,7 +62592,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBuffer((OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[487], (OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -61946,7 +62625,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBuffer((OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer); + InteropHelper.Call(EntryPoints[487], (OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer); #if DEBUG } #endif @@ -61988,7 +62667,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferRange((OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[488], (OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -62031,7 +62710,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexBufferRange((OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); + InteropHelper.Call(EntryPoints[488], (OpenTK.Graphics.OpenGL4.TextureBufferTarget)target, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (UInt32)buffer, (IntPtr)offset, (IntPtr)size); #if DEBUG } #endif @@ -62046,7 +62725,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[489], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62062,7 +62741,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[489], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62078,7 +62757,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[490], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62094,7 +62773,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP1uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[490], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62109,7 +62788,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[491], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62125,7 +62804,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[491], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62141,7 +62820,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[492], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62157,7 +62836,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP2uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[492], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62172,7 +62851,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[493], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62188,7 +62867,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[493], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62204,7 +62883,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[494], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62220,7 +62899,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[494], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62235,7 +62914,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[495], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62251,7 +62930,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); + InteropHelper.Call(EntryPoints[495], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)coords); #if DEBUG } #endif @@ -62267,7 +62946,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[496], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62283,7 +62962,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexCoordP4uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)coords); + InteropHelper.Call(EntryPoints[496], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)coords); #if DEBUG } #endif @@ -62340,7 +63019,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[497], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -62401,7 +63080,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[497], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -62467,7 +63146,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[497], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -62533,7 +63212,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[497], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -62599,7 +63278,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[497], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T7)pixels_ptr.Target; } finally @@ -62667,7 +63346,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[498], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -62733,7 +63412,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[498], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -62804,7 +63483,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[498], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -62875,7 +63554,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[498], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -62946,7 +63625,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[498], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -62999,7 +63678,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage2DMultisample((OpenTK.Graphics.OpenGL4.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[499], (OpenTK.Graphics.OpenGL4.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -63066,7 +63745,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[500], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -63137,7 +63816,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[500], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -63213,7 +63892,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[500], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -63289,7 +63968,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[500], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -63365,7 +64044,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[500], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (Int32)border, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T9)pixels_ptr.Target; } finally @@ -63418,7 +64097,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexImage3DMultisample((OpenTK.Graphics.OpenGL4.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[501], (OpenTK.Graphics.OpenGL4.TextureTargetMultisample)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -63458,7 +64137,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterf((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Single)param); + InteropHelper.Call(EntryPoints[503], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Single)param); #if DEBUG } #endif @@ -63502,7 +64181,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* @params_ptr = @params) { - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Single*)@params_ptr); + InteropHelper.Call(EntryPoints[504], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -63545,7 +64224,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterfv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Single*)@params); + InteropHelper.Call(EntryPoints[504], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -63585,7 +64264,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteri((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32)param); + InteropHelper.Call(EntryPoints[505], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32)param); #if DEBUG } #endif @@ -63604,7 +64283,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameterIiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[506], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -63625,7 +64304,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = &@params) { - Delegates.glTexParameterIiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[506], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -63643,7 +64322,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterIiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[506], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -63663,7 +64342,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = @params) { - Delegates.glTexParameterIuiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[507], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -63685,7 +64364,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* @params_ptr = &@params) { - Delegates.glTexParameterIuiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (UInt32*)@params_ptr); + InteropHelper.Call(EntryPoints[507], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -63703,7 +64382,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameterIuiv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (UInt32*)@params); + InteropHelper.Call(EntryPoints[507], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -63747,7 +64426,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* @params_ptr = @params) { - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32*)@params_ptr); + InteropHelper.Call(EntryPoints[508], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params_ptr); } } #if DEBUG @@ -63790,7 +64469,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexParameteriv((OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (Int32*)@params); + InteropHelper.Call(EntryPoints[508], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (OpenTK.Graphics.OpenGL4.TextureParameterName)pname, (IntPtr)@params); #if DEBUG } #endif @@ -63827,7 +64506,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage1D((OpenTK.Graphics.OpenGL4.TextureTarget1d)target, (Int32)levels, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width); + InteropHelper.Call(EntryPoints[509], (OpenTK.Graphics.OpenGL4.TextureTarget1d)target, (Int32)levels, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width); #if DEBUG } #endif @@ -63869,7 +64548,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2D((OpenTK.Graphics.OpenGL4.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[510], (OpenTK.Graphics.OpenGL4.TextureTarget2d)target, (Int32)levels, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -63916,7 +64595,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage2DMultisample((OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[511], (OpenTK.Graphics.OpenGL4.TextureTargetMultisample2d)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -63963,7 +64642,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3D((OpenTK.Graphics.OpenGL4.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); + InteropHelper.Call(EntryPoints[512], (OpenTK.Graphics.OpenGL4.TextureTarget3d)target, (Int32)levels, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth); #if DEBUG } #endif @@ -64015,7 +64694,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexStorage3DMultisample((OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); + InteropHelper.Call(EntryPoints[513], (OpenTK.Graphics.OpenGL4.TextureTargetMultisample3d)target, (Int32)samples, (OpenTK.Graphics.OpenGL4.SizedInternalFormat)internalformat, (Int32)width, (Int32)height, (Int32)depth, (bool)fixedsamplelocations); #if DEBUG } #endif @@ -64067,7 +64746,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[514], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -64123,7 +64802,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[514], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64184,7 +64863,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[514], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64245,7 +64924,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[514], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64306,7 +64985,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage1D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[514], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)width, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T6)pixels_ptr.Target; } finally @@ -64374,7 +65053,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[515], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -64440,7 +65119,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[515], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64511,7 +65190,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[515], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64582,7 +65261,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[515], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64653,7 +65332,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage2D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[515], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T8)pixels_ptr.Target; } finally @@ -64731,7 +65410,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); + InteropHelper.Call(EntryPoints[516], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels); #if DEBUG } #endif @@ -64807,7 +65486,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[516], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64888,7 +65567,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[516], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -64969,7 +65648,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[516], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); } finally { @@ -65050,7 +65729,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned); try { - Delegates.glTexSubImage3D((OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[516], (OpenTK.Graphics.OpenGL4.TextureTarget)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)zoffset, (Int32)width, (Int32)height, (Int32)depth, (OpenTK.Graphics.OpenGL4.PixelFormat)format, (OpenTK.Graphics.OpenGL4.PixelType)type, (IntPtr)pixels_ptr.AddrOfPinnedObject()); pixels = (T10)pixels_ptr.Target; } finally @@ -65113,7 +65792,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureView((UInt32)texture, (OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); + InteropHelper.Call(EntryPoints[517], (UInt32)texture, (OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); #if DEBUG } #endif @@ -65171,7 +65850,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTextureView((UInt32)texture, (OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); + InteropHelper.Call(EntryPoints[517], (UInt32)texture, (OpenTK.Graphics.OpenGL4.TextureTarget)target, (UInt32)origtexture, (OpenTK.Graphics.OpenGL4.PixelInternalFormat)internalformat, (UInt32)minlevel, (UInt32)numlevels, (UInt32)minlayer, (UInt32)numlayers); #if DEBUG } #endif @@ -65208,7 +65887,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL4.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[518], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL4.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -65246,7 +65925,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glTransformFeedbackVaryings((UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL4.TransformFeedbackMode)bufferMode); + InteropHelper.Call(EntryPoints[518], (UInt32)program, (Int32)count, (String[])varyings, (OpenTK.Graphics.OpenGL4.TransformFeedbackMode)bufferMode); #if DEBUG } #endif @@ -65291,7 +65970,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1d((Int32)location, (Double)x); + InteropHelper.Call(EntryPoints[519], (Int32)location, (Double)x); #if DEBUG } #endif @@ -65340,7 +66019,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniform1dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[520], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65391,7 +66070,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniform1dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[520], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65439,7 +66118,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[520], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -65484,7 +66163,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1f((Int32)location, (Single)v0); + InteropHelper.Call(EntryPoints[521], (Int32)location, (Single)v0); #if DEBUG } #endif @@ -65533,7 +66212,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[522], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65584,7 +66263,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[522], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65632,7 +66311,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[522], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -65677,7 +66356,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1i((Int32)location, (Int32)v0); + InteropHelper.Call(EntryPoints[523], (Int32)location, (Int32)v0); #if DEBUG } #endif @@ -65726,7 +66405,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[524], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65777,7 +66456,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[524], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65825,7 +66504,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[524], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -65871,7 +66550,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1ui((Int32)location, (UInt32)v0); + InteropHelper.Call(EntryPoints[525], (Int32)location, (UInt32)v0); #if DEBUG } #endif @@ -65921,7 +66600,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[526], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -65973,7 +66652,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[526], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66021,7 +66700,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform1uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[526], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -66066,7 +66745,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2d((Int32)location, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[527], (Int32)location, (Double)x, (Double)y); #if DEBUG } #endif @@ -66115,7 +66794,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniform2dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[528], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66166,7 +66845,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniform2dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[528], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66214,7 +66893,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[528], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -66259,7 +66938,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2f((Int32)location, (Single)v0, (Single)v1); + InteropHelper.Call(EntryPoints[529], (Int32)location, (Single)v0, (Single)v1); #if DEBUG } #endif @@ -66308,7 +66987,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[530], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66359,7 +67038,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[530], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66407,7 +67086,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[530], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -66452,7 +67131,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2i((Int32)location, (Int32)v0, (Int32)v1); + InteropHelper.Call(EntryPoints[531], (Int32)location, (Int32)v0, (Int32)v1); #if DEBUG } #endif @@ -66501,7 +67180,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[532], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66549,7 +67228,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[532], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -66595,7 +67274,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2ui((Int32)location, (UInt32)v0, (UInt32)v1); + InteropHelper.Call(EntryPoints[533], (Int32)location, (UInt32)v0, (UInt32)v1); #if DEBUG } #endif @@ -66645,7 +67324,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[534], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66697,7 +67376,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[534], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66745,7 +67424,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform2uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[534], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -66790,7 +67469,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3d((Int32)location, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[535], (Int32)location, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -66839,7 +67518,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniform3dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[536], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66890,7 +67569,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniform3dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[536], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -66938,7 +67617,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[536], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -66983,7 +67662,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3f((Int32)location, (Single)v0, (Single)v1, (Single)v2); + InteropHelper.Call(EntryPoints[537], (Int32)location, (Single)v0, (Single)v1, (Single)v2); #if DEBUG } #endif @@ -67032,7 +67711,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[538], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67083,7 +67762,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[538], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67131,7 +67810,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[538], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -67176,7 +67855,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); + InteropHelper.Call(EntryPoints[539], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2); #if DEBUG } #endif @@ -67225,7 +67904,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[540], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67276,7 +67955,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[540], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67324,7 +68003,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[540], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -67370,7 +68049,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); + InteropHelper.Call(EntryPoints[541], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2); #if DEBUG } #endif @@ -67420,7 +68099,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[542], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67472,7 +68151,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[542], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67520,7 +68199,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform3uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[542], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -67565,7 +68244,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4d((Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[543], (Int32)location, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -67614,7 +68293,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniform4dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[544], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67665,7 +68344,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniform4dv((Int32)location, (Int32)count, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[544], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67713,7 +68392,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4dv((Int32)location, (Int32)count, (Double*)value); + InteropHelper.Call(EntryPoints[544], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -67758,7 +68437,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4f((Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); + InteropHelper.Call(EntryPoints[545], (Int32)location, (Single)v0, (Single)v1, (Single)v2, (Single)v3); #if DEBUG } #endif @@ -67807,7 +68486,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[546], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67858,7 +68537,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[546], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -67906,7 +68585,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4fv((Int32)location, (Int32)count, (Single*)value); + InteropHelper.Call(EntryPoints[546], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -67951,7 +68630,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4i((Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); + InteropHelper.Call(EntryPoints[547], (Int32)location, (Int32)v0, (Int32)v1, (Int32)v2, (Int32)v3); #if DEBUG } #endif @@ -68000,7 +68679,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[548], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -68051,7 +68730,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* value_ptr = &value) { - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value_ptr); + InteropHelper.Call(EntryPoints[548], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -68099,7 +68778,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4iv((Int32)location, (Int32)count, (Int32*)value); + InteropHelper.Call(EntryPoints[548], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -68145,7 +68824,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4ui((Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); + InteropHelper.Call(EntryPoints[549], (Int32)location, (UInt32)v0, (UInt32)v1, (UInt32)v2, (UInt32)v3); #if DEBUG } #endif @@ -68195,7 +68874,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = value) { - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[550], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -68247,7 +68926,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* value_ptr = &value) { - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value_ptr); + InteropHelper.Call(EntryPoints[550], (Int32)location, (Int32)count, (IntPtr)value_ptr); } } #if DEBUG @@ -68295,7 +68974,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniform4uiv((Int32)location, (Int32)count, (UInt32*)value); + InteropHelper.Call(EntryPoints[550], (Int32)location, (Int32)count, (IntPtr)value); #if DEBUG } #endif @@ -68327,7 +69006,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBlockBinding((UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); + InteropHelper.Call(EntryPoints[551], (UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); #if DEBUG } #endif @@ -68360,7 +69039,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformBlockBinding((UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); + InteropHelper.Call(EntryPoints[551], (UInt32)program, (UInt32)uniformBlockIndex, (UInt32)uniformBlockBinding); #if DEBUG } #endif @@ -68379,7 +69058,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[554], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68400,7 +69079,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[554], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68418,7 +69097,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[554], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68437,7 +69116,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[555], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68458,7 +69137,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[555], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68476,7 +69155,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[555], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68495,7 +69174,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix2x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[556], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68516,7 +69195,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix2x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[556], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68534,7 +69213,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[556], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68553,7 +69232,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[557], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68574,7 +69253,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[557], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68592,7 +69271,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[557], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68611,7 +69290,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix2x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[558], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68632,7 +69311,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix2x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[558], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68650,7 +69329,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[558], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68669,7 +69348,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[559], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68690,7 +69369,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[559], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68708,7 +69387,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix2x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[559], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68727,7 +69406,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[560], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68748,7 +69427,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[560], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68766,7 +69445,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[560], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68785,7 +69464,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[561], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68806,7 +69485,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[561], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68824,7 +69503,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[561], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68843,7 +69522,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix3x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[562], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68864,7 +69543,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix3x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[562], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68882,7 +69561,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[562], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68901,7 +69580,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[563], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68922,7 +69601,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[563], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68940,7 +69619,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[563], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -68959,7 +69638,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix3x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[564], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68980,7 +69659,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix3x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[564], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -68998,7 +69677,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[564], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69017,7 +69696,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[565], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69038,7 +69717,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[565], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69056,7 +69735,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix3x4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[565], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69075,7 +69754,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[566], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69096,7 +69775,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[566], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69114,7 +69793,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[566], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69133,7 +69812,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[567], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69154,7 +69833,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[567], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69172,7 +69851,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[567], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69191,7 +69870,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix4x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[568], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69212,7 +69891,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix4x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[568], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69230,7 +69909,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[568], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69249,7 +69928,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[569], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69270,7 +69949,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[569], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69288,7 +69967,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x2fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[569], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69307,7 +69986,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = value) { - Delegates.glUniformMatrix4x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[570], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69328,7 +70007,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* value_ptr = &value) { - Delegates.glUniformMatrix4x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value_ptr); + InteropHelper.Call(EntryPoints[570], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69346,7 +70025,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3dv((Int32)location, (Int32)count, (bool)transpose, (Double*)value); + InteropHelper.Call(EntryPoints[570], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69365,7 +70044,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = value) { - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[571], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69386,7 +70065,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* value_ptr = &value) { - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value_ptr); + InteropHelper.Call(EntryPoints[571], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value_ptr); } } #if DEBUG @@ -69404,7 +70083,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformMatrix4x3fv((Int32)location, (Int32)count, (bool)transpose, (Single*)value); + InteropHelper.Call(EntryPoints[571], (Int32)location, (Int32)count, (bool)transpose, (IntPtr)value); #if DEBUG } #endif @@ -69440,7 +70119,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* indices_ptr = indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -69478,7 +70157,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* indices_ptr = &indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -69513,7 +70192,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (UInt32*)indices); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (IntPtr)indices); #if DEBUG } #endif @@ -69550,7 +70229,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* indices_ptr = indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -69589,7 +70268,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* indices_ptr = &indices) { - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (UInt32*)indices_ptr); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (IntPtr)indices_ptr); } } #if DEBUG @@ -69624,7 +70303,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUniformSubroutinesuiv((OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (UInt32*)indices); + InteropHelper.Call(EntryPoints[572], (OpenTK.Graphics.OpenGL4.ShaderType)shadertype, (Int32)count, (IntPtr)indices); #if DEBUG } #endif @@ -69639,7 +70318,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glUnmapBuffer((OpenTK.Graphics.OpenGL4.BufferTarget)target); + return InteropHelper.CallReturn(EntryPoints[573], (OpenTK.Graphics.OpenGL4.BufferTarget)target); #if DEBUG } #endif @@ -69661,7 +70340,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[574], (UInt32)program); #if DEBUG } #endif @@ -69684,7 +70363,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgram((UInt32)program); + InteropHelper.Call(EntryPoints[574], (UInt32)program); #if DEBUG } #endif @@ -69716,7 +70395,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStages((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramStageMask)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[575], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramStageMask)stages, (UInt32)program); #if DEBUG } #endif @@ -69749,7 +70428,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glUseProgramStages((UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramStageMask)stages, (UInt32)program); + InteropHelper.Call(EntryPoints[575], (UInt32)pipeline, (OpenTK.Graphics.OpenGL4.ProgramStageMask)stages, (UInt32)program); #if DEBUG } #endif @@ -69771,7 +70450,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[576], (UInt32)program); #if DEBUG } #endif @@ -69794,7 +70473,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgram((UInt32)program); + InteropHelper.Call(EntryPoints[576], (UInt32)program); #if DEBUG } #endif @@ -69816,7 +70495,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[577], (UInt32)pipeline); #if DEBUG } #endif @@ -69839,7 +70518,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glValidateProgramPipeline((UInt32)pipeline); + InteropHelper.Call(EntryPoints[577], (UInt32)pipeline); #if DEBUG } #endif @@ -69886,7 +70565,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[578], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -69934,7 +70613,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[578], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -69982,7 +70661,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[579], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70030,7 +70709,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[579], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70077,7 +70756,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[580], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -70125,7 +70804,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1f((UInt32)index, (Single)x); + InteropHelper.Call(EntryPoints[580], (UInt32)index, (Single)x); #if DEBUG } #endif @@ -70173,7 +70852,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[581], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70221,7 +70900,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[581], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70268,7 +70947,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1s((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[582], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -70316,7 +70995,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1s((UInt32)index, (Int16)x); + InteropHelper.Call(EntryPoints[582], (UInt32)index, (Int16)x); #if DEBUG } #endif @@ -70364,7 +71043,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[583], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70412,7 +71091,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib1sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[583], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70459,7 +71138,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[584], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -70507,7 +71186,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[584], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -70558,7 +71237,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[585], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -70611,7 +71290,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[585], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -70661,7 +71340,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[585], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70713,7 +71392,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[585], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -70767,7 +71446,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[585], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -70817,7 +71496,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[585], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -70864,7 +71543,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[586], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -70912,7 +71591,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2f((UInt32)index, (Single)x, (Single)y); + InteropHelper.Call(EntryPoints[586], (UInt32)index, (Single)x, (Single)y); #if DEBUG } #endif @@ -70963,7 +71642,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[587], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71016,7 +71695,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[587], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71066,7 +71745,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[587], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -71118,7 +71797,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[587], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71172,7 +71851,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[587], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71222,7 +71901,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[587], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -71269,7 +71948,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[588], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -71317,7 +71996,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2s((UInt32)index, (Int16)x, (Int16)y); + InteropHelper.Call(EntryPoints[588], (UInt32)index, (Int16)x, (Int16)y); #if DEBUG } #endif @@ -71368,7 +72047,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[589], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71421,7 +72100,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[589], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71471,7 +72150,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[589], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -71523,7 +72202,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[589], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71577,7 +72256,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[589], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71627,7 +72306,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib2sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[589], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -71674,7 +72353,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[590], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -71722,7 +72401,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[590], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -71773,7 +72452,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[591], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71826,7 +72505,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[591], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71876,7 +72555,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[591], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -71928,7 +72607,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[591], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -71982,7 +72661,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[591], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72032,7 +72711,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[591], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -72079,7 +72758,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[592], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -72127,7 +72806,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3f((UInt32)index, (Single)x, (Single)y, (Single)z); + InteropHelper.Call(EntryPoints[592], (UInt32)index, (Single)x, (Single)y, (Single)z); #if DEBUG } #endif @@ -72178,7 +72857,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[593], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72231,7 +72910,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[593], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72281,7 +72960,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[593], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -72333,7 +73012,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[593], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72387,7 +73066,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[593], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72437,7 +73116,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[593], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -72484,7 +73163,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[594], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -72532,7 +73211,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3s((UInt32)index, (Int16)x, (Int16)y, (Int16)z); + InteropHelper.Call(EntryPoints[594], (UInt32)index, (Int16)x, (Int16)y, (Int16)z); #if DEBUG } #endif @@ -72583,7 +73262,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[595], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72636,7 +73315,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[595], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72686,7 +73365,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[595], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -72738,7 +73417,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[595], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72792,7 +73471,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[595], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72842,7 +73521,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib3sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[595], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -72894,7 +73573,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[596], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72948,7 +73627,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[596], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -72998,7 +73677,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4bv((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[596], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -73045,7 +73724,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[597], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -73093,7 +73772,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[597], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -73144,7 +73823,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[598], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73197,7 +73876,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[598], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73247,7 +73926,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[598], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -73299,7 +73978,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[598], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73353,7 +74032,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[598], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73403,7 +74082,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[598], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -73450,7 +74129,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[599], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -73498,7 +74177,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4f((UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); + InteropHelper.Call(EntryPoints[599], (UInt32)index, (Single)x, (Single)y, (Single)z, (Single)w); #if DEBUG } #endif @@ -73549,7 +74228,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[600], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73602,7 +74281,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[600], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73652,7 +74331,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[600], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -73704,7 +74383,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[600], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73758,7 +74437,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[600], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73808,7 +74487,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4fv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[600], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -73859,7 +74538,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[601], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73912,7 +74591,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[601], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -73962,7 +74641,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[601], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74014,7 +74693,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[601], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74068,7 +74747,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[601], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74118,7 +74797,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[601], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74138,7 +74817,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[602], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74160,7 +74839,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[602], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74178,7 +74857,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nbv((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[602], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74197,7 +74876,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[603], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74218,7 +74897,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[603], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74236,7 +74915,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[603], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74256,7 +74935,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[603], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74278,7 +74957,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[603], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74296,7 +74975,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Niv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[603], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74315,7 +74994,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[604], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74336,7 +75015,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[604], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74354,7 +75033,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[604], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74374,7 +75053,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[604], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74396,7 +75075,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[604], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74414,7 +75093,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nsv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[604], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74429,7 +75108,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[605], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -74445,7 +75124,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nub((UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); + InteropHelper.Call(EntryPoints[605], (UInt32)index, (Byte)x, (Byte)y, (Byte)z, (Byte)w); #if DEBUG } #endif @@ -74464,7 +75143,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[606], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74485,7 +75164,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[606], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74503,7 +75182,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[606], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74523,7 +75202,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[606], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74545,7 +75224,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[606], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74563,7 +75242,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[606], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74583,7 +75262,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[607], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74605,7 +75284,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[607], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74623,7 +75302,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nuiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[607], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74643,7 +75322,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[608], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74665,7 +75344,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[608], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74683,7 +75362,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4Nusv((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[608], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74730,7 +75409,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[609], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -74778,7 +75457,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4s((UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); + InteropHelper.Call(EntryPoints[609], (UInt32)index, (Int16)x, (Int16)y, (Int16)z, (Int16)w); #if DEBUG } #endif @@ -74829,7 +75508,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[610], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74882,7 +75561,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[610], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -74932,7 +75611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[610], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -74984,7 +75663,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[610], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75038,7 +75717,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[610], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75088,7 +75767,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[610], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75139,7 +75818,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[611], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75192,7 +75871,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[611], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75242,7 +75921,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[611], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75294,7 +75973,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[611], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75348,7 +76027,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[611], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75398,7 +76077,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[611], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75450,7 +76129,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[612], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75504,7 +76183,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[612], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75554,7 +76233,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[612], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75606,7 +76285,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[613], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75660,7 +76339,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[613], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -75710,7 +76389,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttrib4usv((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[613], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75737,7 +76416,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribBinding((UInt32)attribindex, (UInt32)bindingindex); + InteropHelper.Call(EntryPoints[614], (UInt32)attribindex, (UInt32)bindingindex); #if DEBUG } #endif @@ -75765,7 +76444,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribBinding((UInt32)attribindex, (UInt32)bindingindex); + InteropHelper.Call(EntryPoints[614], (UInt32)attribindex, (UInt32)bindingindex); #if DEBUG } #endif @@ -75792,7 +76471,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[615], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -75820,7 +76499,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribDivisor((UInt32)index, (UInt32)divisor); + InteropHelper.Call(EntryPoints[615], (UInt32)index, (UInt32)divisor); #if DEBUG } #endif @@ -75862,7 +76541,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[616], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); #if DEBUG } #endif @@ -75905,7 +76584,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[616], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribType)type, (bool)normalized, (UInt32)relativeoffset); #if DEBUG } #endif @@ -75920,7 +76599,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1i((UInt32)index, (Int32)x); + InteropHelper.Call(EntryPoints[617], (UInt32)index, (Int32)x); #if DEBUG } #endif @@ -75936,7 +76615,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1i((UInt32)index, (Int32)x); + InteropHelper.Call(EntryPoints[617], (UInt32)index, (Int32)x); #if DEBUG } #endif @@ -75952,7 +76631,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[618], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75968,7 +76647,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[618], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -75984,7 +76663,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1ui((UInt32)index, (UInt32)x); + InteropHelper.Call(EntryPoints[619], (UInt32)index, (UInt32)x); #if DEBUG } #endif @@ -76000,7 +76679,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI1uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[620], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76015,7 +76694,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2i((UInt32)index, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[621], (UInt32)index, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -76031,7 +76710,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2i((UInt32)index, (Int32)x, (Int32)y); + InteropHelper.Call(EntryPoints[621], (UInt32)index, (Int32)x, (Int32)y); #if DEBUG } #endif @@ -76050,7 +76729,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[622], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76071,7 +76750,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[622], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76089,7 +76768,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[622], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76109,7 +76788,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[622], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76131,7 +76810,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[622], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76149,7 +76828,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[622], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76165,7 +76844,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2ui((UInt32)index, (UInt32)x, (UInt32)y); + InteropHelper.Call(EntryPoints[623], (UInt32)index, (UInt32)x, (UInt32)y); #if DEBUG } #endif @@ -76185,7 +76864,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[624], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76207,7 +76886,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[624], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76225,7 +76904,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI2uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[624], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76240,7 +76919,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3i((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[625], (UInt32)index, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -76256,7 +76935,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3i((UInt32)index, (Int32)x, (Int32)y, (Int32)z); + InteropHelper.Call(EntryPoints[625], (UInt32)index, (Int32)x, (Int32)y, (Int32)z); #if DEBUG } #endif @@ -76275,7 +76954,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76296,7 +76975,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76314,7 +76993,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[626], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76334,7 +77013,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76356,7 +77035,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[626], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76374,7 +77053,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[626], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76390,7 +77069,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); + InteropHelper.Call(EntryPoints[627], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z); #if DEBUG } #endif @@ -76410,7 +77089,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[628], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76432,7 +77111,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[628], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76450,7 +77129,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI3uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[628], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76470,7 +77149,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (SByte* v_ptr = v) { - Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[629], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76492,7 +77171,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (SByte* v_ptr = &v) { - Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v_ptr); + InteropHelper.Call(EntryPoints[629], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76510,7 +77189,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4bv((UInt32)index, (SByte*)v); + InteropHelper.Call(EntryPoints[629], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76525,7 +77204,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[630], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -76541,7 +77220,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4i((UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); + InteropHelper.Call(EntryPoints[630], (UInt32)index, (Int32)x, (Int32)y, (Int32)z, (Int32)w); #if DEBUG } #endif @@ -76560,7 +77239,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[631], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76581,7 +77260,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[631], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76599,7 +77278,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[631], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76619,7 +77298,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[631], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76641,7 +77320,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* v_ptr = &v) { - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v_ptr); + InteropHelper.Call(EntryPoints[631], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76659,7 +77338,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4iv((UInt32)index, (Int32*)v); + InteropHelper.Call(EntryPoints[631], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76678,7 +77357,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[632], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76699,7 +77378,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[632], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76717,7 +77396,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[632], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76737,7 +77416,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[632], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76759,7 +77438,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int16* v_ptr = &v) { - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v_ptr); + InteropHelper.Call(EntryPoints[632], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76777,7 +77456,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4sv((UInt32)index, (Int16*)v); + InteropHelper.Call(EntryPoints[632], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76796,7 +77475,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[633], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76817,7 +77496,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[633], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76835,7 +77514,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[633], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76855,7 +77534,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[633], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76877,7 +77556,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Byte* v_ptr = &v) { - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v_ptr); + InteropHelper.Call(EntryPoints[633], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76895,7 +77574,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ubv((UInt32)index, (Byte*)v); + InteropHelper.Call(EntryPoints[633], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76911,7 +77590,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4ui((UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); + InteropHelper.Call(EntryPoints[634], (UInt32)index, (UInt32)x, (UInt32)y, (UInt32)z, (UInt32)w); #if DEBUG } #endif @@ -76931,7 +77610,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = v) { - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[635], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76953,7 +77632,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* v_ptr = &v) { - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v_ptr); + InteropHelper.Call(EntryPoints[635], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -76971,7 +77650,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4uiv((UInt32)index, (UInt32*)v); + InteropHelper.Call(EntryPoints[635], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -76991,7 +77670,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* v_ptr = v) { - Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[636], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77013,7 +77692,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt16* v_ptr = &v) { - Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v_ptr); + InteropHelper.Call(EntryPoints[636], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77031,7 +77710,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribI4usv((UInt32)index, (UInt16*)v); + InteropHelper.Call(EntryPoints[636], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77046,7 +77725,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[637], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -77062,7 +77741,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[637], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -77077,7 +77756,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -77096,7 +77775,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77120,7 +77799,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77144,7 +77823,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77168,7 +77847,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -77190,7 +77869,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -77210,7 +77889,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77235,7 +77914,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77260,7 +77939,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77285,7 +77964,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribIPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[638], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribIntegerType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -77306,7 +77985,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[639], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -77322,7 +78001,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1d((UInt32)index, (Double)x); + InteropHelper.Call(EntryPoints[639], (UInt32)index, (Double)x); #if DEBUG } #endif @@ -77338,7 +78017,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[640], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77354,7 +78033,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL1dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[640], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77369,7 +78048,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[643], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -77385,7 +78064,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2d((UInt32)index, (Double)x, (Double)y); + InteropHelper.Call(EntryPoints[643], (UInt32)index, (Double)x, (Double)y); #if DEBUG } #endif @@ -77404,7 +78083,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[644], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77425,7 +78104,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[644], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77443,7 +78122,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[644], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77463,7 +78142,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[644], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77485,7 +78164,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[644], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77503,7 +78182,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL2dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[644], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77518,7 +78197,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[645], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -77534,7 +78213,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3d((UInt32)index, (Double)x, (Double)y, (Double)z); + InteropHelper.Call(EntryPoints[645], (UInt32)index, (Double)x, (Double)y, (Double)z); #if DEBUG } #endif @@ -77553,7 +78232,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[646], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77574,7 +78253,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[646], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77592,7 +78271,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[646], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77612,7 +78291,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[646], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77634,7 +78313,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[646], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77652,7 +78331,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL3dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[646], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77667,7 +78346,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[647], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -77683,7 +78362,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4d((UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); + InteropHelper.Call(EntryPoints[647], (UInt32)index, (Double)x, (Double)y, (Double)z, (Double)w); #if DEBUG } #endif @@ -77702,7 +78381,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[648], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77723,7 +78402,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[648], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77741,7 +78420,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[648], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77761,7 +78440,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[648], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77783,7 +78462,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Double* v_ptr = &v) { - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v_ptr); + InteropHelper.Call(EntryPoints[648], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -77801,7 +78480,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribL4dv((UInt32)index, (Double*)v); + InteropHelper.Call(EntryPoints[648], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -77816,7 +78495,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[649], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -77832,7 +78511,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLFormat((UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (UInt32)relativeoffset); + InteropHelper.Call(EntryPoints[649], (UInt32)attribindex, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (UInt32)relativeoffset); #if DEBUG } #endif @@ -77847,7 +78526,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -77866,7 +78545,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77890,7 +78569,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77914,7 +78593,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -77938,7 +78617,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -77960,7 +78639,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -77980,7 +78659,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78005,7 +78684,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78030,7 +78709,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78055,7 +78734,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribLPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[650], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribDoubleType)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T4)pointer_ptr.Target; } finally @@ -78076,7 +78755,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[651], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78092,7 +78771,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[651], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78108,7 +78787,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[652], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78124,7 +78803,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP1uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[652], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78139,7 +78818,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[653], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78155,7 +78834,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[653], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78171,7 +78850,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[654], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78187,7 +78866,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP2uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[654], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78202,7 +78881,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[655], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78218,7 +78897,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[655], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78234,7 +78913,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[656], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78250,7 +78929,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP3uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[656], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78265,7 +78944,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[657], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78281,7 +78960,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4ui((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); + InteropHelper.Call(EntryPoints[657], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32)value); #if DEBUG } #endif @@ -78297,7 +78976,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[658], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78313,7 +78992,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribP4uiv((UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (UInt32*)value); + InteropHelper.Call(EntryPoints[658], (UInt32)index, (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (bool)normalized, (IntPtr)value); #if DEBUG } #endif @@ -78360,7 +79039,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -78411,7 +79090,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78467,7 +79146,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78523,7 +79202,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78579,7 +79258,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -78633,7 +79312,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer); #if DEBUG } #endif @@ -78685,7 +79364,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78742,7 +79421,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78799,7 +79478,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); } finally { @@ -78856,7 +79535,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned); try { - Delegates.glVertexAttribPointer((UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[659], (UInt32)index, (Int32)size, (OpenTK.Graphics.OpenGL4.VertexAttribPointerType)type, (bool)normalized, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject()); pointer = (T5)pointer_ptr.Target; } finally @@ -78889,7 +79568,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBindingDivisor((UInt32)bindingindex, (UInt32)divisor); + InteropHelper.Call(EntryPoints[660], (UInt32)bindingindex, (UInt32)divisor); #if DEBUG } #endif @@ -78917,7 +79596,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexBindingDivisor((UInt32)bindingindex, (UInt32)divisor); + InteropHelper.Call(EntryPoints[660], (UInt32)bindingindex, (UInt32)divisor); #if DEBUG } #endif @@ -78932,7 +79611,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[661], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -78948,7 +79627,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[661], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -78964,7 +79643,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[662], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -78980,7 +79659,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP2uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[662], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -78995,7 +79674,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[663], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -79011,7 +79690,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[663], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -79027,7 +79706,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[664], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -79043,7 +79722,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP3uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[664], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -79058,7 +79737,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[665], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -79074,7 +79753,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4ui((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); + InteropHelper.Call(EntryPoints[665], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32)value); #if DEBUG } #endif @@ -79090,7 +79769,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[666], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -79106,7 +79785,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glVertexP4uiv((OpenTK.Graphics.OpenGL4.PackedPointerType)type, (UInt32*)value); + InteropHelper.Call(EntryPoints[666], (OpenTK.Graphics.OpenGL4.PackedPointerType)type, (IntPtr)value); #if DEBUG } #endif @@ -79133,7 +79812,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height); + InteropHelper.Call(EntryPoints[667], (Int32)x, (Int32)y, (Int32)width, (Int32)height); #if DEBUG } #endif @@ -79169,7 +79848,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[668], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -79207,7 +79886,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[668], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -79242,7 +79921,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[668], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -79279,7 +79958,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[668], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -79318,7 +79997,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[668], (UInt32)first, (Int32)count, (IntPtr)v_ptr); } } #if DEBUG @@ -79353,7 +80032,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportArrayv((UInt32)first, (Int32)count, (Single*)v); + InteropHelper.Call(EntryPoints[668], (UInt32)first, (Int32)count, (IntPtr)v); #if DEBUG } #endif @@ -79390,7 +80069,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedf((UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); + InteropHelper.Call(EntryPoints[669], (UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); #if DEBUG } #endif @@ -79428,7 +80107,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedf((UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); + InteropHelper.Call(EntryPoints[669], (UInt32)index, (Single)x, (Single)y, (Single)w, (Single)h); #if DEBUG } #endif @@ -79469,7 +80148,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[670], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -79512,7 +80191,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[670], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -79552,7 +80231,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[670], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -79594,7 +80273,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[670], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -79638,7 +80317,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Single* v_ptr = &v) { - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v_ptr); + InteropHelper.Call(EntryPoints[670], (UInt32)index, (IntPtr)v_ptr); } } #if DEBUG @@ -79678,7 +80357,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glViewportIndexedfv((UInt32)index, (Single*)v); + InteropHelper.Call(EntryPoints[670], (UInt32)index, (IntPtr)v); #if DEBUG } #endif @@ -79710,7 +80389,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL4.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[671], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -79743,7 +80422,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glWaitSync((IntPtr)sync, (OpenTK.Graphics.OpenGL4.WaitSyncFlags)flags, (UInt64)timeout); + return InteropHelper.CallReturn(EntryPoints[671], (IntPtr)sync, (OpenTK.Graphics.OpenGL4.WaitSyncFlags)flags, (UInt64)timeout); #if DEBUG } #endif @@ -79772,7 +80451,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam); + InteropHelper.Call(EntryPoints[103], (DebugProcKhr)callback, (IntPtr)userParam); #if DEBUG } #endif @@ -79803,7 +80482,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -79839,7 +80518,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -79875,7 +80554,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); } finally { @@ -79911,7 +80590,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle userParam_ptr = GCHandle.Alloc(userParam, GCHandleType.Pinned); try { - Delegates.glDebugMessageCallbackKHR((DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[103], (DebugProcKhr)callback, (IntPtr)userParam_ptr.AddrOfPinnedObject()); userParam = (T1)userParam_ptr.Target; } finally @@ -79968,7 +80647,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -80021,7 +80700,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -80071,7 +80750,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -80123,7 +80802,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -80177,7 +80856,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (UInt32* ids_ptr = &ids) { - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids_ptr, (bool)enabled); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids_ptr, (bool)enabled); } } #if DEBUG @@ -80227,7 +80906,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageControlKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (UInt32*)ids, (bool)enabled); + InteropHelper.Call(EntryPoints[106], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)count, (IntPtr)ids, (bool)enabled); #if DEBUG } #endif @@ -80274,7 +80953,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -80322,7 +81001,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glDebugMessageInsertKHR((OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); + InteropHelper.Call(EntryPoints[109], (OpenTK.Graphics.OpenGL4.All)source, (OpenTK.Graphics.OpenGL4.All)type, (UInt32)id, (OpenTK.Graphics.OpenGL4.All)severity, (Int32)length, (String)buf); #if DEBUG } #endif @@ -80387,7 +81066,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[211], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -80454,7 +81133,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[211], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -80520,7 +81199,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources, (OpenTK.Graphics.OpenGL4.All*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL4.All*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[211], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -80586,7 +81265,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = severities) fixed (Int32* lengths_ptr = lengths) { - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[211], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); } } #if DEBUG @@ -80654,7 +81333,7 @@ namespace OpenTK.Graphics.OpenGL4 fixed (OpenTK.Graphics.OpenGL4.All* severities_ptr = &severities) fixed (Int32* lengths_ptr = &lengths) { - Int32 retval = Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources_ptr, (OpenTK.Graphics.OpenGL4.All*)types_ptr, (UInt32*)ids_ptr, (OpenTK.Graphics.OpenGL4.All*)severities_ptr, (Int32*)lengths_ptr, (StringBuilder)messageLog); + Int32 retval = InteropHelper.CallReturn(EntryPoints[211], (UInt32)count, (Int32)bufSize, (IntPtr)sources_ptr, (IntPtr)types_ptr, (IntPtr)ids_ptr, (IntPtr)severities_ptr, (IntPtr)lengths_ptr, (StringBuilder)messageLog); sources = *sources_ptr; types = *types_ptr; ids = *ids_ptr; @@ -80720,7 +81399,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - return Delegates.glGetDebugMessageLogKHR((UInt32)count, (Int32)bufSize, (OpenTK.Graphics.OpenGL4.All*)sources, (OpenTK.Graphics.OpenGL4.All*)types, (UInt32*)ids, (OpenTK.Graphics.OpenGL4.All*)severities, (Int32*)lengths, (StringBuilder)messageLog); + return InteropHelper.CallReturn(EntryPoints[211], (UInt32)count, (Int32)bufSize, (IntPtr)sources, (IntPtr)types, (IntPtr)ids, (IntPtr)severities, (IntPtr)lengths, (StringBuilder)messageLog); #if DEBUG } #endif @@ -80766,7 +81445,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -80814,7 +81493,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -80860,7 +81539,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -80907,7 +81586,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -80956,7 +81635,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -81002,7 +81681,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[257], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -81043,7 +81722,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } } #if DEBUG @@ -81086,7 +81765,7 @@ namespace OpenTK.Graphics.OpenGL4 { fixed (Int32* length_ptr = &length) { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } } @@ -81127,7 +81806,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr, (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr, (Int32)bufSize, (IntPtr)length, (StringBuilder)label); #if DEBUG } #endif @@ -81172,7 +81851,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -81224,7 +81903,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -81274,7 +81953,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -81324,7 +82003,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -81376,7 +82055,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -81426,7 +82105,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -81476,7 +82155,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); } finally { @@ -81528,7 +82207,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); length = *length_ptr; } finally @@ -81578,7 +82257,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); } finally { @@ -81628,7 +82307,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -81681,7 +82360,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length_ptr, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length_ptr, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; length = *length_ptr; } @@ -81732,7 +82411,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glGetObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (Int32*)length, (StringBuilder)label); + InteropHelper.Call(EntryPoints[259], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)bufSize, (IntPtr)length, (StringBuilder)label); ptr = (T0)ptr_ptr.Target; } finally @@ -81753,7 +82432,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params); #if DEBUG } #endif @@ -81772,7 +82451,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -81796,7 +82475,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -81820,7 +82499,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); } finally { @@ -81844,7 +82523,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned); try { - Delegates.glGetPointervKHR((OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); + InteropHelper.Call(EntryPoints[261], (OpenTK.Graphics.OpenGL4.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject()); @params = (T1)@params_ptr.Target; } finally @@ -81887,7 +82566,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[378], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -81925,7 +82604,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectLabelKHR((OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[378], (OpenTK.Graphics.OpenGL4.All)identifier, (UInt32)name, (Int32)length, (String)label); #if DEBUG } #endif @@ -81957,7 +82636,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glObjectPtrLabelKHR((IntPtr)ptr, (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[380], (IntPtr)ptr, (Int32)length, (String)label); #if DEBUG } #endif @@ -81993,7 +82672,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[380], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -82034,7 +82713,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[380], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -82075,7 +82754,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[380], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); } finally { @@ -82116,7 +82795,7 @@ namespace OpenTK.Graphics.OpenGL4 GCHandle ptr_ptr = GCHandle.Alloc(ptr, GCHandleType.Pinned); try { - Delegates.glObjectPtrLabelKHR((IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); + InteropHelper.Call(EntryPoints[380], (IntPtr)ptr_ptr.AddrOfPinnedObject(), (Int32)length, (String)label); ptr = (T0)ptr_ptr.Target; } finally @@ -82139,7 +82818,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPopDebugGroupKHR(); + InteropHelper.Call(EntryPoints[394]); #if DEBUG } #endif @@ -82176,7 +82855,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.OpenGL4.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[452], (OpenTK.Graphics.OpenGL4.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif @@ -82214,7 +82893,7 @@ namespace OpenTK.Graphics.OpenGL4 using (new ErrorHelper(GraphicsContext.CurrentContext)) { #endif - Delegates.glPushDebugGroupKHR((OpenTK.Graphics.OpenGL4.All)source, (UInt32)id, (Int32)length, (String)message); + InteropHelper.Call(EntryPoints[452], (OpenTK.Graphics.OpenGL4.All)source, (UInt32)id, (Int32)length, (String)message); #if DEBUG } #endif