• Main Page
  • Classes
  • Files
  • File List

Source/OpenTK/Graphics/OpenGL/GLCore.cs

00001 #region License
00002 //
00003 // The Open Toolkit Library License
00004 //
00005 // Copyright (c) 2006 - 2009 the Open Toolkit library.
00006 //
00007 // Permission is hereby granted, free of charge, to any person obtaining a copy
00008 // of this software and associated documentation files (the "Software"), to deal
00009 // in the Software without restriction, including without limitation the rights to 
00010 // use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
00011 // the Software, and to permit persons to whom the Software is furnished to do
00012 // so, subject to the following conditions:
00013 //
00014 // The above copyright notice and this permission notice shall be included in all
00015 // copies or substantial portions of the Software.
00016 //
00017 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00018 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
00019 // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00020 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
00021 // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
00022 // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
00023 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
00024 // OTHER DEALINGS IN THE SOFTWARE.
00025 //
00026 #endregion
00027 
00028 namespace OpenTK.Graphics.OpenGL
00029 {
00030     using System;
00031     using System.Text;
00032     using System.Runtime.InteropServices;
00033     #pragma warning disable 3019
00034     #pragma warning disable 1591
00035 
00036     partial class GL
00037     {
00038 
00039         internal static partial class Core
00040         {
00041 
00042             [System.Security.SuppressUnmanagedCodeSecurity()]
00043             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAccum", ExactSpelling = true)]
00044             internal extern static void Accum(OpenTK.Graphics.OpenGL.AccumOp op, Single value);
00045             [System.Security.SuppressUnmanagedCodeSecurity()]
00046             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glActiveStencilFaceEXT", ExactSpelling = true)]
00047             internal extern static void ActiveStencilFaceEXT(OpenTK.Graphics.OpenGL.ExtStencilTwoSide face);
00048             [System.Security.SuppressUnmanagedCodeSecurity()]
00049             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glActiveTexture", ExactSpelling = true)]
00050             internal extern static void ActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture);
00051             [System.Security.SuppressUnmanagedCodeSecurity()]
00052             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glActiveTextureARB", ExactSpelling = true)]
00053             internal extern static void ActiveTextureARB(OpenTK.Graphics.OpenGL.TextureUnit texture);
00054             [System.Security.SuppressUnmanagedCodeSecurity()]
00055             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glActiveVaryingNV", ExactSpelling = true)]
00056             internal extern static void ActiveVaryingNV(UInt32 program, String name);
00057             [System.Security.SuppressUnmanagedCodeSecurity()]
00058             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFragmentOp1ATI", ExactSpelling = true)]
00059             internal extern static void AlphaFragmentOp1ATI(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod);
00060             [System.Security.SuppressUnmanagedCodeSecurity()]
00061             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFragmentOp2ATI", ExactSpelling = true)]
00062             internal extern static void AlphaFragmentOp2ATI(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod);
00063             [System.Security.SuppressUnmanagedCodeSecurity()]
00064             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFragmentOp3ATI", ExactSpelling = true)]
00065             internal extern static void AlphaFragmentOp3ATI(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);
00066             [System.Security.SuppressUnmanagedCodeSecurity()]
00067             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFunc", ExactSpelling = true)]
00068             internal extern static void AlphaFunc(OpenTK.Graphics.OpenGL.AlphaFunction func, Single @ref);
00069             [System.Security.SuppressUnmanagedCodeSecurity()]
00070             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glApplyTextureEXT", ExactSpelling = true)]
00071             internal extern static void ApplyTextureEXT(OpenTK.Graphics.OpenGL.ExtLightTexture mode);
00072             [System.Security.SuppressUnmanagedCodeSecurity()]
00073             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAreProgramsResidentNV", ExactSpelling = true)]
00074             internal extern static unsafe bool AreProgramsResidentNV(Int32 n, UInt32* programs, [OutAttribute] bool* residences);
00075             [System.Security.SuppressUnmanagedCodeSecurity()]
00076             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAreTexturesResident", ExactSpelling = true)]
00077             internal extern static unsafe bool AreTexturesResident(Int32 n, UInt32* textures, [OutAttribute] bool* residences);
00078             [System.Security.SuppressUnmanagedCodeSecurity()]
00079             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAreTexturesResidentEXT", ExactSpelling = true)]
00080             internal extern static unsafe bool AreTexturesResidentEXT(Int32 n, UInt32* textures, [OutAttribute] bool* residences);
00081             [System.Security.SuppressUnmanagedCodeSecurity()]
00082             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glArrayElement", ExactSpelling = true)]
00083             internal extern static void ArrayElement(Int32 i);
00084             [System.Security.SuppressUnmanagedCodeSecurity()]
00085             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glArrayElementEXT", ExactSpelling = true)]
00086             internal extern static void ArrayElementEXT(Int32 i);
00087             [System.Security.SuppressUnmanagedCodeSecurity()]
00088             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glArrayObjectATI", ExactSpelling = true)]
00089             internal extern static void ArrayObjectATI(OpenTK.Graphics.OpenGL.EnableCap array, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset);
00090             [System.Security.SuppressUnmanagedCodeSecurity()]
00091             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAsyncMarkerSGIX", ExactSpelling = true)]
00092             internal extern static void AsyncMarkerSGIX(UInt32 marker);
00093             [System.Security.SuppressUnmanagedCodeSecurity()]
00094             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAttachObjectARB", ExactSpelling = true)]
00095             internal extern static void AttachObjectARB(UInt32 containerObj, UInt32 obj);
00096             [System.Security.SuppressUnmanagedCodeSecurity()]
00097             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAttachShader", ExactSpelling = true)]
00098             internal extern static void AttachShader(UInt32 program, UInt32 shader);
00099             [System.Security.SuppressUnmanagedCodeSecurity()]
00100             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBegin", ExactSpelling = true)]
00101             internal extern static void Begin(OpenTK.Graphics.OpenGL.BeginMode mode);
00102             [System.Security.SuppressUnmanagedCodeSecurity()]
00103             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginConditionalRender", ExactSpelling = true)]
00104             internal extern static void BeginConditionalRender(UInt32 id, OpenTK.Graphics.OpenGL.ConditionalRenderType mode);
00105             [System.Security.SuppressUnmanagedCodeSecurity()]
00106             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginConditionalRenderNV", ExactSpelling = true)]
00107             internal extern static void BeginConditionalRenderNV(UInt32 id, OpenTK.Graphics.OpenGL.NvConditionalRender mode);
00108             [System.Security.SuppressUnmanagedCodeSecurity()]
00109             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginFragmentShaderATI", ExactSpelling = true)]
00110             internal extern static void BeginFragmentShaderATI();
00111             [System.Security.SuppressUnmanagedCodeSecurity()]
00112             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginOcclusionQueryNV", ExactSpelling = true)]
00113             internal extern static void BeginOcclusionQueryNV(UInt32 id);
00114             [System.Security.SuppressUnmanagedCodeSecurity()]
00115             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginPerfMonitorAMD", ExactSpelling = true)]
00116             internal extern static void BeginPerfMonitorAMD(UInt32 monitor);
00117             [System.Security.SuppressUnmanagedCodeSecurity()]
00118             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginQuery", ExactSpelling = true)]
00119             internal extern static void BeginQuery(OpenTK.Graphics.OpenGL.QueryTarget target, UInt32 id);
00120             [System.Security.SuppressUnmanagedCodeSecurity()]
00121             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginQueryARB", ExactSpelling = true)]
00122             internal extern static void BeginQueryARB(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, UInt32 id);
00123             [System.Security.SuppressUnmanagedCodeSecurity()]
00124             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginTransformFeedback", ExactSpelling = true)]
00125             internal extern static void BeginTransformFeedback(OpenTK.Graphics.OpenGL.BeginFeedbackMode primitiveMode);
00126             [System.Security.SuppressUnmanagedCodeSecurity()]
00127             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginTransformFeedbackEXT", ExactSpelling = true)]
00128             internal extern static void BeginTransformFeedbackEXT(OpenTK.Graphics.OpenGL.ExtTransformFeedback primitiveMode);
00129             [System.Security.SuppressUnmanagedCodeSecurity()]
00130             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginTransformFeedbackNV", ExactSpelling = true)]
00131             internal extern static void BeginTransformFeedbackNV(OpenTK.Graphics.OpenGL.NvTransformFeedback primitiveMode);
00132             [System.Security.SuppressUnmanagedCodeSecurity()]
00133             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBeginVertexShaderEXT", ExactSpelling = true)]
00134             internal extern static void BeginVertexShaderEXT();
00135             [System.Security.SuppressUnmanagedCodeSecurity()]
00136             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindAttribLocation", ExactSpelling = true)]
00137             internal extern static void BindAttribLocation(UInt32 program, UInt32 index, String name);
00138             [System.Security.SuppressUnmanagedCodeSecurity()]
00139             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindAttribLocationARB", ExactSpelling = true)]
00140             internal extern static void BindAttribLocationARB(UInt32 programObj, UInt32 index, String name);
00141             [System.Security.SuppressUnmanagedCodeSecurity()]
00142             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBuffer", ExactSpelling = true)]
00143             internal extern static void BindBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 buffer);
00144             [System.Security.SuppressUnmanagedCodeSecurity()]
00145             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferARB", ExactSpelling = true)]
00146             internal extern static void BindBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 buffer);
00147             [System.Security.SuppressUnmanagedCodeSecurity()]
00148             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferBase", ExactSpelling = true)]
00149             internal extern static void BindBufferBase(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer);
00150             [System.Security.SuppressUnmanagedCodeSecurity()]
00151             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferBaseEXT", ExactSpelling = true)]
00152             internal extern static void BindBufferBaseEXT(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer);
00153             [System.Security.SuppressUnmanagedCodeSecurity()]
00154             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferBaseNV", ExactSpelling = true)]
00155             internal extern static void BindBufferBaseNV(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer);
00156             [System.Security.SuppressUnmanagedCodeSecurity()]
00157             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferOffsetEXT", ExactSpelling = true)]
00158             internal extern static void BindBufferOffsetEXT(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset);
00159             [System.Security.SuppressUnmanagedCodeSecurity()]
00160             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferOffsetNV", ExactSpelling = true)]
00161             internal extern static void BindBufferOffsetNV(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset);
00162             [System.Security.SuppressUnmanagedCodeSecurity()]
00163             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferRange", ExactSpelling = true)]
00164             internal extern static void BindBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
00165             [System.Security.SuppressUnmanagedCodeSecurity()]
00166             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferRangeEXT", ExactSpelling = true)]
00167             internal extern static void BindBufferRangeEXT(OpenTK.Graphics.OpenGL.ExtTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
00168             [System.Security.SuppressUnmanagedCodeSecurity()]
00169             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBufferRangeNV", ExactSpelling = true)]
00170             internal extern static void BindBufferRangeNV(OpenTK.Graphics.OpenGL.NvTransformFeedback target, UInt32 index, UInt32 buffer, IntPtr offset, IntPtr size);
00171             [System.Security.SuppressUnmanagedCodeSecurity()]
00172             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFragDataLocation", ExactSpelling = true)]
00173             internal extern static void BindFragDataLocation(UInt32 program, UInt32 color, String name);
00174             [System.Security.SuppressUnmanagedCodeSecurity()]
00175             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFragDataLocationEXT", ExactSpelling = true)]
00176             internal extern static void BindFragDataLocationEXT(UInt32 program, UInt32 color, String name);
00177             [System.Security.SuppressUnmanagedCodeSecurity()]
00178             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFragmentShaderATI", ExactSpelling = true)]
00179             internal extern static void BindFragmentShaderATI(UInt32 id);
00180             [System.Security.SuppressUnmanagedCodeSecurity()]
00181             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFramebuffer", ExactSpelling = true)]
00182             internal extern static void BindFramebuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer);
00183             [System.Security.SuppressUnmanagedCodeSecurity()]
00184             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFramebufferEXT", ExactSpelling = true)]
00185             internal extern static void BindFramebufferEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, UInt32 framebuffer);
00186             [System.Security.SuppressUnmanagedCodeSecurity()]
00187             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindLightParameterEXT", ExactSpelling = true)]
00188             internal extern static Int32 BindLightParameterEXT(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter value);
00189             [System.Security.SuppressUnmanagedCodeSecurity()]
00190             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindMaterialParameterEXT", ExactSpelling = true)]
00191             internal extern static Int32 BindMaterialParameterEXT(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter value);
00192             [System.Security.SuppressUnmanagedCodeSecurity()]
00193             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindMultiTextureEXT", ExactSpelling = true)]
00194             internal extern static void BindMultiTextureEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture);
00195             [System.Security.SuppressUnmanagedCodeSecurity()]
00196             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindParameterEXT", ExactSpelling = true)]
00197             internal extern static Int32 BindParameterEXT(OpenTK.Graphics.OpenGL.ExtVertexShader value);
00198             [System.Security.SuppressUnmanagedCodeSecurity()]
00199             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindProgramARB", ExactSpelling = true)]
00200             internal extern static void BindProgramARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 program);
00201             [System.Security.SuppressUnmanagedCodeSecurity()]
00202             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindProgramNV", ExactSpelling = true)]
00203             internal extern static void BindProgramNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id);
00204             [System.Security.SuppressUnmanagedCodeSecurity()]
00205             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindRenderbuffer", ExactSpelling = true)]
00206             internal extern static void BindRenderbuffer(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer);
00207             [System.Security.SuppressUnmanagedCodeSecurity()]
00208             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindRenderbufferEXT", ExactSpelling = true)]
00209             internal extern static void BindRenderbufferEXT(OpenTK.Graphics.OpenGL.RenderbufferTarget target, UInt32 renderbuffer);
00210             [System.Security.SuppressUnmanagedCodeSecurity()]
00211             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTexGenParameterEXT", ExactSpelling = true)]
00212             internal extern static Int32 BindTexGenParameterEXT(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter value);
00213             [System.Security.SuppressUnmanagedCodeSecurity()]
00214             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTexture", ExactSpelling = true)]
00215             internal extern static void BindTexture(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture);
00216             [System.Security.SuppressUnmanagedCodeSecurity()]
00217             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTextureEXT", ExactSpelling = true)]
00218             internal extern static void BindTextureEXT(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 texture);
00219             [System.Security.SuppressUnmanagedCodeSecurity()]
00220             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTextureUnitParameterEXT", ExactSpelling = true)]
00221             internal extern static Int32 BindTextureUnitParameterEXT(OpenTK.Graphics.OpenGL.TextureUnit unit, OpenTK.Graphics.OpenGL.ExtVertexShader value);
00222             [System.Security.SuppressUnmanagedCodeSecurity()]
00223             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTransformFeedbackNV", ExactSpelling = true)]
00224             internal extern static void BindTransformFeedbackNV(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id);
00225             [System.Security.SuppressUnmanagedCodeSecurity()]
00226             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindVertexArray", ExactSpelling = true)]
00227             internal extern static void BindVertexArray(UInt32 array);
00228             [System.Security.SuppressUnmanagedCodeSecurity()]
00229             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindVertexArrayAPPLE", ExactSpelling = true)]
00230             internal extern static void BindVertexArrayAPPLE(UInt32 array);
00231             [System.Security.SuppressUnmanagedCodeSecurity()]
00232             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindVertexShaderEXT", ExactSpelling = true)]
00233             internal extern static void BindVertexShaderEXT(UInt32 id);
00234             [System.Security.SuppressUnmanagedCodeSecurity()]
00235             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3bEXT", ExactSpelling = true)]
00236             internal extern static void Binormal3bEXT(SByte bx, SByte by, SByte bz);
00237             [System.Security.SuppressUnmanagedCodeSecurity()]
00238             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3bvEXT", ExactSpelling = true)]
00239             internal extern static unsafe void Binormal3bvEXT(SByte* v);
00240             [System.Security.SuppressUnmanagedCodeSecurity()]
00241             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3dEXT", ExactSpelling = true)]
00242             internal extern static void Binormal3dEXT(Double bx, Double by, Double bz);
00243             [System.Security.SuppressUnmanagedCodeSecurity()]
00244             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3dvEXT", ExactSpelling = true)]
00245             internal extern static unsafe void Binormal3dvEXT(Double* v);
00246             [System.Security.SuppressUnmanagedCodeSecurity()]
00247             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3fEXT", ExactSpelling = true)]
00248             internal extern static void Binormal3fEXT(Single bx, Single by, Single bz);
00249             [System.Security.SuppressUnmanagedCodeSecurity()]
00250             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3fvEXT", ExactSpelling = true)]
00251             internal extern static unsafe void Binormal3fvEXT(Single* v);
00252             [System.Security.SuppressUnmanagedCodeSecurity()]
00253             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3iEXT", ExactSpelling = true)]
00254             internal extern static void Binormal3iEXT(Int32 bx, Int32 by, Int32 bz);
00255             [System.Security.SuppressUnmanagedCodeSecurity()]
00256             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3ivEXT", ExactSpelling = true)]
00257             internal extern static unsafe void Binormal3ivEXT(Int32* v);
00258             [System.Security.SuppressUnmanagedCodeSecurity()]
00259             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3sEXT", ExactSpelling = true)]
00260             internal extern static void Binormal3sEXT(Int16 bx, Int16 by, Int16 bz);
00261             [System.Security.SuppressUnmanagedCodeSecurity()]
00262             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormal3svEXT", ExactSpelling = true)]
00263             internal extern static unsafe void Binormal3svEXT(Int16* v);
00264             [System.Security.SuppressUnmanagedCodeSecurity()]
00265             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBinormalPointerEXT", ExactSpelling = true)]
00266             internal extern static void BinormalPointerEXT(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer);
00267             [System.Security.SuppressUnmanagedCodeSecurity()]
00268             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBitmap", ExactSpelling = true)]
00269             internal extern static unsafe void Bitmap(Int32 width, Int32 height, Single xorig, Single yorig, Single xmove, Single ymove, Byte* bitmap);
00270             [System.Security.SuppressUnmanagedCodeSecurity()]
00271             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendColor", ExactSpelling = true)]
00272             internal extern static void BlendColor(Single red, Single green, Single blue, Single alpha);
00273             [System.Security.SuppressUnmanagedCodeSecurity()]
00274             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendColorEXT", ExactSpelling = true)]
00275             internal extern static void BlendColorEXT(Single red, Single green, Single blue, Single alpha);
00276             [System.Security.SuppressUnmanagedCodeSecurity()]
00277             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquation", ExactSpelling = true)]
00278             internal extern static void BlendEquation(OpenTK.Graphics.OpenGL.BlendEquationMode mode);
00279             [System.Security.SuppressUnmanagedCodeSecurity()]
00280             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationEXT", ExactSpelling = true)]
00281             internal extern static void BlendEquationEXT(OpenTK.Graphics.OpenGL.ExtBlendMinmax mode);
00282             [System.Security.SuppressUnmanagedCodeSecurity()]
00283             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationi", ExactSpelling = true)]
00284             internal extern static void BlendEquationi(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend mode);
00285             [System.Security.SuppressUnmanagedCodeSecurity()]
00286             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationIndexedAMD", ExactSpelling = true)]
00287             internal extern static void BlendEquationIndexedAMD(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend mode);
00288             [System.Security.SuppressUnmanagedCodeSecurity()]
00289             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparate", ExactSpelling = true)]
00290             internal extern static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
00291             [System.Security.SuppressUnmanagedCodeSecurity()]
00292             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparateEXT", ExactSpelling = true)]
00293             internal extern static void BlendEquationSeparateEXT(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha);
00294             [System.Security.SuppressUnmanagedCodeSecurity()]
00295             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparatei", ExactSpelling = true)]
00296             internal extern static void BlendEquationSeparatei(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
00297             [System.Security.SuppressUnmanagedCodeSecurity()]
00298             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparateIndexedAMD", ExactSpelling = true)]
00299             internal extern static void BlendEquationSeparateIndexedAMD(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend modeAlpha);
00300             [System.Security.SuppressUnmanagedCodeSecurity()]
00301             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFunc", ExactSpelling = true)]
00302             internal extern static void BlendFunc(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactor, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactor);
00303             [System.Security.SuppressUnmanagedCodeSecurity()]
00304             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFunci", ExactSpelling = true)]
00305             internal extern static void BlendFunci(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend src, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dst);
00306             [System.Security.SuppressUnmanagedCodeSecurity()]
00307             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncIndexedAMD", ExactSpelling = true)]
00308             internal extern static void BlendFuncIndexedAMD(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend src, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dst);
00309             [System.Security.SuppressUnmanagedCodeSecurity()]
00310             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparate", ExactSpelling = true)]
00311             internal extern static void BlendFuncSeparate(OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorRGB, OpenTK.Graphics.OpenGL.BlendingFactorSrc sfactorAlpha, OpenTK.Graphics.OpenGL.BlendingFactorDest dfactorAlpha);
00312             [System.Security.SuppressUnmanagedCodeSecurity()]
00313             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparateEXT", ExactSpelling = true)]
00314             internal extern static void BlendFuncSeparateEXT(OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorRGB, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate sfactorAlpha, OpenTK.Graphics.OpenGL.ExtBlendFuncSeparate dfactorAlpha);
00315             [System.Security.SuppressUnmanagedCodeSecurity()]
00316             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparatei", ExactSpelling = true)]
00317             internal extern static void BlendFuncSeparatei(UInt32 buf, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.ArbDrawBuffersBlend dstAlpha);
00318             [System.Security.SuppressUnmanagedCodeSecurity()]
00319             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparateIndexedAMD", ExactSpelling = true)]
00320             internal extern static void BlendFuncSeparateIndexedAMD(UInt32 buf, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstRGB, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend srcAlpha, OpenTK.Graphics.OpenGL.AmdDrawBuffersBlend dstAlpha);
00321             [System.Security.SuppressUnmanagedCodeSecurity()]
00322             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparateINGR", ExactSpelling = true)]
00323             internal extern static void BlendFuncSeparateINGR(OpenTK.Graphics.OpenGL.All sfactorRGB, OpenTK.Graphics.OpenGL.All dfactorRGB, OpenTK.Graphics.OpenGL.All sfactorAlpha, OpenTK.Graphics.OpenGL.All dfactorAlpha);
00324             [System.Security.SuppressUnmanagedCodeSecurity()]
00325             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlitFramebuffer", ExactSpelling = true)]
00326             internal extern static void BlitFramebuffer(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);
00327             [System.Security.SuppressUnmanagedCodeSecurity()]
00328             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlitFramebufferEXT", ExactSpelling = true)]
00329             internal extern static void BlitFramebufferEXT(Int32 srcX0, Int32 srcY0, Int32 srcX1, Int32 srcY1, Int32 dstX0, Int32 dstY0, Int32 dstX1, Int32 dstY1, OpenTK.Graphics.OpenGL.ClearBufferMask mask, OpenTK.Graphics.OpenGL.ExtFramebufferBlit filter);
00330             [System.Security.SuppressUnmanagedCodeSecurity()]
00331             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferData", ExactSpelling = true)]
00332             internal extern static void BufferData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageHint usage);
00333             [System.Security.SuppressUnmanagedCodeSecurity()]
00334             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferDataARB", ExactSpelling = true)]
00335             internal extern static void BufferDataARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.BufferUsageArb usage);
00336             [System.Security.SuppressUnmanagedCodeSecurity()]
00337             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferParameteriAPPLE", ExactSpelling = true)]
00338             internal extern static void BufferParameteriAPPLE(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterApple pname, Int32 param);
00339             [System.Security.SuppressUnmanagedCodeSecurity()]
00340             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferSubData", ExactSpelling = true)]
00341             internal extern static void BufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, IntPtr data);
00342             [System.Security.SuppressUnmanagedCodeSecurity()]
00343             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferSubDataARB", ExactSpelling = true)]
00344             internal extern static void BufferSubDataARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, IntPtr data);
00345             [System.Security.SuppressUnmanagedCodeSecurity()]
00346             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCallList", ExactSpelling = true)]
00347             internal extern static void CallList(UInt32 list);
00348             [System.Security.SuppressUnmanagedCodeSecurity()]
00349             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCallLists", ExactSpelling = true)]
00350             internal extern static void CallLists(Int32 n, OpenTK.Graphics.OpenGL.ListNameType type, IntPtr lists);
00351             [System.Security.SuppressUnmanagedCodeSecurity()]
00352             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCheckFramebufferStatus", ExactSpelling = true)]
00353             internal extern static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatus(OpenTK.Graphics.OpenGL.FramebufferTarget target);
00354             [System.Security.SuppressUnmanagedCodeSecurity()]
00355             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCheckFramebufferStatusEXT", ExactSpelling = true)]
00356             internal extern static OpenTK.Graphics.OpenGL.FramebufferErrorCode CheckFramebufferStatusEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target);
00357             [System.Security.SuppressUnmanagedCodeSecurity()]
00358             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCheckNamedFramebufferStatusEXT", ExactSpelling = true)]
00359             internal extern static OpenTK.Graphics.OpenGL.ExtDirectStateAccess CheckNamedFramebufferStatusEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferTarget target);
00360             [System.Security.SuppressUnmanagedCodeSecurity()]
00361             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClampColor", ExactSpelling = true)]
00362             internal extern static void ClampColor(OpenTK.Graphics.OpenGL.ClampColorTarget target, OpenTK.Graphics.OpenGL.ClampColorMode clamp);
00363             [System.Security.SuppressUnmanagedCodeSecurity()]
00364             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClampColorARB", ExactSpelling = true)]
00365             internal extern static void ClampColorARB(OpenTK.Graphics.OpenGL.ArbColorBufferFloat target, OpenTK.Graphics.OpenGL.ArbColorBufferFloat clamp);
00366             [System.Security.SuppressUnmanagedCodeSecurity()]
00367             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClear", ExactSpelling = true)]
00368             internal extern static void Clear(OpenTK.Graphics.OpenGL.ClearBufferMask mask);
00369             [System.Security.SuppressUnmanagedCodeSecurity()]
00370             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearAccum", ExactSpelling = true)]
00371             internal extern static void ClearAccum(Single red, Single green, Single blue, Single alpha);
00372             [System.Security.SuppressUnmanagedCodeSecurity()]
00373             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferfi", ExactSpelling = true)]
00374             internal extern static void ClearBufferfi(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single depth, Int32 stencil);
00375             [System.Security.SuppressUnmanagedCodeSecurity()]
00376             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferfv", ExactSpelling = true)]
00377             internal extern static unsafe void ClearBufferfv(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Single* value);
00378             [System.Security.SuppressUnmanagedCodeSecurity()]
00379             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferiv", ExactSpelling = true)]
00380             internal extern static unsafe void ClearBufferiv(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, Int32* value);
00381             [System.Security.SuppressUnmanagedCodeSecurity()]
00382             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearBufferuiv", ExactSpelling = true)]
00383             internal extern static unsafe void ClearBufferuiv(OpenTK.Graphics.OpenGL.ClearBuffer buffer, Int32 drawbuffer, UInt32* value);
00384             [System.Security.SuppressUnmanagedCodeSecurity()]
00385             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearColor", ExactSpelling = true)]
00386             internal extern static void ClearColor(Single red, Single green, Single blue, Single alpha);
00387             [System.Security.SuppressUnmanagedCodeSecurity()]
00388             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearColorIiEXT", ExactSpelling = true)]
00389             internal extern static void ClearColorIiEXT(Int32 red, Int32 green, Int32 blue, Int32 alpha);
00390             [System.Security.SuppressUnmanagedCodeSecurity()]
00391             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearColorIuiEXT", ExactSpelling = true)]
00392             internal extern static void ClearColorIuiEXT(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha);
00393             [System.Security.SuppressUnmanagedCodeSecurity()]
00394             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearDepth", ExactSpelling = true)]
00395             internal extern static void ClearDepth(Double depth);
00396             [System.Security.SuppressUnmanagedCodeSecurity()]
00397             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearDepthdNV", ExactSpelling = true)]
00398             internal extern static void ClearDepthdNV(Double depth);
00399             [System.Security.SuppressUnmanagedCodeSecurity()]
00400             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearIndex", ExactSpelling = true)]
00401             internal extern static void ClearIndex(Single c);
00402             [System.Security.SuppressUnmanagedCodeSecurity()]
00403             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearStencil", ExactSpelling = true)]
00404             internal extern static void ClearStencil(Int32 s);
00405             [System.Security.SuppressUnmanagedCodeSecurity()]
00406             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientActiveTexture", ExactSpelling = true)]
00407             internal extern static void ClientActiveTexture(OpenTK.Graphics.OpenGL.TextureUnit texture);
00408             [System.Security.SuppressUnmanagedCodeSecurity()]
00409             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientActiveTextureARB", ExactSpelling = true)]
00410             internal extern static void ClientActiveTextureARB(OpenTK.Graphics.OpenGL.TextureUnit texture);
00411             [System.Security.SuppressUnmanagedCodeSecurity()]
00412             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientActiveVertexStreamATI", ExactSpelling = true)]
00413             internal extern static void ClientActiveVertexStreamATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream);
00414             [System.Security.SuppressUnmanagedCodeSecurity()]
00415             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientAttribDefaultEXT", ExactSpelling = true)]
00416             internal extern static void ClientAttribDefaultEXT(OpenTK.Graphics.OpenGL.ClientAttribMask mask);
00417             [System.Security.SuppressUnmanagedCodeSecurity()]
00418             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientWaitSync", ExactSpelling = true)]
00419             internal extern static OpenTK.Graphics.OpenGL.ArbSync ClientWaitSync(IntPtr sync, UInt32 flags, UInt64 timeout);
00420             [System.Security.SuppressUnmanagedCodeSecurity()]
00421             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlane", ExactSpelling = true)]
00422             internal extern static unsafe void ClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, Double* equation);
00423             [System.Security.SuppressUnmanagedCodeSecurity()]
00424             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3b", ExactSpelling = true)]
00425             internal extern static void Color3b(SByte red, SByte green, SByte blue);
00426             [System.Security.SuppressUnmanagedCodeSecurity()]
00427             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3bv", ExactSpelling = true)]
00428             internal extern static unsafe void Color3bv(SByte* v);
00429             [System.Security.SuppressUnmanagedCodeSecurity()]
00430             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3d", ExactSpelling = true)]
00431             internal extern static void Color3d(Double red, Double green, Double blue);
00432             [System.Security.SuppressUnmanagedCodeSecurity()]
00433             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3dv", ExactSpelling = true)]
00434             internal extern static unsafe void Color3dv(Double* v);
00435             [System.Security.SuppressUnmanagedCodeSecurity()]
00436             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3f", ExactSpelling = true)]
00437             internal extern static void Color3f(Single red, Single green, Single blue);
00438             [System.Security.SuppressUnmanagedCodeSecurity()]
00439             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3fv", ExactSpelling = true)]
00440             internal extern static unsafe void Color3fv(Single* v);
00441             [System.Security.SuppressUnmanagedCodeSecurity()]
00442             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3fVertex3fSUN", ExactSpelling = true)]
00443             internal extern static void Color3fVertex3fSUN(Single r, Single g, Single b, Single x, Single y, Single z);
00444             [System.Security.SuppressUnmanagedCodeSecurity()]
00445             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3fVertex3fvSUN", ExactSpelling = true)]
00446             internal extern static unsafe void Color3fVertex3fvSUN(Single* c, Single* v);
00447             [System.Security.SuppressUnmanagedCodeSecurity()]
00448             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3hNV", ExactSpelling = true)]
00449             internal extern static void Color3hNV(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue);
00450             [System.Security.SuppressUnmanagedCodeSecurity()]
00451             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3hvNV", ExactSpelling = true)]
00452             internal extern static unsafe void Color3hvNV(OpenTK.Half* v);
00453             [System.Security.SuppressUnmanagedCodeSecurity()]
00454             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3i", ExactSpelling = true)]
00455             internal extern static void Color3i(Int32 red, Int32 green, Int32 blue);
00456             [System.Security.SuppressUnmanagedCodeSecurity()]
00457             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3iv", ExactSpelling = true)]
00458             internal extern static unsafe void Color3iv(Int32* v);
00459             [System.Security.SuppressUnmanagedCodeSecurity()]
00460             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3s", ExactSpelling = true)]
00461             internal extern static void Color3s(Int16 red, Int16 green, Int16 blue);
00462             [System.Security.SuppressUnmanagedCodeSecurity()]
00463             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3sv", ExactSpelling = true)]
00464             internal extern static unsafe void Color3sv(Int16* v);
00465             [System.Security.SuppressUnmanagedCodeSecurity()]
00466             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3ub", ExactSpelling = true)]
00467             internal extern static void Color3ub(Byte red, Byte green, Byte blue);
00468             [System.Security.SuppressUnmanagedCodeSecurity()]
00469             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3ubv", ExactSpelling = true)]
00470             internal extern static unsafe void Color3ubv(Byte* v);
00471             [System.Security.SuppressUnmanagedCodeSecurity()]
00472             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3ui", ExactSpelling = true)]
00473             internal extern static void Color3ui(UInt32 red, UInt32 green, UInt32 blue);
00474             [System.Security.SuppressUnmanagedCodeSecurity()]
00475             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3uiv", ExactSpelling = true)]
00476             internal extern static unsafe void Color3uiv(UInt32* v);
00477             [System.Security.SuppressUnmanagedCodeSecurity()]
00478             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3us", ExactSpelling = true)]
00479             internal extern static void Color3us(UInt16 red, UInt16 green, UInt16 blue);
00480             [System.Security.SuppressUnmanagedCodeSecurity()]
00481             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor3usv", ExactSpelling = true)]
00482             internal extern static unsafe void Color3usv(UInt16* v);
00483             [System.Security.SuppressUnmanagedCodeSecurity()]
00484             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4b", ExactSpelling = true)]
00485             internal extern static void Color4b(SByte red, SByte green, SByte blue, SByte alpha);
00486             [System.Security.SuppressUnmanagedCodeSecurity()]
00487             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4bv", ExactSpelling = true)]
00488             internal extern static unsafe void Color4bv(SByte* v);
00489             [System.Security.SuppressUnmanagedCodeSecurity()]
00490             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4d", ExactSpelling = true)]
00491             internal extern static void Color4d(Double red, Double green, Double blue, Double alpha);
00492             [System.Security.SuppressUnmanagedCodeSecurity()]
00493             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4dv", ExactSpelling = true)]
00494             internal extern static unsafe void Color4dv(Double* v);
00495             [System.Security.SuppressUnmanagedCodeSecurity()]
00496             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4f", ExactSpelling = true)]
00497             internal extern static void Color4f(Single red, Single green, Single blue, Single alpha);
00498             [System.Security.SuppressUnmanagedCodeSecurity()]
00499             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4fNormal3fVertex3fSUN", ExactSpelling = true)]
00500             internal extern static void Color4fNormal3fVertex3fSUN(Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z);
00501             [System.Security.SuppressUnmanagedCodeSecurity()]
00502             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4fNormal3fVertex3fvSUN", ExactSpelling = true)]
00503             internal extern static unsafe void Color4fNormal3fVertex3fvSUN(Single* c, Single* n, Single* v);
00504             [System.Security.SuppressUnmanagedCodeSecurity()]
00505             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4fv", ExactSpelling = true)]
00506             internal extern static unsafe void Color4fv(Single* v);
00507             [System.Security.SuppressUnmanagedCodeSecurity()]
00508             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4hNV", ExactSpelling = true)]
00509             internal extern static void Color4hNV(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue, OpenTK.Half alpha);
00510             [System.Security.SuppressUnmanagedCodeSecurity()]
00511             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4hvNV", ExactSpelling = true)]
00512             internal extern static unsafe void Color4hvNV(OpenTK.Half* v);
00513             [System.Security.SuppressUnmanagedCodeSecurity()]
00514             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4i", ExactSpelling = true)]
00515             internal extern static void Color4i(Int32 red, Int32 green, Int32 blue, Int32 alpha);
00516             [System.Security.SuppressUnmanagedCodeSecurity()]
00517             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4iv", ExactSpelling = true)]
00518             internal extern static unsafe void Color4iv(Int32* v);
00519             [System.Security.SuppressUnmanagedCodeSecurity()]
00520             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4s", ExactSpelling = true)]
00521             internal extern static void Color4s(Int16 red, Int16 green, Int16 blue, Int16 alpha);
00522             [System.Security.SuppressUnmanagedCodeSecurity()]
00523             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4sv", ExactSpelling = true)]
00524             internal extern static unsafe void Color4sv(Int16* v);
00525             [System.Security.SuppressUnmanagedCodeSecurity()]
00526             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ub", ExactSpelling = true)]
00527             internal extern static void Color4ub(Byte red, Byte green, Byte blue, Byte alpha);
00528             [System.Security.SuppressUnmanagedCodeSecurity()]
00529             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ubv", ExactSpelling = true)]
00530             internal extern static unsafe void Color4ubv(Byte* v);
00531             [System.Security.SuppressUnmanagedCodeSecurity()]
00532             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ubVertex2fSUN", ExactSpelling = true)]
00533             internal extern static void Color4ubVertex2fSUN(Byte r, Byte g, Byte b, Byte a, Single x, Single y);
00534             [System.Security.SuppressUnmanagedCodeSecurity()]
00535             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ubVertex2fvSUN", ExactSpelling = true)]
00536             internal extern static unsafe void Color4ubVertex2fvSUN(Byte* c, Single* v);
00537             [System.Security.SuppressUnmanagedCodeSecurity()]
00538             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ubVertex3fSUN", ExactSpelling = true)]
00539             internal extern static void Color4ubVertex3fSUN(Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z);
00540             [System.Security.SuppressUnmanagedCodeSecurity()]
00541             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ubVertex3fvSUN", ExactSpelling = true)]
00542             internal extern static unsafe void Color4ubVertex3fvSUN(Byte* c, Single* v);
00543             [System.Security.SuppressUnmanagedCodeSecurity()]
00544             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ui", ExactSpelling = true)]
00545             internal extern static void Color4ui(UInt32 red, UInt32 green, UInt32 blue, UInt32 alpha);
00546             [System.Security.SuppressUnmanagedCodeSecurity()]
00547             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4uiv", ExactSpelling = true)]
00548             internal extern static unsafe void Color4uiv(UInt32* v);
00549             [System.Security.SuppressUnmanagedCodeSecurity()]
00550             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4us", ExactSpelling = true)]
00551             internal extern static void Color4us(UInt16 red, UInt16 green, UInt16 blue, UInt16 alpha);
00552             [System.Security.SuppressUnmanagedCodeSecurity()]
00553             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4usv", ExactSpelling = true)]
00554             internal extern static unsafe void Color4usv(UInt16* v);
00555             [System.Security.SuppressUnmanagedCodeSecurity()]
00556             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorFragmentOp1ATI", ExactSpelling = true)]
00557             internal extern static void ColorFragmentOp1ATI(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod);
00558             [System.Security.SuppressUnmanagedCodeSecurity()]
00559             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorFragmentOp2ATI", ExactSpelling = true)]
00560             internal extern static void ColorFragmentOp2ATI(OpenTK.Graphics.OpenGL.AtiFragmentShader op, UInt32 dst, UInt32 dstMask, UInt32 dstMod, UInt32 arg1, UInt32 arg1Rep, UInt32 arg1Mod, UInt32 arg2, UInt32 arg2Rep, UInt32 arg2Mod);
00561             [System.Security.SuppressUnmanagedCodeSecurity()]
00562             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorFragmentOp3ATI", ExactSpelling = true)]
00563             internal extern static void ColorFragmentOp3ATI(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);
00564             [System.Security.SuppressUnmanagedCodeSecurity()]
00565             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMask", ExactSpelling = true)]
00566             internal extern static void ColorMask(bool red, bool green, bool blue, bool alpha);
00567             [System.Security.SuppressUnmanagedCodeSecurity()]
00568             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMaski", ExactSpelling = true)]
00569             internal extern static void ColorMaski(UInt32 index, bool r, bool g, bool b, bool a);
00570             [System.Security.SuppressUnmanagedCodeSecurity()]
00571             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMaskIndexedEXT", ExactSpelling = true)]
00572             internal extern static void ColorMaskIndexedEXT(UInt32 index, bool r, bool g, bool b, bool a);
00573             [System.Security.SuppressUnmanagedCodeSecurity()]
00574             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMaterial", ExactSpelling = true)]
00575             internal extern static void ColorMaterial(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ColorMaterialParameter mode);
00576             [System.Security.SuppressUnmanagedCodeSecurity()]
00577             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorPointer", ExactSpelling = true)]
00578             internal extern static void ColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer);
00579             [System.Security.SuppressUnmanagedCodeSecurity()]
00580             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorPointerEXT", ExactSpelling = true)]
00581             internal extern static void ColorPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, Int32 count, IntPtr pointer);
00582             [System.Security.SuppressUnmanagedCodeSecurity()]
00583             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorPointerListIBM", ExactSpelling = true)]
00584             internal extern static void ColorPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
00585             [System.Security.SuppressUnmanagedCodeSecurity()]
00586             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorPointervINTEL", ExactSpelling = true)]
00587             internal extern static void ColorPointervINTEL(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer);
00588             [System.Security.SuppressUnmanagedCodeSecurity()]
00589             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorSubTable", ExactSpelling = true)]
00590             internal extern static void ColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data);
00591             [System.Security.SuppressUnmanagedCodeSecurity()]
00592             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorSubTableEXT", ExactSpelling = true)]
00593             internal extern static void ColorSubTableEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 count, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr data);
00594             [System.Security.SuppressUnmanagedCodeSecurity()]
00595             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTable", ExactSpelling = true)]
00596             internal extern static void ColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
00597             [System.Security.SuppressUnmanagedCodeSecurity()]
00598             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableEXT", ExactSpelling = true)]
00599             internal extern static void ColorTableEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalFormat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
00600             [System.Security.SuppressUnmanagedCodeSecurity()]
00601             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfv", ExactSpelling = true)]
00602             internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single* @params);
00603             [System.Security.SuppressUnmanagedCodeSecurity()]
00604             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfvSGI", ExactSpelling = true)]
00605             internal extern static unsafe void ColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Single* @params);
00606             [System.Security.SuppressUnmanagedCodeSecurity()]
00607             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameteriv", ExactSpelling = true)]
00608             internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32* @params);
00609             [System.Security.SuppressUnmanagedCodeSecurity()]
00610             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterivSGI", ExactSpelling = true)]
00611             internal extern static unsafe void ColorTableParameterivSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Int32* @params);
00612             [System.Security.SuppressUnmanagedCodeSecurity()]
00613             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableSGI", ExactSpelling = true)]
00614             internal extern static void ColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
00615             [System.Security.SuppressUnmanagedCodeSecurity()]
00616             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerInputNV", ExactSpelling = true)]
00617             internal extern static void CombinerInputNV(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);
00618             [System.Security.SuppressUnmanagedCodeSecurity()]
00619             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerOutputNV", ExactSpelling = true)]
00620             internal extern static void CombinerOutputNV(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);
00621             [System.Security.SuppressUnmanagedCodeSecurity()]
00622             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerParameterfNV", ExactSpelling = true)]
00623             internal extern static void CombinerParameterfNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single param);
00624             [System.Security.SuppressUnmanagedCodeSecurity()]
00625             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerParameterfvNV", ExactSpelling = true)]
00626             internal extern static unsafe void CombinerParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Single* @params);
00627             [System.Security.SuppressUnmanagedCodeSecurity()]
00628             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerParameteriNV", ExactSpelling = true)]
00629             internal extern static void CombinerParameteriNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32 param);
00630             [System.Security.SuppressUnmanagedCodeSecurity()]
00631             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerParameterivNV", ExactSpelling = true)]
00632             internal extern static unsafe void CombinerParameterivNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, Int32* @params);
00633             [System.Security.SuppressUnmanagedCodeSecurity()]
00634             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerStageParameterfvNV", ExactSpelling = true)]
00635             internal extern static unsafe void CombinerStageParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, Single* @params);
00636             [System.Security.SuppressUnmanagedCodeSecurity()]
00637             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompileShader", ExactSpelling = true)]
00638             internal extern static void CompileShader(UInt32 shader);
00639             [System.Security.SuppressUnmanagedCodeSecurity()]
00640             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompileShaderARB", ExactSpelling = true)]
00641             internal extern static void CompileShaderARB(UInt32 shaderObj);
00642             [System.Security.SuppressUnmanagedCodeSecurity()]
00643             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedMultiTexImage1DEXT", ExactSpelling = true)]
00644             internal extern static void CompressedMultiTexImage1DEXT(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);
00645             [System.Security.SuppressUnmanagedCodeSecurity()]
00646             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedMultiTexImage2DEXT", ExactSpelling = true)]
00647             internal extern static void CompressedMultiTexImage2DEXT(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);
00648             [System.Security.SuppressUnmanagedCodeSecurity()]
00649             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedMultiTexImage3DEXT", ExactSpelling = true)]
00650             internal extern static void CompressedMultiTexImage3DEXT(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);
00651             [System.Security.SuppressUnmanagedCodeSecurity()]
00652             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedMultiTexSubImage1DEXT", ExactSpelling = true)]
00653             internal extern static void CompressedMultiTexSubImage1DEXT(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);
00654             [System.Security.SuppressUnmanagedCodeSecurity()]
00655             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedMultiTexSubImage2DEXT", ExactSpelling = true)]
00656             internal extern static void CompressedMultiTexSubImage2DEXT(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);
00657             [System.Security.SuppressUnmanagedCodeSecurity()]
00658             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedMultiTexSubImage3DEXT", ExactSpelling = true)]
00659             internal extern static void CompressedMultiTexSubImage3DEXT(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);
00660             [System.Security.SuppressUnmanagedCodeSecurity()]
00661             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage1D", ExactSpelling = true)]
00662             internal extern static void CompressedTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data);
00663             [System.Security.SuppressUnmanagedCodeSecurity()]
00664             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage1DARB", ExactSpelling = true)]
00665             internal extern static void CompressedTexImage1DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr data);
00666             [System.Security.SuppressUnmanagedCodeSecurity()]
00667             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage2D", ExactSpelling = true)]
00668             internal extern static void CompressedTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data);
00669             [System.Security.SuppressUnmanagedCodeSecurity()]
00670             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage2DARB", ExactSpelling = true)]
00671             internal extern static void CompressedTexImage2DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data);
00672             [System.Security.SuppressUnmanagedCodeSecurity()]
00673             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage3D", ExactSpelling = true)]
00674             internal extern static void CompressedTexImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data);
00675             [System.Security.SuppressUnmanagedCodeSecurity()]
00676             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage3DARB", ExactSpelling = true)]
00677             internal extern static void CompressedTexImage3DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, Int32 imageSize, IntPtr data);
00678             [System.Security.SuppressUnmanagedCodeSecurity()]
00679             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage1D", ExactSpelling = true)]
00680             internal extern static void CompressedTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data);
00681             [System.Security.SuppressUnmanagedCodeSecurity()]
00682             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage1DARB", ExactSpelling = true)]
00683             internal extern static void CompressedTexSubImage1DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data);
00684             [System.Security.SuppressUnmanagedCodeSecurity()]
00685             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage2D", ExactSpelling = true)]
00686             internal extern static void CompressedTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data);
00687             [System.Security.SuppressUnmanagedCodeSecurity()]
00688             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage2DARB", ExactSpelling = true)]
00689             internal extern static void CompressedTexSubImage2DARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr data);
00690             [System.Security.SuppressUnmanagedCodeSecurity()]
00691             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage3D", ExactSpelling = true)]
00692             internal extern static void CompressedTexSubImage3D(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);
00693             [System.Security.SuppressUnmanagedCodeSecurity()]
00694             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage3DARB", ExactSpelling = true)]
00695             internal extern static void CompressedTexSubImage3DARB(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);
00696             [System.Security.SuppressUnmanagedCodeSecurity()]
00697             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTextureImage1DEXT", ExactSpelling = true)]
00698             internal extern static void CompressedTextureImage1DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, Int32 imageSize, IntPtr bits);
00699             [System.Security.SuppressUnmanagedCodeSecurity()]
00700             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTextureImage2DEXT", ExactSpelling = true)]
00701             internal extern static void CompressedTextureImage2DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr bits);
00702             [System.Security.SuppressUnmanagedCodeSecurity()]
00703             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTextureImage3DEXT", ExactSpelling = true)]
00704             internal extern static void CompressedTextureImage3DEXT(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);
00705             [System.Security.SuppressUnmanagedCodeSecurity()]
00706             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTextureSubImage1DEXT", ExactSpelling = true)]
00707             internal extern static void CompressedTextureSubImage1DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, Int32 imageSize, IntPtr bits);
00708             [System.Security.SuppressUnmanagedCodeSecurity()]
00709             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTextureSubImage2DEXT", ExactSpelling = true)]
00710             internal extern static void CompressedTextureSubImage2DEXT(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);
00711             [System.Security.SuppressUnmanagedCodeSecurity()]
00712             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTextureSubImage3DEXT", ExactSpelling = true)]
00713             internal extern static void CompressedTextureSubImage3DEXT(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);
00714             [System.Security.SuppressUnmanagedCodeSecurity()]
00715             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter1D", ExactSpelling = true)]
00716             internal extern static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
00717             [System.Security.SuppressUnmanagedCodeSecurity()]
00718             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter1DEXT", ExactSpelling = true)]
00719             internal extern static void ConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
00720             [System.Security.SuppressUnmanagedCodeSecurity()]
00721             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2D", ExactSpelling = true)]
00722             internal extern static void ConvolutionFilter2D(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);
00723             [System.Security.SuppressUnmanagedCodeSecurity()]
00724             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2DEXT", ExactSpelling = true)]
00725             internal extern static void ConvolutionFilter2DEXT(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);
00726             [System.Security.SuppressUnmanagedCodeSecurity()]
00727             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterf", ExactSpelling = true)]
00728             internal extern static void ConvolutionParameterf(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params);
00729             [System.Security.SuppressUnmanagedCodeSecurity()]
00730             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfEXT", ExactSpelling = true)]
00731             internal extern static void ConvolutionParameterfEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params);
00732             [System.Security.SuppressUnmanagedCodeSecurity()]
00733             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfv", ExactSpelling = true)]
00734             internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single* @params);
00735             [System.Security.SuppressUnmanagedCodeSecurity()]
00736             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfvEXT", ExactSpelling = true)]
00737             internal extern static unsafe void ConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single* @params);
00738             [System.Security.SuppressUnmanagedCodeSecurity()]
00739             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteri", ExactSpelling = true)]
00740             internal extern static void ConvolutionParameteri(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params);
00741             [System.Security.SuppressUnmanagedCodeSecurity()]
00742             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriEXT", ExactSpelling = true)]
00743             internal extern static void ConvolutionParameteriEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params);
00744             [System.Security.SuppressUnmanagedCodeSecurity()]
00745             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriv", ExactSpelling = true)]
00746             internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32* @params);
00747             [System.Security.SuppressUnmanagedCodeSecurity()]
00748             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterivEXT", ExactSpelling = true)]
00749             internal extern static unsafe void ConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32* @params);
00750             [System.Security.SuppressUnmanagedCodeSecurity()]
00751             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyBufferSubData", ExactSpelling = true)]
00752             internal extern static void CopyBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget readTarget, OpenTK.Graphics.OpenGL.BufferTarget writeTarget, IntPtr readOffset, IntPtr writeOffset, IntPtr size);
00753             [System.Security.SuppressUnmanagedCodeSecurity()]
00754             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorSubTable", ExactSpelling = true)]
00755             internal extern static void CopyColorSubTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width);
00756             [System.Security.SuppressUnmanagedCodeSecurity()]
00757             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorSubTableEXT", ExactSpelling = true)]
00758             internal extern static void CopyColorSubTableEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, Int32 start, Int32 x, Int32 y, Int32 width);
00759             [System.Security.SuppressUnmanagedCodeSecurity()]
00760             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTable", ExactSpelling = true)]
00761             internal extern static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
00762             [System.Security.SuppressUnmanagedCodeSecurity()]
00763             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTableSGI", ExactSpelling = true)]
00764             internal extern static void CopyColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
00765             [System.Security.SuppressUnmanagedCodeSecurity()]
00766             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1D", ExactSpelling = true)]
00767             internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
00768             [System.Security.SuppressUnmanagedCodeSecurity()]
00769             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1DEXT", ExactSpelling = true)]
00770             internal extern static void CopyConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
00771             [System.Security.SuppressUnmanagedCodeSecurity()]
00772             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2D", ExactSpelling = true)]
00773             internal extern static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
00774             [System.Security.SuppressUnmanagedCodeSecurity()]
00775             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2DEXT", ExactSpelling = true)]
00776             internal extern static void CopyConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
00777             [System.Security.SuppressUnmanagedCodeSecurity()]
00778             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyMultiTexImage1DEXT", ExactSpelling = true)]
00779             internal extern static void CopyMultiTexImage1DEXT(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);
00780             [System.Security.SuppressUnmanagedCodeSecurity()]
00781             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyMultiTexImage2DEXT", ExactSpelling = true)]
00782             internal extern static void CopyMultiTexImage2DEXT(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);
00783             [System.Security.SuppressUnmanagedCodeSecurity()]
00784             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyMultiTexSubImage1DEXT", ExactSpelling = true)]
00785             internal extern static void CopyMultiTexSubImage1DEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width);
00786             [System.Security.SuppressUnmanagedCodeSecurity()]
00787             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyMultiTexSubImage2DEXT", ExactSpelling = true)]
00788             internal extern static void CopyMultiTexSubImage2DEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00789             [System.Security.SuppressUnmanagedCodeSecurity()]
00790             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyMultiTexSubImage3DEXT", ExactSpelling = true)]
00791             internal extern static void CopyMultiTexSubImage3DEXT(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);
00792             [System.Security.SuppressUnmanagedCodeSecurity()]
00793             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyPixels", ExactSpelling = true)]
00794             internal extern static void CopyPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelCopyType type);
00795             [System.Security.SuppressUnmanagedCodeSecurity()]
00796             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage1D", ExactSpelling = true)]
00797             internal extern static void CopyTexImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border);
00798             [System.Security.SuppressUnmanagedCodeSecurity()]
00799             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage1DEXT", ExactSpelling = true)]
00800             internal extern static void CopyTexImage1DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 border);
00801             [System.Security.SuppressUnmanagedCodeSecurity()]
00802             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage2D", ExactSpelling = true)]
00803             internal extern static void CopyTexImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border);
00804             [System.Security.SuppressUnmanagedCodeSecurity()]
00805             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage2DEXT", ExactSpelling = true)]
00806             internal extern static void CopyTexImage2DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border);
00807             [System.Security.SuppressUnmanagedCodeSecurity()]
00808             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage1D", ExactSpelling = true)]
00809             internal extern static void CopyTexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width);
00810             [System.Security.SuppressUnmanagedCodeSecurity()]
00811             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage1DEXT", ExactSpelling = true)]
00812             internal extern static void CopyTexSubImage1DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width);
00813             [System.Security.SuppressUnmanagedCodeSecurity()]
00814             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage2D", ExactSpelling = true)]
00815             internal extern static void CopyTexSubImage2D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00816             [System.Security.SuppressUnmanagedCodeSecurity()]
00817             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage2DEXT", ExactSpelling = true)]
00818             internal extern static void CopyTexSubImage2DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00819             [System.Security.SuppressUnmanagedCodeSecurity()]
00820             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage3D", ExactSpelling = true)]
00821             internal extern static void CopyTexSubImage3D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00822             [System.Security.SuppressUnmanagedCodeSecurity()]
00823             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage3DEXT", ExactSpelling = true)]
00824             internal extern static void CopyTexSubImage3DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00825             [System.Security.SuppressUnmanagedCodeSecurity()]
00826             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTextureImage1DEXT", ExactSpelling = true)]
00827             internal extern static void CopyTextureImage1DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 border);
00828             [System.Security.SuppressUnmanagedCodeSecurity()]
00829             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTextureImage2DEXT", ExactSpelling = true)]
00830             internal extern static void CopyTextureImage2DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border);
00831             [System.Security.SuppressUnmanagedCodeSecurity()]
00832             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTextureSubImage1DEXT", ExactSpelling = true)]
00833             internal extern static void CopyTextureSubImage1DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 x, Int32 y, Int32 width);
00834             [System.Security.SuppressUnmanagedCodeSecurity()]
00835             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTextureSubImage2DEXT", ExactSpelling = true)]
00836             internal extern static void CopyTextureSubImage2DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00837             [System.Security.SuppressUnmanagedCodeSecurity()]
00838             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTextureSubImage3DEXT", ExactSpelling = true)]
00839             internal extern static void CopyTextureSubImage3DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 zoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00840             [System.Security.SuppressUnmanagedCodeSecurity()]
00841             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCreateProgram", ExactSpelling = true)]
00842             internal extern static Int32 CreateProgram();
00843             [System.Security.SuppressUnmanagedCodeSecurity()]
00844             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCreateProgramObjectARB", ExactSpelling = true)]
00845             internal extern static Int32 CreateProgramObjectARB();
00846             [System.Security.SuppressUnmanagedCodeSecurity()]
00847             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCreateShader", ExactSpelling = true)]
00848             internal extern static Int32 CreateShader(OpenTK.Graphics.OpenGL.ShaderType type);
00849             [System.Security.SuppressUnmanagedCodeSecurity()]
00850             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCreateShaderObjectARB", ExactSpelling = true)]
00851             internal extern static Int32 CreateShaderObjectARB(OpenTK.Graphics.OpenGL.ArbShaderObjects shaderType);
00852             [System.Security.SuppressUnmanagedCodeSecurity()]
00853             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCullFace", ExactSpelling = true)]
00854             internal extern static void CullFace(OpenTK.Graphics.OpenGL.CullFaceMode mode);
00855             [System.Security.SuppressUnmanagedCodeSecurity()]
00856             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCullParameterdvEXT", ExactSpelling = true)]
00857             internal extern static unsafe void CullParameterdvEXT(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] Double* @params);
00858             [System.Security.SuppressUnmanagedCodeSecurity()]
00859             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCullParameterfvEXT", ExactSpelling = true)]
00860             internal extern static unsafe void CullParameterfvEXT(OpenTK.Graphics.OpenGL.ExtCullVertex pname, [OutAttribute] Single* @params);
00861             [System.Security.SuppressUnmanagedCodeSecurity()]
00862             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCurrentPaletteMatrixARB", ExactSpelling = true)]
00863             internal extern static void CurrentPaletteMatrixARB(Int32 index);
00864             [System.Security.SuppressUnmanagedCodeSecurity()]
00865             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformationMap3dSGIX", ExactSpelling = true)]
00866             internal extern static unsafe void DeformationMap3dSGIX(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);
00867             [System.Security.SuppressUnmanagedCodeSecurity()]
00868             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformationMap3fSGIX", ExactSpelling = true)]
00869             internal extern static unsafe void DeformationMap3fSGIX(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);
00870             [System.Security.SuppressUnmanagedCodeSecurity()]
00871             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformSGIX", ExactSpelling = true)]
00872             internal extern static void DeformSGIX(UInt32 mask);
00873             [System.Security.SuppressUnmanagedCodeSecurity()]
00874             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteAsyncMarkersSGIX", ExactSpelling = true)]
00875             internal extern static void DeleteAsyncMarkersSGIX(UInt32 marker, Int32 range);
00876             [System.Security.SuppressUnmanagedCodeSecurity()]
00877             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteBuffers", ExactSpelling = true)]
00878             internal extern static unsafe void DeleteBuffers(Int32 n, UInt32* buffers);
00879             [System.Security.SuppressUnmanagedCodeSecurity()]
00880             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteBuffersARB", ExactSpelling = true)]
00881             internal extern static unsafe void DeleteBuffersARB(Int32 n, UInt32* buffers);
00882             [System.Security.SuppressUnmanagedCodeSecurity()]
00883             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFencesAPPLE", ExactSpelling = true)]
00884             internal extern static unsafe void DeleteFencesAPPLE(Int32 n, UInt32* fences);
00885             [System.Security.SuppressUnmanagedCodeSecurity()]
00886             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFencesNV", ExactSpelling = true)]
00887             internal extern static unsafe void DeleteFencesNV(Int32 n, UInt32* fences);
00888             [System.Security.SuppressUnmanagedCodeSecurity()]
00889             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFragmentShaderATI", ExactSpelling = true)]
00890             internal extern static void DeleteFragmentShaderATI(UInt32 id);
00891             [System.Security.SuppressUnmanagedCodeSecurity()]
00892             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFramebuffers", ExactSpelling = true)]
00893             internal extern static unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers);
00894             [System.Security.SuppressUnmanagedCodeSecurity()]
00895             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFramebuffersEXT", ExactSpelling = true)]
00896             internal extern static unsafe void DeleteFramebuffersEXT(Int32 n, UInt32* framebuffers);
00897             [System.Security.SuppressUnmanagedCodeSecurity()]
00898             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteLists", ExactSpelling = true)]
00899             internal extern static void DeleteLists(UInt32 list, Int32 range);
00900             [System.Security.SuppressUnmanagedCodeSecurity()]
00901             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteObjectARB", ExactSpelling = true)]
00902             internal extern static void DeleteObjectARB(UInt32 obj);
00903             [System.Security.SuppressUnmanagedCodeSecurity()]
00904             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteOcclusionQueriesNV", ExactSpelling = true)]
00905             internal extern static unsafe void DeleteOcclusionQueriesNV(Int32 n, UInt32* ids);
00906             [System.Security.SuppressUnmanagedCodeSecurity()]
00907             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeletePerfMonitorsAMD", ExactSpelling = true)]
00908             internal extern static unsafe void DeletePerfMonitorsAMD(Int32 n, [OutAttribute] UInt32* monitors);
00909             [System.Security.SuppressUnmanagedCodeSecurity()]
00910             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteProgram", ExactSpelling = true)]
00911             internal extern static void DeleteProgram(UInt32 program);
00912             [System.Security.SuppressUnmanagedCodeSecurity()]
00913             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteProgramsARB", ExactSpelling = true)]
00914             internal extern static unsafe void DeleteProgramsARB(Int32 n, UInt32* programs);
00915             [System.Security.SuppressUnmanagedCodeSecurity()]
00916             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteProgramsNV", ExactSpelling = true)]
00917             internal extern static unsafe void DeleteProgramsNV(Int32 n, UInt32* programs);
00918             [System.Security.SuppressUnmanagedCodeSecurity()]
00919             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteQueries", ExactSpelling = true)]
00920             internal extern static unsafe void DeleteQueries(Int32 n, UInt32* ids);
00921             [System.Security.SuppressUnmanagedCodeSecurity()]
00922             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteQueriesARB", ExactSpelling = true)]
00923             internal extern static unsafe void DeleteQueriesARB(Int32 n, UInt32* ids);
00924             [System.Security.SuppressUnmanagedCodeSecurity()]
00925             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteRenderbuffers", ExactSpelling = true)]
00926             internal extern static unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers);
00927             [System.Security.SuppressUnmanagedCodeSecurity()]
00928             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteRenderbuffersEXT", ExactSpelling = true)]
00929             internal extern static unsafe void DeleteRenderbuffersEXT(Int32 n, UInt32* renderbuffers);
00930             [System.Security.SuppressUnmanagedCodeSecurity()]
00931             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteShader", ExactSpelling = true)]
00932             internal extern static void DeleteShader(UInt32 shader);
00933             [System.Security.SuppressUnmanagedCodeSecurity()]
00934             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteSync", ExactSpelling = true)]
00935             internal extern static void DeleteSync(IntPtr sync);
00936             [System.Security.SuppressUnmanagedCodeSecurity()]
00937             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteTextures", ExactSpelling = true)]
00938             internal extern static unsafe void DeleteTextures(Int32 n, UInt32* textures);
00939             [System.Security.SuppressUnmanagedCodeSecurity()]
00940             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteTexturesEXT", ExactSpelling = true)]
00941             internal extern static unsafe void DeleteTexturesEXT(Int32 n, UInt32* textures);
00942             [System.Security.SuppressUnmanagedCodeSecurity()]
00943             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteTransformFeedbacksNV", ExactSpelling = true)]
00944             internal extern static unsafe void DeleteTransformFeedbacksNV(Int32 n, UInt32* ids);
00945             [System.Security.SuppressUnmanagedCodeSecurity()]
00946             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteVertexArrays", ExactSpelling = true)]
00947             internal extern static unsafe void DeleteVertexArrays(Int32 n, UInt32* arrays);
00948             [System.Security.SuppressUnmanagedCodeSecurity()]
00949             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteVertexArraysAPPLE", ExactSpelling = true)]
00950             internal extern static unsafe void DeleteVertexArraysAPPLE(Int32 n, UInt32* arrays);
00951             [System.Security.SuppressUnmanagedCodeSecurity()]
00952             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteVertexShaderEXT", ExactSpelling = true)]
00953             internal extern static void DeleteVertexShaderEXT(UInt32 id);
00954             [System.Security.SuppressUnmanagedCodeSecurity()]
00955             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthBoundsdNV", ExactSpelling = true)]
00956             internal extern static void DepthBoundsdNV(Double zmin, Double zmax);
00957             [System.Security.SuppressUnmanagedCodeSecurity()]
00958             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthBoundsEXT", ExactSpelling = true)]
00959             internal extern static void DepthBoundsEXT(Double zmin, Double zmax);
00960             [System.Security.SuppressUnmanagedCodeSecurity()]
00961             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthFunc", ExactSpelling = true)]
00962             internal extern static void DepthFunc(OpenTK.Graphics.OpenGL.DepthFunction func);
00963             [System.Security.SuppressUnmanagedCodeSecurity()]
00964             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthMask", ExactSpelling = true)]
00965             internal extern static void DepthMask(bool flag);
00966             [System.Security.SuppressUnmanagedCodeSecurity()]
00967             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthRange", ExactSpelling = true)]
00968             internal extern static void DepthRange(Double near, Double far);
00969             [System.Security.SuppressUnmanagedCodeSecurity()]
00970             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthRangedNV", ExactSpelling = true)]
00971             internal extern static void DepthRangedNV(Double zNear, Double zFar);
00972             [System.Security.SuppressUnmanagedCodeSecurity()]
00973             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDetachObjectARB", ExactSpelling = true)]
00974             internal extern static void DetachObjectARB(UInt32 containerObj, UInt32 attachedObj);
00975             [System.Security.SuppressUnmanagedCodeSecurity()]
00976             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDetachShader", ExactSpelling = true)]
00977             internal extern static void DetachShader(UInt32 program, UInt32 shader);
00978             [System.Security.SuppressUnmanagedCodeSecurity()]
00979             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDetailTexFuncSGIS", ExactSpelling = true)]
00980             internal extern static unsafe void DetailTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points);
00981             [System.Security.SuppressUnmanagedCodeSecurity()]
00982             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisable", ExactSpelling = true)]
00983             internal extern static void Disable(OpenTK.Graphics.OpenGL.EnableCap cap);
00984             [System.Security.SuppressUnmanagedCodeSecurity()]
00985             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableClientState", ExactSpelling = true)]
00986             internal extern static void DisableClientState(OpenTK.Graphics.OpenGL.ArrayCap array);
00987             [System.Security.SuppressUnmanagedCodeSecurity()]
00988             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableClientStateIndexedEXT", ExactSpelling = true)]
00989             internal extern static void DisableClientStateIndexedEXT(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index);
00990             [System.Security.SuppressUnmanagedCodeSecurity()]
00991             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisablei", ExactSpelling = true)]
00992             internal extern static void Disablei(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index);
00993             [System.Security.SuppressUnmanagedCodeSecurity()]
00994             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableIndexedEXT", ExactSpelling = true)]
00995             internal extern static void DisableIndexedEXT(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index);
00996             [System.Security.SuppressUnmanagedCodeSecurity()]
00997             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableVariantClientStateEXT", ExactSpelling = true)]
00998             internal extern static void DisableVariantClientStateEXT(UInt32 id);
00999             [System.Security.SuppressUnmanagedCodeSecurity()]
01000             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableVertexAttribAPPLE", ExactSpelling = true)]
01001             internal extern static void DisableVertexAttribAPPLE(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname);
01002             [System.Security.SuppressUnmanagedCodeSecurity()]
01003             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableVertexAttribArray", ExactSpelling = true)]
01004             internal extern static void DisableVertexAttribArray(UInt32 index);
01005             [System.Security.SuppressUnmanagedCodeSecurity()]
01006             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableVertexAttribArrayARB", ExactSpelling = true)]
01007             internal extern static void DisableVertexAttribArrayARB(UInt32 index);
01008             [System.Security.SuppressUnmanagedCodeSecurity()]
01009             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArrays", ExactSpelling = true)]
01010             internal extern static void DrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count);
01011             [System.Security.SuppressUnmanagedCodeSecurity()]
01012             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArraysEXT", ExactSpelling = true)]
01013             internal extern static void DrawArraysEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count);
01014             [System.Security.SuppressUnmanagedCodeSecurity()]
01015             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArraysInstanced", ExactSpelling = true)]
01016             internal extern static void DrawArraysInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 primcount);
01017             [System.Security.SuppressUnmanagedCodeSecurity()]
01018             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArraysInstancedARB", ExactSpelling = true)]
01019             internal extern static void DrawArraysInstancedARB(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 primcount);
01020             [System.Security.SuppressUnmanagedCodeSecurity()]
01021             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArraysInstancedEXT", ExactSpelling = true)]
01022             internal extern static void DrawArraysInstancedEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 start, Int32 count, Int32 primcount);
01023             [System.Security.SuppressUnmanagedCodeSecurity()]
01024             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffer", ExactSpelling = true)]
01025             internal extern static void DrawBuffer(OpenTK.Graphics.OpenGL.DrawBufferMode mode);
01026             [System.Security.SuppressUnmanagedCodeSecurity()]
01027             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffers", ExactSpelling = true)]
01028             internal extern static unsafe void DrawBuffers(Int32 n, OpenTK.Graphics.OpenGL.DrawBuffersEnum* bufs);
01029             [System.Security.SuppressUnmanagedCodeSecurity()]
01030             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffersARB", ExactSpelling = true)]
01031             internal extern static unsafe void DrawBuffersARB(Int32 n, OpenTK.Graphics.OpenGL.ArbDrawBuffers* bufs);
01032             [System.Security.SuppressUnmanagedCodeSecurity()]
01033             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawBuffersATI", ExactSpelling = true)]
01034             internal extern static unsafe void DrawBuffersATI(Int32 n, OpenTK.Graphics.OpenGL.AtiDrawBuffers* bufs);
01035             [System.Security.SuppressUnmanagedCodeSecurity()]
01036             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementArrayAPPLE", ExactSpelling = true)]
01037             internal extern static void DrawElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count);
01038             [System.Security.SuppressUnmanagedCodeSecurity()]
01039             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementArrayATI", ExactSpelling = true)]
01040             internal extern static void DrawElementArrayATI(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count);
01041             [System.Security.SuppressUnmanagedCodeSecurity()]
01042             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElements", ExactSpelling = true)]
01043             internal extern static void DrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices);
01044             [System.Security.SuppressUnmanagedCodeSecurity()]
01045             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementsBaseVertex", ExactSpelling = true)]
01046             internal extern static void DrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 basevertex);
01047             [System.Security.SuppressUnmanagedCodeSecurity()]
01048             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementsInstanced", ExactSpelling = true)]
01049             internal extern static void DrawElementsInstanced(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount);
01050             [System.Security.SuppressUnmanagedCodeSecurity()]
01051             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementsInstancedARB", ExactSpelling = true)]
01052             internal extern static void DrawElementsInstancedARB(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount);
01053             [System.Security.SuppressUnmanagedCodeSecurity()]
01054             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementsInstancedBaseVertex", ExactSpelling = true)]
01055             internal extern static void DrawElementsInstancedBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 basevertex);
01056             [System.Security.SuppressUnmanagedCodeSecurity()]
01057             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElementsInstancedEXT", ExactSpelling = true)]
01058             internal extern static void DrawElementsInstancedEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount);
01059             [System.Security.SuppressUnmanagedCodeSecurity()]
01060             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawMeshArraysSUN", ExactSpelling = true)]
01061             internal extern static void DrawMeshArraysSUN(OpenTK.Graphics.OpenGL.BeginMode mode, Int32 first, Int32 count, Int32 width);
01062             [System.Security.SuppressUnmanagedCodeSecurity()]
01063             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawPixels", ExactSpelling = true)]
01064             internal extern static void DrawPixels(Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
01065             [System.Security.SuppressUnmanagedCodeSecurity()]
01066             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElementArrayAPPLE", ExactSpelling = true)]
01067             internal extern static void DrawRangeElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 first, Int32 count);
01068             [System.Security.SuppressUnmanagedCodeSecurity()]
01069             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElementArrayATI", ExactSpelling = true)]
01070             internal extern static void DrawRangeElementArrayATI(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count);
01071             [System.Security.SuppressUnmanagedCodeSecurity()]
01072             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElements", ExactSpelling = true)]
01073             internal extern static void DrawRangeElements(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices);
01074             [System.Security.SuppressUnmanagedCodeSecurity()]
01075             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElementsBaseVertex", ExactSpelling = true)]
01076             internal extern static void DrawRangeElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 basevertex);
01077             [System.Security.SuppressUnmanagedCodeSecurity()]
01078             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawRangeElementsEXT", ExactSpelling = true)]
01079             internal extern static void DrawRangeElementsEXT(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32 count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices);
01080             [System.Security.SuppressUnmanagedCodeSecurity()]
01081             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTransformFeedbackNV", ExactSpelling = true)]
01082             internal extern static void DrawTransformFeedbackNV(OpenTK.Graphics.OpenGL.NvTransformFeedback2 mode, UInt32 id);
01083             [System.Security.SuppressUnmanagedCodeSecurity()]
01084             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEdgeFlag", ExactSpelling = true)]
01085             internal extern static void EdgeFlag(bool flag);
01086             [System.Security.SuppressUnmanagedCodeSecurity()]
01087             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEdgeFlagPointer", ExactSpelling = true)]
01088             internal extern static void EdgeFlagPointer(Int32 stride, IntPtr pointer);
01089             [System.Security.SuppressUnmanagedCodeSecurity()]
01090             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEdgeFlagPointerEXT", ExactSpelling = true)]
01091             internal extern static unsafe void EdgeFlagPointerEXT(Int32 stride, Int32 count, bool* pointer);
01092             [System.Security.SuppressUnmanagedCodeSecurity()]
01093             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEdgeFlagPointerListIBM", ExactSpelling = true)]
01094             internal extern static unsafe void EdgeFlagPointerListIBM(Int32 stride, bool* pointer, Int32 ptrstride);
01095             [System.Security.SuppressUnmanagedCodeSecurity()]
01096             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEdgeFlagv", ExactSpelling = true)]
01097             internal extern static unsafe void EdgeFlagv(bool* flag);
01098             [System.Security.SuppressUnmanagedCodeSecurity()]
01099             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glElementPointerAPPLE", ExactSpelling = true)]
01100             internal extern static void ElementPointerAPPLE(OpenTK.Graphics.OpenGL.AppleElementArray type, IntPtr pointer);
01101             [System.Security.SuppressUnmanagedCodeSecurity()]
01102             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glElementPointerATI", ExactSpelling = true)]
01103             internal extern static void ElementPointerATI(OpenTK.Graphics.OpenGL.AtiElementArray type, IntPtr pointer);
01104             [System.Security.SuppressUnmanagedCodeSecurity()]
01105             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnable", ExactSpelling = true)]
01106             internal extern static void Enable(OpenTK.Graphics.OpenGL.EnableCap cap);
01107             [System.Security.SuppressUnmanagedCodeSecurity()]
01108             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableClientState", ExactSpelling = true)]
01109             internal extern static void EnableClientState(OpenTK.Graphics.OpenGL.ArrayCap array);
01110             [System.Security.SuppressUnmanagedCodeSecurity()]
01111             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableClientStateIndexedEXT", ExactSpelling = true)]
01112             internal extern static void EnableClientStateIndexedEXT(OpenTK.Graphics.OpenGL.EnableCap array, UInt32 index);
01113             [System.Security.SuppressUnmanagedCodeSecurity()]
01114             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnablei", ExactSpelling = true)]
01115             internal extern static void Enablei(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index);
01116             [System.Security.SuppressUnmanagedCodeSecurity()]
01117             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableIndexedEXT", ExactSpelling = true)]
01118             internal extern static void EnableIndexedEXT(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index);
01119             [System.Security.SuppressUnmanagedCodeSecurity()]
01120             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableVariantClientStateEXT", ExactSpelling = true)]
01121             internal extern static void EnableVariantClientStateEXT(UInt32 id);
01122             [System.Security.SuppressUnmanagedCodeSecurity()]
01123             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableVertexAttribAPPLE", ExactSpelling = true)]
01124             internal extern static void EnableVertexAttribAPPLE(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname);
01125             [System.Security.SuppressUnmanagedCodeSecurity()]
01126             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableVertexAttribArray", ExactSpelling = true)]
01127             internal extern static void EnableVertexAttribArray(UInt32 index);
01128             [System.Security.SuppressUnmanagedCodeSecurity()]
01129             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableVertexAttribArrayARB", ExactSpelling = true)]
01130             internal extern static void EnableVertexAttribArrayARB(UInt32 index);
01131             [System.Security.SuppressUnmanagedCodeSecurity()]
01132             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnd", ExactSpelling = true)]
01133             internal extern static void End();
01134             [System.Security.SuppressUnmanagedCodeSecurity()]
01135             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndConditionalRender", ExactSpelling = true)]
01136             internal extern static void EndConditionalRender();
01137             [System.Security.SuppressUnmanagedCodeSecurity()]
01138             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndConditionalRenderNV", ExactSpelling = true)]
01139             internal extern static void EndConditionalRenderNV();
01140             [System.Security.SuppressUnmanagedCodeSecurity()]
01141             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndFragmentShaderATI", ExactSpelling = true)]
01142             internal extern static void EndFragmentShaderATI();
01143             [System.Security.SuppressUnmanagedCodeSecurity()]
01144             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndList", ExactSpelling = true)]
01145             internal extern static void EndList();
01146             [System.Security.SuppressUnmanagedCodeSecurity()]
01147             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndOcclusionQueryNV", ExactSpelling = true)]
01148             internal extern static void EndOcclusionQueryNV();
01149             [System.Security.SuppressUnmanagedCodeSecurity()]
01150             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndPerfMonitorAMD", ExactSpelling = true)]
01151             internal extern static void EndPerfMonitorAMD(UInt32 monitor);
01152             [System.Security.SuppressUnmanagedCodeSecurity()]
01153             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndQuery", ExactSpelling = true)]
01154             internal extern static void EndQuery(OpenTK.Graphics.OpenGL.QueryTarget target);
01155             [System.Security.SuppressUnmanagedCodeSecurity()]
01156             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndQueryARB", ExactSpelling = true)]
01157             internal extern static void EndQueryARB(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target);
01158             [System.Security.SuppressUnmanagedCodeSecurity()]
01159             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndTransformFeedback", ExactSpelling = true)]
01160             internal extern static void EndTransformFeedback();
01161             [System.Security.SuppressUnmanagedCodeSecurity()]
01162             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndTransformFeedbackEXT", ExactSpelling = true)]
01163             internal extern static void EndTransformFeedbackEXT();
01164             [System.Security.SuppressUnmanagedCodeSecurity()]
01165             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndTransformFeedbackNV", ExactSpelling = true)]
01166             internal extern static void EndTransformFeedbackNV();
01167             [System.Security.SuppressUnmanagedCodeSecurity()]
01168             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEndVertexShaderEXT", ExactSpelling = true)]
01169             internal extern static void EndVertexShaderEXT();
01170             [System.Security.SuppressUnmanagedCodeSecurity()]
01171             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord1d", ExactSpelling = true)]
01172             internal extern static void EvalCoord1d(Double u);
01173             [System.Security.SuppressUnmanagedCodeSecurity()]
01174             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord1dv", ExactSpelling = true)]
01175             internal extern static unsafe void EvalCoord1dv(Double* u);
01176             [System.Security.SuppressUnmanagedCodeSecurity()]
01177             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord1f", ExactSpelling = true)]
01178             internal extern static void EvalCoord1f(Single u);
01179             [System.Security.SuppressUnmanagedCodeSecurity()]
01180             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord1fv", ExactSpelling = true)]
01181             internal extern static unsafe void EvalCoord1fv(Single* u);
01182             [System.Security.SuppressUnmanagedCodeSecurity()]
01183             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord2d", ExactSpelling = true)]
01184             internal extern static void EvalCoord2d(Double u, Double v);
01185             [System.Security.SuppressUnmanagedCodeSecurity()]
01186             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord2dv", ExactSpelling = true)]
01187             internal extern static unsafe void EvalCoord2dv(Double* u);
01188             [System.Security.SuppressUnmanagedCodeSecurity()]
01189             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord2f", ExactSpelling = true)]
01190             internal extern static void EvalCoord2f(Single u, Single v);
01191             [System.Security.SuppressUnmanagedCodeSecurity()]
01192             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalCoord2fv", ExactSpelling = true)]
01193             internal extern static unsafe void EvalCoord2fv(Single* u);
01194             [System.Security.SuppressUnmanagedCodeSecurity()]
01195             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalMapsNV", ExactSpelling = true)]
01196             internal extern static void EvalMapsNV(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators mode);
01197             [System.Security.SuppressUnmanagedCodeSecurity()]
01198             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalMesh1", ExactSpelling = true)]
01199             internal extern static void EvalMesh1(OpenTK.Graphics.OpenGL.MeshMode1 mode, Int32 i1, Int32 i2);
01200             [System.Security.SuppressUnmanagedCodeSecurity()]
01201             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalMesh2", ExactSpelling = true)]
01202             internal extern static void EvalMesh2(OpenTK.Graphics.OpenGL.MeshMode2 mode, Int32 i1, Int32 i2, Int32 j1, Int32 j2);
01203             [System.Security.SuppressUnmanagedCodeSecurity()]
01204             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalPoint1", ExactSpelling = true)]
01205             internal extern static void EvalPoint1(Int32 i);
01206             [System.Security.SuppressUnmanagedCodeSecurity()]
01207             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEvalPoint2", ExactSpelling = true)]
01208             internal extern static void EvalPoint2(Int32 i, Int32 j);
01209             [System.Security.SuppressUnmanagedCodeSecurity()]
01210             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glExecuteProgramNV", ExactSpelling = true)]
01211             internal extern static unsafe void ExecuteProgramNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Single* @params);
01212             [System.Security.SuppressUnmanagedCodeSecurity()]
01213             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glExtractComponentEXT", ExactSpelling = true)]
01214             internal extern static void ExtractComponentEXT(UInt32 res, UInt32 src, UInt32 num);
01215             [System.Security.SuppressUnmanagedCodeSecurity()]
01216             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFeedbackBuffer", ExactSpelling = true)]
01217             internal extern static unsafe void FeedbackBuffer(Int32 size, OpenTK.Graphics.OpenGL.FeedbackType type, [OutAttribute] Single* buffer);
01218             [System.Security.SuppressUnmanagedCodeSecurity()]
01219             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFenceSync", ExactSpelling = true)]
01220             internal extern static IntPtr FenceSync(OpenTK.Graphics.OpenGL.ArbSync condition, UInt32 flags);
01221             [System.Security.SuppressUnmanagedCodeSecurity()]
01222             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinalCombinerInputNV", ExactSpelling = true)]
01223             internal extern static void FinalCombinerInputNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage);
01224             [System.Security.SuppressUnmanagedCodeSecurity()]
01225             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinish", ExactSpelling = true)]
01226             internal extern static void Finish();
01227             [System.Security.SuppressUnmanagedCodeSecurity()]
01228             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinishAsyncSGIX", ExactSpelling = true)]
01229             internal extern static unsafe Int32 FinishAsyncSGIX([OutAttribute] UInt32* markerp);
01230             [System.Security.SuppressUnmanagedCodeSecurity()]
01231             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinishFenceAPPLE", ExactSpelling = true)]
01232             internal extern static void FinishFenceAPPLE(UInt32 fence);
01233             [System.Security.SuppressUnmanagedCodeSecurity()]
01234             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinishFenceNV", ExactSpelling = true)]
01235             internal extern static void FinishFenceNV(UInt32 fence);
01236             [System.Security.SuppressUnmanagedCodeSecurity()]
01237             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinishObjectAPPLE", ExactSpelling = true)]
01238             internal extern static void FinishObjectAPPLE(OpenTK.Graphics.OpenGL.AppleFence @object, Int32 name);
01239             [System.Security.SuppressUnmanagedCodeSecurity()]
01240             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinishTextureSUNX", ExactSpelling = true)]
01241             internal extern static void FinishTextureSUNX();
01242             [System.Security.SuppressUnmanagedCodeSecurity()]
01243             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlush", ExactSpelling = true)]
01244             internal extern static void Flush();
01245             [System.Security.SuppressUnmanagedCodeSecurity()]
01246             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushMappedBufferRange", ExactSpelling = true)]
01247             internal extern static void FlushMappedBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length);
01248             [System.Security.SuppressUnmanagedCodeSecurity()]
01249             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushMappedBufferRangeAPPLE", ExactSpelling = true)]
01250             internal extern static void FlushMappedBufferRangeAPPLE(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size);
01251             [System.Security.SuppressUnmanagedCodeSecurity()]
01252             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushPixelDataRangeNV", ExactSpelling = true)]
01253             internal extern static void FlushPixelDataRangeNV(OpenTK.Graphics.OpenGL.NvPixelDataRange target);
01254             [System.Security.SuppressUnmanagedCodeSecurity()]
01255             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushRasterSGIX", ExactSpelling = true)]
01256             internal extern static void FlushRasterSGIX();
01257             [System.Security.SuppressUnmanagedCodeSecurity()]
01258             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushVertexArrayRangeAPPLE", ExactSpelling = true)]
01259             internal extern static void FlushVertexArrayRangeAPPLE(Int32 length, [OutAttribute] IntPtr pointer);
01260             [System.Security.SuppressUnmanagedCodeSecurity()]
01261             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlushVertexArrayRangeNV", ExactSpelling = true)]
01262             internal extern static void FlushVertexArrayRangeNV();
01263             [System.Security.SuppressUnmanagedCodeSecurity()]
01264             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordd", ExactSpelling = true)]
01265             internal extern static void FogCoordd(Double coord);
01266             [System.Security.SuppressUnmanagedCodeSecurity()]
01267             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoorddEXT", ExactSpelling = true)]
01268             internal extern static void FogCoorddEXT(Double coord);
01269             [System.Security.SuppressUnmanagedCodeSecurity()]
01270             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoorddv", ExactSpelling = true)]
01271             internal extern static unsafe void FogCoorddv(Double* coord);
01272             [System.Security.SuppressUnmanagedCodeSecurity()]
01273             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoorddvEXT", ExactSpelling = true)]
01274             internal extern static unsafe void FogCoorddvEXT(Double* coord);
01275             [System.Security.SuppressUnmanagedCodeSecurity()]
01276             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordf", ExactSpelling = true)]
01277             internal extern static void FogCoordf(Single coord);
01278             [System.Security.SuppressUnmanagedCodeSecurity()]
01279             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordfEXT", ExactSpelling = true)]
01280             internal extern static void FogCoordfEXT(Single coord);
01281             [System.Security.SuppressUnmanagedCodeSecurity()]
01282             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordfv", ExactSpelling = true)]
01283             internal extern static unsafe void FogCoordfv(Single* coord);
01284             [System.Security.SuppressUnmanagedCodeSecurity()]
01285             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordfvEXT", ExactSpelling = true)]
01286             internal extern static unsafe void FogCoordfvEXT(Single* coord);
01287             [System.Security.SuppressUnmanagedCodeSecurity()]
01288             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordhNV", ExactSpelling = true)]
01289             internal extern static void FogCoordhNV(OpenTK.Half fog);
01290             [System.Security.SuppressUnmanagedCodeSecurity()]
01291             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordhvNV", ExactSpelling = true)]
01292             internal extern static unsafe void FogCoordhvNV(OpenTK.Half* fog);
01293             [System.Security.SuppressUnmanagedCodeSecurity()]
01294             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointer", ExactSpelling = true)]
01295             internal extern static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer);
01296             [System.Security.SuppressUnmanagedCodeSecurity()]
01297             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointerEXT", ExactSpelling = true)]
01298             internal extern static void FogCoordPointerEXT(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, IntPtr pointer);
01299             [System.Security.SuppressUnmanagedCodeSecurity()]
01300             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointerListIBM", ExactSpelling = true)]
01301             internal extern static void FogCoordPointerListIBM(OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride);
01302             [System.Security.SuppressUnmanagedCodeSecurity()]
01303             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogf", ExactSpelling = true)]
01304             internal extern static void Fogf(OpenTK.Graphics.OpenGL.FogParameter pname, Single param);
01305             [System.Security.SuppressUnmanagedCodeSecurity()]
01306             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogFuncSGIS", ExactSpelling = true)]
01307             internal extern static unsafe void FogFuncSGIS(Int32 n, Single* points);
01308             [System.Security.SuppressUnmanagedCodeSecurity()]
01309             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogfv", ExactSpelling = true)]
01310             internal extern static unsafe void Fogfv(OpenTK.Graphics.OpenGL.FogParameter pname, Single* @params);
01311             [System.Security.SuppressUnmanagedCodeSecurity()]
01312             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogi", ExactSpelling = true)]
01313             internal extern static void Fogi(OpenTK.Graphics.OpenGL.FogParameter pname, Int32 param);
01314             [System.Security.SuppressUnmanagedCodeSecurity()]
01315             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogiv", ExactSpelling = true)]
01316             internal extern static unsafe void Fogiv(OpenTK.Graphics.OpenGL.FogParameter pname, Int32* @params);
01317             [System.Security.SuppressUnmanagedCodeSecurity()]
01318             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentColorMaterialSGIX", ExactSpelling = true)]
01319             internal extern static void FragmentColorMaterialSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode);
01320             [System.Security.SuppressUnmanagedCodeSecurity()]
01321             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightfSGIX", ExactSpelling = true)]
01322             internal extern static void FragmentLightfSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param);
01323             [System.Security.SuppressUnmanagedCodeSecurity()]
01324             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightfvSGIX", ExactSpelling = true)]
01325             internal extern static unsafe void FragmentLightfvSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single* @params);
01326             [System.Security.SuppressUnmanagedCodeSecurity()]
01327             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightiSGIX", ExactSpelling = true)]
01328             internal extern static void FragmentLightiSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
01329             [System.Security.SuppressUnmanagedCodeSecurity()]
01330             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightivSGIX", ExactSpelling = true)]
01331             internal extern static unsafe void FragmentLightivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
01332             [System.Security.SuppressUnmanagedCodeSecurity()]
01333             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelfSGIX", ExactSpelling = true)]
01334             internal extern static void FragmentLightModelfSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param);
01335             [System.Security.SuppressUnmanagedCodeSecurity()]
01336             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelfvSGIX", ExactSpelling = true)]
01337             internal extern static unsafe void FragmentLightModelfvSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single* @params);
01338             [System.Security.SuppressUnmanagedCodeSecurity()]
01339             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModeliSGIX", ExactSpelling = true)]
01340             internal extern static void FragmentLightModeliSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
01341             [System.Security.SuppressUnmanagedCodeSecurity()]
01342             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelivSGIX", ExactSpelling = true)]
01343             internal extern static unsafe void FragmentLightModelivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
01344             [System.Security.SuppressUnmanagedCodeSecurity()]
01345             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentMaterialfSGIX", ExactSpelling = true)]
01346             internal extern static void FragmentMaterialfSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param);
01347             [System.Security.SuppressUnmanagedCodeSecurity()]
01348             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentMaterialfvSGIX", ExactSpelling = true)]
01349             internal extern static unsafe void FragmentMaterialfvSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params);
01350             [System.Security.SuppressUnmanagedCodeSecurity()]
01351             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentMaterialiSGIX", ExactSpelling = true)]
01352             internal extern static void FragmentMaterialiSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param);
01353             [System.Security.SuppressUnmanagedCodeSecurity()]
01354             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentMaterialivSGIX", ExactSpelling = true)]
01355             internal extern static unsafe void FragmentMaterialivSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params);
01356             [System.Security.SuppressUnmanagedCodeSecurity()]
01357             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferDrawBufferEXT", ExactSpelling = true)]
01358             internal extern static void FramebufferDrawBufferEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.DrawBufferMode mode);
01359             [System.Security.SuppressUnmanagedCodeSecurity()]
01360             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferDrawBuffersEXT", ExactSpelling = true)]
01361             internal extern static unsafe void FramebufferDrawBuffersEXT(UInt32 framebuffer, Int32 n, OpenTK.Graphics.OpenGL.DrawBufferMode* bufs);
01362             [System.Security.SuppressUnmanagedCodeSecurity()]
01363             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferReadBufferEXT", ExactSpelling = true)]
01364             internal extern static void FramebufferReadBufferEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ReadBufferMode mode);
01365             [System.Security.SuppressUnmanagedCodeSecurity()]
01366             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferRenderbuffer", ExactSpelling = true)]
01367             internal extern static void FramebufferRenderbuffer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer);
01368             [System.Security.SuppressUnmanagedCodeSecurity()]
01369             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferRenderbufferEXT", ExactSpelling = true)]
01370             internal extern static void FramebufferRenderbufferEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer);
01371             [System.Security.SuppressUnmanagedCodeSecurity()]
01372             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture", ExactSpelling = true)]
01373             internal extern static void FramebufferTexture(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level);
01374             [System.Security.SuppressUnmanagedCodeSecurity()]
01375             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture1D", ExactSpelling = true)]
01376             internal extern static void FramebufferTexture1D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level);
01377             [System.Security.SuppressUnmanagedCodeSecurity()]
01378             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture1DEXT", ExactSpelling = true)]
01379             internal extern static void FramebufferTexture1DEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level);
01380             [System.Security.SuppressUnmanagedCodeSecurity()]
01381             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture2D", ExactSpelling = true)]
01382             internal extern static void FramebufferTexture2D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level);
01383             [System.Security.SuppressUnmanagedCodeSecurity()]
01384             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture2DEXT", ExactSpelling = true)]
01385             internal extern static void FramebufferTexture2DEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level);
01386             [System.Security.SuppressUnmanagedCodeSecurity()]
01387             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture3D", ExactSpelling = true)]
01388             internal extern static void FramebufferTexture3D(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset);
01389             [System.Security.SuppressUnmanagedCodeSecurity()]
01390             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture3DEXT", ExactSpelling = true)]
01391             internal extern static void FramebufferTexture3DEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset);
01392             [System.Security.SuppressUnmanagedCodeSecurity()]
01393             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureARB", ExactSpelling = true)]
01394             internal extern static void FramebufferTextureARB(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level);
01395             [System.Security.SuppressUnmanagedCodeSecurity()]
01396             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureEXT", ExactSpelling = true)]
01397             internal extern static void FramebufferTextureEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level);
01398             [System.Security.SuppressUnmanagedCodeSecurity()]
01399             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureFace", ExactSpelling = true)]
01400             internal extern static void FramebufferTextureFace(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.Version32 face);
01401             [System.Security.SuppressUnmanagedCodeSecurity()]
01402             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureFaceARB", ExactSpelling = true)]
01403             internal extern static void FramebufferTextureFaceARB(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face);
01404             [System.Security.SuppressUnmanagedCodeSecurity()]
01405             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureFaceEXT", ExactSpelling = true)]
01406             internal extern static void FramebufferTextureFaceEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face);
01407             [System.Security.SuppressUnmanagedCodeSecurity()]
01408             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureLayer", ExactSpelling = true)]
01409             internal extern static void FramebufferTextureLayer(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
01410             [System.Security.SuppressUnmanagedCodeSecurity()]
01411             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureLayerARB", ExactSpelling = true)]
01412             internal extern static void FramebufferTextureLayerARB(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
01413             [System.Security.SuppressUnmanagedCodeSecurity()]
01414             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTextureLayerEXT", ExactSpelling = true)]
01415             internal extern static void FramebufferTextureLayerEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
01416             [System.Security.SuppressUnmanagedCodeSecurity()]
01417             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrameTerminatorGREMEDY", ExactSpelling = true)]
01418             internal extern static void FrameTerminatorGREMEDY();
01419             [System.Security.SuppressUnmanagedCodeSecurity()]
01420             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrameZoomSGIX", ExactSpelling = true)]
01421             internal extern static void FrameZoomSGIX(Int32 factor);
01422             [System.Security.SuppressUnmanagedCodeSecurity()]
01423             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFreeObjectBufferATI", ExactSpelling = true)]
01424             internal extern static void FreeObjectBufferATI(UInt32 buffer);
01425             [System.Security.SuppressUnmanagedCodeSecurity()]
01426             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrontFace", ExactSpelling = true)]
01427             internal extern static void FrontFace(OpenTK.Graphics.OpenGL.FrontFaceDirection mode);
01428             [System.Security.SuppressUnmanagedCodeSecurity()]
01429             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrustum", ExactSpelling = true)]
01430             internal extern static void Frustum(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar);
01431             [System.Security.SuppressUnmanagedCodeSecurity()]
01432             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenAsyncMarkersSGIX", ExactSpelling = true)]
01433             internal extern static Int32 GenAsyncMarkersSGIX(Int32 range);
01434             [System.Security.SuppressUnmanagedCodeSecurity()]
01435             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenBuffers", ExactSpelling = true)]
01436             internal extern static unsafe void GenBuffers(Int32 n, [OutAttribute] UInt32* buffers);
01437             [System.Security.SuppressUnmanagedCodeSecurity()]
01438             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenBuffersARB", ExactSpelling = true)]
01439             internal extern static unsafe void GenBuffersARB(Int32 n, [OutAttribute] UInt32* buffers);
01440             [System.Security.SuppressUnmanagedCodeSecurity()]
01441             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenerateMipmap", ExactSpelling = true)]
01442             internal extern static void GenerateMipmap(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target);
01443             [System.Security.SuppressUnmanagedCodeSecurity()]
01444             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenerateMipmapEXT", ExactSpelling = true)]
01445             internal extern static void GenerateMipmapEXT(OpenTK.Graphics.OpenGL.GenerateMipmapTarget target);
01446             [System.Security.SuppressUnmanagedCodeSecurity()]
01447             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenerateMultiTexMipmapEXT", ExactSpelling = true)]
01448             internal extern static void GenerateMultiTexMipmapEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target);
01449             [System.Security.SuppressUnmanagedCodeSecurity()]
01450             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenerateTextureMipmapEXT", ExactSpelling = true)]
01451             internal extern static void GenerateTextureMipmapEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target);
01452             [System.Security.SuppressUnmanagedCodeSecurity()]
01453             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFencesAPPLE", ExactSpelling = true)]
01454             internal extern static unsafe void GenFencesAPPLE(Int32 n, [OutAttribute] UInt32* fences);
01455             [System.Security.SuppressUnmanagedCodeSecurity()]
01456             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFencesNV", ExactSpelling = true)]
01457             internal extern static unsafe void GenFencesNV(Int32 n, [OutAttribute] UInt32* fences);
01458             [System.Security.SuppressUnmanagedCodeSecurity()]
01459             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFragmentShadersATI", ExactSpelling = true)]
01460             internal extern static Int32 GenFragmentShadersATI(UInt32 range);
01461             [System.Security.SuppressUnmanagedCodeSecurity()]
01462             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFramebuffers", ExactSpelling = true)]
01463             internal extern static unsafe void GenFramebuffers(Int32 n, [OutAttribute] UInt32* framebuffers);
01464             [System.Security.SuppressUnmanagedCodeSecurity()]
01465             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFramebuffersEXT", ExactSpelling = true)]
01466             internal extern static unsafe void GenFramebuffersEXT(Int32 n, [OutAttribute] UInt32* framebuffers);
01467             [System.Security.SuppressUnmanagedCodeSecurity()]
01468             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenLists", ExactSpelling = true)]
01469             internal extern static Int32 GenLists(Int32 range);
01470             [System.Security.SuppressUnmanagedCodeSecurity()]
01471             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenOcclusionQueriesNV", ExactSpelling = true)]
01472             internal extern static unsafe void GenOcclusionQueriesNV(Int32 n, [OutAttribute] UInt32* ids);
01473             [System.Security.SuppressUnmanagedCodeSecurity()]
01474             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenPerfMonitorsAMD", ExactSpelling = true)]
01475             internal extern static unsafe void GenPerfMonitorsAMD(Int32 n, [OutAttribute] UInt32* monitors);
01476             [System.Security.SuppressUnmanagedCodeSecurity()]
01477             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenProgramsARB", ExactSpelling = true)]
01478             internal extern static unsafe void GenProgramsARB(Int32 n, [OutAttribute] UInt32* programs);
01479             [System.Security.SuppressUnmanagedCodeSecurity()]
01480             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenProgramsNV", ExactSpelling = true)]
01481             internal extern static unsafe void GenProgramsNV(Int32 n, [OutAttribute] UInt32* programs);
01482             [System.Security.SuppressUnmanagedCodeSecurity()]
01483             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenQueries", ExactSpelling = true)]
01484             internal extern static unsafe void GenQueries(Int32 n, [OutAttribute] UInt32* ids);
01485             [System.Security.SuppressUnmanagedCodeSecurity()]
01486             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenQueriesARB", ExactSpelling = true)]
01487             internal extern static unsafe void GenQueriesARB(Int32 n, [OutAttribute] UInt32* ids);
01488             [System.Security.SuppressUnmanagedCodeSecurity()]
01489             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenRenderbuffers", ExactSpelling = true)]
01490             internal extern static unsafe void GenRenderbuffers(Int32 n, [OutAttribute] UInt32* renderbuffers);
01491             [System.Security.SuppressUnmanagedCodeSecurity()]
01492             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenRenderbuffersEXT", ExactSpelling = true)]
01493             internal extern static unsafe void GenRenderbuffersEXT(Int32 n, [OutAttribute] UInt32* renderbuffers);
01494             [System.Security.SuppressUnmanagedCodeSecurity()]
01495             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenSymbolsEXT", ExactSpelling = true)]
01496             internal extern static Int32 GenSymbolsEXT(OpenTK.Graphics.OpenGL.ExtVertexShader datatype, OpenTK.Graphics.OpenGL.ExtVertexShader storagetype, OpenTK.Graphics.OpenGL.ExtVertexShader range, UInt32 components);
01497             [System.Security.SuppressUnmanagedCodeSecurity()]
01498             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenTextures", ExactSpelling = true)]
01499             internal extern static unsafe void GenTextures(Int32 n, [OutAttribute] UInt32* textures);
01500             [System.Security.SuppressUnmanagedCodeSecurity()]
01501             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenTexturesEXT", ExactSpelling = true)]
01502             internal extern static unsafe void GenTexturesEXT(Int32 n, [OutAttribute] UInt32* textures);
01503             [System.Security.SuppressUnmanagedCodeSecurity()]
01504             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenTransformFeedbacksNV", ExactSpelling = true)]
01505             internal extern static unsafe void GenTransformFeedbacksNV(Int32 n, [OutAttribute] UInt32* ids);
01506             [System.Security.SuppressUnmanagedCodeSecurity()]
01507             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenVertexArrays", ExactSpelling = true)]
01508             internal extern static unsafe void GenVertexArrays(Int32 n, [OutAttribute] UInt32* arrays);
01509             [System.Security.SuppressUnmanagedCodeSecurity()]
01510             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenVertexArraysAPPLE", ExactSpelling = true)]
01511             internal extern static unsafe void GenVertexArraysAPPLE(Int32 n, [OutAttribute] UInt32* arrays);
01512             [System.Security.SuppressUnmanagedCodeSecurity()]
01513             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenVertexShadersEXT", ExactSpelling = true)]
01514             internal extern static Int32 GenVertexShadersEXT(UInt32 range);
01515             [System.Security.SuppressUnmanagedCodeSecurity()]
01516             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveAttrib", ExactSpelling = true)]
01517             internal extern static unsafe void GetActiveAttrib(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name);
01518             [System.Security.SuppressUnmanagedCodeSecurity()]
01519             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveAttribARB", ExactSpelling = true)]
01520             internal extern static unsafe void GetActiveAttribARB(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ArbVertexShader* type, [OutAttribute] StringBuilder name);
01521             [System.Security.SuppressUnmanagedCodeSecurity()]
01522             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniform", ExactSpelling = true)]
01523             internal extern static unsafe void GetActiveUniform(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveUniformType* type, [OutAttribute] StringBuilder name);
01524             [System.Security.SuppressUnmanagedCodeSecurity()]
01525             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniformARB", ExactSpelling = true)]
01526             internal extern static unsafe void GetActiveUniformARB(UInt32 programObj, UInt32 index, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ArbShaderObjects* type, [OutAttribute] StringBuilder name);
01527             [System.Security.SuppressUnmanagedCodeSecurity()]
01528             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniformBlockiv", ExactSpelling = true)]
01529             internal extern static unsafe void GetActiveUniformBlockiv(UInt32 program, UInt32 uniformBlockIndex, OpenTK.Graphics.OpenGL.ActiveUniformBlockParameter pname, [OutAttribute] Int32* @params);
01530             [System.Security.SuppressUnmanagedCodeSecurity()]
01531             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniformBlockName", ExactSpelling = true)]
01532             internal extern static unsafe void GetActiveUniformBlockName(UInt32 program, UInt32 uniformBlockIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformBlockName);
01533             [System.Security.SuppressUnmanagedCodeSecurity()]
01534             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniformName", ExactSpelling = true)]
01535             internal extern static unsafe void GetActiveUniformName(UInt32 program, UInt32 uniformIndex, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder uniformName);
01536             [System.Security.SuppressUnmanagedCodeSecurity()]
01537             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveUniformsiv", ExactSpelling = true)]
01538             internal extern static unsafe void GetActiveUniformsiv(UInt32 program, Int32 uniformCount, UInt32* uniformIndices, OpenTK.Graphics.OpenGL.ActiveUniformParameter pname, [OutAttribute] Int32* @params);
01539             [System.Security.SuppressUnmanagedCodeSecurity()]
01540             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetActiveVaryingNV", ExactSpelling = true)]
01541             internal extern static unsafe void GetActiveVaryingNV(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.NvTransformFeedback* type, [OutAttribute] StringBuilder name);
01542             [System.Security.SuppressUnmanagedCodeSecurity()]
01543             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetArrayObjectfvATI", ExactSpelling = true)]
01544             internal extern static unsafe void GetArrayObjectfvATI(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params);
01545             [System.Security.SuppressUnmanagedCodeSecurity()]
01546             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetArrayObjectivATI", ExactSpelling = true)]
01547             internal extern static unsafe void GetArrayObjectivATI(OpenTK.Graphics.OpenGL.EnableCap array, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params);
01548             [System.Security.SuppressUnmanagedCodeSecurity()]
01549             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetAttachedObjectsARB", ExactSpelling = true)]
01550             internal extern static unsafe void GetAttachedObjectsARB(UInt32 containerObj, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* obj);
01551             [System.Security.SuppressUnmanagedCodeSecurity()]
01552             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetAttachedShaders", ExactSpelling = true)]
01553             internal extern static unsafe void GetAttachedShaders(UInt32 program, Int32 maxCount, [OutAttribute] Int32* count, [OutAttribute] UInt32* obj);
01554             [System.Security.SuppressUnmanagedCodeSecurity()]
01555             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetAttribLocation", ExactSpelling = true)]
01556             internal extern static Int32 GetAttribLocation(UInt32 program, String name);
01557             [System.Security.SuppressUnmanagedCodeSecurity()]
01558             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetAttribLocationARB", ExactSpelling = true)]
01559             internal extern static Int32 GetAttribLocationARB(UInt32 programObj, String name);
01560             [System.Security.SuppressUnmanagedCodeSecurity()]
01561             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBooleani_v", ExactSpelling = true)]
01562             internal extern static unsafe void GetBooleani_v(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] bool* data);
01563             [System.Security.SuppressUnmanagedCodeSecurity()]
01564             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBooleanIndexedvEXT", ExactSpelling = true)]
01565             internal extern static unsafe void GetBooleanIndexedvEXT(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] bool* data);
01566             [System.Security.SuppressUnmanagedCodeSecurity()]
01567             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBooleanv", ExactSpelling = true)]
01568             internal extern static unsafe void GetBooleanv(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] bool* @params);
01569             [System.Security.SuppressUnmanagedCodeSecurity()]
01570             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteri64v", ExactSpelling = true)]
01571             internal extern static unsafe void GetBufferParameteri64v(OpenTK.Graphics.OpenGL.Version32 target, OpenTK.Graphics.OpenGL.Version32 pname, [OutAttribute] Int64* @params);
01572             [System.Security.SuppressUnmanagedCodeSecurity()]
01573             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteriv", ExactSpelling = true)]
01574             internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params);
01575             [System.Security.SuppressUnmanagedCodeSecurity()]
01576             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameterivARB", ExactSpelling = true)]
01577             internal extern static unsafe void GetBufferParameterivARB(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params);
01578             [System.Security.SuppressUnmanagedCodeSecurity()]
01579             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointerv", ExactSpelling = true)]
01580             internal extern static void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params);
01581             [System.Security.SuppressUnmanagedCodeSecurity()]
01582             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointervARB", ExactSpelling = true)]
01583             internal extern static void GetBufferPointervARB(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute] IntPtr @params);
01584             [System.Security.SuppressUnmanagedCodeSecurity()]
01585             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferSubData", ExactSpelling = true)]
01586             internal extern static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
01587             [System.Security.SuppressUnmanagedCodeSecurity()]
01588             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferSubDataARB", ExactSpelling = true)]
01589             internal extern static void GetBufferSubDataARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
01590             [System.Security.SuppressUnmanagedCodeSecurity()]
01591             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlane", ExactSpelling = true)]
01592             internal extern static unsafe void GetClipPlane(OpenTK.Graphics.OpenGL.ClipPlaneName plane, [OutAttribute] Double* equation);
01593             [System.Security.SuppressUnmanagedCodeSecurity()]
01594             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTable", ExactSpelling = true)]
01595             internal extern static void GetColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr table);
01596             [System.Security.SuppressUnmanagedCodeSecurity()]
01597             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableEXT", ExactSpelling = true)]
01598             internal extern static void GetColorTableEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr data);
01599             [System.Security.SuppressUnmanagedCodeSecurity()]
01600             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfv", ExactSpelling = true)]
01601             internal extern static unsafe void GetColorTableParameterfv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params);
01602             [System.Security.SuppressUnmanagedCodeSecurity()]
01603             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfvEXT", ExactSpelling = true)]
01604             internal extern static unsafe void GetColorTableParameterfvEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params);
01605             [System.Security.SuppressUnmanagedCodeSecurity()]
01606             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfvSGI", ExactSpelling = true)]
01607             internal extern static unsafe void GetColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Single* @params);
01608             [System.Security.SuppressUnmanagedCodeSecurity()]
01609             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameteriv", ExactSpelling = true)]
01610             internal extern static unsafe void GetColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
01611             [System.Security.SuppressUnmanagedCodeSecurity()]
01612             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterivEXT", ExactSpelling = true)]
01613             internal extern static unsafe void GetColorTableParameterivEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
01614             [System.Security.SuppressUnmanagedCodeSecurity()]
01615             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterivSGI", ExactSpelling = true)]
01616             internal extern static unsafe void GetColorTableParameterivSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Int32* @params);
01617             [System.Security.SuppressUnmanagedCodeSecurity()]
01618             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableSGI", ExactSpelling = true)]
01619             internal extern static void GetColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr table);
01620             [System.Security.SuppressUnmanagedCodeSecurity()]
01621             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerInputParameterfvNV", ExactSpelling = true)]
01622             internal extern static unsafe void GetCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
01623             [System.Security.SuppressUnmanagedCodeSecurity()]
01624             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerInputParameterivNV", ExactSpelling = true)]
01625             internal extern static unsafe void GetCombinerInputParameterivNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32* @params);
01626             [System.Security.SuppressUnmanagedCodeSecurity()]
01627             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerOutputParameterfvNV", ExactSpelling = true)]
01628             internal extern static unsafe void GetCombinerOutputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
01629             [System.Security.SuppressUnmanagedCodeSecurity()]
01630             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerOutputParameterivNV", ExactSpelling = true)]
01631             internal extern static unsafe void GetCombinerOutputParameterivNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32* @params);
01632             [System.Security.SuppressUnmanagedCodeSecurity()]
01633             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerStageParameterfvNV", ExactSpelling = true)]
01634             internal extern static unsafe void GetCombinerStageParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners2 stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners2 pname, [OutAttribute] Single* @params);
01635             [System.Security.SuppressUnmanagedCodeSecurity()]
01636             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCompressedMultiTexImageEXT", ExactSpelling = true)]
01637             internal extern static void GetCompressedMultiTexImageEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute] IntPtr img);
01638             [System.Security.SuppressUnmanagedCodeSecurity()]
01639             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCompressedTexImage", ExactSpelling = true)]
01640             internal extern static void GetCompressedTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute] IntPtr img);
01641             [System.Security.SuppressUnmanagedCodeSecurity()]
01642             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCompressedTexImageARB", ExactSpelling = true)]
01643             internal extern static void GetCompressedTexImageARB(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, [OutAttribute] IntPtr img);
01644             [System.Security.SuppressUnmanagedCodeSecurity()]
01645             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCompressedTextureImageEXT", ExactSpelling = true)]
01646             internal extern static void GetCompressedTextureImageEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 lod, [OutAttribute] IntPtr img);
01647             [System.Security.SuppressUnmanagedCodeSecurity()]
01648             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionFilter", ExactSpelling = true)]
01649             internal extern static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
01650             [System.Security.SuppressUnmanagedCodeSecurity()]
01651             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionFilterEXT", ExactSpelling = true)]
01652             internal extern static void GetConvolutionFilterEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
01653             [System.Security.SuppressUnmanagedCodeSecurity()]
01654             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfv", ExactSpelling = true)]
01655             internal extern static unsafe void GetConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single* @params);
01656             [System.Security.SuppressUnmanagedCodeSecurity()]
01657             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfvEXT", ExactSpelling = true)]
01658             internal extern static unsafe void GetConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Single* @params);
01659             [System.Security.SuppressUnmanagedCodeSecurity()]
01660             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameteriv", ExactSpelling = true)]
01661             internal extern static unsafe void GetConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params);
01662             [System.Security.SuppressUnmanagedCodeSecurity()]
01663             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterivEXT", ExactSpelling = true)]
01664             internal extern static unsafe void GetConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Int32* @params);
01665             [System.Security.SuppressUnmanagedCodeSecurity()]
01666             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetDetailTexFuncSGIS", ExactSpelling = true)]
01667             internal extern static unsafe void GetDetailTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] Single* points);
01668             [System.Security.SuppressUnmanagedCodeSecurity()]
01669             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetDoubleIndexedvEXT", ExactSpelling = true)]
01670             internal extern static unsafe void GetDoubleIndexedvEXT(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Double* data);
01671             [System.Security.SuppressUnmanagedCodeSecurity()]
01672             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetDoublev", ExactSpelling = true)]
01673             internal extern static unsafe void GetDoublev(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Double* @params);
01674             [System.Security.SuppressUnmanagedCodeSecurity()]
01675             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetError", ExactSpelling = true)]
01676             internal extern static OpenTK.Graphics.OpenGL.ErrorCode GetError();
01677             [System.Security.SuppressUnmanagedCodeSecurity()]
01678             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFenceivNV", ExactSpelling = true)]
01679             internal extern static unsafe void GetFenceivNV(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence pname, [OutAttribute] Int32* @params);
01680             [System.Security.SuppressUnmanagedCodeSecurity()]
01681             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFinalCombinerInputParameterfvNV", ExactSpelling = true)]
01682             internal extern static unsafe void GetFinalCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
01683             [System.Security.SuppressUnmanagedCodeSecurity()]
01684             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFinalCombinerInputParameterivNV", ExactSpelling = true)]
01685             internal extern static unsafe void GetFinalCombinerInputParameterivNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Int32* @params);
01686             [System.Security.SuppressUnmanagedCodeSecurity()]
01687             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFloatIndexedvEXT", ExactSpelling = true)]
01688             internal extern static unsafe void GetFloatIndexedvEXT(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Single* data);
01689             [System.Security.SuppressUnmanagedCodeSecurity()]
01690             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFloatv", ExactSpelling = true)]
01691             internal extern static unsafe void GetFloatv(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Single* @params);
01692             [System.Security.SuppressUnmanagedCodeSecurity()]
01693             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFogFuncSGIS", ExactSpelling = true)]
01694             internal extern static unsafe void GetFogFuncSGIS([OutAttribute] Single* points);
01695             [System.Security.SuppressUnmanagedCodeSecurity()]
01696             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragDataLocation", ExactSpelling = true)]
01697             internal extern static Int32 GetFragDataLocation(UInt32 program, String name);
01698             [System.Security.SuppressUnmanagedCodeSecurity()]
01699             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragDataLocationEXT", ExactSpelling = true)]
01700             internal extern static Int32 GetFragDataLocationEXT(UInt32 program, String name);
01701             [System.Security.SuppressUnmanagedCodeSecurity()]
01702             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragmentLightfvSGIX", ExactSpelling = true)]
01703             internal extern static unsafe void GetFragmentLightfvSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] Single* @params);
01704             [System.Security.SuppressUnmanagedCodeSecurity()]
01705             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragmentLightivSGIX", ExactSpelling = true)]
01706             internal extern static unsafe void GetFragmentLightivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, [OutAttribute] Int32* @params);
01707             [System.Security.SuppressUnmanagedCodeSecurity()]
01708             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragmentMaterialfvSGIX", ExactSpelling = true)]
01709             internal extern static unsafe void GetFragmentMaterialfvSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Single* @params);
01710             [System.Security.SuppressUnmanagedCodeSecurity()]
01711             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFragmentMaterialivSGIX", ExactSpelling = true)]
01712             internal extern static unsafe void GetFragmentMaterialivSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Int32* @params);
01713             [System.Security.SuppressUnmanagedCodeSecurity()]
01714             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFramebufferAttachmentParameteriv", ExactSpelling = true)]
01715             internal extern static unsafe void GetFramebufferAttachmentParameteriv(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params);
01716             [System.Security.SuppressUnmanagedCodeSecurity()]
01717             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFramebufferAttachmentParameterivEXT", ExactSpelling = true)]
01718             internal extern static unsafe void GetFramebufferAttachmentParameterivEXT(OpenTK.Graphics.OpenGL.FramebufferTarget target, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.FramebufferParameterName pname, [OutAttribute] Int32* @params);
01719             [System.Security.SuppressUnmanagedCodeSecurity()]
01720             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFramebufferParameterivEXT", ExactSpelling = true)]
01721             internal extern static unsafe void GetFramebufferParameterivEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params);
01722             [System.Security.SuppressUnmanagedCodeSecurity()]
01723             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHandleARB", ExactSpelling = true)]
01724             internal extern static Int32 GetHandleARB(OpenTK.Graphics.OpenGL.ArbShaderObjects pname);
01725             [System.Security.SuppressUnmanagedCodeSecurity()]
01726             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogram", ExactSpelling = true)]
01727             internal extern static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
01728             [System.Security.SuppressUnmanagedCodeSecurity()]
01729             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramEXT", ExactSpelling = true)]
01730             internal extern static void GetHistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
01731             [System.Security.SuppressUnmanagedCodeSecurity()]
01732             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfv", ExactSpelling = true)]
01733             internal extern static unsafe void GetHistogramParameterfv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single* @params);
01734             [System.Security.SuppressUnmanagedCodeSecurity()]
01735             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfvEXT", ExactSpelling = true)]
01736             internal extern static unsafe void GetHistogramParameterfvEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params);
01737             [System.Security.SuppressUnmanagedCodeSecurity()]
01738             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameteriv", ExactSpelling = true)]
01739             internal extern static unsafe void GetHistogramParameteriv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32* @params);
01740             [System.Security.SuppressUnmanagedCodeSecurity()]
01741             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterivEXT", ExactSpelling = true)]
01742             internal extern static unsafe void GetHistogramParameterivEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params);
01743             [System.Security.SuppressUnmanagedCodeSecurity()]
01744             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetImageTransformParameterfvHP", ExactSpelling = true)]
01745             internal extern static unsafe void GetImageTransformParameterfvHP(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] Single* @params);
01746             [System.Security.SuppressUnmanagedCodeSecurity()]
01747             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetImageTransformParameterivHP", ExactSpelling = true)]
01748             internal extern static unsafe void GetImageTransformParameterivHP(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, [OutAttribute] Int32* @params);
01749             [System.Security.SuppressUnmanagedCodeSecurity()]
01750             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInfoLogARB", ExactSpelling = true)]
01751             internal extern static unsafe void GetInfoLogARB(UInt32 obj, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
01752             [System.Security.SuppressUnmanagedCodeSecurity()]
01753             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInstrumentsSGIX", ExactSpelling = true)]
01754             internal extern static Int32 GetInstrumentsSGIX();
01755             [System.Security.SuppressUnmanagedCodeSecurity()]
01756             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInteger64i_v", ExactSpelling = true)]
01757             internal extern static unsafe void GetInteger64i_v(OpenTK.Graphics.OpenGL.Version32 target, UInt32 index, [OutAttribute] Int64* data);
01758             [System.Security.SuppressUnmanagedCodeSecurity()]
01759             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInteger64v", ExactSpelling = true)]
01760             internal extern static unsafe void GetInteger64v(OpenTK.Graphics.OpenGL.ArbSync pname, [OutAttribute] Int64* @params);
01761             [System.Security.SuppressUnmanagedCodeSecurity()]
01762             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetIntegeri_v", ExactSpelling = true)]
01763             internal extern static unsafe void GetIntegeri_v(OpenTK.Graphics.OpenGL.GetIndexedPName target, UInt32 index, [OutAttribute] Int32* data);
01764             [System.Security.SuppressUnmanagedCodeSecurity()]
01765             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetIntegerIndexedvEXT", ExactSpelling = true)]
01766             internal extern static unsafe void GetIntegerIndexedvEXT(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index, [OutAttribute] Int32* data);
01767             [System.Security.SuppressUnmanagedCodeSecurity()]
01768             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetIntegerv", ExactSpelling = true)]
01769             internal extern static unsafe void GetIntegerv(OpenTK.Graphics.OpenGL.GetPName pname, [OutAttribute] Int32* @params);
01770             [System.Security.SuppressUnmanagedCodeSecurity()]
01771             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInvariantBooleanvEXT", ExactSpelling = true)]
01772             internal extern static unsafe void GetInvariantBooleanvEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data);
01773             [System.Security.SuppressUnmanagedCodeSecurity()]
01774             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInvariantFloatvEXT", ExactSpelling = true)]
01775             internal extern static unsafe void GetInvariantFloatvEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data);
01776             [System.Security.SuppressUnmanagedCodeSecurity()]
01777             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetInvariantIntegervEXT", ExactSpelling = true)]
01778             internal extern static unsafe void GetInvariantIntegervEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data);
01779             [System.Security.SuppressUnmanagedCodeSecurity()]
01780             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightfv", ExactSpelling = true)]
01781             internal extern static unsafe void GetLightfv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] Single* @params);
01782             [System.Security.SuppressUnmanagedCodeSecurity()]
01783             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightiv", ExactSpelling = true)]
01784             internal extern static unsafe void GetLightiv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, [OutAttribute] Int32* @params);
01785             [System.Security.SuppressUnmanagedCodeSecurity()]
01786             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetListParameterfvSGIX", ExactSpelling = true)]
01787             internal extern static unsafe void GetListParameterfvSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Single* @params);
01788             [System.Security.SuppressUnmanagedCodeSecurity()]
01789             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetListParameterivSGIX", ExactSpelling = true)]
01790             internal extern static unsafe void GetListParameterivSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, [OutAttribute] Int32* @params);
01791             [System.Security.SuppressUnmanagedCodeSecurity()]
01792             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLocalConstantBooleanvEXT", ExactSpelling = true)]
01793             internal extern static unsafe void GetLocalConstantBooleanvEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data);
01794             [System.Security.SuppressUnmanagedCodeSecurity()]
01795             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLocalConstantFloatvEXT", ExactSpelling = true)]
01796             internal extern static unsafe void GetLocalConstantFloatvEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data);
01797             [System.Security.SuppressUnmanagedCodeSecurity()]
01798             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLocalConstantIntegervEXT", ExactSpelling = true)]
01799             internal extern static unsafe void GetLocalConstantIntegervEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data);
01800             [System.Security.SuppressUnmanagedCodeSecurity()]
01801             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapAttribParameterfvNV", ExactSpelling = true)]
01802             internal extern static unsafe void GetMapAttribParameterfvNV(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single* @params);
01803             [System.Security.SuppressUnmanagedCodeSecurity()]
01804             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapAttribParameterivNV", ExactSpelling = true)]
01805             internal extern static unsafe void GetMapAttribParameterivNV(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32* @params);
01806             [System.Security.SuppressUnmanagedCodeSecurity()]
01807             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapControlPointsNV", ExactSpelling = true)]
01808             internal extern static void GetMapControlPointsNV(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, bool packed, [OutAttribute] IntPtr points);
01809             [System.Security.SuppressUnmanagedCodeSecurity()]
01810             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapdv", ExactSpelling = true)]
01811             internal extern static unsafe void GetMapdv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Double* v);
01812             [System.Security.SuppressUnmanagedCodeSecurity()]
01813             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapfv", ExactSpelling = true)]
01814             internal extern static unsafe void GetMapfv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Single* v);
01815             [System.Security.SuppressUnmanagedCodeSecurity()]
01816             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapiv", ExactSpelling = true)]
01817             internal extern static unsafe void GetMapiv(OpenTK.Graphics.OpenGL.MapTarget target, OpenTK.Graphics.OpenGL.GetMapQuery query, [OutAttribute] Int32* v);
01818             [System.Security.SuppressUnmanagedCodeSecurity()]
01819             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapParameterfvNV", ExactSpelling = true)]
01820             internal extern static unsafe void GetMapParameterfvNV(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Single* @params);
01821             [System.Security.SuppressUnmanagedCodeSecurity()]
01822             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMapParameterivNV", ExactSpelling = true)]
01823             internal extern static unsafe void GetMapParameterivNV(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, [OutAttribute] Int32* @params);
01824             [System.Security.SuppressUnmanagedCodeSecurity()]
01825             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialfv", ExactSpelling = true)]
01826             internal extern static unsafe void GetMaterialfv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Single* @params);
01827             [System.Security.SuppressUnmanagedCodeSecurity()]
01828             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialiv", ExactSpelling = true)]
01829             internal extern static unsafe void GetMaterialiv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, [OutAttribute] Int32* @params);
01830             [System.Security.SuppressUnmanagedCodeSecurity()]
01831             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmax", ExactSpelling = true)]
01832             internal extern static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
01833             [System.Security.SuppressUnmanagedCodeSecurity()]
01834             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxEXT", ExactSpelling = true)]
01835             internal extern static void GetMinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
01836             [System.Security.SuppressUnmanagedCodeSecurity()]
01837             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfv", ExactSpelling = true)]
01838             internal extern static unsafe void GetMinmaxParameterfv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single* @params);
01839             [System.Security.SuppressUnmanagedCodeSecurity()]
01840             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfvEXT", ExactSpelling = true)]
01841             internal extern static unsafe void GetMinmaxParameterfvEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params);
01842             [System.Security.SuppressUnmanagedCodeSecurity()]
01843             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameteriv", ExactSpelling = true)]
01844             internal extern static unsafe void GetMinmaxParameteriv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params);
01845             [System.Security.SuppressUnmanagedCodeSecurity()]
01846             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterivEXT", ExactSpelling = true)]
01847             internal extern static unsafe void GetMinmaxParameterivEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params);
01848             [System.Security.SuppressUnmanagedCodeSecurity()]
01849             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultisamplefv", ExactSpelling = true)]
01850             internal extern static unsafe void GetMultisamplefv(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val);
01851             [System.Security.SuppressUnmanagedCodeSecurity()]
01852             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultisamplefvNV", ExactSpelling = true)]
01853             internal extern static unsafe void GetMultisamplefvNV(OpenTK.Graphics.OpenGL.NvExplicitMultisample pname, UInt32 index, [OutAttribute] Single* val);
01854             [System.Security.SuppressUnmanagedCodeSecurity()]
01855             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexEnvfvEXT", ExactSpelling = true)]
01856             internal extern static unsafe void GetMultiTexEnvfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Single* @params);
01857             [System.Security.SuppressUnmanagedCodeSecurity()]
01858             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexEnvivEXT", ExactSpelling = true)]
01859             internal extern static unsafe void GetMultiTexEnvivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Int32* @params);
01860             [System.Security.SuppressUnmanagedCodeSecurity()]
01861             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexGendvEXT", ExactSpelling = true)]
01862             internal extern static unsafe void GetMultiTexGendvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Double* @params);
01863             [System.Security.SuppressUnmanagedCodeSecurity()]
01864             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexGenfvEXT", ExactSpelling = true)]
01865             internal extern static unsafe void GetMultiTexGenfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Single* @params);
01866             [System.Security.SuppressUnmanagedCodeSecurity()]
01867             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexGenivEXT", ExactSpelling = true)]
01868             internal extern static unsafe void GetMultiTexGenivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Int32* @params);
01869             [System.Security.SuppressUnmanagedCodeSecurity()]
01870             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexImageEXT", ExactSpelling = true)]
01871             internal extern static void GetMultiTexImageEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr pixels);
01872             [System.Security.SuppressUnmanagedCodeSecurity()]
01873             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexLevelParameterfvEXT", ExactSpelling = true)]
01874             internal extern static unsafe void GetMultiTexLevelParameterfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params);
01875             [System.Security.SuppressUnmanagedCodeSecurity()]
01876             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexLevelParameterivEXT", ExactSpelling = true)]
01877             internal extern static unsafe void GetMultiTexLevelParameterivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
01878             [System.Security.SuppressUnmanagedCodeSecurity()]
01879             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexParameterfvEXT", ExactSpelling = true)]
01880             internal extern static unsafe void GetMultiTexParameterfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params);
01881             [System.Security.SuppressUnmanagedCodeSecurity()]
01882             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexParameterIivEXT", ExactSpelling = true)]
01883             internal extern static unsafe void GetMultiTexParameterIivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
01884             [System.Security.SuppressUnmanagedCodeSecurity()]
01885             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexParameterIuivEXT", ExactSpelling = true)]
01886             internal extern static unsafe void GetMultiTexParameterIuivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params);
01887             [System.Security.SuppressUnmanagedCodeSecurity()]
01888             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultiTexParameterivEXT", ExactSpelling = true)]
01889             internal extern static unsafe void GetMultiTexParameterivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
01890             [System.Security.SuppressUnmanagedCodeSecurity()]
01891             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedBufferParameterivEXT", ExactSpelling = true)]
01892             internal extern static unsafe void GetNamedBufferParameterivEXT(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params);
01893             [System.Security.SuppressUnmanagedCodeSecurity()]
01894             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedBufferPointervEXT", ExactSpelling = true)]
01895             internal extern static void GetNamedBufferPointervEXT(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr @params);
01896             [System.Security.SuppressUnmanagedCodeSecurity()]
01897             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedBufferSubDataEXT", ExactSpelling = true)]
01898             internal extern static void GetNamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
01899             [System.Security.SuppressUnmanagedCodeSecurity()]
01900             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedFramebufferAttachmentParameterivEXT", ExactSpelling = true)]
01901             internal extern static unsafe void GetNamedFramebufferAttachmentParameterivEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params);
01902             [System.Security.SuppressUnmanagedCodeSecurity()]
01903             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedProgramivEXT", ExactSpelling = true)]
01904             internal extern static unsafe void GetNamedProgramivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] Int32* @params);
01905             [System.Security.SuppressUnmanagedCodeSecurity()]
01906             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedProgramLocalParameterdvEXT", ExactSpelling = true)]
01907             internal extern static unsafe void GetNamedProgramLocalParameterdvEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Double* @params);
01908             [System.Security.SuppressUnmanagedCodeSecurity()]
01909             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedProgramLocalParameterfvEXT", ExactSpelling = true)]
01910             internal extern static unsafe void GetNamedProgramLocalParameterfvEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Single* @params);
01911             [System.Security.SuppressUnmanagedCodeSecurity()]
01912             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedProgramLocalParameterIivEXT", ExactSpelling = true)]
01913             internal extern static unsafe void GetNamedProgramLocalParameterIivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] Int32* @params);
01914             [System.Security.SuppressUnmanagedCodeSecurity()]
01915             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedProgramLocalParameterIuivEXT", ExactSpelling = true)]
01916             internal extern static unsafe void GetNamedProgramLocalParameterIuivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] UInt32* @params);
01917             [System.Security.SuppressUnmanagedCodeSecurity()]
01918             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedProgramStringEXT", ExactSpelling = true)]
01919             internal extern static void GetNamedProgramStringEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess pname, [OutAttribute] IntPtr @string);
01920             [System.Security.SuppressUnmanagedCodeSecurity()]
01921             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetNamedRenderbufferParameterivEXT", ExactSpelling = true)]
01922             internal extern static unsafe void GetNamedRenderbufferParameterivEXT(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params);
01923             [System.Security.SuppressUnmanagedCodeSecurity()]
01924             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetObjectBufferfvATI", ExactSpelling = true)]
01925             internal extern static unsafe void GetObjectBufferfvATI(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params);
01926             [System.Security.SuppressUnmanagedCodeSecurity()]
01927             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetObjectBufferivATI", ExactSpelling = true)]
01928             internal extern static unsafe void GetObjectBufferivATI(UInt32 buffer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params);
01929             [System.Security.SuppressUnmanagedCodeSecurity()]
01930             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetObjectParameterfvARB", ExactSpelling = true)]
01931             internal extern static unsafe void GetObjectParameterfvARB(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Single* @params);
01932             [System.Security.SuppressUnmanagedCodeSecurity()]
01933             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetObjectParameterivAPPLE", ExactSpelling = true)]
01934             internal extern static unsafe void GetObjectParameterivAPPLE(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable pname, [OutAttribute] Int32* @params);
01935             [System.Security.SuppressUnmanagedCodeSecurity()]
01936             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetObjectParameterivARB", ExactSpelling = true)]
01937             internal extern static unsafe void GetObjectParameterivARB(UInt32 obj, OpenTK.Graphics.OpenGL.ArbShaderObjects pname, [OutAttribute] Int32* @params);
01938             [System.Security.SuppressUnmanagedCodeSecurity()]
01939             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetOcclusionQueryivNV", ExactSpelling = true)]
01940             internal extern static unsafe void GetOcclusionQueryivNV(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] Int32* @params);
01941             [System.Security.SuppressUnmanagedCodeSecurity()]
01942             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetOcclusionQueryuivNV", ExactSpelling = true)]
01943             internal extern static unsafe void GetOcclusionQueryuivNV(UInt32 id, OpenTK.Graphics.OpenGL.NvOcclusionQuery pname, [OutAttribute] UInt32* @params);
01944             [System.Security.SuppressUnmanagedCodeSecurity()]
01945             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPerfMonitorCounterDataAMD", ExactSpelling = true)]
01946             internal extern static unsafe void GetPerfMonitorCounterDataAMD(UInt32 monitor, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, Int32 dataSize, [OutAttribute] UInt32* data, [OutAttribute] Int32* bytesWritten);
01947             [System.Security.SuppressUnmanagedCodeSecurity()]
01948             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPerfMonitorCounterInfoAMD", ExactSpelling = true)]
01949             internal extern static void GetPerfMonitorCounterInfoAMD(UInt32 group, UInt32 counter, OpenTK.Graphics.OpenGL.AmdPerformanceMonitor pname, [OutAttribute] IntPtr data);
01950             [System.Security.SuppressUnmanagedCodeSecurity()]
01951             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPerfMonitorCountersAMD", ExactSpelling = true)]
01952             internal extern static unsafe void GetPerfMonitorCountersAMD(UInt32 group, [OutAttribute] Int32* numCounters, [OutAttribute] Int32* maxActiveCounters, Int32 counterSize, [OutAttribute] UInt32* counters);
01953             [System.Security.SuppressUnmanagedCodeSecurity()]
01954             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPerfMonitorCounterStringAMD", ExactSpelling = true)]
01955             internal extern static unsafe void GetPerfMonitorCounterStringAMD(UInt32 group, UInt32 counter, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder counterString);
01956             [System.Security.SuppressUnmanagedCodeSecurity()]
01957             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPerfMonitorGroupsAMD", ExactSpelling = true)]
01958             internal extern static unsafe void GetPerfMonitorGroupsAMD([OutAttribute] Int32* numGroups, Int32 groupsSize, [OutAttribute] UInt32* groups);
01959             [System.Security.SuppressUnmanagedCodeSecurity()]
01960             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPerfMonitorGroupStringAMD", ExactSpelling = true)]
01961             internal extern static unsafe void GetPerfMonitorGroupStringAMD(UInt32 group, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder groupString);
01962             [System.Security.SuppressUnmanagedCodeSecurity()]
01963             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelMapfv", ExactSpelling = true)]
01964             internal extern static unsafe void GetPixelMapfv(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] Single* values);
01965             [System.Security.SuppressUnmanagedCodeSecurity()]
01966             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelMapuiv", ExactSpelling = true)]
01967             internal extern static unsafe void GetPixelMapuiv(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] UInt32* values);
01968             [System.Security.SuppressUnmanagedCodeSecurity()]
01969             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelMapusv", ExactSpelling = true)]
01970             internal extern static unsafe void GetPixelMapusv(OpenTK.Graphics.OpenGL.PixelMap map, [OutAttribute] UInt16* values);
01971             [System.Security.SuppressUnmanagedCodeSecurity()]
01972             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTexGenParameterfvSGIS", ExactSpelling = true)]
01973             internal extern static unsafe void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Single* @params);
01974             [System.Security.SuppressUnmanagedCodeSecurity()]
01975             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTexGenParameterivSGIS", ExactSpelling = true)]
01976             internal extern static unsafe void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Int32* @params);
01977             [System.Security.SuppressUnmanagedCodeSecurity()]
01978             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPointerIndexedvEXT", ExactSpelling = true)]
01979             internal extern static void GetPointerIndexedvEXT(OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, [OutAttribute] IntPtr data);
01980             [System.Security.SuppressUnmanagedCodeSecurity()]
01981             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPointerv", ExactSpelling = true)]
01982             internal extern static void GetPointerv(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute] IntPtr @params);
01983             [System.Security.SuppressUnmanagedCodeSecurity()]
01984             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPointervEXT", ExactSpelling = true)]
01985             internal extern static void GetPointervEXT(OpenTK.Graphics.OpenGL.GetPointervPName pname, [OutAttribute] IntPtr @params);
01986             [System.Security.SuppressUnmanagedCodeSecurity()]
01987             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPolygonStipple", ExactSpelling = true)]
01988             internal extern static unsafe void GetPolygonStipple([OutAttribute] Byte* mask);
01989             [System.Security.SuppressUnmanagedCodeSecurity()]
01990             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramEnvParameterdvARB", ExactSpelling = true)]
01991             internal extern static unsafe void GetProgramEnvParameterdvARB(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Double* @params);
01992             [System.Security.SuppressUnmanagedCodeSecurity()]
01993             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramEnvParameterfvARB", ExactSpelling = true)]
01994             internal extern static unsafe void GetProgramEnvParameterfvARB(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Single* @params);
01995             [System.Security.SuppressUnmanagedCodeSecurity()]
01996             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramEnvParameterIivNV", ExactSpelling = true)]
01997             internal extern static unsafe void GetProgramEnvParameterIivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] Int32* @params);
01998             [System.Security.SuppressUnmanagedCodeSecurity()]
01999             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramEnvParameterIuivNV", ExactSpelling = true)]
02000             internal extern static unsafe void GetProgramEnvParameterIuivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] UInt32* @params);
02001             [System.Security.SuppressUnmanagedCodeSecurity()]
02002             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramInfoLog", ExactSpelling = true)]
02003             internal extern static unsafe void GetProgramInfoLog(UInt32 program, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
02004             [System.Security.SuppressUnmanagedCodeSecurity()]
02005             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramiv", ExactSpelling = true)]
02006             internal extern static unsafe void GetProgramiv(UInt32 program, OpenTK.Graphics.OpenGL.ProgramParameter pname, [OutAttribute] Int32* @params);
02007             [System.Security.SuppressUnmanagedCodeSecurity()]
02008             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramivARB", ExactSpelling = true)]
02009             internal extern static unsafe void GetProgramivARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Int32* @params);
02010             [System.Security.SuppressUnmanagedCodeSecurity()]
02011             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramivNV", ExactSpelling = true)]
02012             internal extern static unsafe void GetProgramivNV(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32* @params);
02013             [System.Security.SuppressUnmanagedCodeSecurity()]
02014             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramLocalParameterdvARB", ExactSpelling = true)]
02015             internal extern static unsafe void GetProgramLocalParameterdvARB(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Double* @params);
02016             [System.Security.SuppressUnmanagedCodeSecurity()]
02017             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramLocalParameterfvARB", ExactSpelling = true)]
02018             internal extern static unsafe void GetProgramLocalParameterfvARB(OpenTK.Graphics.OpenGL.ArbVertexProgram target, UInt32 index, [OutAttribute] Single* @params);
02019             [System.Security.SuppressUnmanagedCodeSecurity()]
02020             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramLocalParameterIivNV", ExactSpelling = true)]
02021             internal extern static unsafe void GetProgramLocalParameterIivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] Int32* @params);
02022             [System.Security.SuppressUnmanagedCodeSecurity()]
02023             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramLocalParameterIuivNV", ExactSpelling = true)]
02024             internal extern static unsafe void GetProgramLocalParameterIuivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, [OutAttribute] UInt32* @params);
02025             [System.Security.SuppressUnmanagedCodeSecurity()]
02026             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramNamedParameterdvNV", ExactSpelling = true)]
02027             internal extern static unsafe void GetProgramNamedParameterdvNV(UInt32 id, Int32 len, Byte* name, [OutAttribute] Double* @params);
02028             [System.Security.SuppressUnmanagedCodeSecurity()]
02029             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramNamedParameterfvNV", ExactSpelling = true)]
02030             internal extern static unsafe void GetProgramNamedParameterfvNV(UInt32 id, Int32 len, Byte* name, [OutAttribute] Single* @params);
02031             [System.Security.SuppressUnmanagedCodeSecurity()]
02032             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramParameterdvNV", ExactSpelling = true)]
02033             internal extern static unsafe void GetProgramParameterdvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Double* @params);
02034             [System.Security.SuppressUnmanagedCodeSecurity()]
02035             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramParameterfvNV", ExactSpelling = true)]
02036             internal extern static unsafe void GetProgramParameterfvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Single* @params);
02037             [System.Security.SuppressUnmanagedCodeSecurity()]
02038             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramStringARB", ExactSpelling = true)]
02039             internal extern static void GetProgramStringARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] IntPtr @string);
02040             [System.Security.SuppressUnmanagedCodeSecurity()]
02041             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetProgramStringNV", ExactSpelling = true)]
02042             internal extern static unsafe void GetProgramStringNV(UInt32 id, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Byte* program);
02043             [System.Security.SuppressUnmanagedCodeSecurity()]
02044             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryiv", ExactSpelling = true)]
02045             internal extern static unsafe void GetQueryiv(OpenTK.Graphics.OpenGL.QueryTarget target, OpenTK.Graphics.OpenGL.GetQueryParam pname, [OutAttribute] Int32* @params);
02046             [System.Security.SuppressUnmanagedCodeSecurity()]
02047             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryivARB", ExactSpelling = true)]
02048             internal extern static unsafe void GetQueryivARB(OpenTK.Graphics.OpenGL.ArbOcclusionQuery target, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params);
02049             [System.Security.SuppressUnmanagedCodeSecurity()]
02050             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjecti64vEXT", ExactSpelling = true)]
02051             internal extern static unsafe void GetQueryObjecti64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] Int64* @params);
02052             [System.Security.SuppressUnmanagedCodeSecurity()]
02053             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectiv", ExactSpelling = true)]
02054             internal extern static unsafe void GetQueryObjectiv(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] Int32* @params);
02055             [System.Security.SuppressUnmanagedCodeSecurity()]
02056             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectivARB", ExactSpelling = true)]
02057             internal extern static unsafe void GetQueryObjectivARB(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] Int32* @params);
02058             [System.Security.SuppressUnmanagedCodeSecurity()]
02059             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectui64vEXT", ExactSpelling = true)]
02060             internal extern static unsafe void GetQueryObjectui64vEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtTimerQuery pname, [OutAttribute] UInt64* @params);
02061             [System.Security.SuppressUnmanagedCodeSecurity()]
02062             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectuiv", ExactSpelling = true)]
02063             internal extern static unsafe void GetQueryObjectuiv(UInt32 id, OpenTK.Graphics.OpenGL.GetQueryObjectParam pname, [OutAttribute] UInt32* @params);
02064             [System.Security.SuppressUnmanagedCodeSecurity()]
02065             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetQueryObjectuivARB", ExactSpelling = true)]
02066             internal extern static unsafe void GetQueryObjectuivARB(UInt32 id, OpenTK.Graphics.OpenGL.ArbOcclusionQuery pname, [OutAttribute] UInt32* @params);
02067             [System.Security.SuppressUnmanagedCodeSecurity()]
02068             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetRenderbufferParameteriv", ExactSpelling = true)]
02069             internal extern static unsafe void GetRenderbufferParameteriv(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params);
02070             [System.Security.SuppressUnmanagedCodeSecurity()]
02071             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetRenderbufferParameterivEXT", ExactSpelling = true)]
02072             internal extern static unsafe void GetRenderbufferParameterivEXT(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferParameterName pname, [OutAttribute] Int32* @params);
02073             [System.Security.SuppressUnmanagedCodeSecurity()]
02074             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilter", ExactSpelling = true)]
02075             internal extern static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
02076             [System.Security.SuppressUnmanagedCodeSecurity()]
02077             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilterEXT", ExactSpelling = true)]
02078             internal extern static void GetSeparableFilterEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
02079             [System.Security.SuppressUnmanagedCodeSecurity()]
02080             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderInfoLog", ExactSpelling = true)]
02081             internal extern static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
02082             [System.Security.SuppressUnmanagedCodeSecurity()]
02083             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderiv", ExactSpelling = true)]
02084             internal extern static unsafe void GetShaderiv(UInt32 shader, OpenTK.Graphics.OpenGL.ShaderParameter pname, [OutAttribute] Int32* @params);
02085             [System.Security.SuppressUnmanagedCodeSecurity()]
02086             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderSource", ExactSpelling = true)]
02087             internal extern static unsafe void GetShaderSource(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source);
02088             [System.Security.SuppressUnmanagedCodeSecurity()]
02089             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderSourceARB", ExactSpelling = true)]
02090             internal extern static unsafe void GetShaderSourceARB(UInt32 obj, Int32 maxLength, [OutAttribute] Int32* length, [OutAttribute] StringBuilder source);
02091             [System.Security.SuppressUnmanagedCodeSecurity()]
02092             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSharpenTexFuncSGIS", ExactSpelling = true)]
02093             internal extern static unsafe void GetSharpenTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, [OutAttribute] Single* points);
02094             [System.Security.SuppressUnmanagedCodeSecurity()]
02095             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetString", ExactSpelling = true)]
02096             internal extern static System.IntPtr GetString(OpenTK.Graphics.OpenGL.StringName name);
02097             [System.Security.SuppressUnmanagedCodeSecurity()]
02098             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetStringi", ExactSpelling = true)]
02099             internal extern static System.IntPtr GetStringi(OpenTK.Graphics.OpenGL.StringName name, UInt32 index);
02100             [System.Security.SuppressUnmanagedCodeSecurity()]
02101             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSynciv", ExactSpelling = true)]
02102             internal extern static unsafe void GetSynciv(IntPtr sync, OpenTK.Graphics.OpenGL.ArbSync pname, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* values);
02103             [System.Security.SuppressUnmanagedCodeSecurity()]
02104             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexBumpParameterfvATI", ExactSpelling = true)]
02105             internal extern static unsafe void GetTexBumpParameterfvATI(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] Single* param);
02106             [System.Security.SuppressUnmanagedCodeSecurity()]
02107             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexBumpParameterivATI", ExactSpelling = true)]
02108             internal extern static unsafe void GetTexBumpParameterivATI(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, [OutAttribute] Int32* param);
02109             [System.Security.SuppressUnmanagedCodeSecurity()]
02110             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnvfv", ExactSpelling = true)]
02111             internal extern static unsafe void GetTexEnvfv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Single* @params);
02112             [System.Security.SuppressUnmanagedCodeSecurity()]
02113             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnviv", ExactSpelling = true)]
02114             internal extern static unsafe void GetTexEnviv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, [OutAttribute] Int32* @params);
02115             [System.Security.SuppressUnmanagedCodeSecurity()]
02116             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexFilterFuncSGIS", ExactSpelling = true)]
02117             internal extern static unsafe void GetTexFilterFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, [OutAttribute] Single* weights);
02118             [System.Security.SuppressUnmanagedCodeSecurity()]
02119             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGendv", ExactSpelling = true)]
02120             internal extern static unsafe void GetTexGendv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Double* @params);
02121             [System.Security.SuppressUnmanagedCodeSecurity()]
02122             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGenfv", ExactSpelling = true)]
02123             internal extern static unsafe void GetTexGenfv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Single* @params);
02124             [System.Security.SuppressUnmanagedCodeSecurity()]
02125             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGeniv", ExactSpelling = true)]
02126             internal extern static unsafe void GetTexGeniv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, [OutAttribute] Int32* @params);
02127             [System.Security.SuppressUnmanagedCodeSecurity()]
02128             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexImage", ExactSpelling = true)]
02129             internal extern static void GetTexImage(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr pixels);
02130             [System.Security.SuppressUnmanagedCodeSecurity()]
02131             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexLevelParameterfv", ExactSpelling = true)]
02132             internal extern static unsafe void GetTexLevelParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params);
02133             [System.Security.SuppressUnmanagedCodeSecurity()]
02134             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexLevelParameteriv", ExactSpelling = true)]
02135             internal extern static unsafe void GetTexLevelParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02136             [System.Security.SuppressUnmanagedCodeSecurity()]
02137             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterfv", ExactSpelling = true)]
02138             internal extern static unsafe void GetTexParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params);
02139             [System.Security.SuppressUnmanagedCodeSecurity()]
02140             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterIiv", ExactSpelling = true)]
02141             internal extern static unsafe void GetTexParameterIiv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02142             [System.Security.SuppressUnmanagedCodeSecurity()]
02143             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterIivEXT", ExactSpelling = true)]
02144             internal extern static unsafe void GetTexParameterIivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02145             [System.Security.SuppressUnmanagedCodeSecurity()]
02146             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterIuiv", ExactSpelling = true)]
02147             internal extern static unsafe void GetTexParameterIuiv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params);
02148             [System.Security.SuppressUnmanagedCodeSecurity()]
02149             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterIuivEXT", ExactSpelling = true)]
02150             internal extern static unsafe void GetTexParameterIuivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params);
02151             [System.Security.SuppressUnmanagedCodeSecurity()]
02152             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameteriv", ExactSpelling = true)]
02153             internal extern static unsafe void GetTexParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02154             [System.Security.SuppressUnmanagedCodeSecurity()]
02155             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterPointervAPPLE", ExactSpelling = true)]
02156             internal extern static void GetTexParameterPointervAPPLE(OpenTK.Graphics.OpenGL.AppleTextureRange target, OpenTK.Graphics.OpenGL.AppleTextureRange pname, [OutAttribute] IntPtr @params);
02157             [System.Security.SuppressUnmanagedCodeSecurity()]
02158             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureImageEXT", ExactSpelling = true)]
02159             internal extern static void GetTextureImageEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr pixels);
02160             [System.Security.SuppressUnmanagedCodeSecurity()]
02161             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureLevelParameterfvEXT", ExactSpelling = true)]
02162             internal extern static unsafe void GetTextureLevelParameterfvEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params);
02163             [System.Security.SuppressUnmanagedCodeSecurity()]
02164             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureLevelParameterivEXT", ExactSpelling = true)]
02165             internal extern static unsafe void GetTextureLevelParameterivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02166             [System.Security.SuppressUnmanagedCodeSecurity()]
02167             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureParameterfvEXT", ExactSpelling = true)]
02168             internal extern static unsafe void GetTextureParameterfvEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Single* @params);
02169             [System.Security.SuppressUnmanagedCodeSecurity()]
02170             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureParameterIivEXT", ExactSpelling = true)]
02171             internal extern static unsafe void GetTextureParameterIivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02172             [System.Security.SuppressUnmanagedCodeSecurity()]
02173             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureParameterIuivEXT", ExactSpelling = true)]
02174             internal extern static unsafe void GetTextureParameterIuivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] UInt32* @params);
02175             [System.Security.SuppressUnmanagedCodeSecurity()]
02176             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTextureParameterivEXT", ExactSpelling = true)]
02177             internal extern static unsafe void GetTextureParameterivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.GetTextureParameter pname, [OutAttribute] Int32* @params);
02178             [System.Security.SuppressUnmanagedCodeSecurity()]
02179             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTrackMatrixivNV", ExactSpelling = true)]
02180             internal extern static unsafe void GetTrackMatrixivNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.AssemblyProgramParameterArb pname, [OutAttribute] Int32* @params);
02181             [System.Security.SuppressUnmanagedCodeSecurity()]
02182             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTransformFeedbackVarying", ExactSpelling = true)]
02183             internal extern static unsafe void GetTransformFeedbackVarying(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ActiveAttribType* type, [OutAttribute] StringBuilder name);
02184             [System.Security.SuppressUnmanagedCodeSecurity()]
02185             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTransformFeedbackVaryingEXT", ExactSpelling = true)]
02186             internal extern static unsafe void GetTransformFeedbackVaryingEXT(UInt32 program, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* size, [OutAttribute] OpenTK.Graphics.OpenGL.ExtTransformFeedback* type, [OutAttribute] StringBuilder name);
02187             [System.Security.SuppressUnmanagedCodeSecurity()]
02188             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTransformFeedbackVaryingNV", ExactSpelling = true)]
02189             internal extern static unsafe void GetTransformFeedbackVaryingNV(UInt32 program, UInt32 index, [OutAttribute] Int32* location);
02190             [System.Security.SuppressUnmanagedCodeSecurity()]
02191             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformBlockIndex", ExactSpelling = true)]
02192             internal extern static Int32 GetUniformBlockIndex(UInt32 program, String uniformBlockName);
02193             [System.Security.SuppressUnmanagedCodeSecurity()]
02194             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformBufferSizeEXT", ExactSpelling = true)]
02195             internal extern static Int32 GetUniformBufferSizeEXT(UInt32 program, Int32 location);
02196             [System.Security.SuppressUnmanagedCodeSecurity()]
02197             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformfv", ExactSpelling = true)]
02198             internal extern static unsafe void GetUniformfv(UInt32 program, Int32 location, [OutAttribute] Single* @params);
02199             [System.Security.SuppressUnmanagedCodeSecurity()]
02200             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformfvARB", ExactSpelling = true)]
02201             internal extern static unsafe void GetUniformfvARB(UInt32 programObj, Int32 location, [OutAttribute] Single* @params);
02202             [System.Security.SuppressUnmanagedCodeSecurity()]
02203             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformIndices", ExactSpelling = true)]
02204             internal extern static unsafe void GetUniformIndices(UInt32 program, Int32 uniformCount, String[] uniformNames, [OutAttribute] UInt32* uniformIndices);
02205             [System.Security.SuppressUnmanagedCodeSecurity()]
02206             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformiv", ExactSpelling = true)]
02207             internal extern static unsafe void GetUniformiv(UInt32 program, Int32 location, [OutAttribute] Int32* @params);
02208             [System.Security.SuppressUnmanagedCodeSecurity()]
02209             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformivARB", ExactSpelling = true)]
02210             internal extern static unsafe void GetUniformivARB(UInt32 programObj, Int32 location, [OutAttribute] Int32* @params);
02211             [System.Security.SuppressUnmanagedCodeSecurity()]
02212             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformLocation", ExactSpelling = true)]
02213             internal extern static Int32 GetUniformLocation(UInt32 program, String name);
02214             [System.Security.SuppressUnmanagedCodeSecurity()]
02215             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformLocationARB", ExactSpelling = true)]
02216             internal extern static Int32 GetUniformLocationARB(UInt32 programObj, String name);
02217             [System.Security.SuppressUnmanagedCodeSecurity()]
02218             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformOffsetEXT", ExactSpelling = true)]
02219             internal extern static IntPtr GetUniformOffsetEXT(UInt32 program, Int32 location);
02220             [System.Security.SuppressUnmanagedCodeSecurity()]
02221             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformuiv", ExactSpelling = true)]
02222             internal extern static unsafe void GetUniformuiv(UInt32 program, Int32 location, [OutAttribute] UInt32* @params);
02223             [System.Security.SuppressUnmanagedCodeSecurity()]
02224             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetUniformuivEXT", ExactSpelling = true)]
02225             internal extern static unsafe void GetUniformuivEXT(UInt32 program, Int32 location, [OutAttribute] UInt32* @params);
02226             [System.Security.SuppressUnmanagedCodeSecurity()]
02227             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVariantArrayObjectfvATI", ExactSpelling = true)]
02228             internal extern static unsafe void GetVariantArrayObjectfvATI(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Single* @params);
02229             [System.Security.SuppressUnmanagedCodeSecurity()]
02230             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVariantArrayObjectivATI", ExactSpelling = true)]
02231             internal extern static unsafe void GetVariantArrayObjectivATI(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject pname, [OutAttribute] Int32* @params);
02232             [System.Security.SuppressUnmanagedCodeSecurity()]
02233             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVariantBooleanvEXT", ExactSpelling = true)]
02234             internal extern static unsafe void GetVariantBooleanvEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] bool* data);
02235             [System.Security.SuppressUnmanagedCodeSecurity()]
02236             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVariantFloatvEXT", ExactSpelling = true)]
02237             internal extern static unsafe void GetVariantFloatvEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Single* data);
02238             [System.Security.SuppressUnmanagedCodeSecurity()]
02239             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVariantIntegervEXT", ExactSpelling = true)]
02240             internal extern static unsafe void GetVariantIntegervEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] Int32* data);
02241             [System.Security.SuppressUnmanagedCodeSecurity()]
02242             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVariantPointervEXT", ExactSpelling = true)]
02243             internal extern static void GetVariantPointervEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader value, [OutAttribute] IntPtr data);
02244             [System.Security.SuppressUnmanagedCodeSecurity()]
02245             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVaryingLocationNV", ExactSpelling = true)]
02246             internal extern static Int32 GetVaryingLocationNV(UInt32 program, String name);
02247             [System.Security.SuppressUnmanagedCodeSecurity()]
02248             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribArrayObjectfvATI", ExactSpelling = true)]
02249             internal extern static unsafe void GetVertexAttribArrayObjectfvATI(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Single* @params);
02250             [System.Security.SuppressUnmanagedCodeSecurity()]
02251             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribArrayObjectivATI", ExactSpelling = true)]
02252             internal extern static unsafe void GetVertexAttribArrayObjectivATI(UInt32 index, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject pname, [OutAttribute] Int32* @params);
02253             [System.Security.SuppressUnmanagedCodeSecurity()]
02254             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribdv", ExactSpelling = true)]
02255             internal extern static unsafe void GetVertexAttribdv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Double* @params);
02256             [System.Security.SuppressUnmanagedCodeSecurity()]
02257             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribdvARB", ExactSpelling = true)]
02258             internal extern static unsafe void GetVertexAttribdvARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Double* @params);
02259             [System.Security.SuppressUnmanagedCodeSecurity()]
02260             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribdvNV", ExactSpelling = true)]
02261             internal extern static unsafe void GetVertexAttribdvNV(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Double* @params);
02262             [System.Security.SuppressUnmanagedCodeSecurity()]
02263             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribfv", ExactSpelling = true)]
02264             internal extern static unsafe void GetVertexAttribfv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Single* @params);
02265             [System.Security.SuppressUnmanagedCodeSecurity()]
02266             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribfvARB", ExactSpelling = true)]
02267             internal extern static unsafe void GetVertexAttribfvARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Single* @params);
02268             [System.Security.SuppressUnmanagedCodeSecurity()]
02269             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribfvNV", ExactSpelling = true)]
02270             internal extern static unsafe void GetVertexAttribfvNV(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Single* @params);
02271             [System.Security.SuppressUnmanagedCodeSecurity()]
02272             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribIiv", ExactSpelling = true)]
02273             internal extern static unsafe void GetVertexAttribIiv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32* @params);
02274             [System.Security.SuppressUnmanagedCodeSecurity()]
02275             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribIivEXT", ExactSpelling = true)]
02276             internal extern static unsafe void GetVertexAttribIivEXT(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] Int32* @params);
02277             [System.Security.SuppressUnmanagedCodeSecurity()]
02278             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribIuiv", ExactSpelling = true)]
02279             internal extern static unsafe void GetVertexAttribIuiv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] UInt32* @params);
02280             [System.Security.SuppressUnmanagedCodeSecurity()]
02281             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribIuivEXT", ExactSpelling = true)]
02282             internal extern static unsafe void GetVertexAttribIuivEXT(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram4 pname, [OutAttribute] UInt32* @params);
02283             [System.Security.SuppressUnmanagedCodeSecurity()]
02284             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribiv", ExactSpelling = true)]
02285             internal extern static unsafe void GetVertexAttribiv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameter pname, [OutAttribute] Int32* @params);
02286             [System.Security.SuppressUnmanagedCodeSecurity()]
02287             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribivARB", ExactSpelling = true)]
02288             internal extern static unsafe void GetVertexAttribivARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribParameterArb pname, [OutAttribute] Int32* @params);
02289             [System.Security.SuppressUnmanagedCodeSecurity()]
02290             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribivNV", ExactSpelling = true)]
02291             internal extern static unsafe void GetVertexAttribivNV(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] Int32* @params);
02292             [System.Security.SuppressUnmanagedCodeSecurity()]
02293             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribPointerv", ExactSpelling = true)]
02294             internal extern static void GetVertexAttribPointerv(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameter pname, [OutAttribute] IntPtr pointer);
02295             [System.Security.SuppressUnmanagedCodeSecurity()]
02296             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribPointervARB", ExactSpelling = true)]
02297             internal extern static void GetVertexAttribPointervARB(UInt32 index, OpenTK.Graphics.OpenGL.VertexAttribPointerParameterArb pname, [OutAttribute] IntPtr pointer);
02298             [System.Security.SuppressUnmanagedCodeSecurity()]
02299             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVertexAttribPointervNV", ExactSpelling = true)]
02300             internal extern static void GetVertexAttribPointervNV(UInt32 index, OpenTK.Graphics.OpenGL.NvVertexProgram pname, [OutAttribute] IntPtr pointer);
02301             [System.Security.SuppressUnmanagedCodeSecurity()]
02302             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVideoi64vNV", ExactSpelling = true)]
02303             internal extern static unsafe void GetVideoi64vNV(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int64* @params);
02304             [System.Security.SuppressUnmanagedCodeSecurity()]
02305             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVideoivNV", ExactSpelling = true)]
02306             internal extern static unsafe void GetVideoivNV(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] Int32* @params);
02307             [System.Security.SuppressUnmanagedCodeSecurity()]
02308             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVideoui64vNV", ExactSpelling = true)]
02309             internal extern static unsafe void GetVideoui64vNV(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt64* @params);
02310             [System.Security.SuppressUnmanagedCodeSecurity()]
02311             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetVideouivNV", ExactSpelling = true)]
02312             internal extern static unsafe void GetVideouivNV(UInt32 video_slot, OpenTK.Graphics.OpenGL.NvPresentVideo pname, [OutAttribute] UInt32* @params);
02313             [System.Security.SuppressUnmanagedCodeSecurity()]
02314             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactorbSUN", ExactSpelling = true)]
02315             internal extern static void GlobalAlphaFactorbSUN(SByte factor);
02316             [System.Security.SuppressUnmanagedCodeSecurity()]
02317             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactordSUN", ExactSpelling = true)]
02318             internal extern static void GlobalAlphaFactordSUN(Double factor);
02319             [System.Security.SuppressUnmanagedCodeSecurity()]
02320             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactorfSUN", ExactSpelling = true)]
02321             internal extern static void GlobalAlphaFactorfSUN(Single factor);
02322             [System.Security.SuppressUnmanagedCodeSecurity()]
02323             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactoriSUN", ExactSpelling = true)]
02324             internal extern static void GlobalAlphaFactoriSUN(Int32 factor);
02325             [System.Security.SuppressUnmanagedCodeSecurity()]
02326             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactorsSUN", ExactSpelling = true)]
02327             internal extern static void GlobalAlphaFactorsSUN(Int16 factor);
02328             [System.Security.SuppressUnmanagedCodeSecurity()]
02329             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactorubSUN", ExactSpelling = true)]
02330             internal extern static void GlobalAlphaFactorubSUN(Byte factor);
02331             [System.Security.SuppressUnmanagedCodeSecurity()]
02332             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactoruiSUN", ExactSpelling = true)]
02333             internal extern static void GlobalAlphaFactoruiSUN(UInt32 factor);
02334             [System.Security.SuppressUnmanagedCodeSecurity()]
02335             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGlobalAlphaFactorusSUN", ExactSpelling = true)]
02336             internal extern static void GlobalAlphaFactorusSUN(UInt16 factor);
02337             [System.Security.SuppressUnmanagedCodeSecurity()]
02338             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHint", ExactSpelling = true)]
02339             internal extern static void Hint(OpenTK.Graphics.OpenGL.HintTarget target, OpenTK.Graphics.OpenGL.HintMode mode);
02340             [System.Security.SuppressUnmanagedCodeSecurity()]
02341             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHintPGI", ExactSpelling = true)]
02342             internal extern static void HintPGI(OpenTK.Graphics.OpenGL.PgiMiscHints target, Int32 mode);
02343             [System.Security.SuppressUnmanagedCodeSecurity()]
02344             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogram", ExactSpelling = true)]
02345             internal extern static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
02346             [System.Security.SuppressUnmanagedCodeSecurity()]
02347             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogramEXT", ExactSpelling = true)]
02348             internal extern static void HistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
02349             [System.Security.SuppressUnmanagedCodeSecurity()]
02350             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIglooInterfaceSGIX", ExactSpelling = true)]
02351             internal extern static void IglooInterfaceSGIX(OpenTK.Graphics.OpenGL.All pname, IntPtr @params);
02352             [System.Security.SuppressUnmanagedCodeSecurity()]
02353             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glImageTransformParameterfHP", ExactSpelling = true)]
02354             internal extern static void ImageTransformParameterfHP(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single param);
02355             [System.Security.SuppressUnmanagedCodeSecurity()]
02356             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glImageTransformParameterfvHP", ExactSpelling = true)]
02357             internal extern static unsafe void ImageTransformParameterfvHP(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Single* @params);
02358             [System.Security.SuppressUnmanagedCodeSecurity()]
02359             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glImageTransformParameteriHP", ExactSpelling = true)]
02360             internal extern static void ImageTransformParameteriHP(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32 param);
02361             [System.Security.SuppressUnmanagedCodeSecurity()]
02362             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glImageTransformParameterivHP", ExactSpelling = true)]
02363             internal extern static unsafe void ImageTransformParameterivHP(OpenTK.Graphics.OpenGL.HpImageTransform target, OpenTK.Graphics.OpenGL.HpImageTransform pname, Int32* @params);
02364             [System.Security.SuppressUnmanagedCodeSecurity()]
02365             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexd", ExactSpelling = true)]
02366             internal extern static void Indexd(Double c);
02367             [System.Security.SuppressUnmanagedCodeSecurity()]
02368             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexdv", ExactSpelling = true)]
02369             internal extern static unsafe void Indexdv(Double* c);
02370             [System.Security.SuppressUnmanagedCodeSecurity()]
02371             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexf", ExactSpelling = true)]
02372             internal extern static void Indexf(Single c);
02373             [System.Security.SuppressUnmanagedCodeSecurity()]
02374             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexFuncEXT", ExactSpelling = true)]
02375             internal extern static void IndexFuncEXT(OpenTK.Graphics.OpenGL.ExtIndexFunc func, Single @ref);
02376             [System.Security.SuppressUnmanagedCodeSecurity()]
02377             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexfv", ExactSpelling = true)]
02378             internal extern static unsafe void Indexfv(Single* c);
02379             [System.Security.SuppressUnmanagedCodeSecurity()]
02380             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexi", ExactSpelling = true)]
02381             internal extern static void Indexi(Int32 c);
02382             [System.Security.SuppressUnmanagedCodeSecurity()]
02383             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexiv", ExactSpelling = true)]
02384             internal extern static unsafe void Indexiv(Int32* c);
02385             [System.Security.SuppressUnmanagedCodeSecurity()]
02386             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexMask", ExactSpelling = true)]
02387             internal extern static void IndexMask(UInt32 mask);
02388             [System.Security.SuppressUnmanagedCodeSecurity()]
02389             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexMaterialEXT", ExactSpelling = true)]
02390             internal extern static void IndexMaterialEXT(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.ExtIndexMaterial mode);
02391             [System.Security.SuppressUnmanagedCodeSecurity()]
02392             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexPointer", ExactSpelling = true)]
02393             internal extern static void IndexPointer(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer);
02394             [System.Security.SuppressUnmanagedCodeSecurity()]
02395             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexPointerEXT", ExactSpelling = true)]
02396             internal extern static void IndexPointerEXT(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, Int32 count, IntPtr pointer);
02397             [System.Security.SuppressUnmanagedCodeSecurity()]
02398             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexPointerListIBM", ExactSpelling = true)]
02399             internal extern static void IndexPointerListIBM(OpenTK.Graphics.OpenGL.IndexPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
02400             [System.Security.SuppressUnmanagedCodeSecurity()]
02401             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexs", ExactSpelling = true)]
02402             internal extern static void Indexs(Int16 c);
02403             [System.Security.SuppressUnmanagedCodeSecurity()]
02404             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexsv", ExactSpelling = true)]
02405             internal extern static unsafe void Indexsv(Int16* c);
02406             [System.Security.SuppressUnmanagedCodeSecurity()]
02407             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexub", ExactSpelling = true)]
02408             internal extern static void Indexub(Byte c);
02409             [System.Security.SuppressUnmanagedCodeSecurity()]
02410             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIndexubv", ExactSpelling = true)]
02411             internal extern static unsafe void Indexubv(Byte* c);
02412             [System.Security.SuppressUnmanagedCodeSecurity()]
02413             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInitNames", ExactSpelling = true)]
02414             internal extern static void InitNames();
02415             [System.Security.SuppressUnmanagedCodeSecurity()]
02416             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInsertComponentEXT", ExactSpelling = true)]
02417             internal extern static void InsertComponentEXT(UInt32 res, UInt32 src, UInt32 num);
02418             [System.Security.SuppressUnmanagedCodeSecurity()]
02419             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInstrumentsBufferSGIX", ExactSpelling = true)]
02420             internal extern static unsafe void InstrumentsBufferSGIX(Int32 size, [OutAttribute] Int32* buffer);
02421             [System.Security.SuppressUnmanagedCodeSecurity()]
02422             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glInterleavedArrays", ExactSpelling = true)]
02423             internal extern static void InterleavedArrays(OpenTK.Graphics.OpenGL.InterleavedArrayFormat format, Int32 stride, IntPtr pointer);
02424             [System.Security.SuppressUnmanagedCodeSecurity()]
02425             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsAsyncMarkerSGIX", ExactSpelling = true)]
02426             internal extern static bool IsAsyncMarkerSGIX(UInt32 marker);
02427             [System.Security.SuppressUnmanagedCodeSecurity()]
02428             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsBuffer", ExactSpelling = true)]
02429             internal extern static bool IsBuffer(UInt32 buffer);
02430             [System.Security.SuppressUnmanagedCodeSecurity()]
02431             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsBufferARB", ExactSpelling = true)]
02432             internal extern static bool IsBufferARB(UInt32 buffer);
02433             [System.Security.SuppressUnmanagedCodeSecurity()]
02434             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsEnabled", ExactSpelling = true)]
02435             internal extern static bool IsEnabled(OpenTK.Graphics.OpenGL.EnableCap cap);
02436             [System.Security.SuppressUnmanagedCodeSecurity()]
02437             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsEnabledi", ExactSpelling = true)]
02438             internal extern static bool IsEnabledi(OpenTK.Graphics.OpenGL.IndexedEnableCap target, UInt32 index);
02439             [System.Security.SuppressUnmanagedCodeSecurity()]
02440             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsEnabledIndexedEXT", ExactSpelling = true)]
02441             internal extern static bool IsEnabledIndexedEXT(OpenTK.Graphics.OpenGL.ExtDrawBuffers2 target, UInt32 index);
02442             [System.Security.SuppressUnmanagedCodeSecurity()]
02443             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFenceAPPLE", ExactSpelling = true)]
02444             internal extern static bool IsFenceAPPLE(UInt32 fence);
02445             [System.Security.SuppressUnmanagedCodeSecurity()]
02446             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFenceNV", ExactSpelling = true)]
02447             internal extern static bool IsFenceNV(UInt32 fence);
02448             [System.Security.SuppressUnmanagedCodeSecurity()]
02449             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFramebuffer", ExactSpelling = true)]
02450             internal extern static bool IsFramebuffer(UInt32 framebuffer);
02451             [System.Security.SuppressUnmanagedCodeSecurity()]
02452             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFramebufferEXT", ExactSpelling = true)]
02453             internal extern static bool IsFramebufferEXT(UInt32 framebuffer);
02454             [System.Security.SuppressUnmanagedCodeSecurity()]
02455             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsList", ExactSpelling = true)]
02456             internal extern static bool IsList(UInt32 list);
02457             [System.Security.SuppressUnmanagedCodeSecurity()]
02458             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsObjectBufferATI", ExactSpelling = true)]
02459             internal extern static bool IsObjectBufferATI(UInt32 buffer);
02460             [System.Security.SuppressUnmanagedCodeSecurity()]
02461             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsOcclusionQueryNV", ExactSpelling = true)]
02462             internal extern static bool IsOcclusionQueryNV(UInt32 id);
02463             [System.Security.SuppressUnmanagedCodeSecurity()]
02464             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsProgram", ExactSpelling = true)]
02465             internal extern static bool IsProgram(UInt32 program);
02466             [System.Security.SuppressUnmanagedCodeSecurity()]
02467             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsProgramARB", ExactSpelling = true)]
02468             internal extern static bool IsProgramARB(UInt32 program);
02469             [System.Security.SuppressUnmanagedCodeSecurity()]
02470             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsProgramNV", ExactSpelling = true)]
02471             internal extern static bool IsProgramNV(UInt32 id);
02472             [System.Security.SuppressUnmanagedCodeSecurity()]
02473             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsQuery", ExactSpelling = true)]
02474             internal extern static bool IsQuery(UInt32 id);
02475             [System.Security.SuppressUnmanagedCodeSecurity()]
02476             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsQueryARB", ExactSpelling = true)]
02477             internal extern static bool IsQueryARB(UInt32 id);
02478             [System.Security.SuppressUnmanagedCodeSecurity()]
02479             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsRenderbuffer", ExactSpelling = true)]
02480             internal extern static bool IsRenderbuffer(UInt32 renderbuffer);
02481             [System.Security.SuppressUnmanagedCodeSecurity()]
02482             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsRenderbufferEXT", ExactSpelling = true)]
02483             internal extern static bool IsRenderbufferEXT(UInt32 renderbuffer);
02484             [System.Security.SuppressUnmanagedCodeSecurity()]
02485             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsShader", ExactSpelling = true)]
02486             internal extern static bool IsShader(UInt32 shader);
02487             [System.Security.SuppressUnmanagedCodeSecurity()]
02488             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsSync", ExactSpelling = true)]
02489             internal extern static bool IsSync(IntPtr sync);
02490             [System.Security.SuppressUnmanagedCodeSecurity()]
02491             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsTexture", ExactSpelling = true)]
02492             internal extern static bool IsTexture(UInt32 texture);
02493             [System.Security.SuppressUnmanagedCodeSecurity()]
02494             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsTextureEXT", ExactSpelling = true)]
02495             internal extern static bool IsTextureEXT(UInt32 texture);
02496             [System.Security.SuppressUnmanagedCodeSecurity()]
02497             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsTransformFeedbackNV", ExactSpelling = true)]
02498             internal extern static bool IsTransformFeedbackNV(UInt32 id);
02499             [System.Security.SuppressUnmanagedCodeSecurity()]
02500             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsVariantEnabledEXT", ExactSpelling = true)]
02501             internal extern static bool IsVariantEnabledEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader cap);
02502             [System.Security.SuppressUnmanagedCodeSecurity()]
02503             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsVertexArray", ExactSpelling = true)]
02504             internal extern static bool IsVertexArray(UInt32 array);
02505             [System.Security.SuppressUnmanagedCodeSecurity()]
02506             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsVertexArrayAPPLE", ExactSpelling = true)]
02507             internal extern static bool IsVertexArrayAPPLE(UInt32 array);
02508             [System.Security.SuppressUnmanagedCodeSecurity()]
02509             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsVertexAttribEnabledAPPLE", ExactSpelling = true)]
02510             internal extern static bool IsVertexAttribEnabledAPPLE(UInt32 index, OpenTK.Graphics.OpenGL.AppleVertexProgramEvaluators pname);
02511             [System.Security.SuppressUnmanagedCodeSecurity()]
02512             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightEnviSGIX", ExactSpelling = true)]
02513             internal extern static void LightEnviSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
02514             [System.Security.SuppressUnmanagedCodeSecurity()]
02515             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightf", ExactSpelling = true)]
02516             internal extern static void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param);
02517             [System.Security.SuppressUnmanagedCodeSecurity()]
02518             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightfv", ExactSpelling = true)]
02519             internal extern static unsafe void Lightfv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single* @params);
02520             [System.Security.SuppressUnmanagedCodeSecurity()]
02521             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLighti", ExactSpelling = true)]
02522             internal extern static void Lighti(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32 param);
02523             [System.Security.SuppressUnmanagedCodeSecurity()]
02524             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightiv", ExactSpelling = true)]
02525             internal extern static unsafe void Lightiv(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Int32* @params);
02526             [System.Security.SuppressUnmanagedCodeSecurity()]
02527             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelf", ExactSpelling = true)]
02528             internal extern static void LightModelf(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single param);
02529             [System.Security.SuppressUnmanagedCodeSecurity()]
02530             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelfv", ExactSpelling = true)]
02531             internal extern static unsafe void LightModelfv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Single* @params);
02532             [System.Security.SuppressUnmanagedCodeSecurity()]
02533             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModeli", ExactSpelling = true)]
02534             internal extern static void LightModeli(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32 param);
02535             [System.Security.SuppressUnmanagedCodeSecurity()]
02536             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModeliv", ExactSpelling = true)]
02537             internal extern static unsafe void LightModeliv(OpenTK.Graphics.OpenGL.LightModelParameter pname, Int32* @params);
02538             [System.Security.SuppressUnmanagedCodeSecurity()]
02539             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLineStipple", ExactSpelling = true)]
02540             internal extern static void LineStipple(Int32 factor, UInt16 pattern);
02541             [System.Security.SuppressUnmanagedCodeSecurity()]
02542             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLineWidth", ExactSpelling = true)]
02543             internal extern static void LineWidth(Single width);
02544             [System.Security.SuppressUnmanagedCodeSecurity()]
02545             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLinkProgram", ExactSpelling = true)]
02546             internal extern static void LinkProgram(UInt32 program);
02547             [System.Security.SuppressUnmanagedCodeSecurity()]
02548             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLinkProgramARB", ExactSpelling = true)]
02549             internal extern static void LinkProgramARB(UInt32 programObj);
02550             [System.Security.SuppressUnmanagedCodeSecurity()]
02551             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glListBase", ExactSpelling = true)]
02552             internal extern static void ListBase(UInt32 @base);
02553             [System.Security.SuppressUnmanagedCodeSecurity()]
02554             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glListParameterfSGIX", ExactSpelling = true)]
02555             internal extern static void ListParameterfSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single param);
02556             [System.Security.SuppressUnmanagedCodeSecurity()]
02557             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glListParameterfvSGIX", ExactSpelling = true)]
02558             internal extern static unsafe void ListParameterfvSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Single* @params);
02559             [System.Security.SuppressUnmanagedCodeSecurity()]
02560             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glListParameteriSGIX", ExactSpelling = true)]
02561             internal extern static void ListParameteriSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32 param);
02562             [System.Security.SuppressUnmanagedCodeSecurity()]
02563             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glListParameterivSGIX", ExactSpelling = true)]
02564             internal extern static unsafe void ListParameterivSGIX(UInt32 list, OpenTK.Graphics.OpenGL.ListParameterName pname, Int32* @params);
02565             [System.Security.SuppressUnmanagedCodeSecurity()]
02566             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadIdentity", ExactSpelling = true)]
02567             internal extern static void LoadIdentity();
02568             [System.Security.SuppressUnmanagedCodeSecurity()]
02569             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadIdentityDeformationMapSGIX", ExactSpelling = true)]
02570             internal extern static void LoadIdentityDeformationMapSGIX(UInt32 mask);
02571             [System.Security.SuppressUnmanagedCodeSecurity()]
02572             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixd", ExactSpelling = true)]
02573             internal extern static unsafe void LoadMatrixd(Double* m);
02574             [System.Security.SuppressUnmanagedCodeSecurity()]
02575             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixf", ExactSpelling = true)]
02576             internal extern static unsafe void LoadMatrixf(Single* m);
02577             [System.Security.SuppressUnmanagedCodeSecurity()]
02578             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadName", ExactSpelling = true)]
02579             internal extern static void LoadName(UInt32 name);
02580             [System.Security.SuppressUnmanagedCodeSecurity()]
02581             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadProgramNV", ExactSpelling = true)]
02582             internal extern static unsafe void LoadProgramNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 id, Int32 len, Byte* program);
02583             [System.Security.SuppressUnmanagedCodeSecurity()]
02584             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadTransposeMatrixd", ExactSpelling = true)]
02585             internal extern static unsafe void LoadTransposeMatrixd(Double* m);
02586             [System.Security.SuppressUnmanagedCodeSecurity()]
02587             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadTransposeMatrixdARB", ExactSpelling = true)]
02588             internal extern static unsafe void LoadTransposeMatrixdARB(Double* m);
02589             [System.Security.SuppressUnmanagedCodeSecurity()]
02590             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadTransposeMatrixf", ExactSpelling = true)]
02591             internal extern static unsafe void LoadTransposeMatrixf(Single* m);
02592             [System.Security.SuppressUnmanagedCodeSecurity()]
02593             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadTransposeMatrixfARB", ExactSpelling = true)]
02594             internal extern static unsafe void LoadTransposeMatrixfARB(Single* m);
02595             [System.Security.SuppressUnmanagedCodeSecurity()]
02596             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLockArraysEXT", ExactSpelling = true)]
02597             internal extern static void LockArraysEXT(Int32 first, Int32 count);
02598             [System.Security.SuppressUnmanagedCodeSecurity()]
02599             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLogicOp", ExactSpelling = true)]
02600             internal extern static void LogicOp(OpenTK.Graphics.OpenGL.LogicOp opcode);
02601             [System.Security.SuppressUnmanagedCodeSecurity()]
02602             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap1d", ExactSpelling = true)]
02603             internal extern static unsafe void Map1d(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 stride, Int32 order, Double* points);
02604             [System.Security.SuppressUnmanagedCodeSecurity()]
02605             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap1f", ExactSpelling = true)]
02606             internal extern static unsafe void Map1f(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 stride, Int32 order, Single* points);
02607             [System.Security.SuppressUnmanagedCodeSecurity()]
02608             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap2d", ExactSpelling = true)]
02609             internal extern static unsafe void Map2d(OpenTK.Graphics.OpenGL.MapTarget target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points);
02610             [System.Security.SuppressUnmanagedCodeSecurity()]
02611             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMap2f", ExactSpelling = true)]
02612             internal extern static unsafe void Map2f(OpenTK.Graphics.OpenGL.MapTarget target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points);
02613             [System.Security.SuppressUnmanagedCodeSecurity()]
02614             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBuffer", ExactSpelling = true)]
02615             internal extern static unsafe System.IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access);
02616             [System.Security.SuppressUnmanagedCodeSecurity()]
02617             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferARB", ExactSpelling = true)]
02618             internal extern static unsafe System.IntPtr MapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access);
02619             [System.Security.SuppressUnmanagedCodeSecurity()]
02620             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferRange", ExactSpelling = true)]
02621             internal extern static unsafe System.IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access);
02622             [System.Security.SuppressUnmanagedCodeSecurity()]
02623             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapControlPointsNV", ExactSpelling = true)]
02624             internal extern static void MapControlPointsNV(OpenTK.Graphics.OpenGL.NvEvaluators target, UInt32 index, OpenTK.Graphics.OpenGL.NvEvaluators type, Int32 ustride, Int32 vstride, Int32 uorder, Int32 vorder, bool packed, IntPtr points);
02625             [System.Security.SuppressUnmanagedCodeSecurity()]
02626             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapGrid1d", ExactSpelling = true)]
02627             internal extern static void MapGrid1d(Int32 un, Double u1, Double u2);
02628             [System.Security.SuppressUnmanagedCodeSecurity()]
02629             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapGrid1f", ExactSpelling = true)]
02630             internal extern static void MapGrid1f(Int32 un, Single u1, Single u2);
02631             [System.Security.SuppressUnmanagedCodeSecurity()]
02632             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapGrid2d", ExactSpelling = true)]
02633             internal extern static void MapGrid2d(Int32 un, Double u1, Double u2, Int32 vn, Double v1, Double v2);
02634             [System.Security.SuppressUnmanagedCodeSecurity()]
02635             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapGrid2f", ExactSpelling = true)]
02636             internal extern static void MapGrid2f(Int32 un, Single u1, Single u2, Int32 vn, Single v1, Single v2);
02637             [System.Security.SuppressUnmanagedCodeSecurity()]
02638             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapNamedBufferEXT", ExactSpelling = true)]
02639             internal extern static unsafe System.IntPtr MapNamedBufferEXT(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess access);
02640             [System.Security.SuppressUnmanagedCodeSecurity()]
02641             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapObjectBufferATI", ExactSpelling = true)]
02642             internal extern static unsafe System.IntPtr MapObjectBufferATI(UInt32 buffer);
02643             [System.Security.SuppressUnmanagedCodeSecurity()]
02644             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapParameterfvNV", ExactSpelling = true)]
02645             internal extern static unsafe void MapParameterfvNV(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, Single* @params);
02646             [System.Security.SuppressUnmanagedCodeSecurity()]
02647             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapParameterivNV", ExactSpelling = true)]
02648             internal extern static unsafe void MapParameterivNV(OpenTK.Graphics.OpenGL.NvEvaluators target, OpenTK.Graphics.OpenGL.NvEvaluators pname, Int32* @params);
02649             [System.Security.SuppressUnmanagedCodeSecurity()]
02650             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapVertexAttrib1dAPPLE", ExactSpelling = true)]
02651             internal extern static unsafe void MapVertexAttrib1dAPPLE(UInt32 index, UInt32 size, Double u1, Double u2, Int32 stride, Int32 order, Double* points);
02652             [System.Security.SuppressUnmanagedCodeSecurity()]
02653             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapVertexAttrib1fAPPLE", ExactSpelling = true)]
02654             internal extern static unsafe void MapVertexAttrib1fAPPLE(UInt32 index, UInt32 size, Single u1, Single u2, Int32 stride, Int32 order, Single* points);
02655             [System.Security.SuppressUnmanagedCodeSecurity()]
02656             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapVertexAttrib2dAPPLE", ExactSpelling = true)]
02657             internal extern static unsafe void MapVertexAttrib2dAPPLE(UInt32 index, UInt32 size, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double* points);
02658             [System.Security.SuppressUnmanagedCodeSecurity()]
02659             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapVertexAttrib2fAPPLE", ExactSpelling = true)]
02660             internal extern static unsafe void MapVertexAttrib2fAPPLE(UInt32 index, UInt32 size, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single* points);
02661             [System.Security.SuppressUnmanagedCodeSecurity()]
02662             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialf", ExactSpelling = true)]
02663             internal extern static void Materialf(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param);
02664             [System.Security.SuppressUnmanagedCodeSecurity()]
02665             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialfv", ExactSpelling = true)]
02666             internal extern static unsafe void Materialfv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single* @params);
02667             [System.Security.SuppressUnmanagedCodeSecurity()]
02668             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMateriali", ExactSpelling = true)]
02669             internal extern static void Materiali(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32 param);
02670             [System.Security.SuppressUnmanagedCodeSecurity()]
02671             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialiv", ExactSpelling = true)]
02672             internal extern static unsafe void Materialiv(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Int32* @params);
02673             [System.Security.SuppressUnmanagedCodeSecurity()]
02674             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixFrustumEXT", ExactSpelling = true)]
02675             internal extern static void MatrixFrustumEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar);
02676             [System.Security.SuppressUnmanagedCodeSecurity()]
02677             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixIndexPointerARB", ExactSpelling = true)]
02678             internal extern static void MatrixIndexPointerARB(Int32 size, OpenTK.Graphics.OpenGL.ArbMatrixPalette type, Int32 stride, IntPtr pointer);
02679             [System.Security.SuppressUnmanagedCodeSecurity()]
02680             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixIndexubvARB", ExactSpelling = true)]
02681             internal extern static unsafe void MatrixIndexubvARB(Int32 size, Byte* indices);
02682             [System.Security.SuppressUnmanagedCodeSecurity()]
02683             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixIndexuivARB", ExactSpelling = true)]
02684             internal extern static unsafe void MatrixIndexuivARB(Int32 size, UInt32* indices);
02685             [System.Security.SuppressUnmanagedCodeSecurity()]
02686             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixIndexusvARB", ExactSpelling = true)]
02687             internal extern static unsafe void MatrixIndexusvARB(Int32 size, UInt16* indices);
02688             [System.Security.SuppressUnmanagedCodeSecurity()]
02689             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixLoaddEXT", ExactSpelling = true)]
02690             internal extern static unsafe void MatrixLoaddEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m);
02691             [System.Security.SuppressUnmanagedCodeSecurity()]
02692             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixLoadfEXT", ExactSpelling = true)]
02693             internal extern static unsafe void MatrixLoadfEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m);
02694             [System.Security.SuppressUnmanagedCodeSecurity()]
02695             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixLoadIdentityEXT", ExactSpelling = true)]
02696             internal extern static void MatrixLoadIdentityEXT(OpenTK.Graphics.OpenGL.MatrixMode mode);
02697             [System.Security.SuppressUnmanagedCodeSecurity()]
02698             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixLoadTransposedEXT", ExactSpelling = true)]
02699             internal extern static unsafe void MatrixLoadTransposedEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m);
02700             [System.Security.SuppressUnmanagedCodeSecurity()]
02701             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixLoadTransposefEXT", ExactSpelling = true)]
02702             internal extern static unsafe void MatrixLoadTransposefEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m);
02703             [System.Security.SuppressUnmanagedCodeSecurity()]
02704             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMode", ExactSpelling = true)]
02705             internal extern static void MatrixMode(OpenTK.Graphics.OpenGL.MatrixMode mode);
02706             [System.Security.SuppressUnmanagedCodeSecurity()]
02707             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMultdEXT", ExactSpelling = true)]
02708             internal extern static unsafe void MatrixMultdEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m);
02709             [System.Security.SuppressUnmanagedCodeSecurity()]
02710             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMultfEXT", ExactSpelling = true)]
02711             internal extern static unsafe void MatrixMultfEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m);
02712             [System.Security.SuppressUnmanagedCodeSecurity()]
02713             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMultTransposedEXT", ExactSpelling = true)]
02714             internal extern static unsafe void MatrixMultTransposedEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double* m);
02715             [System.Security.SuppressUnmanagedCodeSecurity()]
02716             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMultTransposefEXT", ExactSpelling = true)]
02717             internal extern static unsafe void MatrixMultTransposefEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single* m);
02718             [System.Security.SuppressUnmanagedCodeSecurity()]
02719             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixOrthoEXT", ExactSpelling = true)]
02720             internal extern static void MatrixOrthoEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double left, Double right, Double bottom, Double top, Double zNear, Double zFar);
02721             [System.Security.SuppressUnmanagedCodeSecurity()]
02722             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixPopEXT", ExactSpelling = true)]
02723             internal extern static void MatrixPopEXT(OpenTK.Graphics.OpenGL.MatrixMode mode);
02724             [System.Security.SuppressUnmanagedCodeSecurity()]
02725             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixPushEXT", ExactSpelling = true)]
02726             internal extern static void MatrixPushEXT(OpenTK.Graphics.OpenGL.MatrixMode mode);
02727             [System.Security.SuppressUnmanagedCodeSecurity()]
02728             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixRotatedEXT", ExactSpelling = true)]
02729             internal extern static void MatrixRotatedEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double angle, Double x, Double y, Double z);
02730             [System.Security.SuppressUnmanagedCodeSecurity()]
02731             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixRotatefEXT", ExactSpelling = true)]
02732             internal extern static void MatrixRotatefEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single angle, Single x, Single y, Single z);
02733             [System.Security.SuppressUnmanagedCodeSecurity()]
02734             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixScaledEXT", ExactSpelling = true)]
02735             internal extern static void MatrixScaledEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z);
02736             [System.Security.SuppressUnmanagedCodeSecurity()]
02737             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixScalefEXT", ExactSpelling = true)]
02738             internal extern static void MatrixScalefEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z);
02739             [System.Security.SuppressUnmanagedCodeSecurity()]
02740             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixTranslatedEXT", ExactSpelling = true)]
02741             internal extern static void MatrixTranslatedEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Double x, Double y, Double z);
02742             [System.Security.SuppressUnmanagedCodeSecurity()]
02743             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixTranslatefEXT", ExactSpelling = true)]
02744             internal extern static void MatrixTranslatefEXT(OpenTK.Graphics.OpenGL.MatrixMode mode, Single x, Single y, Single z);
02745             [System.Security.SuppressUnmanagedCodeSecurity()]
02746             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmax", ExactSpelling = true)]
02747             internal extern static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
02748             [System.Security.SuppressUnmanagedCodeSecurity()]
02749             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmaxEXT", ExactSpelling = true)]
02750             internal extern static void MinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
02751             [System.Security.SuppressUnmanagedCodeSecurity()]
02752             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinSampleShading", ExactSpelling = true)]
02753             internal extern static void MinSampleShading(Single value);
02754             [System.Security.SuppressUnmanagedCodeSecurity()]
02755             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawArrays", ExactSpelling = true)]
02756             internal extern static unsafe void MultiDrawArrays(OpenTK.Graphics.OpenGL.BeginMode mode, [OutAttribute] Int32* first, [OutAttribute] Int32* count, Int32 primcount);
02757             [System.Security.SuppressUnmanagedCodeSecurity()]
02758             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawArraysEXT", ExactSpelling = true)]
02759             internal extern static unsafe void MultiDrawArraysEXT(OpenTK.Graphics.OpenGL.BeginMode mode, [OutAttribute] Int32* first, [OutAttribute] Int32* count, Int32 primcount);
02760             [System.Security.SuppressUnmanagedCodeSecurity()]
02761             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawElementArrayAPPLE", ExactSpelling = true)]
02762             internal extern static unsafe void MultiDrawElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* first, Int32* count, Int32 primcount);
02763             [System.Security.SuppressUnmanagedCodeSecurity()]
02764             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawElements", ExactSpelling = true)]
02765             internal extern static unsafe void MultiDrawElements(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount);
02766             [System.Security.SuppressUnmanagedCodeSecurity()]
02767             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawElementsBaseVertex", ExactSpelling = true)]
02768             internal extern static unsafe void MultiDrawElementsBaseVertex(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32* basevertex);
02769             [System.Security.SuppressUnmanagedCodeSecurity()]
02770             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawElementsEXT", ExactSpelling = true)]
02771             internal extern static unsafe void MultiDrawElementsEXT(OpenTK.Graphics.OpenGL.BeginMode mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount);
02772             [System.Security.SuppressUnmanagedCodeSecurity()]
02773             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiDrawRangeElementArrayAPPLE", ExactSpelling = true)]
02774             internal extern static unsafe void MultiDrawRangeElementArrayAPPLE(OpenTK.Graphics.OpenGL.BeginMode mode, UInt32 start, UInt32 end, Int32* first, Int32* count, Int32 primcount);
02775             [System.Security.SuppressUnmanagedCodeSecurity()]
02776             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiModeDrawArraysIBM", ExactSpelling = true)]
02777             internal extern static unsafe void MultiModeDrawArraysIBM(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* first, Int32* count, Int32 primcount, Int32 modestride);
02778             [System.Security.SuppressUnmanagedCodeSecurity()]
02779             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiModeDrawElementsIBM", ExactSpelling = true)]
02780             internal extern static unsafe void MultiModeDrawElementsIBM(OpenTK.Graphics.OpenGL.BeginMode* mode, Int32* count, OpenTK.Graphics.OpenGL.DrawElementsType type, IntPtr indices, Int32 primcount, Int32 modestride);
02781             [System.Security.SuppressUnmanagedCodeSecurity()]
02782             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexBufferEXT", ExactSpelling = true)]
02783             internal extern static void MultiTexBufferEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer);
02784             [System.Security.SuppressUnmanagedCodeSecurity()]
02785             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1d", ExactSpelling = true)]
02786             internal extern static void MultiTexCoord1d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s);
02787             [System.Security.SuppressUnmanagedCodeSecurity()]
02788             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1dARB", ExactSpelling = true)]
02789             internal extern static void MultiTexCoord1dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s);
02790             [System.Security.SuppressUnmanagedCodeSecurity()]
02791             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1dv", ExactSpelling = true)]
02792             internal extern static unsafe void MultiTexCoord1dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02793             [System.Security.SuppressUnmanagedCodeSecurity()]
02794             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1dvARB", ExactSpelling = true)]
02795             internal extern static unsafe void MultiTexCoord1dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02796             [System.Security.SuppressUnmanagedCodeSecurity()]
02797             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1f", ExactSpelling = true)]
02798             internal extern static void MultiTexCoord1f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s);
02799             [System.Security.SuppressUnmanagedCodeSecurity()]
02800             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1fARB", ExactSpelling = true)]
02801             internal extern static void MultiTexCoord1fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s);
02802             [System.Security.SuppressUnmanagedCodeSecurity()]
02803             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1fv", ExactSpelling = true)]
02804             internal extern static unsafe void MultiTexCoord1fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02805             [System.Security.SuppressUnmanagedCodeSecurity()]
02806             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1fvARB", ExactSpelling = true)]
02807             internal extern static unsafe void MultiTexCoord1fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02808             [System.Security.SuppressUnmanagedCodeSecurity()]
02809             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1hNV", ExactSpelling = true)]
02810             internal extern static void MultiTexCoord1hNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half s);
02811             [System.Security.SuppressUnmanagedCodeSecurity()]
02812             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1hvNV", ExactSpelling = true)]
02813             internal extern static unsafe void MultiTexCoord1hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half* v);
02814             [System.Security.SuppressUnmanagedCodeSecurity()]
02815             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1i", ExactSpelling = true)]
02816             internal extern static void MultiTexCoord1i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s);
02817             [System.Security.SuppressUnmanagedCodeSecurity()]
02818             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1iARB", ExactSpelling = true)]
02819             internal extern static void MultiTexCoord1iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s);
02820             [System.Security.SuppressUnmanagedCodeSecurity()]
02821             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1iv", ExactSpelling = true)]
02822             internal extern static unsafe void MultiTexCoord1iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02823             [System.Security.SuppressUnmanagedCodeSecurity()]
02824             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1ivARB", ExactSpelling = true)]
02825             internal extern static unsafe void MultiTexCoord1ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02826             [System.Security.SuppressUnmanagedCodeSecurity()]
02827             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1s", ExactSpelling = true)]
02828             internal extern static void MultiTexCoord1s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s);
02829             [System.Security.SuppressUnmanagedCodeSecurity()]
02830             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1sARB", ExactSpelling = true)]
02831             internal extern static void MultiTexCoord1sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s);
02832             [System.Security.SuppressUnmanagedCodeSecurity()]
02833             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1sv", ExactSpelling = true)]
02834             internal extern static unsafe void MultiTexCoord1sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02835             [System.Security.SuppressUnmanagedCodeSecurity()]
02836             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord1svARB", ExactSpelling = true)]
02837             internal extern static unsafe void MultiTexCoord1svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02838             [System.Security.SuppressUnmanagedCodeSecurity()]
02839             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2d", ExactSpelling = true)]
02840             internal extern static void MultiTexCoord2d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t);
02841             [System.Security.SuppressUnmanagedCodeSecurity()]
02842             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2dARB", ExactSpelling = true)]
02843             internal extern static void MultiTexCoord2dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t);
02844             [System.Security.SuppressUnmanagedCodeSecurity()]
02845             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2dv", ExactSpelling = true)]
02846             internal extern static unsafe void MultiTexCoord2dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02847             [System.Security.SuppressUnmanagedCodeSecurity()]
02848             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2dvARB", ExactSpelling = true)]
02849             internal extern static unsafe void MultiTexCoord2dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02850             [System.Security.SuppressUnmanagedCodeSecurity()]
02851             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2f", ExactSpelling = true)]
02852             internal extern static void MultiTexCoord2f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t);
02853             [System.Security.SuppressUnmanagedCodeSecurity()]
02854             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2fARB", ExactSpelling = true)]
02855             internal extern static void MultiTexCoord2fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t);
02856             [System.Security.SuppressUnmanagedCodeSecurity()]
02857             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2fv", ExactSpelling = true)]
02858             internal extern static unsafe void MultiTexCoord2fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02859             [System.Security.SuppressUnmanagedCodeSecurity()]
02860             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2fvARB", ExactSpelling = true)]
02861             internal extern static unsafe void MultiTexCoord2fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02862             [System.Security.SuppressUnmanagedCodeSecurity()]
02863             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2hNV", ExactSpelling = true)]
02864             internal extern static void MultiTexCoord2hNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half s, OpenTK.Half t);
02865             [System.Security.SuppressUnmanagedCodeSecurity()]
02866             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2hvNV", ExactSpelling = true)]
02867             internal extern static unsafe void MultiTexCoord2hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half* v);
02868             [System.Security.SuppressUnmanagedCodeSecurity()]
02869             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2i", ExactSpelling = true)]
02870             internal extern static void MultiTexCoord2i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t);
02871             [System.Security.SuppressUnmanagedCodeSecurity()]
02872             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2iARB", ExactSpelling = true)]
02873             internal extern static void MultiTexCoord2iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t);
02874             [System.Security.SuppressUnmanagedCodeSecurity()]
02875             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2iv", ExactSpelling = true)]
02876             internal extern static unsafe void MultiTexCoord2iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02877             [System.Security.SuppressUnmanagedCodeSecurity()]
02878             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2ivARB", ExactSpelling = true)]
02879             internal extern static unsafe void MultiTexCoord2ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02880             [System.Security.SuppressUnmanagedCodeSecurity()]
02881             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2s", ExactSpelling = true)]
02882             internal extern static void MultiTexCoord2s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t);
02883             [System.Security.SuppressUnmanagedCodeSecurity()]
02884             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2sARB", ExactSpelling = true)]
02885             internal extern static void MultiTexCoord2sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t);
02886             [System.Security.SuppressUnmanagedCodeSecurity()]
02887             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2sv", ExactSpelling = true)]
02888             internal extern static unsafe void MultiTexCoord2sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02889             [System.Security.SuppressUnmanagedCodeSecurity()]
02890             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord2svARB", ExactSpelling = true)]
02891             internal extern static unsafe void MultiTexCoord2svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02892             [System.Security.SuppressUnmanagedCodeSecurity()]
02893             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3d", ExactSpelling = true)]
02894             internal extern static void MultiTexCoord3d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r);
02895             [System.Security.SuppressUnmanagedCodeSecurity()]
02896             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3dARB", ExactSpelling = true)]
02897             internal extern static void MultiTexCoord3dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r);
02898             [System.Security.SuppressUnmanagedCodeSecurity()]
02899             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3dv", ExactSpelling = true)]
02900             internal extern static unsafe void MultiTexCoord3dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02901             [System.Security.SuppressUnmanagedCodeSecurity()]
02902             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3dvARB", ExactSpelling = true)]
02903             internal extern static unsafe void MultiTexCoord3dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02904             [System.Security.SuppressUnmanagedCodeSecurity()]
02905             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3f", ExactSpelling = true)]
02906             internal extern static void MultiTexCoord3f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r);
02907             [System.Security.SuppressUnmanagedCodeSecurity()]
02908             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3fARB", ExactSpelling = true)]
02909             internal extern static void MultiTexCoord3fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r);
02910             [System.Security.SuppressUnmanagedCodeSecurity()]
02911             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3fv", ExactSpelling = true)]
02912             internal extern static unsafe void MultiTexCoord3fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02913             [System.Security.SuppressUnmanagedCodeSecurity()]
02914             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3fvARB", ExactSpelling = true)]
02915             internal extern static unsafe void MultiTexCoord3fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02916             [System.Security.SuppressUnmanagedCodeSecurity()]
02917             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3hNV", ExactSpelling = true)]
02918             internal extern static void MultiTexCoord3hNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half s, OpenTK.Half t, OpenTK.Half r);
02919             [System.Security.SuppressUnmanagedCodeSecurity()]
02920             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3hvNV", ExactSpelling = true)]
02921             internal extern static unsafe void MultiTexCoord3hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half* v);
02922             [System.Security.SuppressUnmanagedCodeSecurity()]
02923             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3i", ExactSpelling = true)]
02924             internal extern static void MultiTexCoord3i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r);
02925             [System.Security.SuppressUnmanagedCodeSecurity()]
02926             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3iARB", ExactSpelling = true)]
02927             internal extern static void MultiTexCoord3iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r);
02928             [System.Security.SuppressUnmanagedCodeSecurity()]
02929             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3iv", ExactSpelling = true)]
02930             internal extern static unsafe void MultiTexCoord3iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02931             [System.Security.SuppressUnmanagedCodeSecurity()]
02932             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3ivARB", ExactSpelling = true)]
02933             internal extern static unsafe void MultiTexCoord3ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02934             [System.Security.SuppressUnmanagedCodeSecurity()]
02935             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3s", ExactSpelling = true)]
02936             internal extern static void MultiTexCoord3s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r);
02937             [System.Security.SuppressUnmanagedCodeSecurity()]
02938             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3sARB", ExactSpelling = true)]
02939             internal extern static void MultiTexCoord3sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r);
02940             [System.Security.SuppressUnmanagedCodeSecurity()]
02941             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3sv", ExactSpelling = true)]
02942             internal extern static unsafe void MultiTexCoord3sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02943             [System.Security.SuppressUnmanagedCodeSecurity()]
02944             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord3svARB", ExactSpelling = true)]
02945             internal extern static unsafe void MultiTexCoord3svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02946             [System.Security.SuppressUnmanagedCodeSecurity()]
02947             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4d", ExactSpelling = true)]
02948             internal extern static void MultiTexCoord4d(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q);
02949             [System.Security.SuppressUnmanagedCodeSecurity()]
02950             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4dARB", ExactSpelling = true)]
02951             internal extern static void MultiTexCoord4dARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double s, Double t, Double r, Double q);
02952             [System.Security.SuppressUnmanagedCodeSecurity()]
02953             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4dv", ExactSpelling = true)]
02954             internal extern static unsafe void MultiTexCoord4dv(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02955             [System.Security.SuppressUnmanagedCodeSecurity()]
02956             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4dvARB", ExactSpelling = true)]
02957             internal extern static unsafe void MultiTexCoord4dvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Double* v);
02958             [System.Security.SuppressUnmanagedCodeSecurity()]
02959             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4f", ExactSpelling = true)]
02960             internal extern static void MultiTexCoord4f(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q);
02961             [System.Security.SuppressUnmanagedCodeSecurity()]
02962             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4fARB", ExactSpelling = true)]
02963             internal extern static void MultiTexCoord4fARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single s, Single t, Single r, Single q);
02964             [System.Security.SuppressUnmanagedCodeSecurity()]
02965             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4fv", ExactSpelling = true)]
02966             internal extern static unsafe void MultiTexCoord4fv(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02967             [System.Security.SuppressUnmanagedCodeSecurity()]
02968             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4fvARB", ExactSpelling = true)]
02969             internal extern static unsafe void MultiTexCoord4fvARB(OpenTK.Graphics.OpenGL.TextureUnit target, Single* v);
02970             [System.Security.SuppressUnmanagedCodeSecurity()]
02971             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4hNV", ExactSpelling = true)]
02972             internal extern static void MultiTexCoord4hNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half s, OpenTK.Half t, OpenTK.Half r, OpenTK.Half q);
02973             [System.Security.SuppressUnmanagedCodeSecurity()]
02974             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4hvNV", ExactSpelling = true)]
02975             internal extern static unsafe void MultiTexCoord4hvNV(OpenTK.Graphics.OpenGL.TextureUnit target, OpenTK.Half* v);
02976             [System.Security.SuppressUnmanagedCodeSecurity()]
02977             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4i", ExactSpelling = true)]
02978             internal extern static void MultiTexCoord4i(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q);
02979             [System.Security.SuppressUnmanagedCodeSecurity()]
02980             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4iARB", ExactSpelling = true)]
02981             internal extern static void MultiTexCoord4iARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32 s, Int32 t, Int32 r, Int32 q);
02982             [System.Security.SuppressUnmanagedCodeSecurity()]
02983             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4iv", ExactSpelling = true)]
02984             internal extern static unsafe void MultiTexCoord4iv(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02985             [System.Security.SuppressUnmanagedCodeSecurity()]
02986             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4ivARB", ExactSpelling = true)]
02987             internal extern static unsafe void MultiTexCoord4ivARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int32* v);
02988             [System.Security.SuppressUnmanagedCodeSecurity()]
02989             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4s", ExactSpelling = true)]
02990             internal extern static void MultiTexCoord4s(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q);
02991             [System.Security.SuppressUnmanagedCodeSecurity()]
02992             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4sARB", ExactSpelling = true)]
02993             internal extern static void MultiTexCoord4sARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16 s, Int16 t, Int16 r, Int16 q);
02994             [System.Security.SuppressUnmanagedCodeSecurity()]
02995             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4sv", ExactSpelling = true)]
02996             internal extern static unsafe void MultiTexCoord4sv(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
02997             [System.Security.SuppressUnmanagedCodeSecurity()]
02998             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4svARB", ExactSpelling = true)]
02999             internal extern static unsafe void MultiTexCoord4svARB(OpenTK.Graphics.OpenGL.TextureUnit target, Int16* v);
03000             [System.Security.SuppressUnmanagedCodeSecurity()]
03001             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoordPointerEXT", ExactSpelling = true)]
03002             internal extern static void MultiTexCoordPointerEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer);
03003             [System.Security.SuppressUnmanagedCodeSecurity()]
03004             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexEnvfEXT", ExactSpelling = true)]
03005             internal extern static void MultiTexEnvfEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param);
03006             [System.Security.SuppressUnmanagedCodeSecurity()]
03007             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexEnvfvEXT", ExactSpelling = true)]
03008             internal extern static unsafe void MultiTexEnvfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params);
03009             [System.Security.SuppressUnmanagedCodeSecurity()]
03010             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexEnviEXT", ExactSpelling = true)]
03011             internal extern static void MultiTexEnviEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param);
03012             [System.Security.SuppressUnmanagedCodeSecurity()]
03013             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexEnvivEXT", ExactSpelling = true)]
03014             internal extern static unsafe void MultiTexEnvivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params);
03015             [System.Security.SuppressUnmanagedCodeSecurity()]
03016             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexGendEXT", ExactSpelling = true)]
03017             internal extern static void MultiTexGendEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param);
03018             [System.Security.SuppressUnmanagedCodeSecurity()]
03019             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexGendvEXT", ExactSpelling = true)]
03020             internal extern static unsafe void MultiTexGendvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params);
03021             [System.Security.SuppressUnmanagedCodeSecurity()]
03022             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexGenfEXT", ExactSpelling = true)]
03023             internal extern static void MultiTexGenfEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param);
03024             [System.Security.SuppressUnmanagedCodeSecurity()]
03025             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexGenfvEXT", ExactSpelling = true)]
03026             internal extern static unsafe void MultiTexGenfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params);
03027             [System.Security.SuppressUnmanagedCodeSecurity()]
03028             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexGeniEXT", ExactSpelling = true)]
03029             internal extern static void MultiTexGeniEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param);
03030             [System.Security.SuppressUnmanagedCodeSecurity()]
03031             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexGenivEXT", ExactSpelling = true)]
03032             internal extern static unsafe void MultiTexGenivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params);
03033             [System.Security.SuppressUnmanagedCodeSecurity()]
03034             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexImage1DEXT", ExactSpelling = true)]
03035             internal extern static void MultiTexImage1DEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
03036             [System.Security.SuppressUnmanagedCodeSecurity()]
03037             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexImage2DEXT", ExactSpelling = true)]
03038             internal extern static void MultiTexImage2DEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
03039             [System.Security.SuppressUnmanagedCodeSecurity()]
03040             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexImage3DEXT", ExactSpelling = true)]
03041             internal extern static void MultiTexImage3DEXT(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, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
03042             [System.Security.SuppressUnmanagedCodeSecurity()]
03043             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexParameterfEXT", ExactSpelling = true)]
03044             internal extern static void MultiTexParameterfEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param);
03045             [System.Security.SuppressUnmanagedCodeSecurity()]
03046             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexParameterfvEXT", ExactSpelling = true)]
03047             internal extern static unsafe void MultiTexParameterfvEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params);
03048             [System.Security.SuppressUnmanagedCodeSecurity()]
03049             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexParameteriEXT", ExactSpelling = true)]
03050             internal extern static void MultiTexParameteriEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param);
03051             [System.Security.SuppressUnmanagedCodeSecurity()]
03052             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexParameterIivEXT", ExactSpelling = true)]
03053             internal extern static unsafe void MultiTexParameterIivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
03054             [System.Security.SuppressUnmanagedCodeSecurity()]
03055             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexParameterIuivEXT", ExactSpelling = true)]
03056             internal extern static unsafe void MultiTexParameterIuivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params);
03057             [System.Security.SuppressUnmanagedCodeSecurity()]
03058             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexParameterivEXT", ExactSpelling = true)]
03059             internal extern static unsafe void MultiTexParameterivEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
03060             [System.Security.SuppressUnmanagedCodeSecurity()]
03061             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexRenderbufferEXT", ExactSpelling = true)]
03062             internal extern static void MultiTexRenderbufferEXT(OpenTK.Graphics.OpenGL.TextureUnit texunit, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer);
03063             [System.Security.SuppressUnmanagedCodeSecurity()]
03064             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexSubImage1DEXT", ExactSpelling = true)]
03065             internal extern static void MultiTexSubImage1DEXT(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);
03066             [System.Security.SuppressUnmanagedCodeSecurity()]
03067             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexSubImage2DEXT", ExactSpelling = true)]
03068             internal extern static void MultiTexSubImage2DEXT(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);
03069             [System.Security.SuppressUnmanagedCodeSecurity()]
03070             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexSubImage3DEXT", ExactSpelling = true)]
03071             internal extern static void MultiTexSubImage3DEXT(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);
03072             [System.Security.SuppressUnmanagedCodeSecurity()]
03073             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultMatrixd", ExactSpelling = true)]
03074             internal extern static unsafe void MultMatrixd(Double* m);
03075             [System.Security.SuppressUnmanagedCodeSecurity()]
03076             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultMatrixf", ExactSpelling = true)]
03077             internal extern static unsafe void MultMatrixf(Single* m);
03078             [System.Security.SuppressUnmanagedCodeSecurity()]
03079             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultTransposeMatrixd", ExactSpelling = true)]
03080             internal extern static unsafe void MultTransposeMatrixd(Double* m);
03081             [System.Security.SuppressUnmanagedCodeSecurity()]
03082             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultTransposeMatrixdARB", ExactSpelling = true)]
03083             internal extern static unsafe void MultTransposeMatrixdARB(Double* m);
03084             [System.Security.SuppressUnmanagedCodeSecurity()]
03085             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultTransposeMatrixf", ExactSpelling = true)]
03086             internal extern static unsafe void MultTransposeMatrixf(Single* m);
03087             [System.Security.SuppressUnmanagedCodeSecurity()]
03088             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultTransposeMatrixfARB", ExactSpelling = true)]
03089             internal extern static unsafe void MultTransposeMatrixfARB(Single* m);
03090             [System.Security.SuppressUnmanagedCodeSecurity()]
03091             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedBufferDataEXT", ExactSpelling = true)]
03092             internal extern static void NamedBufferDataEXT(UInt32 buffer, IntPtr size, IntPtr data, OpenTK.Graphics.OpenGL.ExtDirectStateAccess usage);
03093             [System.Security.SuppressUnmanagedCodeSecurity()]
03094             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedBufferSubDataEXT", ExactSpelling = true)]
03095             internal extern static void NamedBufferSubDataEXT(UInt32 buffer, IntPtr offset, IntPtr size, IntPtr data);
03096             [System.Security.SuppressUnmanagedCodeSecurity()]
03097             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferRenderbufferEXT", ExactSpelling = true)]
03098             internal extern static void NamedFramebufferRenderbufferEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.RenderbufferTarget renderbuffertarget, UInt32 renderbuffer);
03099             [System.Security.SuppressUnmanagedCodeSecurity()]
03100             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferTexture1DEXT", ExactSpelling = true)]
03101             internal extern static void NamedFramebufferTexture1DEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level);
03102             [System.Security.SuppressUnmanagedCodeSecurity()]
03103             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferTexture2DEXT", ExactSpelling = true)]
03104             internal extern static void NamedFramebufferTexture2DEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level);
03105             [System.Security.SuppressUnmanagedCodeSecurity()]
03106             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferTexture3DEXT", ExactSpelling = true)]
03107             internal extern static void NamedFramebufferTexture3DEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, OpenTK.Graphics.OpenGL.TextureTarget textarget, UInt32 texture, Int32 level, Int32 zoffset);
03108             [System.Security.SuppressUnmanagedCodeSecurity()]
03109             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferTextureEXT", ExactSpelling = true)]
03110             internal extern static void NamedFramebufferTextureEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level);
03111             [System.Security.SuppressUnmanagedCodeSecurity()]
03112             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferTextureFaceEXT", ExactSpelling = true)]
03113             internal extern static void NamedFramebufferTextureFaceEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, OpenTK.Graphics.OpenGL.TextureTarget face);
03114             [System.Security.SuppressUnmanagedCodeSecurity()]
03115             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedFramebufferTextureLayerEXT", ExactSpelling = true)]
03116             internal extern static void NamedFramebufferTextureLayerEXT(UInt32 framebuffer, OpenTK.Graphics.OpenGL.FramebufferAttachment attachment, UInt32 texture, Int32 level, Int32 layer);
03117             [System.Security.SuppressUnmanagedCodeSecurity()]
03118             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameter4dEXT", ExactSpelling = true)]
03119             internal extern static void NamedProgramLocalParameter4dEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double x, Double y, Double z, Double w);
03120             [System.Security.SuppressUnmanagedCodeSecurity()]
03121             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameter4dvEXT", ExactSpelling = true)]
03122             internal extern static unsafe void NamedProgramLocalParameter4dvEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Double* @params);
03123             [System.Security.SuppressUnmanagedCodeSecurity()]
03124             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameter4fEXT", ExactSpelling = true)]
03125             internal extern static void NamedProgramLocalParameter4fEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single x, Single y, Single z, Single w);
03126             [System.Security.SuppressUnmanagedCodeSecurity()]
03127             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameter4fvEXT", ExactSpelling = true)]
03128             internal extern static unsafe void NamedProgramLocalParameter4fvEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Single* @params);
03129             [System.Security.SuppressUnmanagedCodeSecurity()]
03130             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameterI4iEXT", ExactSpelling = true)]
03131             internal extern static void NamedProgramLocalParameterI4iEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
03132             [System.Security.SuppressUnmanagedCodeSecurity()]
03133             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameterI4ivEXT", ExactSpelling = true)]
03134             internal extern static unsafe void NamedProgramLocalParameterI4ivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32* @params);
03135             [System.Security.SuppressUnmanagedCodeSecurity()]
03136             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameterI4uiEXT", ExactSpelling = true)]
03137             internal extern static void NamedProgramLocalParameterI4uiEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
03138             [System.Security.SuppressUnmanagedCodeSecurity()]
03139             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameterI4uivEXT", ExactSpelling = true)]
03140             internal extern static unsafe void NamedProgramLocalParameterI4uivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, UInt32* @params);
03141             [System.Security.SuppressUnmanagedCodeSecurity()]
03142             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParameters4fvEXT", ExactSpelling = true)]
03143             internal extern static unsafe void NamedProgramLocalParameters4fvEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, Single* @params);
03144             [System.Security.SuppressUnmanagedCodeSecurity()]
03145             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParametersI4ivEXT", ExactSpelling = true)]
03146             internal extern static unsafe void NamedProgramLocalParametersI4ivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, Int32* @params);
03147             [System.Security.SuppressUnmanagedCodeSecurity()]
03148             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramLocalParametersI4uivEXT", ExactSpelling = true)]
03149             internal extern static unsafe void NamedProgramLocalParametersI4uivEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, UInt32 index, Int32 count, UInt32* @params);
03150             [System.Security.SuppressUnmanagedCodeSecurity()]
03151             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedProgramStringEXT", ExactSpelling = true)]
03152             internal extern static void NamedProgramStringEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtDirectStateAccess target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess format, Int32 len, IntPtr @string);
03153             [System.Security.SuppressUnmanagedCodeSecurity()]
03154             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedRenderbufferStorageEXT", ExactSpelling = true)]
03155             internal extern static void NamedRenderbufferStorageEXT(UInt32 renderbuffer, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height);
03156             [System.Security.SuppressUnmanagedCodeSecurity()]
03157             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedRenderbufferStorageMultisampleCoverageEXT", ExactSpelling = true)]
03158             internal extern static void NamedRenderbufferStorageMultisampleCoverageEXT(UInt32 renderbuffer, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height);
03159             [System.Security.SuppressUnmanagedCodeSecurity()]
03160             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNamedRenderbufferStorageMultisampleEXT", ExactSpelling = true)]
03161             internal extern static void NamedRenderbufferStorageMultisampleEXT(UInt32 renderbuffer, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height);
03162             [System.Security.SuppressUnmanagedCodeSecurity()]
03163             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNewList", ExactSpelling = true)]
03164             internal extern static void NewList(UInt32 list, OpenTK.Graphics.OpenGL.ListMode mode);
03165             [System.Security.SuppressUnmanagedCodeSecurity()]
03166             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNewObjectBufferATI", ExactSpelling = true)]
03167             internal extern static Int32 NewObjectBufferATI(Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject usage);
03168             [System.Security.SuppressUnmanagedCodeSecurity()]
03169             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3b", ExactSpelling = true)]
03170             internal extern static void Normal3b(SByte nx, SByte ny, SByte nz);
03171             [System.Security.SuppressUnmanagedCodeSecurity()]
03172             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3bv", ExactSpelling = true)]
03173             internal extern static unsafe void Normal3bv(SByte* v);
03174             [System.Security.SuppressUnmanagedCodeSecurity()]
03175             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3d", ExactSpelling = true)]
03176             internal extern static void Normal3d(Double nx, Double ny, Double nz);
03177             [System.Security.SuppressUnmanagedCodeSecurity()]
03178             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3dv", ExactSpelling = true)]
03179             internal extern static unsafe void Normal3dv(Double* v);
03180             [System.Security.SuppressUnmanagedCodeSecurity()]
03181             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3f", ExactSpelling = true)]
03182             internal extern static void Normal3f(Single nx, Single ny, Single nz);
03183             [System.Security.SuppressUnmanagedCodeSecurity()]
03184             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3fv", ExactSpelling = true)]
03185             internal extern static unsafe void Normal3fv(Single* v);
03186             [System.Security.SuppressUnmanagedCodeSecurity()]
03187             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3fVertex3fSUN", ExactSpelling = true)]
03188             internal extern static void Normal3fVertex3fSUN(Single nx, Single ny, Single nz, Single x, Single y, Single z);
03189             [System.Security.SuppressUnmanagedCodeSecurity()]
03190             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3fVertex3fvSUN", ExactSpelling = true)]
03191             internal extern static unsafe void Normal3fVertex3fvSUN(Single* n, Single* v);
03192             [System.Security.SuppressUnmanagedCodeSecurity()]
03193             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3hNV", ExactSpelling = true)]
03194             internal extern static void Normal3hNV(OpenTK.Half nx, OpenTK.Half ny, OpenTK.Half nz);
03195             [System.Security.SuppressUnmanagedCodeSecurity()]
03196             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3hvNV", ExactSpelling = true)]
03197             internal extern static unsafe void Normal3hvNV(OpenTK.Half* v);
03198             [System.Security.SuppressUnmanagedCodeSecurity()]
03199             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3i", ExactSpelling = true)]
03200             internal extern static void Normal3i(Int32 nx, Int32 ny, Int32 nz);
03201             [System.Security.SuppressUnmanagedCodeSecurity()]
03202             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3iv", ExactSpelling = true)]
03203             internal extern static unsafe void Normal3iv(Int32* v);
03204             [System.Security.SuppressUnmanagedCodeSecurity()]
03205             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3s", ExactSpelling = true)]
03206             internal extern static void Normal3s(Int16 nx, Int16 ny, Int16 nz);
03207             [System.Security.SuppressUnmanagedCodeSecurity()]
03208             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3sv", ExactSpelling = true)]
03209             internal extern static unsafe void Normal3sv(Int16* v);
03210             [System.Security.SuppressUnmanagedCodeSecurity()]
03211             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalPointer", ExactSpelling = true)]
03212             internal extern static void NormalPointer(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer);
03213             [System.Security.SuppressUnmanagedCodeSecurity()]
03214             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalPointerEXT", ExactSpelling = true)]
03215             internal extern static void NormalPointerEXT(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, Int32 count, IntPtr pointer);
03216             [System.Security.SuppressUnmanagedCodeSecurity()]
03217             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalPointerListIBM", ExactSpelling = true)]
03218             internal extern static void NormalPointerListIBM(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
03219             [System.Security.SuppressUnmanagedCodeSecurity()]
03220             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalPointervINTEL", ExactSpelling = true)]
03221             internal extern static void NormalPointervINTEL(OpenTK.Graphics.OpenGL.NormalPointerType type, IntPtr pointer);
03222             [System.Security.SuppressUnmanagedCodeSecurity()]
03223             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3bATI", ExactSpelling = true)]
03224             internal extern static void NormalStream3bATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte nx, SByte ny, SByte nz);
03225             [System.Security.SuppressUnmanagedCodeSecurity()]
03226             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3bvATI", ExactSpelling = true)]
03227             internal extern static unsafe void NormalStream3bvATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, SByte* coords);
03228             [System.Security.SuppressUnmanagedCodeSecurity()]
03229             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3dATI", ExactSpelling = true)]
03230             internal extern static void NormalStream3dATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double nx, Double ny, Double nz);
03231             [System.Security.SuppressUnmanagedCodeSecurity()]
03232             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3dvATI", ExactSpelling = true)]
03233             internal extern static unsafe void NormalStream3dvATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Double* coords);
03234             [System.Security.SuppressUnmanagedCodeSecurity()]
03235             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3fATI", ExactSpelling = true)]
03236             internal extern static void NormalStream3fATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single nx, Single ny, Single nz);
03237             [System.Security.SuppressUnmanagedCodeSecurity()]
03238             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3fvATI", ExactSpelling = true)]
03239             internal extern static unsafe void NormalStream3fvATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Single* coords);
03240             [System.Security.SuppressUnmanagedCodeSecurity()]
03241             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3iATI", ExactSpelling = true)]
03242             internal extern static void NormalStream3iATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32 nx, Int32 ny, Int32 nz);
03243             [System.Security.SuppressUnmanagedCodeSecurity()]
03244             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3ivATI", ExactSpelling = true)]
03245             internal extern static unsafe void NormalStream3ivATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int32* coords);
03246             [System.Security.SuppressUnmanagedCodeSecurity()]
03247             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3sATI", ExactSpelling = true)]
03248             internal extern static void NormalStream3sATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16 nx, Int16 ny, Int16 nz);
03249             [System.Security.SuppressUnmanagedCodeSecurity()]
03250             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalStream3svATI", ExactSpelling = true)]
03251             internal extern static unsafe void NormalStream3svATI(OpenTK.Graphics.OpenGL.AtiVertexStreams stream, Int16* coords);
03252             [System.Security.SuppressUnmanagedCodeSecurity()]
03253             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glObjectPurgeableAPPLE", ExactSpelling = true)]
03254             internal extern static System.IntPtr ObjectPurgeableAPPLE(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option);
03255             [System.Security.SuppressUnmanagedCodeSecurity()]
03256             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glObjectUnpurgeableAPPLE", ExactSpelling = true)]
03257             internal extern static System.IntPtr ObjectUnpurgeableAPPLE(OpenTK.Graphics.OpenGL.AppleObjectPurgeable objectType, UInt32 name, OpenTK.Graphics.OpenGL.AppleObjectPurgeable option);
03258             [System.Security.SuppressUnmanagedCodeSecurity()]
03259             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glOrtho", ExactSpelling = true)]
03260             internal extern static void Ortho(Double left, Double right, Double bottom, Double top, Double zNear, Double zFar);
03261             [System.Security.SuppressUnmanagedCodeSecurity()]
03262             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPassTexCoordATI", ExactSpelling = true)]
03263             internal extern static void PassTexCoordATI(UInt32 dst, UInt32 coord, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle);
03264             [System.Security.SuppressUnmanagedCodeSecurity()]
03265             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPassThrough", ExactSpelling = true)]
03266             internal extern static void PassThrough(Single token);
03267             [System.Security.SuppressUnmanagedCodeSecurity()]
03268             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPauseTransformFeedbackNV", ExactSpelling = true)]
03269             internal extern static void PauseTransformFeedbackNV();
03270             [System.Security.SuppressUnmanagedCodeSecurity()]
03271             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelDataRangeNV", ExactSpelling = true)]
03272             internal extern static void PixelDataRangeNV(OpenTK.Graphics.OpenGL.NvPixelDataRange target, Int32 length, [OutAttribute] IntPtr pointer);
03273             [System.Security.SuppressUnmanagedCodeSecurity()]
03274             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelMapfv", ExactSpelling = true)]
03275             internal extern static unsafe void PixelMapfv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, Single* values);
03276             [System.Security.SuppressUnmanagedCodeSecurity()]
03277             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelMapuiv", ExactSpelling = true)]
03278             internal extern static unsafe void PixelMapuiv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt32* values);
03279             [System.Security.SuppressUnmanagedCodeSecurity()]
03280             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelMapusv", ExactSpelling = true)]
03281             internal extern static unsafe void PixelMapusv(OpenTK.Graphics.OpenGL.PixelMap map, Int32 mapsize, UInt16* values);
03282             [System.Security.SuppressUnmanagedCodeSecurity()]
03283             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelStoref", ExactSpelling = true)]
03284             internal extern static void PixelStoref(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Single param);
03285             [System.Security.SuppressUnmanagedCodeSecurity()]
03286             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelStorei", ExactSpelling = true)]
03287             internal extern static void PixelStorei(OpenTK.Graphics.OpenGL.PixelStoreParameter pname, Int32 param);
03288             [System.Security.SuppressUnmanagedCodeSecurity()]
03289             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterfSGIS", ExactSpelling = true)]
03290             internal extern static void PixelTexGenParameterfSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param);
03291             [System.Security.SuppressUnmanagedCodeSecurity()]
03292             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterfvSGIS", ExactSpelling = true)]
03293             internal extern static unsafe void PixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single* @params);
03294             [System.Security.SuppressUnmanagedCodeSecurity()]
03295             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameteriSGIS", ExactSpelling = true)]
03296             internal extern static void PixelTexGenParameteriSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param);
03297             [System.Security.SuppressUnmanagedCodeSecurity()]
03298             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterivSGIS", ExactSpelling = true)]
03299             internal extern static unsafe void PixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32* @params);
03300             [System.Security.SuppressUnmanagedCodeSecurity()]
03301             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenSGIX", ExactSpelling = true)]
03302             internal extern static void PixelTexGenSGIX(OpenTK.Graphics.OpenGL.SgixPixelTexture mode);
03303             [System.Security.SuppressUnmanagedCodeSecurity()]
03304             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransferf", ExactSpelling = true)]
03305             internal extern static void PixelTransferf(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Single param);
03306             [System.Security.SuppressUnmanagedCodeSecurity()]
03307             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransferi", ExactSpelling = true)]
03308             internal extern static void PixelTransferi(OpenTK.Graphics.OpenGL.PixelTransferParameter pname, Int32 param);
03309             [System.Security.SuppressUnmanagedCodeSecurity()]
03310             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransformParameterfEXT", ExactSpelling = true)]
03311             internal extern static void PixelTransformParameterfEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single param);
03312             [System.Security.SuppressUnmanagedCodeSecurity()]
03313             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransformParameterfvEXT", ExactSpelling = true)]
03314             internal extern static unsafe void PixelTransformParameterfvEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Single* @params);
03315             [System.Security.SuppressUnmanagedCodeSecurity()]
03316             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransformParameteriEXT", ExactSpelling = true)]
03317             internal extern static void PixelTransformParameteriEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32 param);
03318             [System.Security.SuppressUnmanagedCodeSecurity()]
03319             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTransformParameterivEXT", ExactSpelling = true)]
03320             internal extern static unsafe void PixelTransformParameterivEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, Int32* @params);
03321             [System.Security.SuppressUnmanagedCodeSecurity()]
03322             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelZoom", ExactSpelling = true)]
03323             internal extern static void PixelZoom(Single xfactor, Single yfactor);
03324             [System.Security.SuppressUnmanagedCodeSecurity()]
03325             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPNTrianglesfATI", ExactSpelling = true)]
03326             internal extern static void PNTrianglesfATI(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Single param);
03327             [System.Security.SuppressUnmanagedCodeSecurity()]
03328             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPNTrianglesiATI", ExactSpelling = true)]
03329             internal extern static void PNTrianglesiATI(OpenTK.Graphics.OpenGL.AtiPnTriangles pname, Int32 param);
03330             [System.Security.SuppressUnmanagedCodeSecurity()]
03331             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterf", ExactSpelling = true)]
03332             internal extern static void PointParameterf(OpenTK.Graphics.OpenGL.PointParameterName pname, Single param);
03333             [System.Security.SuppressUnmanagedCodeSecurity()]
03334             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfARB", ExactSpelling = true)]
03335             internal extern static void PointParameterfARB(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single param);
03336             [System.Security.SuppressUnmanagedCodeSecurity()]
03337             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfEXT", ExactSpelling = true)]
03338             internal extern static void PointParameterfEXT(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single param);
03339             [System.Security.SuppressUnmanagedCodeSecurity()]
03340             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfSGIS", ExactSpelling = true)]
03341             internal extern static void PointParameterfSGIS(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single param);
03342             [System.Security.SuppressUnmanagedCodeSecurity()]
03343             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfv", ExactSpelling = true)]
03344             internal extern static unsafe void PointParameterfv(OpenTK.Graphics.OpenGL.PointParameterName pname, Single* @params);
03345             [System.Security.SuppressUnmanagedCodeSecurity()]
03346             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfvARB", ExactSpelling = true)]
03347             internal extern static unsafe void PointParameterfvARB(OpenTK.Graphics.OpenGL.ArbPointParameters pname, Single* @params);
03348             [System.Security.SuppressUnmanagedCodeSecurity()]
03349             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfvEXT", ExactSpelling = true)]
03350             internal extern static unsafe void PointParameterfvEXT(OpenTK.Graphics.OpenGL.ExtPointParameters pname, Single* @params);
03351             [System.Security.SuppressUnmanagedCodeSecurity()]
03352             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfvSGIS", ExactSpelling = true)]
03353             internal extern static unsafe void PointParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPointParameters pname, Single* @params);
03354             [System.Security.SuppressUnmanagedCodeSecurity()]
03355             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteri", ExactSpelling = true)]
03356             internal extern static void PointParameteri(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32 param);
03357             [System.Security.SuppressUnmanagedCodeSecurity()]
03358             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteriNV", ExactSpelling = true)]
03359             internal extern static void PointParameteriNV(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32 param);
03360             [System.Security.SuppressUnmanagedCodeSecurity()]
03361             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameteriv", ExactSpelling = true)]
03362             internal extern static unsafe void PointParameteriv(OpenTK.Graphics.OpenGL.PointParameterName pname, Int32* @params);
03363             [System.Security.SuppressUnmanagedCodeSecurity()]
03364             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterivNV", ExactSpelling = true)]
03365             internal extern static unsafe void PointParameterivNV(OpenTK.Graphics.OpenGL.NvPointSprite pname, Int32* @params);
03366             [System.Security.SuppressUnmanagedCodeSecurity()]
03367             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointSize", ExactSpelling = true)]
03368             internal extern static void PointSize(Single size);
03369             [System.Security.SuppressUnmanagedCodeSecurity()]
03370             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPollAsyncSGIX", ExactSpelling = true)]
03371             internal extern static unsafe Int32 PollAsyncSGIX([OutAttribute] UInt32* markerp);
03372             [System.Security.SuppressUnmanagedCodeSecurity()]
03373             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPollInstrumentsSGIX", ExactSpelling = true)]
03374             internal extern static unsafe Int32 PollInstrumentsSGIX([OutAttribute] Int32* marker_p);
03375             [System.Security.SuppressUnmanagedCodeSecurity()]
03376             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonMode", ExactSpelling = true)]
03377             internal extern static void PolygonMode(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.PolygonMode mode);
03378             [System.Security.SuppressUnmanagedCodeSecurity()]
03379             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffset", ExactSpelling = true)]
03380             internal extern static void PolygonOffset(Single factor, Single units);
03381             [System.Security.SuppressUnmanagedCodeSecurity()]
03382             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffsetEXT", ExactSpelling = true)]
03383             internal extern static void PolygonOffsetEXT(Single factor, Single bias);
03384             [System.Security.SuppressUnmanagedCodeSecurity()]
03385             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonStipple", ExactSpelling = true)]
03386             internal extern static unsafe void PolygonStipple(Byte* mask);
03387             [System.Security.SuppressUnmanagedCodeSecurity()]
03388             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPopAttrib", ExactSpelling = true)]
03389             internal extern static void PopAttrib();
03390             [System.Security.SuppressUnmanagedCodeSecurity()]
03391             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPopClientAttrib", ExactSpelling = true)]
03392             internal extern static void PopClientAttrib();
03393             [System.Security.SuppressUnmanagedCodeSecurity()]
03394             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPopMatrix", ExactSpelling = true)]
03395             internal extern static void PopMatrix();
03396             [System.Security.SuppressUnmanagedCodeSecurity()]
03397             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPopName", ExactSpelling = true)]
03398             internal extern static void PopName();
03399             [System.Security.SuppressUnmanagedCodeSecurity()]
03400             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPresentFrameDualFillNV", ExactSpelling = true)]
03401             internal extern static void PresentFrameDualFillNV(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);
03402             [System.Security.SuppressUnmanagedCodeSecurity()]
03403             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPresentFrameKeyedNV", ExactSpelling = true)]
03404             internal extern static void PresentFrameKeyedNV(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);
03405             [System.Security.SuppressUnmanagedCodeSecurity()]
03406             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPrimitiveRestartIndex", ExactSpelling = true)]
03407             internal extern static void PrimitiveRestartIndex(UInt32 index);
03408             [System.Security.SuppressUnmanagedCodeSecurity()]
03409             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPrimitiveRestartIndexNV", ExactSpelling = true)]
03410             internal extern static void PrimitiveRestartIndexNV(UInt32 index);
03411             [System.Security.SuppressUnmanagedCodeSecurity()]
03412             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPrimitiveRestartNV", ExactSpelling = true)]
03413             internal extern static void PrimitiveRestartNV();
03414             [System.Security.SuppressUnmanagedCodeSecurity()]
03415             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPrioritizeTextures", ExactSpelling = true)]
03416             internal extern static unsafe void PrioritizeTextures(Int32 n, UInt32* textures, Single* priorities);
03417             [System.Security.SuppressUnmanagedCodeSecurity()]
03418             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPrioritizeTexturesEXT", ExactSpelling = true)]
03419             internal extern static unsafe void PrioritizeTexturesEXT(Int32 n, UInt32* textures, Single* priorities);
03420             [System.Security.SuppressUnmanagedCodeSecurity()]
03421             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramBufferParametersfvNV", ExactSpelling = true)]
03422             internal extern static unsafe void ProgramBufferParametersfvNV(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Single* @params);
03423             [System.Security.SuppressUnmanagedCodeSecurity()]
03424             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramBufferParametersIivNV", ExactSpelling = true)]
03425             internal extern static unsafe void ProgramBufferParametersIivNV(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, Int32* @params);
03426             [System.Security.SuppressUnmanagedCodeSecurity()]
03427             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramBufferParametersIuivNV", ExactSpelling = true)]
03428             internal extern static unsafe void ProgramBufferParametersIuivNV(OpenTK.Graphics.OpenGL.NvParameterBufferObject target, UInt32 buffer, UInt32 index, Int32 count, UInt32* @params);
03429             [System.Security.SuppressUnmanagedCodeSecurity()]
03430             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameter4dARB", ExactSpelling = true)]
03431             internal extern static void ProgramEnvParameter4dARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w);
03432             [System.Security.SuppressUnmanagedCodeSecurity()]
03433             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameter4dvARB", ExactSpelling = true)]
03434             internal extern static unsafe void ProgramEnvParameter4dvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params);
03435             [System.Security.SuppressUnmanagedCodeSecurity()]
03436             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameter4fARB", ExactSpelling = true)]
03437             internal extern static void ProgramEnvParameter4fARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w);
03438             [System.Security.SuppressUnmanagedCodeSecurity()]
03439             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameter4fvARB", ExactSpelling = true)]
03440             internal extern static unsafe void ProgramEnvParameter4fvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params);
03441             [System.Security.SuppressUnmanagedCodeSecurity()]
03442             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameterI4iNV", ExactSpelling = true)]
03443             internal extern static void ProgramEnvParameterI4iNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
03444             [System.Security.SuppressUnmanagedCodeSecurity()]
03445             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameterI4ivNV", ExactSpelling = true)]
03446             internal extern static unsafe void ProgramEnvParameterI4ivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32* @params);
03447             [System.Security.SuppressUnmanagedCodeSecurity()]
03448             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameterI4uiNV", ExactSpelling = true)]
03449             internal extern static void ProgramEnvParameterI4uiNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
03450             [System.Security.SuppressUnmanagedCodeSecurity()]
03451             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameterI4uivNV", ExactSpelling = true)]
03452             internal extern static unsafe void ProgramEnvParameterI4uivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32* @params);
03453             [System.Security.SuppressUnmanagedCodeSecurity()]
03454             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParameters4fvEXT", ExactSpelling = true)]
03455             internal extern static unsafe void ProgramEnvParameters4fvEXT(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params);
03456             [System.Security.SuppressUnmanagedCodeSecurity()]
03457             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParametersI4ivNV", ExactSpelling = true)]
03458             internal extern static unsafe void ProgramEnvParametersI4ivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params);
03459             [System.Security.SuppressUnmanagedCodeSecurity()]
03460             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramEnvParametersI4uivNV", ExactSpelling = true)]
03461             internal extern static unsafe void ProgramEnvParametersI4uivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params);
03462             [System.Security.SuppressUnmanagedCodeSecurity()]
03463             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameter4dARB", ExactSpelling = true)]
03464             internal extern static void ProgramLocalParameter4dARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w);
03465             [System.Security.SuppressUnmanagedCodeSecurity()]
03466             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameter4dvARB", ExactSpelling = true)]
03467             internal extern static unsafe void ProgramLocalParameter4dvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* @params);
03468             [System.Security.SuppressUnmanagedCodeSecurity()]
03469             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameter4fARB", ExactSpelling = true)]
03470             internal extern static void ProgramLocalParameter4fARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w);
03471             [System.Security.SuppressUnmanagedCodeSecurity()]
03472             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameter4fvARB", ExactSpelling = true)]
03473             internal extern static unsafe void ProgramLocalParameter4fvARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* @params);
03474             [System.Security.SuppressUnmanagedCodeSecurity()]
03475             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameterI4iNV", ExactSpelling = true)]
03476             internal extern static void ProgramLocalParameterI4iNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 x, Int32 y, Int32 z, Int32 w);
03477             [System.Security.SuppressUnmanagedCodeSecurity()]
03478             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameterI4ivNV", ExactSpelling = true)]
03479             internal extern static unsafe void ProgramLocalParameterI4ivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32* @params);
03480             [System.Security.SuppressUnmanagedCodeSecurity()]
03481             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameterI4uiNV", ExactSpelling = true)]
03482             internal extern static void ProgramLocalParameterI4uiNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32 x, UInt32 y, UInt32 z, UInt32 w);
03483             [System.Security.SuppressUnmanagedCodeSecurity()]
03484             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameterI4uivNV", ExactSpelling = true)]
03485             internal extern static unsafe void ProgramLocalParameterI4uivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, UInt32* @params);
03486             [System.Security.SuppressUnmanagedCodeSecurity()]
03487             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParameters4fvEXT", ExactSpelling = true)]
03488             internal extern static unsafe void ProgramLocalParameters4fvEXT(OpenTK.Graphics.OpenGL.ExtGpuProgramParameters target, UInt32 index, Int32 count, Single* @params);
03489             [System.Security.SuppressUnmanagedCodeSecurity()]
03490             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParametersI4ivNV", ExactSpelling = true)]
03491             internal extern static unsafe void ProgramLocalParametersI4ivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, Int32* @params);
03492             [System.Security.SuppressUnmanagedCodeSecurity()]
03493             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramLocalParametersI4uivNV", ExactSpelling = true)]
03494             internal extern static unsafe void ProgramLocalParametersI4uivNV(OpenTK.Graphics.OpenGL.NvGpuProgram4 target, UInt32 index, Int32 count, UInt32* @params);
03495             [System.Security.SuppressUnmanagedCodeSecurity()]
03496             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramNamedParameter4dNV", ExactSpelling = true)]
03497             internal extern static unsafe void ProgramNamedParameter4dNV(UInt32 id, Int32 len, Byte* name, Double x, Double y, Double z, Double w);
03498             [System.Security.SuppressUnmanagedCodeSecurity()]
03499             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramNamedParameter4dvNV", ExactSpelling = true)]
03500             internal extern static unsafe void ProgramNamedParameter4dvNV(UInt32 id, Int32 len, Byte* name, Double* v);
03501             [System.Security.SuppressUnmanagedCodeSecurity()]
03502             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramNamedParameter4fNV", ExactSpelling = true)]
03503             internal extern static unsafe void ProgramNamedParameter4fNV(UInt32 id, Int32 len, Byte* name, Single x, Single y, Single z, Single w);
03504             [System.Security.SuppressUnmanagedCodeSecurity()]
03505             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramNamedParameter4fvNV", ExactSpelling = true)]
03506             internal extern static unsafe void ProgramNamedParameter4fvNV(UInt32 id, Int32 len, Byte* name, Single* v);
03507             [System.Security.SuppressUnmanagedCodeSecurity()]
03508             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameter4dNV", ExactSpelling = true)]
03509             internal extern static void ProgramParameter4dNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double x, Double y, Double z, Double w);
03510             [System.Security.SuppressUnmanagedCodeSecurity()]
03511             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameter4dvNV", ExactSpelling = true)]
03512             internal extern static unsafe void ProgramParameter4dvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Double* v);
03513             [System.Security.SuppressUnmanagedCodeSecurity()]
03514             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameter4fNV", ExactSpelling = true)]
03515             internal extern static void ProgramParameter4fNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single x, Single y, Single z, Single w);
03516             [System.Security.SuppressUnmanagedCodeSecurity()]
03517             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameter4fvNV", ExactSpelling = true)]
03518             internal extern static unsafe void ProgramParameter4fvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, Single* v);
03519             [System.Security.SuppressUnmanagedCodeSecurity()]
03520             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameteri", ExactSpelling = true)]
03521             internal extern static void ProgramParameteri(UInt32 program, OpenTK.Graphics.OpenGL.Version32 pname, Int32 value);
03522             [System.Security.SuppressUnmanagedCodeSecurity()]
03523             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameteriARB", ExactSpelling = true)]
03524             internal extern static void ProgramParameteriARB(UInt32 program, OpenTK.Graphics.OpenGL.ArbGeometryShader4 pname, Int32 value);
03525             [System.Security.SuppressUnmanagedCodeSecurity()]
03526             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameteriEXT", ExactSpelling = true)]
03527             internal extern static void ProgramParameteriEXT(UInt32 program, OpenTK.Graphics.OpenGL.ExtGeometryShader4 pname, Int32 value);
03528             [System.Security.SuppressUnmanagedCodeSecurity()]
03529             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameters4dvNV", ExactSpelling = true)]
03530             internal extern static unsafe void ProgramParameters4dvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, Double* v);
03531             [System.Security.SuppressUnmanagedCodeSecurity()]
03532             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramParameters4fvNV", ExactSpelling = true)]
03533             internal extern static unsafe void ProgramParameters4fvNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 index, UInt32 count, Single* v);
03534             [System.Security.SuppressUnmanagedCodeSecurity()]
03535             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramStringARB", ExactSpelling = true)]
03536             internal extern static void ProgramStringARB(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexProgram format, Int32 len, IntPtr @string);
03537             [System.Security.SuppressUnmanagedCodeSecurity()]
03538             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform1fEXT", ExactSpelling = true)]
03539             internal extern static void ProgramUniform1fEXT(UInt32 program, Int32 location, Single v0);
03540             [System.Security.SuppressUnmanagedCodeSecurity()]
03541             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform1fvEXT", ExactSpelling = true)]
03542             internal extern static unsafe void ProgramUniform1fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
03543             [System.Security.SuppressUnmanagedCodeSecurity()]
03544             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform1iEXT", ExactSpelling = true)]
03545             internal extern static void ProgramUniform1iEXT(UInt32 program, Int32 location, Int32 v0);
03546             [System.Security.SuppressUnmanagedCodeSecurity()]
03547             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform1ivEXT", ExactSpelling = true)]
03548             internal extern static unsafe void ProgramUniform1ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
03549             [System.Security.SuppressUnmanagedCodeSecurity()]
03550             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform1uiEXT", ExactSpelling = true)]
03551             internal extern static void ProgramUniform1uiEXT(UInt32 program, Int32 location, UInt32 v0);
03552             [System.Security.SuppressUnmanagedCodeSecurity()]
03553             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform1uivEXT", ExactSpelling = true)]
03554             internal extern static unsafe void ProgramUniform1uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
03555             [System.Security.SuppressUnmanagedCodeSecurity()]
03556             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform2fEXT", ExactSpelling = true)]
03557             internal extern static void ProgramUniform2fEXT(UInt32 program, Int32 location, Single v0, Single v1);
03558             [System.Security.SuppressUnmanagedCodeSecurity()]
03559             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform2fvEXT", ExactSpelling = true)]
03560             internal extern static unsafe void ProgramUniform2fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
03561             [System.Security.SuppressUnmanagedCodeSecurity()]
03562             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform2iEXT", ExactSpelling = true)]
03563             internal extern static void ProgramUniform2iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1);
03564             [System.Security.SuppressUnmanagedCodeSecurity()]
03565             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform2ivEXT", ExactSpelling = true)]
03566             internal extern static unsafe void ProgramUniform2ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
03567             [System.Security.SuppressUnmanagedCodeSecurity()]
03568             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform2uiEXT", ExactSpelling = true)]
03569             internal extern static void ProgramUniform2uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1);
03570             [System.Security.SuppressUnmanagedCodeSecurity()]
03571             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform2uivEXT", ExactSpelling = true)]
03572             internal extern static unsafe void ProgramUniform2uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
03573             [System.Security.SuppressUnmanagedCodeSecurity()]
03574             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform3fEXT", ExactSpelling = true)]
03575             internal extern static void ProgramUniform3fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2);
03576             [System.Security.SuppressUnmanagedCodeSecurity()]
03577             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform3fvEXT", ExactSpelling = true)]
03578             internal extern static unsafe void ProgramUniform3fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
03579             [System.Security.SuppressUnmanagedCodeSecurity()]
03580             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform3iEXT", ExactSpelling = true)]
03581             internal extern static void ProgramUniform3iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2);
03582             [System.Security.SuppressUnmanagedCodeSecurity()]
03583             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform3ivEXT", ExactSpelling = true)]
03584             internal extern static unsafe void ProgramUniform3ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
03585             [System.Security.SuppressUnmanagedCodeSecurity()]
03586             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform3uiEXT", ExactSpelling = true)]
03587             internal extern static void ProgramUniform3uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2);
03588             [System.Security.SuppressUnmanagedCodeSecurity()]
03589             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform3uivEXT", ExactSpelling = true)]
03590             internal extern static unsafe void ProgramUniform3uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
03591             [System.Security.SuppressUnmanagedCodeSecurity()]
03592             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform4fEXT", ExactSpelling = true)]
03593             internal extern static void ProgramUniform4fEXT(UInt32 program, Int32 location, Single v0, Single v1, Single v2, Single v3);
03594             [System.Security.SuppressUnmanagedCodeSecurity()]
03595             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform4fvEXT", ExactSpelling = true)]
03596             internal extern static unsafe void ProgramUniform4fvEXT(UInt32 program, Int32 location, Int32 count, Single* value);
03597             [System.Security.SuppressUnmanagedCodeSecurity()]
03598             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform4iEXT", ExactSpelling = true)]
03599             internal extern static void ProgramUniform4iEXT(UInt32 program, Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3);
03600             [System.Security.SuppressUnmanagedCodeSecurity()]
03601             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform4ivEXT", ExactSpelling = true)]
03602             internal extern static unsafe void ProgramUniform4ivEXT(UInt32 program, Int32 location, Int32 count, Int32* value);
03603             [System.Security.SuppressUnmanagedCodeSecurity()]
03604             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform4uiEXT", ExactSpelling = true)]
03605             internal extern static void ProgramUniform4uiEXT(UInt32 program, Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3);
03606             [System.Security.SuppressUnmanagedCodeSecurity()]
03607             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniform4uivEXT", ExactSpelling = true)]
03608             internal extern static unsafe void ProgramUniform4uivEXT(UInt32 program, Int32 location, Int32 count, UInt32* value);
03609             [System.Security.SuppressUnmanagedCodeSecurity()]
03610             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix2fvEXT", ExactSpelling = true)]
03611             internal extern static unsafe void ProgramUniformMatrix2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03612             [System.Security.SuppressUnmanagedCodeSecurity()]
03613             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix2x3fvEXT", ExactSpelling = true)]
03614             internal extern static unsafe void ProgramUniformMatrix2x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03615             [System.Security.SuppressUnmanagedCodeSecurity()]
03616             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix2x4fvEXT", ExactSpelling = true)]
03617             internal extern static unsafe void ProgramUniformMatrix2x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03618             [System.Security.SuppressUnmanagedCodeSecurity()]
03619             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix3fvEXT", ExactSpelling = true)]
03620             internal extern static unsafe void ProgramUniformMatrix3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03621             [System.Security.SuppressUnmanagedCodeSecurity()]
03622             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix3x2fvEXT", ExactSpelling = true)]
03623             internal extern static unsafe void ProgramUniformMatrix3x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03624             [System.Security.SuppressUnmanagedCodeSecurity()]
03625             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix3x4fvEXT", ExactSpelling = true)]
03626             internal extern static unsafe void ProgramUniformMatrix3x4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03627             [System.Security.SuppressUnmanagedCodeSecurity()]
03628             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix4fvEXT", ExactSpelling = true)]
03629             internal extern static unsafe void ProgramUniformMatrix4fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03630             [System.Security.SuppressUnmanagedCodeSecurity()]
03631             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix4x2fvEXT", ExactSpelling = true)]
03632             internal extern static unsafe void ProgramUniformMatrix4x2fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03633             [System.Security.SuppressUnmanagedCodeSecurity()]
03634             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramUniformMatrix4x3fvEXT", ExactSpelling = true)]
03635             internal extern static unsafe void ProgramUniformMatrix4x3fvEXT(UInt32 program, Int32 location, Int32 count, bool transpose, Single* value);
03636             [System.Security.SuppressUnmanagedCodeSecurity()]
03637             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProgramVertexLimitNV", ExactSpelling = true)]
03638             internal extern static void ProgramVertexLimitNV(OpenTK.Graphics.OpenGL.NvGeometryProgram4 target, Int32 limit);
03639             [System.Security.SuppressUnmanagedCodeSecurity()]
03640             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProvokingVertex", ExactSpelling = true)]
03641             internal extern static void ProvokingVertex(OpenTK.Graphics.OpenGL.ProvokingVertexMode mode);
03642             [System.Security.SuppressUnmanagedCodeSecurity()]
03643             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glProvokingVertexEXT", ExactSpelling = true)]
03644             internal extern static void ProvokingVertexEXT(OpenTK.Graphics.OpenGL.ExtProvokingVertex mode);
03645             [System.Security.SuppressUnmanagedCodeSecurity()]
03646             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushAttrib", ExactSpelling = true)]
03647             internal extern static void PushAttrib(OpenTK.Graphics.OpenGL.AttribMask mask);
03648             [System.Security.SuppressUnmanagedCodeSecurity()]
03649             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushClientAttrib", ExactSpelling = true)]
03650             internal extern static void PushClientAttrib(OpenTK.Graphics.OpenGL.ClientAttribMask mask);
03651             [System.Security.SuppressUnmanagedCodeSecurity()]
03652             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushClientAttribDefaultEXT", ExactSpelling = true)]
03653             internal extern static void PushClientAttribDefaultEXT(OpenTK.Graphics.OpenGL.ClientAttribMask mask);
03654             [System.Security.SuppressUnmanagedCodeSecurity()]
03655             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushMatrix", ExactSpelling = true)]
03656             internal extern static void PushMatrix();
03657             [System.Security.SuppressUnmanagedCodeSecurity()]
03658             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushName", ExactSpelling = true)]
03659             internal extern static void PushName(UInt32 name);
03660             [System.Security.SuppressUnmanagedCodeSecurity()]
03661             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2d", ExactSpelling = true)]
03662             internal extern static void RasterPos2d(Double x, Double y);
03663             [System.Security.SuppressUnmanagedCodeSecurity()]
03664             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2dv", ExactSpelling = true)]
03665             internal extern static unsafe void RasterPos2dv(Double* v);
03666             [System.Security.SuppressUnmanagedCodeSecurity()]
03667             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2f", ExactSpelling = true)]
03668             internal extern static void RasterPos2f(Single x, Single y);
03669             [System.Security.SuppressUnmanagedCodeSecurity()]
03670             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2fv", ExactSpelling = true)]
03671             internal extern static unsafe void RasterPos2fv(Single* v);
03672             [System.Security.SuppressUnmanagedCodeSecurity()]
03673             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2i", ExactSpelling = true)]
03674             internal extern static void RasterPos2i(Int32 x, Int32 y);
03675             [System.Security.SuppressUnmanagedCodeSecurity()]
03676             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2iv", ExactSpelling = true)]
03677             internal extern static unsafe void RasterPos2iv(Int32* v);
03678             [System.Security.SuppressUnmanagedCodeSecurity()]
03679             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2s", ExactSpelling = true)]
03680             internal extern static void RasterPos2s(Int16 x, Int16 y);
03681             [System.Security.SuppressUnmanagedCodeSecurity()]
03682             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2sv", ExactSpelling = true)]
03683             internal extern static unsafe void RasterPos2sv(Int16* v);
03684             [System.Security.SuppressUnmanagedCodeSecurity()]
03685             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3d", ExactSpelling = true)]
03686             internal extern static void RasterPos3d(Double x, Double y, Double z);
03687             [System.Security.SuppressUnmanagedCodeSecurity()]
03688             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3dv", ExactSpelling = true)]
03689             internal extern static unsafe void RasterPos3dv(Double* v);
03690             [System.Security.SuppressUnmanagedCodeSecurity()]
03691             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3f", ExactSpelling = true)]
03692             internal extern static void RasterPos3f(Single x, Single y, Single z);
03693             [System.Security.SuppressUnmanagedCodeSecurity()]
03694             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3fv", ExactSpelling = true)]
03695             internal extern static unsafe void RasterPos3fv(Single* v);
03696             [System.Security.SuppressUnmanagedCodeSecurity()]
03697             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3i", ExactSpelling = true)]
03698             internal extern static void RasterPos3i(Int32 x, Int32 y, Int32 z);
03699             [System.Security.SuppressUnmanagedCodeSecurity()]
03700             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3iv", ExactSpelling = true)]
03701             internal extern static unsafe void RasterPos3iv(Int32* v);
03702             [System.Security.SuppressUnmanagedCodeSecurity()]
03703             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3s", ExactSpelling = true)]
03704             internal extern static void RasterPos3s(Int16 x, Int16 y, Int16 z);
03705             [System.Security.SuppressUnmanagedCodeSecurity()]
03706             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos3sv", ExactSpelling = true)]
03707             internal extern static unsafe void RasterPos3sv(Int16* v);
03708             [System.Security.SuppressUnmanagedCodeSecurity()]
03709             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4d", ExactSpelling = true)]
03710             internal extern static void RasterPos4d(Double x, Double y, Double z, Double w);
03711             [System.Security.SuppressUnmanagedCodeSecurity()]
03712             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4dv", ExactSpelling = true)]
03713             internal extern static unsafe void RasterPos4dv(Double* v);
03714             [System.Security.SuppressUnmanagedCodeSecurity()]
03715             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4f", ExactSpelling = true)]
03716             internal extern static void RasterPos4f(Single x, Single y, Single z, Single w);
03717             [System.Security.SuppressUnmanagedCodeSecurity()]
03718             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4fv", ExactSpelling = true)]
03719             internal extern static unsafe void RasterPos4fv(Single* v);
03720             [System.Security.SuppressUnmanagedCodeSecurity()]
03721             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4i", ExactSpelling = true)]
03722             internal extern static void RasterPos4i(Int32 x, Int32 y, Int32 z, Int32 w);
03723             [System.Security.SuppressUnmanagedCodeSecurity()]
03724             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4iv", ExactSpelling = true)]
03725             internal extern static unsafe void RasterPos4iv(Int32* v);
03726             [System.Security.SuppressUnmanagedCodeSecurity()]
03727             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4s", ExactSpelling = true)]
03728             internal extern static void RasterPos4s(Int16 x, Int16 y, Int16 z, Int16 w);
03729             [System.Security.SuppressUnmanagedCodeSecurity()]
03730             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos4sv", ExactSpelling = true)]
03731             internal extern static unsafe void RasterPos4sv(Int16* v);
03732             [System.Security.SuppressUnmanagedCodeSecurity()]
03733             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReadBuffer", ExactSpelling = true)]
03734             internal extern static void ReadBuffer(OpenTK.Graphics.OpenGL.ReadBufferMode mode);
03735             [System.Security.SuppressUnmanagedCodeSecurity()]
03736             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReadInstrumentsSGIX", ExactSpelling = true)]
03737             internal extern static void ReadInstrumentsSGIX(Int32 marker);
03738             [System.Security.SuppressUnmanagedCodeSecurity()]
03739             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReadPixels", ExactSpelling = true)]
03740             internal extern static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr pixels);
03741             [System.Security.SuppressUnmanagedCodeSecurity()]
03742             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRectd", ExactSpelling = true)]
03743             internal extern static void Rectd(Double x1, Double y1, Double x2, Double y2);
03744             [System.Security.SuppressUnmanagedCodeSecurity()]
03745             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRectdv", ExactSpelling = true)]
03746             internal extern static unsafe void Rectdv(Double* v1, Double* v2);
03747             [System.Security.SuppressUnmanagedCodeSecurity()]
03748             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRectf", ExactSpelling = true)]
03749             internal extern static void Rectf(Single x1, Single y1, Single x2, Single y2);
03750             [System.Security.SuppressUnmanagedCodeSecurity()]
03751             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRectfv", ExactSpelling = true)]
03752             internal extern static unsafe void Rectfv(Single* v1, Single* v2);
03753             [System.Security.SuppressUnmanagedCodeSecurity()]
03754             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRecti", ExactSpelling = true)]
03755             internal extern static void Recti(Int32 x1, Int32 y1, Int32 x2, Int32 y2);
03756             [System.Security.SuppressUnmanagedCodeSecurity()]
03757             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRectiv", ExactSpelling = true)]
03758             internal extern static unsafe void Rectiv(Int32* v1, Int32* v2);
03759             [System.Security.SuppressUnmanagedCodeSecurity()]
03760             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRects", ExactSpelling = true)]
03761             internal extern static void Rects(Int16 x1, Int16 y1, Int16 x2, Int16 y2);
03762             [System.Security.SuppressUnmanagedCodeSecurity()]
03763             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRectsv", ExactSpelling = true)]
03764             internal extern static unsafe void Rectsv(Int16* v1, Int16* v2);
03765             [System.Security.SuppressUnmanagedCodeSecurity()]
03766             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReferencePlaneSGIX", ExactSpelling = true)]
03767             internal extern static unsafe void ReferencePlaneSGIX(Double* equation);
03768             [System.Security.SuppressUnmanagedCodeSecurity()]
03769             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorage", ExactSpelling = true)]
03770             internal extern static void RenderbufferStorage(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height);
03771             [System.Security.SuppressUnmanagedCodeSecurity()]
03772             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorageEXT", ExactSpelling = true)]
03773             internal extern static void RenderbufferStorageEXT(OpenTK.Graphics.OpenGL.RenderbufferTarget target, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height);
03774             [System.Security.SuppressUnmanagedCodeSecurity()]
03775             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorageMultisample", ExactSpelling = true)]
03776             internal extern static void RenderbufferStorageMultisample(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 samples, OpenTK.Graphics.OpenGL.RenderbufferStorage internalformat, Int32 width, Int32 height);
03777             [System.Security.SuppressUnmanagedCodeSecurity()]
03778             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorageMultisampleCoverageNV", ExactSpelling = true)]
03779             internal extern static void RenderbufferStorageMultisampleCoverageNV(OpenTK.Graphics.OpenGL.RenderbufferTarget target, Int32 coverageSamples, Int32 colorSamples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height);
03780             [System.Security.SuppressUnmanagedCodeSecurity()]
03781             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorageMultisampleEXT", ExactSpelling = true)]
03782             internal extern static void RenderbufferStorageMultisampleEXT(OpenTK.Graphics.OpenGL.ExtFramebufferMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.ExtFramebufferMultisample internalformat, Int32 width, Int32 height);
03783             [System.Security.SuppressUnmanagedCodeSecurity()]
03784             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderMode", ExactSpelling = true)]
03785             internal extern static Int32 RenderMode(OpenTK.Graphics.OpenGL.RenderingMode mode);
03786             [System.Security.SuppressUnmanagedCodeSecurity()]
03787             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodePointerSUN", ExactSpelling = true)]
03788             internal extern static void ReplacementCodePointerSUN(OpenTK.Graphics.OpenGL.SunTriangleList type, Int32 stride, IntPtr pointer);
03789             [System.Security.SuppressUnmanagedCodeSecurity()]
03790             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeubSUN", ExactSpelling = true)]
03791             internal extern static void ReplacementCodeubSUN(Byte code);
03792             [System.Security.SuppressUnmanagedCodeSecurity()]
03793             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeubvSUN", ExactSpelling = true)]
03794             internal extern static unsafe void ReplacementCodeubvSUN(Byte* code);
03795             [System.Security.SuppressUnmanagedCodeSecurity()]
03796             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiColor3fVertex3fSUN", ExactSpelling = true)]
03797             internal extern static void ReplacementCodeuiColor3fVertex3fSUN(UInt32 rc, Single r, Single g, Single b, Single x, Single y, Single z);
03798             [System.Security.SuppressUnmanagedCodeSecurity()]
03799             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiColor3fVertex3fvSUN", ExactSpelling = true)]
03800             internal extern static unsafe void ReplacementCodeuiColor3fVertex3fvSUN(UInt32* rc, Single* c, Single* v);
03801             [System.Security.SuppressUnmanagedCodeSecurity()]
03802             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fSUN", ExactSpelling = true)]
03803             internal extern static void ReplacementCodeuiColor4fNormal3fVertex3fSUN(UInt32 rc, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z);
03804             [System.Security.SuppressUnmanagedCodeSecurity()]
03805             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiColor4fNormal3fVertex3fvSUN", ExactSpelling = true)]
03806             internal extern static unsafe void ReplacementCodeuiColor4fNormal3fVertex3fvSUN(UInt32* rc, Single* c, Single* n, Single* v);
03807             [System.Security.SuppressUnmanagedCodeSecurity()]
03808             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiColor4ubVertex3fSUN", ExactSpelling = true)]
03809             internal extern static void ReplacementCodeuiColor4ubVertex3fSUN(UInt32 rc, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z);
03810             [System.Security.SuppressUnmanagedCodeSecurity()]
03811             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiColor4ubVertex3fvSUN", ExactSpelling = true)]
03812             internal extern static unsafe void ReplacementCodeuiColor4ubVertex3fvSUN(UInt32* rc, Byte* c, Single* v);
03813             [System.Security.SuppressUnmanagedCodeSecurity()]
03814             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiNormal3fVertex3fSUN", ExactSpelling = true)]
03815             internal extern static void ReplacementCodeuiNormal3fVertex3fSUN(UInt32 rc, Single nx, Single ny, Single nz, Single x, Single y, Single z);
03816             [System.Security.SuppressUnmanagedCodeSecurity()]
03817             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiNormal3fVertex3fvSUN", ExactSpelling = true)]
03818             internal extern static unsafe void ReplacementCodeuiNormal3fVertex3fvSUN(UInt32* rc, Single* n, Single* v);
03819             [System.Security.SuppressUnmanagedCodeSecurity()]
03820             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiSUN", ExactSpelling = true)]
03821             internal extern static void ReplacementCodeuiSUN(UInt32 code);
03822             [System.Security.SuppressUnmanagedCodeSecurity()]
03823             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN", ExactSpelling = true)]
03824             internal extern static void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN(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);
03825             [System.Security.SuppressUnmanagedCodeSecurity()]
03826             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN", ExactSpelling = true)]
03827             internal extern static unsafe void ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN(UInt32* rc, Single* tc, Single* c, Single* n, Single* v);
03828             [System.Security.SuppressUnmanagedCodeSecurity()]
03829             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN", ExactSpelling = true)]
03830             internal extern static void ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN(UInt32 rc, Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z);
03831             [System.Security.SuppressUnmanagedCodeSecurity()]
03832             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN", ExactSpelling = true)]
03833             internal extern static unsafe void ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN(UInt32* rc, Single* tc, Single* n, Single* v);
03834             [System.Security.SuppressUnmanagedCodeSecurity()]
03835             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fSUN", ExactSpelling = true)]
03836             internal extern static void ReplacementCodeuiTexCoord2fVertex3fSUN(UInt32 rc, Single s, Single t, Single x, Single y, Single z);
03837             [System.Security.SuppressUnmanagedCodeSecurity()]
03838             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiTexCoord2fVertex3fvSUN", ExactSpelling = true)]
03839             internal extern static unsafe void ReplacementCodeuiTexCoord2fVertex3fvSUN(UInt32* rc, Single* tc, Single* v);
03840             [System.Security.SuppressUnmanagedCodeSecurity()]
03841             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiVertex3fSUN", ExactSpelling = true)]
03842             internal extern static void ReplacementCodeuiVertex3fSUN(UInt32 rc, Single x, Single y, Single z);
03843             [System.Security.SuppressUnmanagedCodeSecurity()]
03844             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuiVertex3fvSUN", ExactSpelling = true)]
03845             internal extern static unsafe void ReplacementCodeuiVertex3fvSUN(UInt32* rc, Single* v);
03846             [System.Security.SuppressUnmanagedCodeSecurity()]
03847             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeuivSUN", ExactSpelling = true)]
03848             internal extern static unsafe void ReplacementCodeuivSUN(UInt32* code);
03849             [System.Security.SuppressUnmanagedCodeSecurity()]
03850             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeusSUN", ExactSpelling = true)]
03851             internal extern static void ReplacementCodeusSUN(UInt16 code);
03852             [System.Security.SuppressUnmanagedCodeSecurity()]
03853             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReplacementCodeusvSUN", ExactSpelling = true)]
03854             internal extern static unsafe void ReplacementCodeusvSUN(UInt16* code);
03855             [System.Security.SuppressUnmanagedCodeSecurity()]
03856             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRequestResidentProgramsNV", ExactSpelling = true)]
03857             internal extern static unsafe void RequestResidentProgramsNV(Int32 n, UInt32* programs);
03858             [System.Security.SuppressUnmanagedCodeSecurity()]
03859             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogram", ExactSpelling = true)]
03860             internal extern static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target);
03861             [System.Security.SuppressUnmanagedCodeSecurity()]
03862             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogramEXT", ExactSpelling = true)]
03863             internal extern static void ResetHistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target);
03864             [System.Security.SuppressUnmanagedCodeSecurity()]
03865             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmax", ExactSpelling = true)]
03866             internal extern static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target);
03867             [System.Security.SuppressUnmanagedCodeSecurity()]
03868             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmaxEXT", ExactSpelling = true)]
03869             internal extern static void ResetMinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target);
03870             [System.Security.SuppressUnmanagedCodeSecurity()]
03871             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResizeBuffersMESA", CharSet = CharSet.Auto)]
03872             internal extern static void ResizeBuffersMESA();
03873             [System.Security.SuppressUnmanagedCodeSecurity()]
03874             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResumeTransformFeedbackNV", ExactSpelling = true)]
03875             internal extern static void ResumeTransformFeedbackNV();
03876             [System.Security.SuppressUnmanagedCodeSecurity()]
03877             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRotated", ExactSpelling = true)]
03878             internal extern static void Rotated(Double angle, Double x, Double y, Double z);
03879             [System.Security.SuppressUnmanagedCodeSecurity()]
03880             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRotatef", ExactSpelling = true)]
03881             internal extern static void Rotatef(Single angle, Single x, Single y, Single z);
03882             [System.Security.SuppressUnmanagedCodeSecurity()]
03883             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleCoverage", ExactSpelling = true)]
03884             internal extern static void SampleCoverage(Single value, bool invert);
03885             [System.Security.SuppressUnmanagedCodeSecurity()]
03886             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleCoverageARB", ExactSpelling = true)]
03887             internal extern static void SampleCoverageARB(Single value, bool invert);
03888             [System.Security.SuppressUnmanagedCodeSecurity()]
03889             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleMapATI", ExactSpelling = true)]
03890             internal extern static void SampleMapATI(UInt32 dst, UInt32 interp, OpenTK.Graphics.OpenGL.AtiFragmentShader swizzle);
03891             [System.Security.SuppressUnmanagedCodeSecurity()]
03892             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleMaskEXT", ExactSpelling = true)]
03893             internal extern static void SampleMaskEXT(Single value, bool invert);
03894             [System.Security.SuppressUnmanagedCodeSecurity()]
03895             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleMaski", ExactSpelling = true)]
03896             internal extern static void SampleMaski(UInt32 index, UInt32 mask);
03897             [System.Security.SuppressUnmanagedCodeSecurity()]
03898             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleMaskIndexedNV", ExactSpelling = true)]
03899             internal extern static void SampleMaskIndexedNV(UInt32 index, UInt32 mask);
03900             [System.Security.SuppressUnmanagedCodeSecurity()]
03901             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleMaskSGIS", ExactSpelling = true)]
03902             internal extern static void SampleMaskSGIS(Single value, bool invert);
03903             [System.Security.SuppressUnmanagedCodeSecurity()]
03904             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSamplePatternEXT", ExactSpelling = true)]
03905             internal extern static void SamplePatternEXT(OpenTK.Graphics.OpenGL.ExtMultisample pattern);
03906             [System.Security.SuppressUnmanagedCodeSecurity()]
03907             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSamplePatternSGIS", ExactSpelling = true)]
03908             internal extern static void SamplePatternSGIS(OpenTK.Graphics.OpenGL.SgisMultisample pattern);
03909             [System.Security.SuppressUnmanagedCodeSecurity()]
03910             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScaled", ExactSpelling = true)]
03911             internal extern static void Scaled(Double x, Double y, Double z);
03912             [System.Security.SuppressUnmanagedCodeSecurity()]
03913             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScalef", ExactSpelling = true)]
03914             internal extern static void Scalef(Single x, Single y, Single z);
03915             [System.Security.SuppressUnmanagedCodeSecurity()]
03916             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScissor", ExactSpelling = true)]
03917             internal extern static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height);
03918             [System.Security.SuppressUnmanagedCodeSecurity()]
03919             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3b", ExactSpelling = true)]
03920             internal extern static void SecondaryColor3b(SByte red, SByte green, SByte blue);
03921             [System.Security.SuppressUnmanagedCodeSecurity()]
03922             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3bEXT", ExactSpelling = true)]
03923             internal extern static void SecondaryColor3bEXT(SByte red, SByte green, SByte blue);
03924             [System.Security.SuppressUnmanagedCodeSecurity()]
03925             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3bv", ExactSpelling = true)]
03926             internal extern static unsafe void SecondaryColor3bv(SByte* v);
03927             [System.Security.SuppressUnmanagedCodeSecurity()]
03928             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3bvEXT", ExactSpelling = true)]
03929             internal extern static unsafe void SecondaryColor3bvEXT(SByte* v);
03930             [System.Security.SuppressUnmanagedCodeSecurity()]
03931             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3d", ExactSpelling = true)]
03932             internal extern static void SecondaryColor3d(Double red, Double green, Double blue);
03933             [System.Security.SuppressUnmanagedCodeSecurity()]
03934             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3dEXT", ExactSpelling = true)]
03935             internal extern static void SecondaryColor3dEXT(Double red, Double green, Double blue);
03936             [System.Security.SuppressUnmanagedCodeSecurity()]
03937             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3dv", ExactSpelling = true)]
03938             internal extern static unsafe void SecondaryColor3dv(Double* v);
03939             [System.Security.SuppressUnmanagedCodeSecurity()]
03940             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3dvEXT", ExactSpelling = true)]
03941             internal extern static unsafe void SecondaryColor3dvEXT(Double* v);
03942             [System.Security.SuppressUnmanagedCodeSecurity()]
03943             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3f", ExactSpelling = true)]
03944             internal extern static void SecondaryColor3f(Single red, Single green, Single blue);
03945             [System.Security.SuppressUnmanagedCodeSecurity()]
03946             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3fEXT", ExactSpelling = true)]
03947             internal extern static void SecondaryColor3fEXT(Single red, Single green, Single blue);
03948             [System.Security.SuppressUnmanagedCodeSecurity()]
03949             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3fv", ExactSpelling = true)]
03950             internal extern static unsafe void SecondaryColor3fv(Single* v);
03951             [System.Security.SuppressUnmanagedCodeSecurity()]
03952             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3fvEXT", ExactSpelling = true)]
03953             internal extern static unsafe void SecondaryColor3fvEXT(Single* v);
03954             [System.Security.SuppressUnmanagedCodeSecurity()]
03955             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3hNV", ExactSpelling = true)]
03956             internal extern static void SecondaryColor3hNV(OpenTK.Half red, OpenTK.Half green, OpenTK.Half blue);
03957             [System.Security.SuppressUnmanagedCodeSecurity()]
03958             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3hvNV", ExactSpelling = true)]
03959             internal extern static unsafe void SecondaryColor3hvNV(OpenTK.Half* v);
03960             [System.Security.SuppressUnmanagedCodeSecurity()]
03961             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3i", ExactSpelling = true)]
03962             internal extern static void SecondaryColor3i(Int32 red, Int32 green, Int32 blue);
03963             [System.Security.SuppressUnmanagedCodeSecurity()]
03964             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3iEXT", ExactSpelling = true)]
03965             internal extern static void SecondaryColor3iEXT(Int32 red, Int32 green, Int32 blue);
03966             [System.Security.SuppressUnmanagedCodeSecurity()]
03967             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3iv", ExactSpelling = true)]
03968             internal extern static unsafe void SecondaryColor3iv(Int32* v);
03969             [System.Security.SuppressUnmanagedCodeSecurity()]
03970             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3ivEXT", ExactSpelling = true)]
03971             internal extern static unsafe void SecondaryColor3ivEXT(Int32* v);
03972             [System.Security.SuppressUnmanagedCodeSecurity()]
03973             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3s", ExactSpelling = true)]
03974             internal extern static void SecondaryColor3s(Int16 red, Int16 green, Int16 blue);
03975             [System.Security.SuppressUnmanagedCodeSecurity()]
03976             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3sEXT", ExactSpelling = true)]
03977             internal extern static void SecondaryColor3sEXT(Int16 red, Int16 green, Int16 blue);
03978             [System.Security.SuppressUnmanagedCodeSecurity()]
03979             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3sv", ExactSpelling = true)]
03980             internal extern static unsafe void SecondaryColor3sv(Int16* v);
03981             [System.Security.SuppressUnmanagedCodeSecurity()]
03982             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3svEXT", ExactSpelling = true)]
03983             internal extern static unsafe void SecondaryColor3svEXT(Int16* v);
03984             [System.Security.SuppressUnmanagedCodeSecurity()]
03985             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3ub", ExactSpelling = true)]
03986             internal extern static void SecondaryColor3ub(Byte red, Byte green, Byte blue);
03987             [System.Security.SuppressUnmanagedCodeSecurity()]
03988             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3ubEXT", ExactSpelling = true)]
03989             internal extern static void SecondaryColor3ubEXT(Byte red, Byte green, Byte blue);
03990             [System.Security.SuppressUnmanagedCodeSecurity()]
03991             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3ubv", ExactSpelling = true)]
03992             internal extern static unsafe void SecondaryColor3ubv(Byte* v);
03993             [System.Security.SuppressUnmanagedCodeSecurity()]
03994             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3ubvEXT", ExactSpelling = true)]
03995             internal extern static unsafe void SecondaryColor3ubvEXT(Byte* v);
03996             [System.Security.SuppressUnmanagedCodeSecurity()]
03997             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3ui", ExactSpelling = true)]
03998             internal extern static void SecondaryColor3ui(UInt32 red, UInt32 green, UInt32 blue);
03999             [System.Security.SuppressUnmanagedCodeSecurity()]
04000             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3uiEXT", ExactSpelling = true)]
04001             internal extern static void SecondaryColor3uiEXT(UInt32 red, UInt32 green, UInt32 blue);
04002             [System.Security.SuppressUnmanagedCodeSecurity()]
04003             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3uiv", ExactSpelling = true)]
04004             internal extern static unsafe void SecondaryColor3uiv(UInt32* v);
04005             [System.Security.SuppressUnmanagedCodeSecurity()]
04006             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3uivEXT", ExactSpelling = true)]
04007             internal extern static unsafe void SecondaryColor3uivEXT(UInt32* v);
04008             [System.Security.SuppressUnmanagedCodeSecurity()]
04009             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3us", ExactSpelling = true)]
04010             internal extern static void SecondaryColor3us(UInt16 red, UInt16 green, UInt16 blue);
04011             [System.Security.SuppressUnmanagedCodeSecurity()]
04012             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3usEXT", ExactSpelling = true)]
04013             internal extern static void SecondaryColor3usEXT(UInt16 red, UInt16 green, UInt16 blue);
04014             [System.Security.SuppressUnmanagedCodeSecurity()]
04015             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3usv", ExactSpelling = true)]
04016             internal extern static unsafe void SecondaryColor3usv(UInt16* v);
04017             [System.Security.SuppressUnmanagedCodeSecurity()]
04018             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColor3usvEXT", ExactSpelling = true)]
04019             internal extern static unsafe void SecondaryColor3usvEXT(UInt16* v);
04020             [System.Security.SuppressUnmanagedCodeSecurity()]
04021             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColorPointer", ExactSpelling = true)]
04022             internal extern static void SecondaryColorPointer(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer);
04023             [System.Security.SuppressUnmanagedCodeSecurity()]
04024             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColorPointerEXT", ExactSpelling = true)]
04025             internal extern static void SecondaryColorPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.ColorPointerType type, Int32 stride, IntPtr pointer);
04026             [System.Security.SuppressUnmanagedCodeSecurity()]
04027             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSecondaryColorPointerListIBM", ExactSpelling = true)]
04028             internal extern static void SecondaryColorPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.IbmVertexArrayLists type, Int32 stride, IntPtr pointer, Int32 ptrstride);
04029             [System.Security.SuppressUnmanagedCodeSecurity()]
04030             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSelectBuffer", ExactSpelling = true)]
04031             internal extern static unsafe void SelectBuffer(Int32 size, [OutAttribute] UInt32* buffer);
04032             [System.Security.SuppressUnmanagedCodeSecurity()]
04033             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSelectPerfMonitorCountersAMD", ExactSpelling = true)]
04034             internal extern static unsafe void SelectPerfMonitorCountersAMD(UInt32 monitor, bool enable, UInt32 group, Int32 numCounters, [OutAttribute] UInt32* counterList);
04035             [System.Security.SuppressUnmanagedCodeSecurity()]
04036             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSeparableFilter2D", ExactSpelling = true)]
04037             internal extern static void SeparableFilter2D(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);
04038             [System.Security.SuppressUnmanagedCodeSecurity()]
04039             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSeparableFilter2DEXT", ExactSpelling = true)]
04040             internal extern static void SeparableFilter2DEXT(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);
04041             [System.Security.SuppressUnmanagedCodeSecurity()]
04042             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetFenceAPPLE", ExactSpelling = true)]
04043             internal extern static void SetFenceAPPLE(UInt32 fence);
04044             [System.Security.SuppressUnmanagedCodeSecurity()]
04045             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetFenceNV", ExactSpelling = true)]
04046             internal extern static void SetFenceNV(UInt32 fence, OpenTK.Graphics.OpenGL.NvFence condition);
04047             [System.Security.SuppressUnmanagedCodeSecurity()]
04048             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetFragmentShaderConstantATI", ExactSpelling = true)]
04049             internal extern static unsafe void SetFragmentShaderConstantATI(UInt32 dst, Single* value);
04050             [System.Security.SuppressUnmanagedCodeSecurity()]
04051             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetInvariantEXT", ExactSpelling = true)]
04052             internal extern static void SetInvariantEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, IntPtr addr);
04053             [System.Security.SuppressUnmanagedCodeSecurity()]
04054             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetLocalConstantEXT", ExactSpelling = true)]
04055             internal extern static void SetLocalConstantEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, IntPtr addr);
04056             [System.Security.SuppressUnmanagedCodeSecurity()]
04057             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShadeModel", ExactSpelling = true)]
04058             internal extern static void ShadeModel(OpenTK.Graphics.OpenGL.ShadingModel mode);
04059             [System.Security.SuppressUnmanagedCodeSecurity()]
04060             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShaderOp1EXT", ExactSpelling = true)]
04061             internal extern static void ShaderOp1EXT(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1);
04062             [System.Security.SuppressUnmanagedCodeSecurity()]
04063             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShaderOp2EXT", ExactSpelling = true)]
04064             internal extern static void ShaderOp2EXT(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2);
04065             [System.Security.SuppressUnmanagedCodeSecurity()]
04066             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShaderOp3EXT", ExactSpelling = true)]
04067             internal extern static void ShaderOp3EXT(OpenTK.Graphics.OpenGL.ExtVertexShader op, UInt32 res, UInt32 arg1, UInt32 arg2, UInt32 arg3);
04068             [System.Security.SuppressUnmanagedCodeSecurity()]
04069             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShaderSource", ExactSpelling = true)]
04070             internal extern static unsafe void ShaderSource(UInt32 shader, Int32 count, String[] @string, Int32* length);
04071             [System.Security.SuppressUnmanagedCodeSecurity()]
04072             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShaderSourceARB", ExactSpelling = true)]
04073             internal extern static unsafe void ShaderSourceARB(UInt32 shaderObj, Int32 count, String[] @string, Int32* length);
04074             [System.Security.SuppressUnmanagedCodeSecurity()]
04075             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSharpenTexFuncSGIS", ExactSpelling = true)]
04076             internal extern static unsafe void SharpenTexFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 n, Single* points);
04077             [System.Security.SuppressUnmanagedCodeSecurity()]
04078             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSpriteParameterfSGIX", ExactSpelling = true)]
04079             internal extern static void SpriteParameterfSGIX(OpenTK.Graphics.OpenGL.SgixSprite pname, Single param);
04080             [System.Security.SuppressUnmanagedCodeSecurity()]
04081             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSpriteParameterfvSGIX", ExactSpelling = true)]
04082             internal extern static unsafe void SpriteParameterfvSGIX(OpenTK.Graphics.OpenGL.SgixSprite pname, Single* @params);
04083             [System.Security.SuppressUnmanagedCodeSecurity()]
04084             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSpriteParameteriSGIX", ExactSpelling = true)]
04085             internal extern static void SpriteParameteriSGIX(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32 param);
04086             [System.Security.SuppressUnmanagedCodeSecurity()]
04087             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSpriteParameterivSGIX", ExactSpelling = true)]
04088             internal extern static unsafe void SpriteParameterivSGIX(OpenTK.Graphics.OpenGL.SgixSprite pname, Int32* @params);
04089             [System.Security.SuppressUnmanagedCodeSecurity()]
04090             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStartInstrumentsSGIX", ExactSpelling = true)]
04091             internal extern static void StartInstrumentsSGIX();
04092             [System.Security.SuppressUnmanagedCodeSecurity()]
04093             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilClearTagEXT", ExactSpelling = true)]
04094             internal extern static void StencilClearTagEXT(Int32 stencilTagBits, UInt32 stencilClearTag);
04095             [System.Security.SuppressUnmanagedCodeSecurity()]
04096             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFunc", ExactSpelling = true)]
04097             internal extern static void StencilFunc(OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask);
04098             [System.Security.SuppressUnmanagedCodeSecurity()]
04099             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFuncSeparate", ExactSpelling = true)]
04100             internal extern static void StencilFuncSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilFunction func, Int32 @ref, UInt32 mask);
04101             [System.Security.SuppressUnmanagedCodeSecurity()]
04102             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFuncSeparateATI", ExactSpelling = true)]
04103             internal extern static void StencilFuncSeparateATI(OpenTK.Graphics.OpenGL.StencilFunction frontfunc, OpenTK.Graphics.OpenGL.StencilFunction backfunc, Int32 @ref, UInt32 mask);
04104             [System.Security.SuppressUnmanagedCodeSecurity()]
04105             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilMask", ExactSpelling = true)]
04106             internal extern static void StencilMask(UInt32 mask);
04107             [System.Security.SuppressUnmanagedCodeSecurity()]
04108             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilMaskSeparate", ExactSpelling = true)]
04109             internal extern static void StencilMaskSeparate(OpenTK.Graphics.OpenGL.StencilFace face, UInt32 mask);
04110             [System.Security.SuppressUnmanagedCodeSecurity()]
04111             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOp", ExactSpelling = true)]
04112             internal extern static void StencilOp(OpenTK.Graphics.OpenGL.StencilOp fail, OpenTK.Graphics.OpenGL.StencilOp zfail, OpenTK.Graphics.OpenGL.StencilOp zpass);
04113             [System.Security.SuppressUnmanagedCodeSecurity()]
04114             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOpSeparate", ExactSpelling = true)]
04115             internal extern static void StencilOpSeparate(OpenTK.Graphics.OpenGL.StencilFace face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass);
04116             [System.Security.SuppressUnmanagedCodeSecurity()]
04117             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOpSeparateATI", ExactSpelling = true)]
04118             internal extern static void StencilOpSeparateATI(OpenTK.Graphics.OpenGL.AtiSeparateStencil face, OpenTK.Graphics.OpenGL.StencilOp sfail, OpenTK.Graphics.OpenGL.StencilOp dpfail, OpenTK.Graphics.OpenGL.StencilOp dppass);
04119             [System.Security.SuppressUnmanagedCodeSecurity()]
04120             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStopInstrumentsSGIX", ExactSpelling = true)]
04121             internal extern static void StopInstrumentsSGIX(Int32 marker);
04122             [System.Security.SuppressUnmanagedCodeSecurity()]
04123             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStringMarkerGREMEDY", ExactSpelling = true)]
04124             internal extern static void StringMarkerGREMEDY(Int32 len, IntPtr @string);
04125             [System.Security.SuppressUnmanagedCodeSecurity()]
04126             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSwizzleEXT", ExactSpelling = true)]
04127             internal extern static void SwizzleEXT(UInt32 res, UInt32 @in, OpenTK.Graphics.OpenGL.ExtVertexShader outX, OpenTK.Graphics.OpenGL.ExtVertexShader outY, OpenTK.Graphics.OpenGL.ExtVertexShader outZ, OpenTK.Graphics.OpenGL.ExtVertexShader outW);
04128             [System.Security.SuppressUnmanagedCodeSecurity()]
04129             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTagSampleBufferSGIX", ExactSpelling = true)]
04130             internal extern static void TagSampleBufferSGIX();
04131             [System.Security.SuppressUnmanagedCodeSecurity()]
04132             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3bEXT", ExactSpelling = true)]
04133             internal extern static void Tangent3bEXT(SByte tx, SByte ty, SByte tz);
04134             [System.Security.SuppressUnmanagedCodeSecurity()]
04135             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3bvEXT", ExactSpelling = true)]
04136             internal extern static unsafe void Tangent3bvEXT(SByte* v);
04137             [System.Security.SuppressUnmanagedCodeSecurity()]
04138             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3dEXT", ExactSpelling = true)]
04139             internal extern static void Tangent3dEXT(Double tx, Double ty, Double tz);
04140             [System.Security.SuppressUnmanagedCodeSecurity()]
04141             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3dvEXT", ExactSpelling = true)]
04142             internal extern static unsafe void Tangent3dvEXT(Double* v);
04143             [System.Security.SuppressUnmanagedCodeSecurity()]
04144             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3fEXT", ExactSpelling = true)]
04145             internal extern static void Tangent3fEXT(Single tx, Single ty, Single tz);
04146             [System.Security.SuppressUnmanagedCodeSecurity()]
04147             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3fvEXT", ExactSpelling = true)]
04148             internal extern static unsafe void Tangent3fvEXT(Single* v);
04149             [System.Security.SuppressUnmanagedCodeSecurity()]
04150             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3iEXT", ExactSpelling = true)]
04151             internal extern static void Tangent3iEXT(Int32 tx, Int32 ty, Int32 tz);
04152             [System.Security.SuppressUnmanagedCodeSecurity()]
04153             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3ivEXT", ExactSpelling = true)]
04154             internal extern static unsafe void Tangent3ivEXT(Int32* v);
04155             [System.Security.SuppressUnmanagedCodeSecurity()]
04156             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3sEXT", ExactSpelling = true)]
04157             internal extern static void Tangent3sEXT(Int16 tx, Int16 ty, Int16 tz);
04158             [System.Security.SuppressUnmanagedCodeSecurity()]
04159             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangent3svEXT", ExactSpelling = true)]
04160             internal extern static unsafe void Tangent3svEXT(Int16* v);
04161             [System.Security.SuppressUnmanagedCodeSecurity()]
04162             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTangentPointerEXT", ExactSpelling = true)]
04163             internal extern static void TangentPointerEXT(OpenTK.Graphics.OpenGL.NormalPointerType type, Int32 stride, IntPtr pointer);
04164             [System.Security.SuppressUnmanagedCodeSecurity()]
04165             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTbufferMask3DFX", ExactSpelling = true)]
04166             internal extern static void TbufferMask3DFX(UInt32 mask);
04167             [System.Security.SuppressUnmanagedCodeSecurity()]
04168             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTessellationFactorAMD", ExactSpelling = true)]
04169             internal extern static void TessellationFactorAMD(Single factor);
04170             [System.Security.SuppressUnmanagedCodeSecurity()]
04171             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTessellationModeAMD", ExactSpelling = true)]
04172             internal extern static void TessellationModeAMD(OpenTK.Graphics.OpenGL.AmdVertexShaderTesselator mode);
04173             [System.Security.SuppressUnmanagedCodeSecurity()]
04174             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTestFenceAPPLE", ExactSpelling = true)]
04175             internal extern static bool TestFenceAPPLE(UInt32 fence);
04176             [System.Security.SuppressUnmanagedCodeSecurity()]
04177             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTestFenceNV", ExactSpelling = true)]
04178             internal extern static bool TestFenceNV(UInt32 fence);
04179             [System.Security.SuppressUnmanagedCodeSecurity()]
04180             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTestObjectAPPLE", ExactSpelling = true)]
04181             internal extern static bool TestObjectAPPLE(OpenTK.Graphics.OpenGL.AppleFence @object, UInt32 name);
04182             [System.Security.SuppressUnmanagedCodeSecurity()]
04183             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexBuffer", ExactSpelling = true)]
04184             internal extern static void TexBuffer(OpenTK.Graphics.OpenGL.TextureBufferTarget target, OpenTK.Graphics.OpenGL.SizedInternalFormat internalformat, UInt32 buffer);
04185             [System.Security.SuppressUnmanagedCodeSecurity()]
04186             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexBufferARB", ExactSpelling = true)]
04187             internal extern static void TexBufferARB(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ArbTextureBufferObject internalformat, UInt32 buffer);
04188             [System.Security.SuppressUnmanagedCodeSecurity()]
04189             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexBufferEXT", ExactSpelling = true)]
04190             internal extern static void TexBufferEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtTextureBufferObject internalformat, UInt32 buffer);
04191             [System.Security.SuppressUnmanagedCodeSecurity()]
04192             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexBumpParameterfvATI", ExactSpelling = true)]
04193             internal extern static unsafe void TexBumpParameterfvATI(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, Single* param);
04194             [System.Security.SuppressUnmanagedCodeSecurity()]
04195             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexBumpParameterivATI", ExactSpelling = true)]
04196             internal extern static unsafe void TexBumpParameterivATI(OpenTK.Graphics.OpenGL.AtiEnvmapBumpmap pname, Int32* param);
04197             [System.Security.SuppressUnmanagedCodeSecurity()]
04198             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1d", ExactSpelling = true)]
04199             internal extern static void TexCoord1d(Double s);
04200             [System.Security.SuppressUnmanagedCodeSecurity()]
04201             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1dv", ExactSpelling = true)]
04202             internal extern static unsafe void TexCoord1dv(Double* v);
04203             [System.Security.SuppressUnmanagedCodeSecurity()]
04204             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1f", ExactSpelling = true)]
04205             internal extern static void TexCoord1f(Single s);
04206             [System.Security.SuppressUnmanagedCodeSecurity()]
04207             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1fv", ExactSpelling = true)]
04208             internal extern static unsafe void TexCoord1fv(Single* v);
04209             [System.Security.SuppressUnmanagedCodeSecurity()]
04210             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1hNV", ExactSpelling = true)]
04211             internal extern static void TexCoord1hNV(OpenTK.Half s);
04212             [System.Security.SuppressUnmanagedCodeSecurity()]
04213             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1hvNV", ExactSpelling = true)]
04214             internal extern static unsafe void TexCoord1hvNV(OpenTK.Half* v);
04215             [System.Security.SuppressUnmanagedCodeSecurity()]
04216             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1i", ExactSpelling = true)]
04217             internal extern static void TexCoord1i(Int32 s);
04218             [System.Security.SuppressUnmanagedCodeSecurity()]
04219             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1iv", ExactSpelling = true)]
04220             internal extern static unsafe void TexCoord1iv(Int32* v);
04221             [System.Security.SuppressUnmanagedCodeSecurity()]
04222             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1s", ExactSpelling = true)]
04223             internal extern static void TexCoord1s(Int16 s);
04224             [System.Security.SuppressUnmanagedCodeSecurity()]
04225             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord1sv", ExactSpelling = true)]
04226             internal extern static unsafe void TexCoord1sv(Int16* v);
04227             [System.Security.SuppressUnmanagedCodeSecurity()]
04228             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2d", ExactSpelling = true)]
04229             internal extern static void TexCoord2d(Double s, Double t);
04230             [System.Security.SuppressUnmanagedCodeSecurity()]
04231             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2dv", ExactSpelling = true)]
04232             internal extern static unsafe void TexCoord2dv(Double* v);
04233             [System.Security.SuppressUnmanagedCodeSecurity()]
04234             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2f", ExactSpelling = true)]
04235             internal extern static void TexCoord2f(Single s, Single t);
04236             [System.Security.SuppressUnmanagedCodeSecurity()]
04237             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fColor3fVertex3fSUN", ExactSpelling = true)]
04238             internal extern static void TexCoord2fColor3fVertex3fSUN(Single s, Single t, Single r, Single g, Single b, Single x, Single y, Single z);
04239             [System.Security.SuppressUnmanagedCodeSecurity()]
04240             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fColor3fVertex3fvSUN", ExactSpelling = true)]
04241             internal extern static unsafe void TexCoord2fColor3fVertex3fvSUN(Single* tc, Single* c, Single* v);
04242             [System.Security.SuppressUnmanagedCodeSecurity()]
04243             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fSUN", ExactSpelling = true)]
04244             internal extern static void TexCoord2fColor4fNormal3fVertex3fSUN(Single s, Single t, Single r, Single g, Single b, Single a, Single nx, Single ny, Single nz, Single x, Single y, Single z);
04245             [System.Security.SuppressUnmanagedCodeSecurity()]
04246             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fColor4fNormal3fVertex3fvSUN", ExactSpelling = true)]
04247             internal extern static unsafe void TexCoord2fColor4fNormal3fVertex3fvSUN(Single* tc, Single* c, Single* n, Single* v);
04248             [System.Security.SuppressUnmanagedCodeSecurity()]
04249             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fColor4ubVertex3fSUN", ExactSpelling = true)]
04250             internal extern static void TexCoord2fColor4ubVertex3fSUN(Single s, Single t, Byte r, Byte g, Byte b, Byte a, Single x, Single y, Single z);
04251             [System.Security.SuppressUnmanagedCodeSecurity()]
04252             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fColor4ubVertex3fvSUN", ExactSpelling = true)]
04253             internal extern static unsafe void TexCoord2fColor4ubVertex3fvSUN(Single* tc, Byte* c, Single* v);
04254             [System.Security.SuppressUnmanagedCodeSecurity()]
04255             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fNormal3fVertex3fSUN", ExactSpelling = true)]
04256             internal extern static void TexCoord2fNormal3fVertex3fSUN(Single s, Single t, Single nx, Single ny, Single nz, Single x, Single y, Single z);
04257             [System.Security.SuppressUnmanagedCodeSecurity()]
04258             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fNormal3fVertex3fvSUN", ExactSpelling = true)]
04259             internal extern static unsafe void TexCoord2fNormal3fVertex3fvSUN(Single* tc, Single* n, Single* v);
04260             [System.Security.SuppressUnmanagedCodeSecurity()]
04261             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fv", ExactSpelling = true)]
04262             internal extern static unsafe void TexCoord2fv(Single* v);
04263             [System.Security.SuppressUnmanagedCodeSecurity()]
04264             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fVertex3fSUN", ExactSpelling = true)]
04265             internal extern static void TexCoord2fVertex3fSUN(Single s, Single t, Single x, Single y, Single z);
04266             [System.Security.SuppressUnmanagedCodeSecurity()]
04267             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2fVertex3fvSUN", ExactSpelling = true)]
04268             internal extern static unsafe void TexCoord2fVertex3fvSUN(Single* tc, Single* v);
04269             [System.Security.SuppressUnmanagedCodeSecurity()]
04270             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2hNV", ExactSpelling = true)]
04271             internal extern static void TexCoord2hNV(OpenTK.Half s, OpenTK.Half t);
04272             [System.Security.SuppressUnmanagedCodeSecurity()]
04273             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2hvNV", ExactSpelling = true)]
04274             internal extern static unsafe void TexCoord2hvNV(OpenTK.Half* v);
04275             [System.Security.SuppressUnmanagedCodeSecurity()]
04276             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2i", ExactSpelling = true)]
04277             internal extern static void TexCoord2i(Int32 s, Int32 t);
04278             [System.Security.SuppressUnmanagedCodeSecurity()]
04279             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2iv", ExactSpelling = true)]
04280             internal extern static unsafe void TexCoord2iv(Int32* v);
04281             [System.Security.SuppressUnmanagedCodeSecurity()]
04282             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2s", ExactSpelling = true)]
04283             internal extern static void TexCoord2s(Int16 s, Int16 t);
04284             [System.Security.SuppressUnmanagedCodeSecurity()]
04285             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord2sv", ExactSpelling = true)]
04286             internal extern static unsafe void TexCoord2sv(Int16* v);
04287             [System.Security.SuppressUnmanagedCodeSecurity()]
04288             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3d", ExactSpelling = true)]
04289             internal extern static void TexCoord3d(Double s, Double t, Double r);
04290             [System.Security.SuppressUnmanagedCodeSecurity()]
04291             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3dv", ExactSpelling = true)]
04292             internal extern static unsafe void TexCoord3dv(Double* v);
04293             [System.Security.SuppressUnmanagedCodeSecurity()]
04294             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3f", ExactSpelling = true)]
04295             internal extern static void TexCoord3f(Single s, Single t, Single r);
04296             [System.Security.SuppressUnmanagedCodeSecurity()]
04297             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3fv", ExactSpelling = true)]
04298             internal extern static unsafe void TexCoord3fv(Single* v);
04299             [System.Security.SuppressUnmanagedCodeSecurity()]
04300             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3hNV", ExactSpelling = true)]
04301             internal extern static void TexCoord3hNV(OpenTK.Half s, OpenTK.Half t, OpenTK.Half r);
04302             [System.Security.SuppressUnmanagedCodeSecurity()]
04303             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3hvNV", ExactSpelling = true)]
04304             internal extern static unsafe void TexCoord3hvNV(OpenTK.Half* v);
04305             [System.Security.SuppressUnmanagedCodeSecurity()]
04306             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3i", ExactSpelling = true)]
04307             internal extern static void TexCoord3i(Int32 s, Int32 t, Int32 r);
04308             [System.Security.SuppressUnmanagedCodeSecurity()]
04309             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3iv", ExactSpelling = true)]
04310             internal extern static unsafe void TexCoord3iv(Int32* v);
04311             [System.Security.SuppressUnmanagedCodeSecurity()]
04312             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3s", ExactSpelling = true)]
04313             internal extern static void TexCoord3s(Int16 s, Int16 t, Int16 r);
04314             [System.Security.SuppressUnmanagedCodeSecurity()]
04315             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord3sv", ExactSpelling = true)]
04316             internal extern static unsafe void TexCoord3sv(Int16* v);
04317             [System.Security.SuppressUnmanagedCodeSecurity()]
04318             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4d", ExactSpelling = true)]
04319             internal extern static void TexCoord4d(Double s, Double t, Double r, Double q);
04320             [System.Security.SuppressUnmanagedCodeSecurity()]
04321             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4dv", ExactSpelling = true)]
04322             internal extern static unsafe void TexCoord4dv(Double* v);
04323             [System.Security.SuppressUnmanagedCodeSecurity()]
04324             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4f", ExactSpelling = true)]
04325             internal extern static void TexCoord4f(Single s, Single t, Single r, Single q);
04326             [System.Security.SuppressUnmanagedCodeSecurity()]
04327             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fSUN", ExactSpelling = true)]
04328             internal extern static void TexCoord4fColor4fNormal3fVertex4fSUN(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);
04329             [System.Security.SuppressUnmanagedCodeSecurity()]
04330             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4fColor4fNormal3fVertex4fvSUN", ExactSpelling = true)]
04331             internal extern static unsafe void TexCoord4fColor4fNormal3fVertex4fvSUN(Single* tc, Single* c, Single* n, Single* v);
04332             [System.Security.SuppressUnmanagedCodeSecurity()]
04333             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4fv", ExactSpelling = true)]
04334             internal extern static unsafe void TexCoord4fv(Single* v);
04335             [System.Security.SuppressUnmanagedCodeSecurity()]
04336             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4fVertex4fSUN", ExactSpelling = true)]
04337             internal extern static void TexCoord4fVertex4fSUN(Single s, Single t, Single p, Single q, Single x, Single y, Single z, Single w);
04338             [System.Security.SuppressUnmanagedCodeSecurity()]
04339             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4fVertex4fvSUN", ExactSpelling = true)]
04340             internal extern static unsafe void TexCoord4fVertex4fvSUN(Single* tc, Single* v);
04341             [System.Security.SuppressUnmanagedCodeSecurity()]
04342             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4hNV", ExactSpelling = true)]
04343             internal extern static void TexCoord4hNV(OpenTK.Half s, OpenTK.Half t, OpenTK.Half r, OpenTK.Half q);
04344             [System.Security.SuppressUnmanagedCodeSecurity()]
04345             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4hvNV", ExactSpelling = true)]
04346             internal extern static unsafe void TexCoord4hvNV(OpenTK.Half* v);
04347             [System.Security.SuppressUnmanagedCodeSecurity()]
04348             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4i", ExactSpelling = true)]
04349             internal extern static void TexCoord4i(Int32 s, Int32 t, Int32 r, Int32 q);
04350             [System.Security.SuppressUnmanagedCodeSecurity()]
04351             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4iv", ExactSpelling = true)]
04352             internal extern static unsafe void TexCoord4iv(Int32* v);
04353             [System.Security.SuppressUnmanagedCodeSecurity()]
04354             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4s", ExactSpelling = true)]
04355             internal extern static void TexCoord4s(Int16 s, Int16 t, Int16 r, Int16 q);
04356             [System.Security.SuppressUnmanagedCodeSecurity()]
04357             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoord4sv", ExactSpelling = true)]
04358             internal extern static unsafe void TexCoord4sv(Int16* v);
04359             [System.Security.SuppressUnmanagedCodeSecurity()]
04360             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoordPointer", ExactSpelling = true)]
04361             internal extern static void TexCoordPointer(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer);
04362             [System.Security.SuppressUnmanagedCodeSecurity()]
04363             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoordPointerEXT", ExactSpelling = true)]
04364             internal extern static void TexCoordPointerEXT(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, Int32 count, IntPtr pointer);
04365             [System.Security.SuppressUnmanagedCodeSecurity()]
04366             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoordPointerListIBM", ExactSpelling = true)]
04367             internal extern static void TexCoordPointerListIBM(Int32 size, OpenTK.Graphics.OpenGL.TexCoordPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
04368             [System.Security.SuppressUnmanagedCodeSecurity()]
04369             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoordPointervINTEL", ExactSpelling = true)]
04370             internal extern static void TexCoordPointervINTEL(Int32 size, OpenTK.Graphics.OpenGL.VertexPointerType type, IntPtr pointer);
04371             [System.Security.SuppressUnmanagedCodeSecurity()]
04372             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvf", ExactSpelling = true)]
04373             internal extern static void TexEnvf(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single param);
04374             [System.Security.SuppressUnmanagedCodeSecurity()]
04375             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvfv", ExactSpelling = true)]
04376             internal extern static unsafe void TexEnvfv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Single* @params);
04377             [System.Security.SuppressUnmanagedCodeSecurity()]
04378             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvi", ExactSpelling = true)]
04379             internal extern static void TexEnvi(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32 param);
04380             [System.Security.SuppressUnmanagedCodeSecurity()]
04381             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnviv", ExactSpelling = true)]
04382             internal extern static unsafe void TexEnviv(OpenTK.Graphics.OpenGL.TextureEnvTarget target, OpenTK.Graphics.OpenGL.TextureEnvParameter pname, Int32* @params);
04383             [System.Security.SuppressUnmanagedCodeSecurity()]
04384             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexFilterFuncSGIS", ExactSpelling = true)]
04385             internal extern static unsafe void TexFilterFuncSGIS(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.SgisTextureFilter4 filter, Int32 n, Single* weights);
04386             [System.Security.SuppressUnmanagedCodeSecurity()]
04387             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGend", ExactSpelling = true)]
04388             internal extern static void TexGend(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double param);
04389             [System.Security.SuppressUnmanagedCodeSecurity()]
04390             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGendv", ExactSpelling = true)]
04391             internal extern static unsafe void TexGendv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Double* @params);
04392             [System.Security.SuppressUnmanagedCodeSecurity()]
04393             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenf", ExactSpelling = true)]
04394             internal extern static void TexGenf(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single param);
04395             [System.Security.SuppressUnmanagedCodeSecurity()]
04396             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenfv", ExactSpelling = true)]
04397             internal extern static unsafe void TexGenfv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Single* @params);
04398             [System.Security.SuppressUnmanagedCodeSecurity()]
04399             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGeni", ExactSpelling = true)]
04400             internal extern static void TexGeni(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32 param);
04401             [System.Security.SuppressUnmanagedCodeSecurity()]
04402             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGeniv", ExactSpelling = true)]
04403             internal extern static unsafe void TexGeniv(OpenTK.Graphics.OpenGL.TextureCoordName coord, OpenTK.Graphics.OpenGL.TextureGenParameter pname, Int32* @params);
04404             [System.Security.SuppressUnmanagedCodeSecurity()]
04405             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage1D", ExactSpelling = true)]
04406             internal extern static void TexImage1D(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);
04407             [System.Security.SuppressUnmanagedCodeSecurity()]
04408             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage2D", ExactSpelling = true)]
04409             internal extern static void TexImage2D(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);
04410             [System.Security.SuppressUnmanagedCodeSecurity()]
04411             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage2DMultisample", ExactSpelling = true)]
04412             internal extern static void TexImage2DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, bool fixedsamplelocations);
04413             [System.Security.SuppressUnmanagedCodeSecurity()]
04414             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage3D", ExactSpelling = true)]
04415             internal extern static void TexImage3D(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);
04416             [System.Security.SuppressUnmanagedCodeSecurity()]
04417             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage3DEXT", ExactSpelling = true)]
04418             internal extern static void TexImage3DEXT(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);
04419             [System.Security.SuppressUnmanagedCodeSecurity()]
04420             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage3DMultisample", ExactSpelling = true)]
04421             internal extern static void TexImage3DMultisample(OpenTK.Graphics.OpenGL.TextureTargetMultisample target, Int32 samples, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, Int32 depth, bool fixedsamplelocations);
04422             [System.Security.SuppressUnmanagedCodeSecurity()]
04423             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage4DSGIS", ExactSpelling = true)]
04424             internal extern static void TexImage4DSGIS(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);
04425             [System.Security.SuppressUnmanagedCodeSecurity()]
04426             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterf", ExactSpelling = true)]
04427             internal extern static void TexParameterf(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param);
04428             [System.Security.SuppressUnmanagedCodeSecurity()]
04429             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterfv", ExactSpelling = true)]
04430             internal extern static unsafe void TexParameterfv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params);
04431             [System.Security.SuppressUnmanagedCodeSecurity()]
04432             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameteri", ExactSpelling = true)]
04433             internal extern static void TexParameteri(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param);
04434             [System.Security.SuppressUnmanagedCodeSecurity()]
04435             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterIiv", ExactSpelling = true)]
04436             internal extern static unsafe void TexParameterIiv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
04437             [System.Security.SuppressUnmanagedCodeSecurity()]
04438             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterIivEXT", ExactSpelling = true)]
04439             internal extern static unsafe void TexParameterIivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
04440             [System.Security.SuppressUnmanagedCodeSecurity()]
04441             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterIuiv", ExactSpelling = true)]
04442             internal extern static unsafe void TexParameterIuiv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params);
04443             [System.Security.SuppressUnmanagedCodeSecurity()]
04444             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterIuivEXT", ExactSpelling = true)]
04445             internal extern static unsafe void TexParameterIuivEXT(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params);
04446             [System.Security.SuppressUnmanagedCodeSecurity()]
04447             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameteriv", ExactSpelling = true)]
04448             internal extern static unsafe void TexParameteriv(OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
04449             [System.Security.SuppressUnmanagedCodeSecurity()]
04450             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexRenderbufferNV", ExactSpelling = true)]
04451             internal extern static void TexRenderbufferNV(OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer);
04452             [System.Security.SuppressUnmanagedCodeSecurity()]
04453             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage1D", ExactSpelling = true)]
04454             internal extern static void TexSubImage1D(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
04455             [System.Security.SuppressUnmanagedCodeSecurity()]
04456             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage1DEXT", ExactSpelling = true)]
04457             internal extern static void TexSubImage1DEXT(OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, Int32 xoffset, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
04458             [System.Security.SuppressUnmanagedCodeSecurity()]
04459             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage2D", ExactSpelling = true)]
04460             internal extern static void TexSubImage2D(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);
04461             [System.Security.SuppressUnmanagedCodeSecurity()]
04462             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage2DEXT", ExactSpelling = true)]
04463             internal extern static void TexSubImage2DEXT(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);
04464             [System.Security.SuppressUnmanagedCodeSecurity()]
04465             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage3D", ExactSpelling = true)]
04466             internal extern static void TexSubImage3D(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);
04467             [System.Security.SuppressUnmanagedCodeSecurity()]
04468             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage3DEXT", ExactSpelling = true)]
04469             internal extern static void TexSubImage3DEXT(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);
04470             [System.Security.SuppressUnmanagedCodeSecurity()]
04471             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage4DSGIS", ExactSpelling = true)]
04472             internal extern static void TexSubImage4DSGIS(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);
04473             [System.Security.SuppressUnmanagedCodeSecurity()]
04474             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureBufferEXT", ExactSpelling = true)]
04475             internal extern static void TextureBufferEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, UInt32 buffer);
04476             [System.Security.SuppressUnmanagedCodeSecurity()]
04477             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureColorMaskSGIS", ExactSpelling = true)]
04478             internal extern static void TextureColorMaskSGIS(bool red, bool green, bool blue, bool alpha);
04479             [System.Security.SuppressUnmanagedCodeSecurity()]
04480             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureImage1DEXT", ExactSpelling = true)]
04481             internal extern static void TextureImage1DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
04482             [System.Security.SuppressUnmanagedCodeSecurity()]
04483             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureImage2DEXT", ExactSpelling = true)]
04484             internal extern static void TextureImage2DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
04485             [System.Security.SuppressUnmanagedCodeSecurity()]
04486             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureImage3DEXT", ExactSpelling = true)]
04487             internal extern static void TextureImage3DEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, Int32 level, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, Int32 width, Int32 height, Int32 depth, Int32 border, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr pixels);
04488             [System.Security.SuppressUnmanagedCodeSecurity()]
04489             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureLightEXT", ExactSpelling = true)]
04490             internal extern static void TextureLightEXT(OpenTK.Graphics.OpenGL.ExtLightTexture pname);
04491             [System.Security.SuppressUnmanagedCodeSecurity()]
04492             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureMaterialEXT", ExactSpelling = true)]
04493             internal extern static void TextureMaterialEXT(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter mode);
04494             [System.Security.SuppressUnmanagedCodeSecurity()]
04495             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureNormalEXT", ExactSpelling = true)]
04496             internal extern static void TextureNormalEXT(OpenTK.Graphics.OpenGL.ExtTexturePerturbNormal mode);
04497             [System.Security.SuppressUnmanagedCodeSecurity()]
04498             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureParameterfEXT", ExactSpelling = true)]
04499             internal extern static void TextureParameterfEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single param);
04500             [System.Security.SuppressUnmanagedCodeSecurity()]
04501             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureParameterfvEXT", ExactSpelling = true)]
04502             internal extern static unsafe void TextureParameterfvEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Single* @params);
04503             [System.Security.SuppressUnmanagedCodeSecurity()]
04504             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureParameteriEXT", ExactSpelling = true)]
04505             internal extern static void TextureParameteriEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32 param);
04506             [System.Security.SuppressUnmanagedCodeSecurity()]
04507             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureParameterIivEXT", ExactSpelling = true)]
04508             internal extern static unsafe void TextureParameterIivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
04509             [System.Security.SuppressUnmanagedCodeSecurity()]
04510             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureParameterIuivEXT", ExactSpelling = true)]
04511             internal extern static unsafe void TextureParameterIuivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, UInt32* @params);
04512             [System.Security.SuppressUnmanagedCodeSecurity()]
04513             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureParameterivEXT", ExactSpelling = true)]
04514             internal extern static unsafe void TextureParameterivEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, OpenTK.Graphics.OpenGL.TextureParameterName pname, Int32* @params);
04515             [System.Security.SuppressUnmanagedCodeSecurity()]
04516             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureRangeAPPLE", ExactSpelling = true)]
04517             internal extern static void TextureRangeAPPLE(OpenTK.Graphics.OpenGL.AppleTextureRange target, Int32 length, IntPtr pointer);
04518             [System.Security.SuppressUnmanagedCodeSecurity()]
04519             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureRenderbufferEXT", ExactSpelling = true)]
04520             internal extern static void TextureRenderbufferEXT(UInt32 texture, OpenTK.Graphics.OpenGL.TextureTarget target, UInt32 renderbuffer);
04521             [System.Security.SuppressUnmanagedCodeSecurity()]
04522             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureSubImage1DEXT", ExactSpelling = true)]
04523             internal extern static void TextureSubImage1DEXT(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);
04524             [System.Security.SuppressUnmanagedCodeSecurity()]
04525             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureSubImage2DEXT", ExactSpelling = true)]
04526             internal extern static void TextureSubImage2DEXT(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);
04527             [System.Security.SuppressUnmanagedCodeSecurity()]
04528             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTextureSubImage3DEXT", ExactSpelling = true)]
04529             internal extern static void TextureSubImage3DEXT(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);
04530             [System.Security.SuppressUnmanagedCodeSecurity()]
04531             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTrackMatrixNV", ExactSpelling = true)]
04532             internal extern static void TrackMatrixNV(OpenTK.Graphics.OpenGL.AssemblyProgramTargetArb target, UInt32 address, OpenTK.Graphics.OpenGL.NvVertexProgram matrix, OpenTK.Graphics.OpenGL.NvVertexProgram transform);
04533             [System.Security.SuppressUnmanagedCodeSecurity()]
04534             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTransformFeedbackAttribsNV", ExactSpelling = true)]
04535             internal extern static unsafe void TransformFeedbackAttribsNV(UInt32 count, Int32* attribs, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode);
04536             [System.Security.SuppressUnmanagedCodeSecurity()]
04537             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTransformFeedbackVaryings", ExactSpelling = true)]
04538             internal extern static void TransformFeedbackVaryings(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.TransformFeedbackMode bufferMode);
04539             [System.Security.SuppressUnmanagedCodeSecurity()]
04540             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTransformFeedbackVaryingsEXT", ExactSpelling = true)]
04541             internal extern static void TransformFeedbackVaryingsEXT(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.ExtTransformFeedback bufferMode);
04542             [System.Security.SuppressUnmanagedCodeSecurity()]
04543             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTransformFeedbackVaryingsNV", ExactSpelling = true)]
04544             internal extern static void TransformFeedbackVaryingsNV(UInt32 program, Int32 count, String[] varyings, OpenTK.Graphics.OpenGL.NvTransformFeedback bufferMode);
04545             [System.Security.SuppressUnmanagedCodeSecurity()]
04546             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTranslated", ExactSpelling = true)]
04547             internal extern static void Translated(Double x, Double y, Double z);
04548             [System.Security.SuppressUnmanagedCodeSecurity()]
04549             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTranslatef", ExactSpelling = true)]
04550             internal extern static void Translatef(Single x, Single y, Single z);
04551             [System.Security.SuppressUnmanagedCodeSecurity()]
04552             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1f", ExactSpelling = true)]
04553             internal extern static void Uniform1f(Int32 location, Single v0);
04554             [System.Security.SuppressUnmanagedCodeSecurity()]
04555             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1fARB", ExactSpelling = true)]
04556             internal extern static void Uniform1fARB(Int32 location, Single v0);
04557             [System.Security.SuppressUnmanagedCodeSecurity()]
04558             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1fv", ExactSpelling = true)]
04559             internal extern static unsafe void Uniform1fv(Int32 location, Int32 count, Single* value);
04560             [System.Security.SuppressUnmanagedCodeSecurity()]
04561             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1fvARB", ExactSpelling = true)]
04562             internal extern static unsafe void Uniform1fvARB(Int32 location, Int32 count, Single* value);
04563             [System.Security.SuppressUnmanagedCodeSecurity()]
04564             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1i", ExactSpelling = true)]
04565             internal extern static void Uniform1i(Int32 location, Int32 v0);
04566             [System.Security.SuppressUnmanagedCodeSecurity()]
04567             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1iARB", ExactSpelling = true)]
04568             internal extern static void Uniform1iARB(Int32 location, Int32 v0);
04569             [System.Security.SuppressUnmanagedCodeSecurity()]
04570             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1iv", ExactSpelling = true)]
04571             internal extern static unsafe void Uniform1iv(Int32 location, Int32 count, Int32* value);
04572             [System.Security.SuppressUnmanagedCodeSecurity()]
04573             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1ivARB", ExactSpelling = true)]
04574             internal extern static unsafe void Uniform1ivARB(Int32 location, Int32 count, Int32* value);
04575             [System.Security.SuppressUnmanagedCodeSecurity()]
04576             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1ui", ExactSpelling = true)]
04577             internal extern static void Uniform1ui(Int32 location, UInt32 v0);
04578             [System.Security.SuppressUnmanagedCodeSecurity()]
04579             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1uiEXT", ExactSpelling = true)]
04580             internal extern static void Uniform1uiEXT(Int32 location, UInt32 v0);
04581             [System.Security.SuppressUnmanagedCodeSecurity()]
04582             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1uiv", ExactSpelling = true)]
04583             internal extern static unsafe void Uniform1uiv(Int32 location, Int32 count, UInt32* value);
04584             [System.Security.SuppressUnmanagedCodeSecurity()]
04585             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform1uivEXT", ExactSpelling = true)]
04586             internal extern static unsafe void Uniform1uivEXT(Int32 location, Int32 count, UInt32* value);
04587             [System.Security.SuppressUnmanagedCodeSecurity()]
04588             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2f", ExactSpelling = true)]
04589             internal extern static void Uniform2f(Int32 location, Single v0, Single v1);
04590             [System.Security.SuppressUnmanagedCodeSecurity()]
04591             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2fARB", ExactSpelling = true)]
04592             internal extern static void Uniform2fARB(Int32 location, Single v0, Single v1);
04593             [System.Security.SuppressUnmanagedCodeSecurity()]
04594             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2fv", ExactSpelling = true)]
04595             internal extern static unsafe void Uniform2fv(Int32 location, Int32 count, Single* value);
04596             [System.Security.SuppressUnmanagedCodeSecurity()]
04597             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2fvARB", ExactSpelling = true)]
04598             internal extern static unsafe void Uniform2fvARB(Int32 location, Int32 count, Single* value);
04599             [System.Security.SuppressUnmanagedCodeSecurity()]
04600             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2i", ExactSpelling = true)]
04601             internal extern static void Uniform2i(Int32 location, Int32 v0, Int32 v1);
04602             [System.Security.SuppressUnmanagedCodeSecurity()]
04603             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2iARB", ExactSpelling = true)]
04604             internal extern static void Uniform2iARB(Int32 location, Int32 v0, Int32 v1);
04605             [System.Security.SuppressUnmanagedCodeSecurity()]
04606             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2iv", ExactSpelling = true)]
04607             internal extern static unsafe void Uniform2iv(Int32 location, Int32 count, Int32* value);
04608             [System.Security.SuppressUnmanagedCodeSecurity()]
04609             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2ivARB", ExactSpelling = true)]
04610             internal extern static unsafe void Uniform2ivARB(Int32 location, Int32 count, Int32* value);
04611             [System.Security.SuppressUnmanagedCodeSecurity()]
04612             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2ui", ExactSpelling = true)]
04613             internal extern static void Uniform2ui(Int32 location, UInt32 v0, UInt32 v1);
04614             [System.Security.SuppressUnmanagedCodeSecurity()]
04615             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2uiEXT", ExactSpelling = true)]
04616             internal extern static void Uniform2uiEXT(Int32 location, UInt32 v0, UInt32 v1);
04617             [System.Security.SuppressUnmanagedCodeSecurity()]
04618             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2uiv", ExactSpelling = true)]
04619             internal extern static unsafe void Uniform2uiv(Int32 location, Int32 count, UInt32* value);
04620             [System.Security.SuppressUnmanagedCodeSecurity()]
04621             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform2uivEXT", ExactSpelling = true)]
04622             internal extern static unsafe void Uniform2uivEXT(Int32 location, Int32 count, UInt32* value);
04623             [System.Security.SuppressUnmanagedCodeSecurity()]
04624             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3f", ExactSpelling = true)]
04625             internal extern static void Uniform3f(Int32 location, Single v0, Single v1, Single v2);
04626             [System.Security.SuppressUnmanagedCodeSecurity()]
04627             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3fARB", ExactSpelling = true)]
04628             internal extern static void Uniform3fARB(Int32 location, Single v0, Single v1, Single v2);
04629             [System.Security.SuppressUnmanagedCodeSecurity()]
04630             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3fv", ExactSpelling = true)]
04631             internal extern static unsafe void Uniform3fv(Int32 location, Int32 count, Single* value);
04632             [System.Security.SuppressUnmanagedCodeSecurity()]
04633             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3fvARB", ExactSpelling = true)]
04634             internal extern static unsafe void Uniform3fvARB(Int32 location, Int32 count, Single* value);
04635             [System.Security.SuppressUnmanagedCodeSecurity()]
04636             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3i", ExactSpelling = true)]
04637             internal extern static void Uniform3i(Int32 location, Int32 v0, Int32 v1, Int32 v2);
04638             [System.Security.SuppressUnmanagedCodeSecurity()]
04639             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3iARB", ExactSpelling = true)]
04640             internal extern static void Uniform3iARB(Int32 location, Int32 v0, Int32 v1, Int32 v2);
04641             [System.Security.SuppressUnmanagedCodeSecurity()]
04642             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3iv", ExactSpelling = true)]
04643             internal extern static unsafe void Uniform3iv(Int32 location, Int32 count, Int32* value);
04644             [System.Security.SuppressUnmanagedCodeSecurity()]
04645             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3ivARB", ExactSpelling = true)]
04646             internal extern static unsafe void Uniform3ivARB(Int32 location, Int32 count, Int32* value);
04647             [System.Security.SuppressUnmanagedCodeSecurity()]
04648             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3ui", ExactSpelling = true)]
04649             internal extern static void Uniform3ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2);
04650             [System.Security.SuppressUnmanagedCodeSecurity()]
04651             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3uiEXT", ExactSpelling = true)]
04652             internal extern static void Uniform3uiEXT(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2);
04653             [System.Security.SuppressUnmanagedCodeSecurity()]
04654             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3uiv", ExactSpelling = true)]
04655             internal extern static unsafe void Uniform3uiv(Int32 location, Int32 count, UInt32* value);
04656             [System.Security.SuppressUnmanagedCodeSecurity()]
04657             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform3uivEXT", ExactSpelling = true)]
04658             internal extern static unsafe void Uniform3uivEXT(Int32 location, Int32 count, UInt32* value);
04659             [System.Security.SuppressUnmanagedCodeSecurity()]
04660             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4f", ExactSpelling = true)]
04661             internal extern static void Uniform4f(Int32 location, Single v0, Single v1, Single v2, Single v3);
04662             [System.Security.SuppressUnmanagedCodeSecurity()]
04663             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4fARB", ExactSpelling = true)]
04664             internal extern static void Uniform4fARB(Int32 location, Single v0, Single v1, Single v2, Single v3);
04665             [System.Security.SuppressUnmanagedCodeSecurity()]
04666             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4fv", ExactSpelling = true)]
04667             internal extern static unsafe void Uniform4fv(Int32 location, Int32 count, Single* value);
04668             [System.Security.SuppressUnmanagedCodeSecurity()]
04669             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4fvARB", ExactSpelling = true)]
04670             internal extern static unsafe void Uniform4fvARB(Int32 location, Int32 count, Single* value);
04671             [System.Security.SuppressUnmanagedCodeSecurity()]
04672             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4i", ExactSpelling = true)]
04673             internal extern static void Uniform4i(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3);
04674             [System.Security.SuppressUnmanagedCodeSecurity()]
04675             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4iARB", ExactSpelling = true)]
04676             internal extern static void Uniform4iARB(Int32 location, Int32 v0, Int32 v1, Int32 v2, Int32 v3);
04677             [System.Security.SuppressUnmanagedCodeSecurity()]
04678             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4iv", ExactSpelling = true)]
04679             internal extern static unsafe void Uniform4iv(Int32 location, Int32 count, Int32* value);
04680             [System.Security.SuppressUnmanagedCodeSecurity()]
04681             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4ivARB", ExactSpelling = true)]
04682             internal extern static unsafe void Uniform4ivARB(Int32 location, Int32 count, Int32* value);
04683             [System.Security.SuppressUnmanagedCodeSecurity()]
04684             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4ui", ExactSpelling = true)]
04685             internal extern static void Uniform4ui(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3);
04686             [System.Security.SuppressUnmanagedCodeSecurity()]
04687             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4uiEXT", ExactSpelling = true)]
04688             internal extern static void Uniform4uiEXT(Int32 location, UInt32 v0, UInt32 v1, UInt32 v2, UInt32 v3);
04689             [System.Security.SuppressUnmanagedCodeSecurity()]
04690             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4uiv", ExactSpelling = true)]
04691             internal extern static unsafe void Uniform4uiv(Int32 location, Int32 count, UInt32* value);
04692             [System.Security.SuppressUnmanagedCodeSecurity()]
04693             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniform4uivEXT", ExactSpelling = true)]
04694             internal extern static unsafe void Uniform4uivEXT(Int32 location, Int32 count, UInt32* value);
04695             [System.Security.SuppressUnmanagedCodeSecurity()]
04696             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformBlockBinding", ExactSpelling = true)]
04697             internal extern static void UniformBlockBinding(UInt32 program, UInt32 uniformBlockIndex, UInt32 uniformBlockBinding);
04698             [System.Security.SuppressUnmanagedCodeSecurity()]
04699             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformBufferEXT", ExactSpelling = true)]
04700             internal extern static void UniformBufferEXT(UInt32 program, Int32 location, UInt32 buffer);
04701             [System.Security.SuppressUnmanagedCodeSecurity()]
04702             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix2fv", ExactSpelling = true)]
04703             internal extern static unsafe void UniformMatrix2fv(Int32 location, Int32 count, bool transpose, Single* value);
04704             [System.Security.SuppressUnmanagedCodeSecurity()]
04705             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix2fvARB", ExactSpelling = true)]
04706             internal extern static unsafe void UniformMatrix2fvARB(Int32 location, Int32 count, bool transpose, Single* value);
04707             [System.Security.SuppressUnmanagedCodeSecurity()]
04708             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix2x3fv", ExactSpelling = true)]
04709             internal extern static unsafe void UniformMatrix2x3fv(Int32 location, Int32 count, bool transpose, Single* value);
04710             [System.Security.SuppressUnmanagedCodeSecurity()]
04711             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix2x4fv", ExactSpelling = true)]
04712             internal extern static unsafe void UniformMatrix2x4fv(Int32 location, Int32 count, bool transpose, Single* value);
04713             [System.Security.SuppressUnmanagedCodeSecurity()]
04714             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix3fv", ExactSpelling = true)]
04715             internal extern static unsafe void UniformMatrix3fv(Int32 location, Int32 count, bool transpose, Single* value);
04716             [System.Security.SuppressUnmanagedCodeSecurity()]
04717             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix3fvARB", ExactSpelling = true)]
04718             internal extern static unsafe void UniformMatrix3fvARB(Int32 location, Int32 count, bool transpose, Single* value);
04719             [System.Security.SuppressUnmanagedCodeSecurity()]
04720             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix3x2fv", ExactSpelling = true)]
04721             internal extern static unsafe void UniformMatrix3x2fv(Int32 location, Int32 count, bool transpose, Single* value);
04722             [System.Security.SuppressUnmanagedCodeSecurity()]
04723             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix3x4fv", ExactSpelling = true)]
04724             internal extern static unsafe void UniformMatrix3x4fv(Int32 location, Int32 count, bool transpose, Single* value);
04725             [System.Security.SuppressUnmanagedCodeSecurity()]
04726             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix4fv", ExactSpelling = true)]
04727             internal extern static unsafe void UniformMatrix4fv(Int32 location, Int32 count, bool transpose, Single* value);
04728             [System.Security.SuppressUnmanagedCodeSecurity()]
04729             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix4fvARB", ExactSpelling = true)]
04730             internal extern static unsafe void UniformMatrix4fvARB(Int32 location, Int32 count, bool transpose, Single* value);
04731             [System.Security.SuppressUnmanagedCodeSecurity()]
04732             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix4x2fv", ExactSpelling = true)]
04733             internal extern static unsafe void UniformMatrix4x2fv(Int32 location, Int32 count, bool transpose, Single* value);
04734             [System.Security.SuppressUnmanagedCodeSecurity()]
04735             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUniformMatrix4x3fv", ExactSpelling = true)]
04736             internal extern static unsafe void UniformMatrix4x3fv(Int32 location, Int32 count, bool transpose, Single* value);
04737             [System.Security.SuppressUnmanagedCodeSecurity()]
04738             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnlockArraysEXT", ExactSpelling = true)]
04739             internal extern static void UnlockArraysEXT();
04740             [System.Security.SuppressUnmanagedCodeSecurity()]
04741             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapBuffer", ExactSpelling = true)]
04742             internal extern static bool UnmapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target);
04743             [System.Security.SuppressUnmanagedCodeSecurity()]
04744             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapBufferARB", ExactSpelling = true)]
04745             internal extern static bool UnmapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target);
04746             [System.Security.SuppressUnmanagedCodeSecurity()]
04747             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapNamedBufferEXT", ExactSpelling = true)]
04748             internal extern static bool UnmapNamedBufferEXT(UInt32 buffer);
04749             [System.Security.SuppressUnmanagedCodeSecurity()]
04750             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapObjectBufferATI", ExactSpelling = true)]
04751             internal extern static void UnmapObjectBufferATI(UInt32 buffer);
04752             [System.Security.SuppressUnmanagedCodeSecurity()]
04753             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUpdateObjectBufferATI", ExactSpelling = true)]
04754             internal extern static void UpdateObjectBufferATI(UInt32 buffer, UInt32 offset, Int32 size, IntPtr pointer, OpenTK.Graphics.OpenGL.AtiVertexArrayObject preserve);
04755             [System.Security.SuppressUnmanagedCodeSecurity()]
04756             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUseProgram", ExactSpelling = true)]
04757             internal extern static void UseProgram(UInt32 program);
04758             [System.Security.SuppressUnmanagedCodeSecurity()]
04759             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUseProgramObjectARB", ExactSpelling = true)]
04760             internal extern static void UseProgramObjectARB(UInt32 programObj);
04761             [System.Security.SuppressUnmanagedCodeSecurity()]
04762             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glValidateProgram", ExactSpelling = true)]
04763             internal extern static void ValidateProgram(UInt32 program);
04764             [System.Security.SuppressUnmanagedCodeSecurity()]
04765             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glValidateProgramARB", ExactSpelling = true)]
04766             internal extern static void ValidateProgramARB(UInt32 programObj);
04767             [System.Security.SuppressUnmanagedCodeSecurity()]
04768             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantArrayObjectATI", ExactSpelling = true)]
04769             internal extern static void VariantArrayObjectATI(UInt32 id, OpenTK.Graphics.OpenGL.AtiVertexArrayObject type, Int32 stride, UInt32 buffer, UInt32 offset);
04770             [System.Security.SuppressUnmanagedCodeSecurity()]
04771             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantbvEXT", ExactSpelling = true)]
04772             internal extern static unsafe void VariantbvEXT(UInt32 id, SByte* addr);
04773             [System.Security.SuppressUnmanagedCodeSecurity()]
04774             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantdvEXT", ExactSpelling = true)]
04775             internal extern static unsafe void VariantdvEXT(UInt32 id, Double* addr);
04776             [System.Security.SuppressUnmanagedCodeSecurity()]
04777             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantfvEXT", ExactSpelling = true)]
04778             internal extern static unsafe void VariantfvEXT(UInt32 id, Single* addr);
04779             [System.Security.SuppressUnmanagedCodeSecurity()]
04780             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantivEXT", ExactSpelling = true)]
04781             internal extern static unsafe void VariantivEXT(UInt32 id, Int32* addr);
04782             [System.Security.SuppressUnmanagedCodeSecurity()]
04783             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantPointerEXT", ExactSpelling = true)]
04784             internal extern static void VariantPointerEXT(UInt32 id, OpenTK.Graphics.OpenGL.ExtVertexShader type, UInt32 stride, IntPtr addr);
04785             [System.Security.SuppressUnmanagedCodeSecurity()]
04786             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantsvEXT", ExactSpelling = true)]
04787             internal extern static unsafe void VariantsvEXT(UInt32 id, Int16* addr);
04788             [System.Security.SuppressUnmanagedCodeSecurity()]
04789             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantubvEXT", ExactSpelling = true)]
04790             internal extern static unsafe void VariantubvEXT(UInt32 id, Byte* addr);
04791             [System.Security.SuppressUnmanagedCodeSecurity()]
04792             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantuivEXT", ExactSpelling = true)]
04793             internal extern static unsafe void VariantuivEXT(UInt32 id, UInt32* addr);
04794             [System.Security.SuppressUnmanagedCodeSecurity()]
04795             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVariantusvEXT", ExactSpelling = true)]
04796             internal extern static unsafe void VariantusvEXT(UInt32 id, UInt16* addr);
04797             [System.Security.SuppressUnmanagedCodeSecurity()]
04798             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2d", ExactSpelling = true)]
04799             internal extern static void Vertex2d(Double x, Double y);
04800             [System.Security.SuppressUnmanagedCodeSecurity()]
04801             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2dv", ExactSpelling = true)]
04802             internal extern static unsafe void Vertex2dv(Double* v);
04803             [System.Security.SuppressUnmanagedCodeSecurity()]
04804             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2f", ExactSpelling = true)]
04805             internal extern static void Vertex2f(Single x, Single y);
04806             [System.Security.SuppressUnmanagedCodeSecurity()]
04807             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2fv", ExactSpelling = true)]
04808             internal extern static unsafe void Vertex2fv(Single* v);
04809             [System.Security.SuppressUnmanagedCodeSecurity()]
04810             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2hNV", ExactSpelling = true)]
04811             internal extern static void Vertex2hNV(OpenTK.Half x, OpenTK.Half y);
04812             [System.Security.SuppressUnmanagedCodeSecurity()]
04813             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2hvNV", ExactSpelling = true)]
04814             internal extern static unsafe void Vertex2hvNV(OpenTK.Half* v);
04815             [System.Security.SuppressUnmanagedCodeSecurity()]
04816             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2i", ExactSpelling = true)]
04817             internal extern static void Vertex2i(Int32 x, Int32 y);
04818             [System.Security.SuppressUnmanagedCodeSecurity()]
04819             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2iv", ExactSpelling = true)]
04820             internal extern static unsafe void Vertex2iv(Int32* v);
04821             [System.Security.SuppressUnmanagedCodeSecurity()]
04822             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2s", ExactSpelling = true)]
04823             internal extern static void Vertex2s(Int16 x, Int16 y);
04824             [System.Security.SuppressUnmanagedCodeSecurity()]
04825             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex2sv", ExactSpelling = true)]
04826             internal extern static unsafe void Vertex2sv(Int16* v);
04827             [System.Security.SuppressUnmanagedCodeSecurity()]
04828             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3d", ExactSpelling = true)]
04829             internal extern static void Vertex3d(Double x, Double y, Double z);
04830             [System.Security.SuppressUnmanagedCodeSecurity()]
04831             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3dv", ExactSpelling = true)]
04832             internal extern static unsafe void Vertex3dv(Double* v);
04833             [System.Security.SuppressUnmanagedCodeSecurity()]
04834             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3f", ExactSpelling = true)]
04835             internal extern static void Vertex3f(Single x, Single y, Single z);
04836             [System.Security.SuppressUnmanagedCodeSecurity()]
04837             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3fv", ExactSpelling = true)]
04838             internal extern static unsafe void Vertex3fv(Single* v);
04839             [System.Security.SuppressUnmanagedCodeSecurity()]
04840             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3hNV", ExactSpelling = true)]
04841             internal extern static void Vertex3hNV(OpenTK.Half x, OpenTK.Half y, OpenTK.Half z);
04842             [System.Security.SuppressUnmanagedCodeSecurity()]
04843             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3hvNV", ExactSpelling = true)]
04844             internal extern static unsafe void Vertex3hvNV(OpenTK.Half* v);
04845             [System.Security.SuppressUnmanagedCodeSecurity()]
04846             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3i", ExactSpelling = true)]
04847             internal extern static void Vertex3i(Int32 x, Int32 y, Int32 z);
04848             [System.Security.SuppressUnmanagedCodeSecurity()]
04849             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3iv", ExactSpelling = true)]
04850             internal extern static unsafe void Vertex3iv(Int32* v);
04851             [System.Security.SuppressUnmanagedCodeSecurity()]
04852             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3s", ExactSpelling = true)]
04853             internal extern static void Vertex3s(Int16 x, Int16 y, Int16 z);
04854             [System.Security.SuppressUnmanagedCodeSecurity()]
04855             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex3sv", ExactSpelling = true)]
04856             internal extern static unsafe void Vertex3sv(Int16* v);
04857             [System.Security.SuppressUnmanagedCodeSecurity()]
04858             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4d", ExactSpelling = true)]
04859             internal extern static void Vertex4d(Double x, Double y, Double z, Double w);
04860             [System.Security.SuppressUnmanagedCodeSecurity()]
04861             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4dv", ExactSpelling = true)]
04862             internal extern static unsafe void Vertex4dv(Double* v);
04863             [System.Security.SuppressUnmanagedCodeSecurity()]
04864             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4f", ExactSpelling = true)]
04865             internal extern static void Vertex4f(Single x, Single y, Single z, Single w);
04866             [System.Security.SuppressUnmanagedCodeSecurity()]
04867             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4fv", ExactSpelling = true)]
04868             internal extern static unsafe void Vertex4fv(Single* v);
04869             [System.Security.SuppressUnmanagedCodeSecurity()]
04870             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4hNV", ExactSpelling = true)]
04871             internal extern static void Vertex4hNV(OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w);
04872             [System.Security.SuppressUnmanagedCodeSecurity()]
04873             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4hvNV", ExactSpelling = true)]
04874             internal extern static unsafe void Vertex4hvNV(OpenTK.Half* v);
04875             [System.Security.SuppressUnmanagedCodeSecurity()]
04876             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4i", ExactSpelling = true)]
04877             internal extern static void Vertex4i(Int32 x, Int32 y, Int32 z, Int32 w);
04878             [System.Security.SuppressUnmanagedCodeSecurity()]
04879             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4iv", ExactSpelling = true)]
04880             internal extern static unsafe void Vertex4iv(Int32* v);
04881             [System.Security.SuppressUnmanagedCodeSecurity()]
04882             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4s", ExactSpelling = true)]
04883             internal extern static void Vertex4s(Int16 x, Int16 y, Int16 z, Int16 w);
04884             [System.Security.SuppressUnmanagedCodeSecurity()]
04885             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertex4sv", ExactSpelling = true)]
04886             internal extern static unsafe void Vertex4sv(Int16* v);
04887             [System.Security.SuppressUnmanagedCodeSecurity()]
04888             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexArrayParameteriAPPLE", ExactSpelling = true)]
04889             internal extern static void VertexArrayParameteriAPPLE(OpenTK.Graphics.OpenGL.AppleVertexArrayRange pname, Int32 param);
04890             [System.Security.SuppressUnmanagedCodeSecurity()]
04891             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexArrayRangeAPPLE", ExactSpelling = true)]
04892             internal extern static void VertexArrayRangeAPPLE(Int32 length, [OutAttribute] IntPtr pointer);
04893             [System.Security.SuppressUnmanagedCodeSecurity()]
04894             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexArrayRangeNV", ExactSpelling = true)]
04895             internal extern static void VertexArrayRangeNV(Int32 length, IntPtr pointer);
04896             [System.Security.SuppressUnmanagedCodeSecurity()]
04897             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1d", ExactSpelling = true)]
04898             internal extern static void VertexAttrib1d(UInt32 index, Double x);
04899             [System.Security.SuppressUnmanagedCodeSecurity()]
04900             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1dARB", ExactSpelling = true)]
04901             internal extern static void VertexAttrib1dARB(UInt32 index, Double x);
04902             [System.Security.SuppressUnmanagedCodeSecurity()]
04903             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1dNV", ExactSpelling = true)]
04904             internal extern static void VertexAttrib1dNV(UInt32 index, Double x);
04905             [System.Security.SuppressUnmanagedCodeSecurity()]
04906             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1dv", ExactSpelling = true)]
04907             internal extern static unsafe void VertexAttrib1dv(UInt32 index, Double* v);
04908             [System.Security.SuppressUnmanagedCodeSecurity()]
04909             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1dvARB", ExactSpelling = true)]
04910             internal extern static unsafe void VertexAttrib1dvARB(UInt32 index, Double* v);
04911             [System.Security.SuppressUnmanagedCodeSecurity()]
04912             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1dvNV", ExactSpelling = true)]
04913             internal extern static unsafe void VertexAttrib1dvNV(UInt32 index, Double* v);
04914             [System.Security.SuppressUnmanagedCodeSecurity()]
04915             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1f", ExactSpelling = true)]
04916             internal extern static void VertexAttrib1f(UInt32 index, Single x);
04917             [System.Security.SuppressUnmanagedCodeSecurity()]
04918             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1fARB", ExactSpelling = true)]
04919             internal extern static void VertexAttrib1fARB(UInt32 index, Single x);
04920             [System.Security.SuppressUnmanagedCodeSecurity()]
04921             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1fNV", ExactSpelling = true)]
04922             internal extern static void VertexAttrib1fNV(UInt32 index, Single x);
04923             [System.Security.SuppressUnmanagedCodeSecurity()]
04924             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1fv", ExactSpelling = true)]
04925             internal extern static unsafe void VertexAttrib1fv(UInt32 index, Single* v);
04926             [System.Security.SuppressUnmanagedCodeSecurity()]
04927             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1fvARB", ExactSpelling = true)]
04928             internal extern static unsafe void VertexAttrib1fvARB(UInt32 index, Single* v);
04929             [System.Security.SuppressUnmanagedCodeSecurity()]
04930             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1fvNV", ExactSpelling = true)]
04931             internal extern static unsafe void VertexAttrib1fvNV(UInt32 index, Single* v);
04932             [System.Security.SuppressUnmanagedCodeSecurity()]
04933             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1hNV", ExactSpelling = true)]
04934             internal extern static void VertexAttrib1hNV(UInt32 index, OpenTK.Half x);
04935             [System.Security.SuppressUnmanagedCodeSecurity()]
04936             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1hvNV", ExactSpelling = true)]
04937             internal extern static unsafe void VertexAttrib1hvNV(UInt32 index, OpenTK.Half* v);
04938             [System.Security.SuppressUnmanagedCodeSecurity()]
04939             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1s", ExactSpelling = true)]
04940             internal extern static void VertexAttrib1s(UInt32 index, Int16 x);
04941             [System.Security.SuppressUnmanagedCodeSecurity()]
04942             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1sARB", ExactSpelling = true)]
04943             internal extern static void VertexAttrib1sARB(UInt32 index, Int16 x);
04944             [System.Security.SuppressUnmanagedCodeSecurity()]
04945             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1sNV", ExactSpelling = true)]
04946             internal extern static void VertexAttrib1sNV(UInt32 index, Int16 x);
04947             [System.Security.SuppressUnmanagedCodeSecurity()]
04948             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1sv", ExactSpelling = true)]
04949             internal extern static unsafe void VertexAttrib1sv(UInt32 index, Int16* v);
04950             [System.Security.SuppressUnmanagedCodeSecurity()]
04951             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1svARB", ExactSpelling = true)]
04952             internal extern static unsafe void VertexAttrib1svARB(UInt32 index, Int16* v);
04953             [System.Security.SuppressUnmanagedCodeSecurity()]
04954             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib1svNV", ExactSpelling = true)]
04955             internal extern static unsafe void VertexAttrib1svNV(UInt32 index, Int16* v);
04956             [System.Security.SuppressUnmanagedCodeSecurity()]
04957             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2d", ExactSpelling = true)]
04958             internal extern static void VertexAttrib2d(UInt32 index, Double x, Double y);
04959             [System.Security.SuppressUnmanagedCodeSecurity()]
04960             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2dARB", ExactSpelling = true)]
04961             internal extern static void VertexAttrib2dARB(UInt32 index, Double x, Double y);
04962             [System.Security.SuppressUnmanagedCodeSecurity()]
04963             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2dNV", ExactSpelling = true)]
04964             internal extern static void VertexAttrib2dNV(UInt32 index, Double x, Double y);
04965             [System.Security.SuppressUnmanagedCodeSecurity()]
04966             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2dv", ExactSpelling = true)]
04967             internal extern static unsafe void VertexAttrib2dv(UInt32 index, Double* v);
04968             [System.Security.SuppressUnmanagedCodeSecurity()]
04969             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2dvARB", ExactSpelling = true)]
04970             internal extern static unsafe void VertexAttrib2dvARB(UInt32 index, Double* v);
04971             [System.Security.SuppressUnmanagedCodeSecurity()]
04972             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2dvNV", ExactSpelling = true)]
04973             internal extern static unsafe void VertexAttrib2dvNV(UInt32 index, Double* v);
04974             [System.Security.SuppressUnmanagedCodeSecurity()]
04975             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2f", ExactSpelling = true)]
04976             internal extern static void VertexAttrib2f(UInt32 index, Single x, Single y);
04977             [System.Security.SuppressUnmanagedCodeSecurity()]
04978             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2fARB", ExactSpelling = true)]
04979             internal extern static void VertexAttrib2fARB(UInt32 index, Single x, Single y);
04980             [System.Security.SuppressUnmanagedCodeSecurity()]
04981             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2fNV", ExactSpelling = true)]
04982             internal extern static void VertexAttrib2fNV(UInt32 index, Single x, Single y);
04983             [System.Security.SuppressUnmanagedCodeSecurity()]
04984             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2fv", ExactSpelling = true)]
04985             internal extern static unsafe void VertexAttrib2fv(UInt32 index, Single* v);
04986             [System.Security.SuppressUnmanagedCodeSecurity()]
04987             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2fvARB", ExactSpelling = true)]
04988             internal extern static unsafe void VertexAttrib2fvARB(UInt32 index, Single* v);
04989             [System.Security.SuppressUnmanagedCodeSecurity()]
04990             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2fvNV", ExactSpelling = true)]
04991             internal extern static unsafe void VertexAttrib2fvNV(UInt32 index, Single* v);
04992             [System.Security.SuppressUnmanagedCodeSecurity()]
04993             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2hNV", ExactSpelling = true)]
04994             internal extern static void VertexAttrib2hNV(UInt32 index, OpenTK.Half x, OpenTK.Half y);
04995             [System.Security.SuppressUnmanagedCodeSecurity()]
04996             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2hvNV", ExactSpelling = true)]
04997             internal extern static unsafe void VertexAttrib2hvNV(UInt32 index, OpenTK.Half* v);
04998             [System.Security.SuppressUnmanagedCodeSecurity()]
04999             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2s", ExactSpelling = true)]
05000             internal extern static void VertexAttrib2s(UInt32 index, Int16 x, Int16 y);
05001             [System.Security.SuppressUnmanagedCodeSecurity()]
05002             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2sARB", ExactSpelling = true)]
05003             internal extern static void VertexAttrib2sARB(UInt32 index, Int16 x, Int16 y);
05004             [System.Security.SuppressUnmanagedCodeSecurity()]
05005             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2sNV", ExactSpelling = true)]
05006             internal extern static void VertexAttrib2sNV(UInt32 index, Int16 x, Int16 y);
05007             [System.Security.SuppressUnmanagedCodeSecurity()]
05008             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2sv", ExactSpelling = true)]
05009             internal extern static unsafe void VertexAttrib2sv(UInt32 index, Int16* v);
05010             [System.Security.SuppressUnmanagedCodeSecurity()]
05011             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2svARB", ExactSpelling = true)]
05012             internal extern static unsafe void VertexAttrib2svARB(UInt32 index, Int16* v);
05013             [System.Security.SuppressUnmanagedCodeSecurity()]
05014             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib2svNV", ExactSpelling = true)]
05015             internal extern static unsafe void VertexAttrib2svNV(UInt32 index, Int16* v);
05016             [System.Security.SuppressUnmanagedCodeSecurity()]
05017             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3d", ExactSpelling = true)]
05018             internal extern static void VertexAttrib3d(UInt32 index, Double x, Double y, Double z);
05019             [System.Security.SuppressUnmanagedCodeSecurity()]
05020             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3dARB", ExactSpelling = true)]
05021             internal extern static void VertexAttrib3dARB(UInt32 index, Double x, Double y, Double z);
05022             [System.Security.SuppressUnmanagedCodeSecurity()]
05023             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3dNV", ExactSpelling = true)]
05024             internal extern static void VertexAttrib3dNV(UInt32 index, Double x, Double y, Double z);
05025             [System.Security.SuppressUnmanagedCodeSecurity()]
05026             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3dv", ExactSpelling = true)]
05027             internal extern static unsafe void VertexAttrib3dv(UInt32 index, Double* v);
05028             [System.Security.SuppressUnmanagedCodeSecurity()]
05029             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3dvARB", ExactSpelling = true)]
05030             internal extern static unsafe void VertexAttrib3dvARB(UInt32 index, Double* v);
05031             [System.Security.SuppressUnmanagedCodeSecurity()]
05032             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3dvNV", ExactSpelling = true)]
05033             internal extern static unsafe void VertexAttrib3dvNV(UInt32 index, Double* v);
05034             [System.Security.SuppressUnmanagedCodeSecurity()]
05035             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3f", ExactSpelling = true)]
05036             internal extern static void VertexAttrib3f(UInt32 index, Single x, Single y, Single z);
05037             [System.Security.SuppressUnmanagedCodeSecurity()]
05038             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3fARB", ExactSpelling = true)]
05039             internal extern static void VertexAttrib3fARB(UInt32 index, Single x, Single y, Single z);
05040             [System.Security.SuppressUnmanagedCodeSecurity()]
05041             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3fNV", ExactSpelling = true)]
05042             internal extern static void VertexAttrib3fNV(UInt32 index, Single x, Single y, Single z);
05043             [System.Security.SuppressUnmanagedCodeSecurity()]
05044             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3fv", ExactSpelling = true)]
05045             internal extern static unsafe void VertexAttrib3fv(UInt32 index, Single* v);
05046             [System.Security.SuppressUnmanagedCodeSecurity()]
05047             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3fvARB", ExactSpelling = true)]
05048             internal extern static unsafe void VertexAttrib3fvARB(UInt32 index, Single* v);
05049             [System.Security.SuppressUnmanagedCodeSecurity()]
05050             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3fvNV", ExactSpelling = true)]
05051             internal extern static unsafe void VertexAttrib3fvNV(UInt32 index, Single* v);
05052             [System.Security.SuppressUnmanagedCodeSecurity()]
05053             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3hNV", ExactSpelling = true)]
05054             internal extern static void VertexAttrib3hNV(UInt32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z);
05055             [System.Security.SuppressUnmanagedCodeSecurity()]
05056             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3hvNV", ExactSpelling = true)]
05057             internal extern static unsafe void VertexAttrib3hvNV(UInt32 index, OpenTK.Half* v);
05058             [System.Security.SuppressUnmanagedCodeSecurity()]
05059             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3s", ExactSpelling = true)]
05060             internal extern static void VertexAttrib3s(UInt32 index, Int16 x, Int16 y, Int16 z);
05061             [System.Security.SuppressUnmanagedCodeSecurity()]
05062             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3sARB", ExactSpelling = true)]
05063             internal extern static void VertexAttrib3sARB(UInt32 index, Int16 x, Int16 y, Int16 z);
05064             [System.Security.SuppressUnmanagedCodeSecurity()]
05065             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3sNV", ExactSpelling = true)]
05066             internal extern static void VertexAttrib3sNV(UInt32 index, Int16 x, Int16 y, Int16 z);
05067             [System.Security.SuppressUnmanagedCodeSecurity()]
05068             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3sv", ExactSpelling = true)]
05069             internal extern static unsafe void VertexAttrib3sv(UInt32 index, Int16* v);
05070             [System.Security.SuppressUnmanagedCodeSecurity()]
05071             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3svARB", ExactSpelling = true)]
05072             internal extern static unsafe void VertexAttrib3svARB(UInt32 index, Int16* v);
05073             [System.Security.SuppressUnmanagedCodeSecurity()]
05074             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib3svNV", ExactSpelling = true)]
05075             internal extern static unsafe void VertexAttrib3svNV(UInt32 index, Int16* v);
05076             [System.Security.SuppressUnmanagedCodeSecurity()]
05077             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4bv", ExactSpelling = true)]
05078             internal extern static unsafe void VertexAttrib4bv(UInt32 index, SByte* v);
05079             [System.Security.SuppressUnmanagedCodeSecurity()]
05080             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4bvARB", ExactSpelling = true)]
05081             internal extern static unsafe void VertexAttrib4bvARB(UInt32 index, SByte* v);
05082             [System.Security.SuppressUnmanagedCodeSecurity()]
05083             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4d", ExactSpelling = true)]
05084             internal extern static void VertexAttrib4d(UInt32 index, Double x, Double y, Double z, Double w);
05085             [System.Security.SuppressUnmanagedCodeSecurity()]
05086             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4dARB", ExactSpelling = true)]
05087             internal extern static void VertexAttrib4dARB(UInt32 index, Double x, Double y, Double z, Double w);
05088             [System.Security.SuppressUnmanagedCodeSecurity()]
05089             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4dNV", ExactSpelling = true)]
05090             internal extern static void VertexAttrib4dNV(UInt32 index, Double x, Double y, Double z, Double w);
05091             [System.Security.SuppressUnmanagedCodeSecurity()]
05092             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4dv", ExactSpelling = true)]
05093             internal extern static unsafe void VertexAttrib4dv(UInt32 index, Double* v);
05094             [System.Security.SuppressUnmanagedCodeSecurity()]
05095             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4dvARB", ExactSpelling = true)]
05096             internal extern static unsafe void VertexAttrib4dvARB(UInt32 index, Double* v);
05097             [System.Security.SuppressUnmanagedCodeSecurity()]
05098             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4dvNV", ExactSpelling = true)]
05099             internal extern static unsafe void VertexAttrib4dvNV(UInt32 index, Double* v);
05100             [System.Security.SuppressUnmanagedCodeSecurity()]
05101             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4f", ExactSpelling = true)]
05102             internal extern static void VertexAttrib4f(UInt32 index, Single x, Single y, Single z, Single w);
05103             [System.Security.SuppressUnmanagedCodeSecurity()]
05104             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4fARB", ExactSpelling = true)]
05105             internal extern static void VertexAttrib4fARB(UInt32 index, Single x, Single y, Single z, Single w);
05106             [System.Security.SuppressUnmanagedCodeSecurity()]
05107             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4fNV", ExactSpelling = true)]
05108             internal extern static void VertexAttrib4fNV(UInt32 index, Single x, Single y, Single z, Single w);
05109             [System.Security.SuppressUnmanagedCodeSecurity()]
05110             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4fv", ExactSpelling = true)]
05111             internal extern static unsafe void VertexAttrib4fv(UInt32 index, Single* v);
05112             [System.Security.SuppressUnmanagedCodeSecurity()]
05113             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4fvARB", ExactSpelling = true)]
05114             internal extern static unsafe void VertexAttrib4fvARB(UInt32 index, Single* v);
05115             [System.Security.SuppressUnmanagedCodeSecurity()]
05116             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4fvNV", ExactSpelling = true)]
05117             internal extern static unsafe void VertexAttrib4fvNV(UInt32 index, Single* v);
05118             [System.Security.SuppressUnmanagedCodeSecurity()]
05119             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4hNV", ExactSpelling = true)]
05120             internal extern static void VertexAttrib4hNV(UInt32 index, OpenTK.Half x, OpenTK.Half y, OpenTK.Half z, OpenTK.Half w);
05121             [System.Security.SuppressUnmanagedCodeSecurity()]
05122             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4hvNV", ExactSpelling = true)]
05123             internal extern static unsafe void VertexAttrib4hvNV(UInt32 index, OpenTK.Half* v);
05124             [System.Security.SuppressUnmanagedCodeSecurity()]
05125             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4iv", ExactSpelling = true)]
05126             internal extern static unsafe void VertexAttrib4iv(UInt32 index, Int32* v);
05127             [System.Security.SuppressUnmanagedCodeSecurity()]
05128             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4ivARB", ExactSpelling = true)]
05129             internal extern static unsafe void VertexAttrib4ivARB(UInt32 index, Int32* v);
05130             [System.Security.SuppressUnmanagedCodeSecurity()]
05131             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Nbv", ExactSpelling = true)]
05132             internal extern static unsafe void VertexAttrib4Nbv(UInt32 index, SByte* v);
05133             [System.Security.SuppressUnmanagedCodeSecurity()]
05134             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NbvARB", ExactSpelling = true)]
05135             internal extern static unsafe void VertexAttrib4NbvARB(UInt32 index, SByte* v);
05136             [System.Security.SuppressUnmanagedCodeSecurity()]
05137             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Niv", ExactSpelling = true)]
05138             internal extern static unsafe void VertexAttrib4Niv(UInt32 index, Int32* v);
05139             [System.Security.SuppressUnmanagedCodeSecurity()]
05140             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NivARB", ExactSpelling = true)]
05141             internal extern static unsafe void VertexAttrib4NivARB(UInt32 index, Int32* v);
05142             [System.Security.SuppressUnmanagedCodeSecurity()]
05143             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Nsv", ExactSpelling = true)]
05144             internal extern static unsafe void VertexAttrib4Nsv(UInt32 index, Int16* v);
05145             [System.Security.SuppressUnmanagedCodeSecurity()]
05146             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NsvARB", ExactSpelling = true)]
05147             internal extern static unsafe void VertexAttrib4NsvARB(UInt32 index, Int16* v);
05148             [System.Security.SuppressUnmanagedCodeSecurity()]
05149             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Nub", ExactSpelling = true)]
05150             internal extern static void VertexAttrib4Nub(UInt32 index, Byte x, Byte y, Byte z, Byte w);
05151             [System.Security.SuppressUnmanagedCodeSecurity()]
05152             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NubARB", ExactSpelling = true)]
05153             internal extern static void VertexAttrib4NubARB(UInt32 index, Byte x, Byte y, Byte z, Byte w);
05154             [System.Security.SuppressUnmanagedCodeSecurity()]
05155             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Nubv", ExactSpelling = true)]
05156             internal extern static unsafe void VertexAttrib4Nubv(UInt32 index, Byte* v);
05157             [System.Security.SuppressUnmanagedCodeSecurity()]
05158             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NubvARB", ExactSpelling = true)]
05159             internal extern static unsafe void VertexAttrib4NubvARB(UInt32 index, Byte* v);
05160             [System.Security.SuppressUnmanagedCodeSecurity()]
05161             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Nuiv", ExactSpelling = true)]
05162             internal extern static unsafe void VertexAttrib4Nuiv(UInt32 index, UInt32* v);
05163             [System.Security.SuppressUnmanagedCodeSecurity()]
05164             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NuivARB", ExactSpelling = true)]
05165             internal extern static unsafe void VertexAttrib4NuivARB(UInt32 index, UInt32* v);
05166             [System.Security.SuppressUnmanagedCodeSecurity()]
05167             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4Nusv", ExactSpelling = true)]
05168             internal extern static unsafe void VertexAttrib4Nusv(UInt32 index, UInt16* v);
05169             [System.Security.SuppressUnmanagedCodeSecurity()]
05170             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4NusvARB", ExactSpelling = true)]
05171             internal extern static unsafe void VertexAttrib4NusvARB(UInt32 index, UInt16* v);
05172             [System.Security.SuppressUnmanagedCodeSecurity()]
05173             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4s", ExactSpelling = true)]
05174             internal extern static void VertexAttrib4s(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w);
05175             [System.Security.SuppressUnmanagedCodeSecurity()]
05176             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4sARB", ExactSpelling = true)]
05177             internal extern static void VertexAttrib4sARB(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w);
05178             [System.Security.SuppressUnmanagedCodeSecurity()]
05179             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4sNV", ExactSpelling = true)]
05180             internal extern static void VertexAttrib4sNV(UInt32 index, Int16 x, Int16 y, Int16 z, Int16 w);
05181             [System.Security.SuppressUnmanagedCodeSecurity()]
05182             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4sv", ExactSpelling = true)]
05183             internal extern static unsafe void VertexAttrib4sv(UInt32 index, Int16* v);
05184             [System.Security.SuppressUnmanagedCodeSecurity()]
05185             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4svARB", ExactSpelling = true)]
05186             internal extern static unsafe void VertexAttrib4svARB(UInt32 index, Int16* v);
05187             [System.Security.SuppressUnmanagedCodeSecurity()]
05188             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4svNV", ExactSpelling = true)]
05189             internal extern static unsafe void VertexAttrib4svNV(UInt32 index, Int16* v);
05190             [System.Security.SuppressUnmanagedCodeSecurity()]
05191             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4ubNV", ExactSpelling = true)]
05192             internal extern static void VertexAttrib4ubNV(UInt32 index, Byte x, Byte y, Byte z, Byte w);
05193             [System.Security.SuppressUnmanagedCodeSecurity()]
05194             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4ubv", ExactSpelling = true)]
05195             internal extern static unsafe void VertexAttrib4ubv(UInt32 index, Byte* v);
05196             [System.Security.SuppressUnmanagedCodeSecurity()]
05197             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4ubvARB", ExactSpelling = true)]
05198             internal extern static unsafe void VertexAttrib4ubvARB(UInt32 index, Byte* v);
05199             [System.Security.SuppressUnmanagedCodeSecurity()]
05200             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4ubvNV", ExactSpelling = true)]
05201             internal extern static unsafe void VertexAttrib4ubvNV(UInt32 index, Byte* v);
05202             [System.Security.SuppressUnmanagedCodeSecurity()]
05203             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4uiv", ExactSpelling = true)]
05204             internal extern static unsafe void VertexAttrib4uiv(UInt32 index, UInt32* v);
05205             [System.Security.SuppressUnmanagedCodeSecurity()]
05206             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4uivARB", ExactSpelling = true)]
05207             internal extern static unsafe void VertexAttrib4uivARB(UInt32 index, UInt32* v);
05208             [System.Security.SuppressUnmanagedCodeSecurity()]
05209             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4usv", ExactSpelling = true)]
05210             internal extern static unsafe void VertexAttrib4usv(UInt32 index, UInt16* v);
05211             [System.Security.SuppressUnmanagedCodeSecurity()]
05212             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttrib4usvARB", ExactSpelling = true)]
05213             internal extern static unsafe void VertexAttrib4usvARB(UInt32 index, UInt16* v);
05214             [System.Security.SuppressUnmanagedCodeSecurity()]
05215             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribArrayObjectATI", ExactSpelling = true)]
05216             internal extern static void VertexAttribArrayObjectATI(UInt32 index, Int32 size, OpenTK.Graphics.OpenGL.AtiVertexAttribArrayObject type, bool normalized, Int32 stride, UInt32 buffer, UInt32 offset);
05217             [System.Security.SuppressUnmanagedCodeSecurity()]
05218             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribDivisorARB", ExactSpelling = true)]
05219             internal extern static void VertexAttribDivisorARB(UInt32 index, UInt32 divisor);
05220             [System.Security.SuppressUnmanagedCodeSecurity()]
05221             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1i", ExactSpelling = true)]
05222             internal extern static void VertexAttribI1i(UInt32 index, Int32 x);
05223             [System.Security.SuppressUnmanagedCodeSecurity()]
05224             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1iEXT", ExactSpelling = true)]
05225             internal extern static void VertexAttribI1iEXT(UInt32 index, Int32 x);
05226             [System.Security.SuppressUnmanagedCodeSecurity()]
05227             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1iv", ExactSpelling = true)]
05228             internal extern static unsafe void VertexAttribI1iv(UInt32 index, Int32* v);
05229             [System.Security.SuppressUnmanagedCodeSecurity()]
05230             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1ivEXT", ExactSpelling = true)]
05231             internal extern static unsafe void VertexAttribI1ivEXT(UInt32 index, Int32* v);
05232             [System.Security.SuppressUnmanagedCodeSecurity()]
05233             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1ui", ExactSpelling = true)]
05234             internal extern static void VertexAttribI1ui(UInt32 index, UInt32 x);
05235             [System.Security.SuppressUnmanagedCodeSecurity()]
05236             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1uiEXT", ExactSpelling = true)]
05237             internal extern static void VertexAttribI1uiEXT(UInt32 index, UInt32 x);
05238             [System.Security.SuppressUnmanagedCodeSecurity()]
05239             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1uiv", ExactSpelling = true)]
05240             internal extern static unsafe void VertexAttribI1uiv(UInt32 index, UInt32* v);
05241             [System.Security.SuppressUnmanagedCodeSecurity()]
05242             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI1uivEXT", ExactSpelling = true)]
05243             internal extern static unsafe void VertexAttribI1uivEXT(UInt32 index, UInt32* v);
05244             [System.Security.SuppressUnmanagedCodeSecurity()]
05245             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2i", ExactSpelling = true)]
05246             internal extern static void VertexAttribI2i(UInt32 index, Int32 x, Int32 y);
05247             [System.Security.SuppressUnmanagedCodeSecurity()]
05248             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2iEXT", ExactSpelling = true)]
05249             internal extern static void VertexAttribI2iEXT(UInt32 index, Int32 x, Int32 y);
05250             [System.Security.SuppressUnmanagedCodeSecurity()]
05251             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2iv", ExactSpelling = true)]
05252             internal extern static unsafe void VertexAttribI2iv(UInt32 index, Int32* v);
05253             [System.Security.SuppressUnmanagedCodeSecurity()]
05254             [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexAttribI2ivEXT", ExactSpelling = true)]