00001 #region License
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #endregion
00027 #if EXPERIMENTAL
00028 namespace OpenTK.Graphics.ES11
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 = "glActiveTexture", ExactSpelling = true)]
00044 internal extern static void ActiveTexture(OpenTK.Graphics.ES11.All texture);
00045 [System.Security.SuppressUnmanagedCodeSecurity()]
00046 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFunc", ExactSpelling = true)]
00047 internal extern static void AlphaFunc(OpenTK.Graphics.ES11.All func, Single @ref);
00048 [System.Security.SuppressUnmanagedCodeSecurity()]
00049 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFuncx", ExactSpelling = true)]
00050 internal extern static void AlphaFuncx(OpenTK.Graphics.ES11.All func, int @ref);
00051 [System.Security.SuppressUnmanagedCodeSecurity()]
00052 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glAlphaFuncxOES", ExactSpelling = true)]
00053 internal extern static void AlphaFuncxOES(OpenTK.Graphics.ES11.All func, int @ref);
00054 [System.Security.SuppressUnmanagedCodeSecurity()]
00055 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindBuffer", ExactSpelling = true)]
00056 internal extern static void BindBuffer(OpenTK.Graphics.ES11.All target, UInt32 buffer);
00057 [System.Security.SuppressUnmanagedCodeSecurity()]
00058 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindFramebufferOES", ExactSpelling = true)]
00059 internal extern static void BindFramebufferOES(OpenTK.Graphics.ES11.All target, UInt32 framebuffer);
00060 [System.Security.SuppressUnmanagedCodeSecurity()]
00061 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindRenderbufferOES", ExactSpelling = true)]
00062 internal extern static void BindRenderbufferOES(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer);
00063 [System.Security.SuppressUnmanagedCodeSecurity()]
00064 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTexture", ExactSpelling = true)]
00065 internal extern static void BindTexture(OpenTK.Graphics.ES11.All target, UInt32 texture);
00066 [System.Security.SuppressUnmanagedCodeSecurity()]
00067 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationOES", ExactSpelling = true)]
00068 internal extern static void BlendEquationOES(OpenTK.Graphics.ES11.All mode);
00069 [System.Security.SuppressUnmanagedCodeSecurity()]
00070 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparateOES", ExactSpelling = true)]
00071 internal extern static void BlendEquationSeparateOES(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha);
00072 [System.Security.SuppressUnmanagedCodeSecurity()]
00073 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFunc", ExactSpelling = true)]
00074 internal extern static void BlendFunc(OpenTK.Graphics.ES11.All sfactor, OpenTK.Graphics.ES11.All dfactor);
00075 [System.Security.SuppressUnmanagedCodeSecurity()]
00076 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendFuncSeparateOES", ExactSpelling = true)]
00077 internal extern static void BlendFuncSeparateOES(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha);
00078 [System.Security.SuppressUnmanagedCodeSecurity()]
00079 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferData", ExactSpelling = true)]
00080 internal extern static void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, IntPtr data, OpenTK.Graphics.ES11.All usage);
00081 [System.Security.SuppressUnmanagedCodeSecurity()]
00082 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBufferSubData", ExactSpelling = true)]
00083 internal extern static void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, IntPtr data);
00084 [System.Security.SuppressUnmanagedCodeSecurity()]
00085 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCheckFramebufferStatusOES", ExactSpelling = true)]
00086 internal extern static OpenTK.Graphics.ES11.All CheckFramebufferStatusOES(OpenTK.Graphics.ES11.All target);
00087 [System.Security.SuppressUnmanagedCodeSecurity()]
00088 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClear", ExactSpelling = true)]
00089 internal extern static void Clear(UInt32 mask);
00090 [System.Security.SuppressUnmanagedCodeSecurity()]
00091 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearColor", ExactSpelling = true)]
00092 internal extern static void ClearColor(Single red, Single green, Single blue, Single alpha);
00093 [System.Security.SuppressUnmanagedCodeSecurity()]
00094 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearColorx", ExactSpelling = true)]
00095 internal extern static void ClearColorx(int red, int green, int blue, int alpha);
00096 [System.Security.SuppressUnmanagedCodeSecurity()]
00097 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearColorxOES", ExactSpelling = true)]
00098 internal extern static void ClearColorxOES(int red, int green, int blue, int alpha);
00099 [System.Security.SuppressUnmanagedCodeSecurity()]
00100 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearDepthf", ExactSpelling = true)]
00101 internal extern static void ClearDepthf(Single depth);
00102 [System.Security.SuppressUnmanagedCodeSecurity()]
00103 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearDepthfOES", ExactSpelling = true)]
00104 internal extern static void ClearDepthfOES(Single depth);
00105 [System.Security.SuppressUnmanagedCodeSecurity()]
00106 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearDepthx", ExactSpelling = true)]
00107 internal extern static void ClearDepthx(int depth);
00108 [System.Security.SuppressUnmanagedCodeSecurity()]
00109 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearDepthxOES", ExactSpelling = true)]
00110 internal extern static void ClearDepthxOES(int depth);
00111 [System.Security.SuppressUnmanagedCodeSecurity()]
00112 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClearStencil", ExactSpelling = true)]
00113 internal extern static void ClearStencil(Int32 s);
00114 [System.Security.SuppressUnmanagedCodeSecurity()]
00115 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClientActiveTexture", ExactSpelling = true)]
00116 internal extern static void ClientActiveTexture(OpenTK.Graphics.ES11.All texture);
00117 [System.Security.SuppressUnmanagedCodeSecurity()]
00118 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlanef", ExactSpelling = true)]
00119 internal extern static unsafe void ClipPlanef(OpenTK.Graphics.ES11.All plane, Single* equation);
00120 [System.Security.SuppressUnmanagedCodeSecurity()]
00121 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlanefIMG", ExactSpelling = true)]
00122 internal extern static unsafe void ClipPlanefIMG(OpenTK.Graphics.ES11.All p, Single* eqn);
00123 [System.Security.SuppressUnmanagedCodeSecurity()]
00124 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlanefOES", ExactSpelling = true)]
00125 internal extern static unsafe void ClipPlanefOES(OpenTK.Graphics.ES11.All plane, Single* equation);
00126 [System.Security.SuppressUnmanagedCodeSecurity()]
00127 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlanex", ExactSpelling = true)]
00128 internal extern static unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation);
00129 [System.Security.SuppressUnmanagedCodeSecurity()]
00130 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlanexIMG", ExactSpelling = true)]
00131 internal extern static unsafe void ClipPlanexIMG(OpenTK.Graphics.ES11.All p, int* eqn);
00132 [System.Security.SuppressUnmanagedCodeSecurity()]
00133 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glClipPlanexOES", ExactSpelling = true)]
00134 internal extern static unsafe void ClipPlanexOES(OpenTK.Graphics.ES11.All plane, int* equation);
00135 [System.Security.SuppressUnmanagedCodeSecurity()]
00136 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4f", ExactSpelling = true)]
00137 internal extern static void Color4f(Single red, Single green, Single blue, Single alpha);
00138 [System.Security.SuppressUnmanagedCodeSecurity()]
00139 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4ub", ExactSpelling = true)]
00140 internal extern static void Color4ub(Byte red, Byte green, Byte blue, Byte alpha);
00141 [System.Security.SuppressUnmanagedCodeSecurity()]
00142 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4x", ExactSpelling = true)]
00143 internal extern static void Color4x(int red, int green, int blue, int alpha);
00144 [System.Security.SuppressUnmanagedCodeSecurity()]
00145 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColor4xOES", ExactSpelling = true)]
00146 internal extern static void Color4xOES(int red, int green, int blue, int alpha);
00147 [System.Security.SuppressUnmanagedCodeSecurity()]
00148 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorMask", ExactSpelling = true)]
00149 internal extern static void ColorMask(bool red, bool green, bool blue, bool alpha);
00150 [System.Security.SuppressUnmanagedCodeSecurity()]
00151 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorPointer", ExactSpelling = true)]
00152 internal extern static void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00153 [System.Security.SuppressUnmanagedCodeSecurity()]
00154 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexImage2D", ExactSpelling = true)]
00155 internal extern static void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data);
00156 [System.Security.SuppressUnmanagedCodeSecurity()]
00157 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCompressedTexSubImage2D", ExactSpelling = true)]
00158 internal extern static void CompressedTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, IntPtr data);
00159 [System.Security.SuppressUnmanagedCodeSecurity()]
00160 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexImage2D", ExactSpelling = true)]
00161 internal extern static void CopyTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border);
00162 [System.Security.SuppressUnmanagedCodeSecurity()]
00163 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyTexSubImage2D", ExactSpelling = true)]
00164 internal extern static void CopyTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height);
00165 [System.Security.SuppressUnmanagedCodeSecurity()]
00166 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCullFace", ExactSpelling = true)]
00167 internal extern static void CullFace(OpenTK.Graphics.ES11.All mode);
00168 [System.Security.SuppressUnmanagedCodeSecurity()]
00169 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCurrentPaletteMatrixOES", ExactSpelling = true)]
00170 internal extern static void CurrentPaletteMatrixOES(UInt32 matrixpaletteindex);
00171 [System.Security.SuppressUnmanagedCodeSecurity()]
00172 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteBuffers", ExactSpelling = true)]
00173 internal extern static unsafe void DeleteBuffers(Int32 n, UInt32* buffers);
00174 [System.Security.SuppressUnmanagedCodeSecurity()]
00175 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFencesNV", ExactSpelling = true)]
00176 internal extern static unsafe void DeleteFencesNV(Int32 n, UInt32* fences);
00177 [System.Security.SuppressUnmanagedCodeSecurity()]
00178 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteFramebuffersOES", ExactSpelling = true)]
00179 internal extern static unsafe void DeleteFramebuffersOES(Int32 n, UInt32* framebuffers);
00180 [System.Security.SuppressUnmanagedCodeSecurity()]
00181 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteRenderbuffersOES", ExactSpelling = true)]
00182 internal extern static unsafe void DeleteRenderbuffersOES(Int32 n, UInt32* renderbuffers);
00183 [System.Security.SuppressUnmanagedCodeSecurity()]
00184 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteTextures", ExactSpelling = true)]
00185 internal extern static unsafe void DeleteTextures(Int32 n, UInt32* textures);
00186 [System.Security.SuppressUnmanagedCodeSecurity()]
00187 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthFunc", ExactSpelling = true)]
00188 internal extern static void DepthFunc(OpenTK.Graphics.ES11.All func);
00189 [System.Security.SuppressUnmanagedCodeSecurity()]
00190 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthMask", ExactSpelling = true)]
00191 internal extern static void DepthMask(bool flag);
00192 [System.Security.SuppressUnmanagedCodeSecurity()]
00193 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthRangef", ExactSpelling = true)]
00194 internal extern static void DepthRangef(Single zNear, Single zFar);
00195 [System.Security.SuppressUnmanagedCodeSecurity()]
00196 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthRangefOES", ExactSpelling = true)]
00197 internal extern static void DepthRangefOES(Single zNear, Single zFar);
00198 [System.Security.SuppressUnmanagedCodeSecurity()]
00199 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthRangex", ExactSpelling = true)]
00200 internal extern static void DepthRangex(int zNear, int zFar);
00201 [System.Security.SuppressUnmanagedCodeSecurity()]
00202 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDepthRangexOES", ExactSpelling = true)]
00203 internal extern static void DepthRangexOES(int zNear, int zFar);
00204 [System.Security.SuppressUnmanagedCodeSecurity()]
00205 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisable", ExactSpelling = true)]
00206 internal extern static void Disable(OpenTK.Graphics.ES11.All cap);
00207 [System.Security.SuppressUnmanagedCodeSecurity()]
00208 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableClientState", ExactSpelling = true)]
00209 internal extern static void DisableClientState(OpenTK.Graphics.ES11.All array);
00210 [System.Security.SuppressUnmanagedCodeSecurity()]
00211 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDisableDriverControlQCOM", ExactSpelling = true)]
00212 internal extern static void DisableDriverControlQCOM(UInt32 driverControl);
00213 [System.Security.SuppressUnmanagedCodeSecurity()]
00214 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawArrays", ExactSpelling = true)]
00215 internal extern static void DrawArrays(OpenTK.Graphics.ES11.All mode, Int32 first, Int32 count);
00216 [System.Security.SuppressUnmanagedCodeSecurity()]
00217 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawElements", ExactSpelling = true)]
00218 internal extern static void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, IntPtr indices);
00219 [System.Security.SuppressUnmanagedCodeSecurity()]
00220 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexfOES", ExactSpelling = true)]
00221 internal extern static void DrawTexfOES(Single x, Single y, Single z, Single width, Single height);
00222 [System.Security.SuppressUnmanagedCodeSecurity()]
00223 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexfvOES", ExactSpelling = true)]
00224 internal extern static unsafe void DrawTexfvOES(Single* coords);
00225 [System.Security.SuppressUnmanagedCodeSecurity()]
00226 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexiOES", ExactSpelling = true)]
00227 internal extern static void DrawTexiOES(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height);
00228 [System.Security.SuppressUnmanagedCodeSecurity()]
00229 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexivOES", ExactSpelling = true)]
00230 internal extern static unsafe void DrawTexivOES(Int32* coords);
00231 [System.Security.SuppressUnmanagedCodeSecurity()]
00232 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexsOES", ExactSpelling = true)]
00233 internal extern static void DrawTexsOES(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height);
00234 [System.Security.SuppressUnmanagedCodeSecurity()]
00235 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexsvOES", ExactSpelling = true)]
00236 internal extern static unsafe void DrawTexsvOES(Int16* coords);
00237 [System.Security.SuppressUnmanagedCodeSecurity()]
00238 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexxOES", ExactSpelling = true)]
00239 internal extern static void DrawTexxOES(int x, int y, int z, int width, int height);
00240 [System.Security.SuppressUnmanagedCodeSecurity()]
00241 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDrawTexxvOES", ExactSpelling = true)]
00242 internal extern static unsafe void DrawTexxvOES(int* coords);
00243 [System.Security.SuppressUnmanagedCodeSecurity()]
00244 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEGLImageTargetRenderbufferStorageOES", ExactSpelling = true)]
00245 internal extern static void EGLImageTargetRenderbufferStorageOES(OpenTK.Graphics.ES11.All target, IntPtr image);
00246 [System.Security.SuppressUnmanagedCodeSecurity()]
00247 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEGLImageTargetTexture2DOES", ExactSpelling = true)]
00248 internal extern static void EGLImageTargetTexture2DOES(OpenTK.Graphics.ES11.All target, IntPtr image);
00249 [System.Security.SuppressUnmanagedCodeSecurity()]
00250 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnable", ExactSpelling = true)]
00251 internal extern static void Enable(OpenTK.Graphics.ES11.All cap);
00252 [System.Security.SuppressUnmanagedCodeSecurity()]
00253 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableClientState", ExactSpelling = true)]
00254 internal extern static void EnableClientState(OpenTK.Graphics.ES11.All array);
00255 [System.Security.SuppressUnmanagedCodeSecurity()]
00256 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glEnableDriverControlQCOM", ExactSpelling = true)]
00257 internal extern static void EnableDriverControlQCOM(UInt32 driverControl);
00258 [System.Security.SuppressUnmanagedCodeSecurity()]
00259 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinish", ExactSpelling = true)]
00260 internal extern static void Finish();
00261 [System.Security.SuppressUnmanagedCodeSecurity()]
00262 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFinishFenceNV", ExactSpelling = true)]
00263 internal extern static void FinishFenceNV(UInt32 fence);
00264 [System.Security.SuppressUnmanagedCodeSecurity()]
00265 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFlush", ExactSpelling = true)]
00266 internal extern static void Flush();
00267 [System.Security.SuppressUnmanagedCodeSecurity()]
00268 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogf", ExactSpelling = true)]
00269 internal extern static void Fogf(OpenTK.Graphics.ES11.All pname, Single param);
00270 [System.Security.SuppressUnmanagedCodeSecurity()]
00271 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogfv", ExactSpelling = true)]
00272 internal extern static unsafe void Fogfv(OpenTK.Graphics.ES11.All pname, Single* @params);
00273 [System.Security.SuppressUnmanagedCodeSecurity()]
00274 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogx", ExactSpelling = true)]
00275 internal extern static void Fogx(OpenTK.Graphics.ES11.All pname, int param);
00276 [System.Security.SuppressUnmanagedCodeSecurity()]
00277 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogxOES", ExactSpelling = true)]
00278 internal extern static void FogxOES(OpenTK.Graphics.ES11.All pname, int param);
00279 [System.Security.SuppressUnmanagedCodeSecurity()]
00280 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogxv", ExactSpelling = true)]
00281 internal extern static unsafe void Fogxv(OpenTK.Graphics.ES11.All pname, int* @params);
00282 [System.Security.SuppressUnmanagedCodeSecurity()]
00283 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogxvOES", ExactSpelling = true)]
00284 internal extern static unsafe void FogxvOES(OpenTK.Graphics.ES11.All pname, int* @params);
00285 [System.Security.SuppressUnmanagedCodeSecurity()]
00286 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferRenderbufferOES", ExactSpelling = true)]
00287 internal extern static void FramebufferRenderbufferOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer);
00288 [System.Security.SuppressUnmanagedCodeSecurity()]
00289 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFramebufferTexture2DOES", ExactSpelling = true)]
00290 internal extern static void FramebufferTexture2DOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level);
00291 [System.Security.SuppressUnmanagedCodeSecurity()]
00292 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrontFace", ExactSpelling = true)]
00293 internal extern static void FrontFace(OpenTK.Graphics.ES11.All mode);
00294 [System.Security.SuppressUnmanagedCodeSecurity()]
00295 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrustumf", ExactSpelling = true)]
00296 internal extern static void Frustumf(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar);
00297 [System.Security.SuppressUnmanagedCodeSecurity()]
00298 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrustumfOES", ExactSpelling = true)]
00299 internal extern static void FrustumfOES(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar);
00300 [System.Security.SuppressUnmanagedCodeSecurity()]
00301 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrustumx", ExactSpelling = true)]
00302 internal extern static void Frustumx(int left, int right, int bottom, int top, int zNear, int zFar);
00303 [System.Security.SuppressUnmanagedCodeSecurity()]
00304 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFrustumxOES", ExactSpelling = true)]
00305 internal extern static void FrustumxOES(int left, int right, int bottom, int top, int zNear, int zFar);
00306 [System.Security.SuppressUnmanagedCodeSecurity()]
00307 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenBuffers", ExactSpelling = true)]
00308 internal extern static unsafe void GenBuffers(Int32 n, UInt32* buffers);
00309 [System.Security.SuppressUnmanagedCodeSecurity()]
00310 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenerateMipmapOES", ExactSpelling = true)]
00311 internal extern static void GenerateMipmapOES(OpenTK.Graphics.ES11.All target);
00312 [System.Security.SuppressUnmanagedCodeSecurity()]
00313 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFencesNV", ExactSpelling = true)]
00314 internal extern static unsafe void GenFencesNV(Int32 n, UInt32* fences);
00315 [System.Security.SuppressUnmanagedCodeSecurity()]
00316 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenFramebuffersOES", ExactSpelling = true)]
00317 internal extern static unsafe void GenFramebuffersOES(Int32 n, UInt32* framebuffers);
00318 [System.Security.SuppressUnmanagedCodeSecurity()]
00319 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenRenderbuffersOES", ExactSpelling = true)]
00320 internal extern static unsafe void GenRenderbuffersOES(Int32 n, UInt32* renderbuffers);
00321 [System.Security.SuppressUnmanagedCodeSecurity()]
00322 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGenTextures", ExactSpelling = true)]
00323 internal extern static unsafe void GenTextures(Int32 n, UInt32* textures);
00324 [System.Security.SuppressUnmanagedCodeSecurity()]
00325 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBooleanv", ExactSpelling = true)]
00326 internal extern static unsafe void GetBooleanv(OpenTK.Graphics.ES11.All pname, bool* @params);
00327 [System.Security.SuppressUnmanagedCodeSecurity()]
00328 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameteriv", ExactSpelling = true)]
00329 internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params);
00330 [System.Security.SuppressUnmanagedCodeSecurity()]
00331 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointervOES", ExactSpelling = true)]
00332 internal extern static void GetBufferPointervOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, IntPtr @params);
00333 [System.Security.SuppressUnmanagedCodeSecurity()]
00334 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlanef", ExactSpelling = true)]
00335 internal extern static unsafe void GetClipPlanef(OpenTK.Graphics.ES11.All pname, Single* eqn);
00336 [System.Security.SuppressUnmanagedCodeSecurity()]
00337 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlanefOES", ExactSpelling = true)]
00338 internal extern static unsafe void GetClipPlanefOES(OpenTK.Graphics.ES11.All pname, Single* eqn);
00339 [System.Security.SuppressUnmanagedCodeSecurity()]
00340 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlanex", ExactSpelling = true)]
00341 internal extern static unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All pname, int* eqn);
00342 [System.Security.SuppressUnmanagedCodeSecurity()]
00343 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetClipPlanexOES", ExactSpelling = true)]
00344 internal extern static unsafe void GetClipPlanexOES(OpenTK.Graphics.ES11.All pname, int* eqn);
00345 [System.Security.SuppressUnmanagedCodeSecurity()]
00346 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetDriverControlsQCOM", ExactSpelling = true)]
00347 internal extern static unsafe void GetDriverControlsQCOM(Int32* num, Int32 size, UInt32* driverControls);
00348 [System.Security.SuppressUnmanagedCodeSecurity()]
00349 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetDriverControlStringQCOM", ExactSpelling = true)]
00350 internal extern static unsafe void GetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, Int32* length, String driverControlString);
00351 [System.Security.SuppressUnmanagedCodeSecurity()]
00352 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetError", ExactSpelling = true)]
00353 internal extern static OpenTK.Graphics.ES11.All GetError();
00354 [System.Security.SuppressUnmanagedCodeSecurity()]
00355 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFenceivNV", ExactSpelling = true)]
00356 internal extern static unsafe void GetFenceivNV(UInt32 fence, OpenTK.Graphics.ES11.All pname, Int32* @params);
00357 [System.Security.SuppressUnmanagedCodeSecurity()]
00358 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFixedv", ExactSpelling = true)]
00359 internal extern static unsafe void GetFixedv(OpenTK.Graphics.ES11.All pname, int* @params);
00360 [System.Security.SuppressUnmanagedCodeSecurity()]
00361 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFixedvOES", ExactSpelling = true)]
00362 internal extern static unsafe void GetFixedvOES(OpenTK.Graphics.ES11.All pname, int* @params);
00363 [System.Security.SuppressUnmanagedCodeSecurity()]
00364 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFloatv", ExactSpelling = true)]
00365 internal extern static unsafe void GetFloatv(OpenTK.Graphics.ES11.All pname, Single* @params);
00366 [System.Security.SuppressUnmanagedCodeSecurity()]
00367 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetFramebufferAttachmentParameterivOES", ExactSpelling = true)]
00368 internal extern static unsafe void GetFramebufferAttachmentParameterivOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, Int32* @params);
00369 [System.Security.SuppressUnmanagedCodeSecurity()]
00370 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetIntegerv", ExactSpelling = true)]
00371 internal extern static unsafe void GetIntegerv(OpenTK.Graphics.ES11.All pname, Int32* @params);
00372 [System.Security.SuppressUnmanagedCodeSecurity()]
00373 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightfv", ExactSpelling = true)]
00374 internal extern static unsafe void GetLightfv(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single* @params);
00375 [System.Security.SuppressUnmanagedCodeSecurity()]
00376 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightxv", ExactSpelling = true)]
00377 internal extern static unsafe void GetLightxv(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params);
00378 [System.Security.SuppressUnmanagedCodeSecurity()]
00379 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetLightxvOES", ExactSpelling = true)]
00380 internal extern static unsafe void GetLightxvOES(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params);
00381 [System.Security.SuppressUnmanagedCodeSecurity()]
00382 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialfv", ExactSpelling = true)]
00383 internal extern static unsafe void GetMaterialfv(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single* @params);
00384 [System.Security.SuppressUnmanagedCodeSecurity()]
00385 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialxv", ExactSpelling = true)]
00386 internal extern static unsafe void GetMaterialxv(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params);
00387 [System.Security.SuppressUnmanagedCodeSecurity()]
00388 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMaterialxvOES", ExactSpelling = true)]
00389 internal extern static unsafe void GetMaterialxvOES(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params);
00390 [System.Security.SuppressUnmanagedCodeSecurity()]
00391 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPointerv", ExactSpelling = true)]
00392 internal extern static void GetPointerv(OpenTK.Graphics.ES11.All pname, IntPtr @params);
00393 [System.Security.SuppressUnmanagedCodeSecurity()]
00394 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetRenderbufferParameterivOES", ExactSpelling = true)]
00395 internal extern static unsafe void GetRenderbufferParameterivOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params);
00396 [System.Security.SuppressUnmanagedCodeSecurity()]
00397 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetString", ExactSpelling = true)]
00398 internal extern static unsafe System.IntPtr GetString(OpenTK.Graphics.ES11.All name);
00399 [System.Security.SuppressUnmanagedCodeSecurity()]
00400 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnvfv", ExactSpelling = true)]
00401 internal extern static unsafe void GetTexEnvfv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, Single* @params);
00402 [System.Security.SuppressUnmanagedCodeSecurity()]
00403 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnviv", ExactSpelling = true)]
00404 internal extern static unsafe void GetTexEnviv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, Int32* @params);
00405 [System.Security.SuppressUnmanagedCodeSecurity()]
00406 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnvxv", ExactSpelling = true)]
00407 internal extern static unsafe void GetTexEnvxv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, int* @params);
00408 [System.Security.SuppressUnmanagedCodeSecurity()]
00409 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexEnvxvOES", ExactSpelling = true)]
00410 internal extern static unsafe void GetTexEnvxvOES(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, int* @params);
00411 [System.Security.SuppressUnmanagedCodeSecurity()]
00412 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGenfvOES", ExactSpelling = true)]
00413 internal extern static unsafe void GetTexGenfvOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single* @params);
00414 [System.Security.SuppressUnmanagedCodeSecurity()]
00415 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGenivOES", ExactSpelling = true)]
00416 internal extern static unsafe void GetTexGenivOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32* @params);
00417 [System.Security.SuppressUnmanagedCodeSecurity()]
00418 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexGenxvOES", ExactSpelling = true)]
00419 internal extern static unsafe void GetTexGenxvOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int* @params);
00420 [System.Security.SuppressUnmanagedCodeSecurity()]
00421 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterfv", ExactSpelling = true)]
00422 internal extern static unsafe void GetTexParameterfv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params);
00423 [System.Security.SuppressUnmanagedCodeSecurity()]
00424 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameteriv", ExactSpelling = true)]
00425 internal extern static unsafe void GetTexParameteriv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params);
00426 [System.Security.SuppressUnmanagedCodeSecurity()]
00427 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterxv", ExactSpelling = true)]
00428 internal extern static unsafe void GetTexParameterxv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params);
00429 [System.Security.SuppressUnmanagedCodeSecurity()]
00430 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetTexParameterxvOES", ExactSpelling = true)]
00431 internal extern static unsafe void GetTexParameterxvOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params);
00432 [System.Security.SuppressUnmanagedCodeSecurity()]
00433 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHint", ExactSpelling = true)]
00434 internal extern static void Hint(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All mode);
00435 [System.Security.SuppressUnmanagedCodeSecurity()]
00436 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsBuffer", ExactSpelling = true)]
00437 internal extern static bool IsBuffer(UInt32 buffer);
00438 [System.Security.SuppressUnmanagedCodeSecurity()]
00439 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsEnabled", ExactSpelling = true)]
00440 internal extern static bool IsEnabled(OpenTK.Graphics.ES11.All cap);
00441 [System.Security.SuppressUnmanagedCodeSecurity()]
00442 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFenceNV", ExactSpelling = true)]
00443 internal extern static bool IsFenceNV(UInt32 fence);
00444 [System.Security.SuppressUnmanagedCodeSecurity()]
00445 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsFramebufferOES", ExactSpelling = true)]
00446 internal extern static bool IsFramebufferOES(UInt32 framebuffer);
00447 [System.Security.SuppressUnmanagedCodeSecurity()]
00448 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsRenderbufferOES", ExactSpelling = true)]
00449 internal extern static bool IsRenderbufferOES(UInt32 renderbuffer);
00450 [System.Security.SuppressUnmanagedCodeSecurity()]
00451 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIsTexture", ExactSpelling = true)]
00452 internal extern static bool IsTexture(UInt32 texture);
00453 [System.Security.SuppressUnmanagedCodeSecurity()]
00454 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightf", ExactSpelling = true)]
00455 internal extern static void Lightf(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single param);
00456 [System.Security.SuppressUnmanagedCodeSecurity()]
00457 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightfv", ExactSpelling = true)]
00458 internal extern static unsafe void Lightfv(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single* @params);
00459 [System.Security.SuppressUnmanagedCodeSecurity()]
00460 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelf", ExactSpelling = true)]
00461 internal extern static void LightModelf(OpenTK.Graphics.ES11.All pname, Single param);
00462 [System.Security.SuppressUnmanagedCodeSecurity()]
00463 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelfv", ExactSpelling = true)]
00464 internal extern static unsafe void LightModelfv(OpenTK.Graphics.ES11.All pname, Single* @params);
00465 [System.Security.SuppressUnmanagedCodeSecurity()]
00466 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelx", ExactSpelling = true)]
00467 internal extern static void LightModelx(OpenTK.Graphics.ES11.All pname, int param);
00468 [System.Security.SuppressUnmanagedCodeSecurity()]
00469 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelxOES", ExactSpelling = true)]
00470 internal extern static void LightModelxOES(OpenTK.Graphics.ES11.All pname, int param);
00471 [System.Security.SuppressUnmanagedCodeSecurity()]
00472 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelxv", ExactSpelling = true)]
00473 internal extern static unsafe void LightModelxv(OpenTK.Graphics.ES11.All pname, int* @params);
00474 [System.Security.SuppressUnmanagedCodeSecurity()]
00475 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightModelxvOES", ExactSpelling = true)]
00476 internal extern static unsafe void LightModelxvOES(OpenTK.Graphics.ES11.All pname, int* @params);
00477 [System.Security.SuppressUnmanagedCodeSecurity()]
00478 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightx", ExactSpelling = true)]
00479 internal extern static void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int param);
00480 [System.Security.SuppressUnmanagedCodeSecurity()]
00481 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightxOES", ExactSpelling = true)]
00482 internal extern static void LightxOES(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int param);
00483 [System.Security.SuppressUnmanagedCodeSecurity()]
00484 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightxv", ExactSpelling = true)]
00485 internal extern static unsafe void Lightxv(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params);
00486 [System.Security.SuppressUnmanagedCodeSecurity()]
00487 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightxvOES", ExactSpelling = true)]
00488 internal extern static unsafe void LightxvOES(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params);
00489 [System.Security.SuppressUnmanagedCodeSecurity()]
00490 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLineWidth", ExactSpelling = true)]
00491 internal extern static void LineWidth(Single width);
00492 [System.Security.SuppressUnmanagedCodeSecurity()]
00493 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLineWidthx", ExactSpelling = true)]
00494 internal extern static void LineWidthx(int width);
00495 [System.Security.SuppressUnmanagedCodeSecurity()]
00496 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLineWidthxOES", ExactSpelling = true)]
00497 internal extern static void LineWidthxOES(int width);
00498 [System.Security.SuppressUnmanagedCodeSecurity()]
00499 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadIdentity", ExactSpelling = true)]
00500 internal extern static void LoadIdentity();
00501 [System.Security.SuppressUnmanagedCodeSecurity()]
00502 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixf", ExactSpelling = true)]
00503 internal extern static unsafe void LoadMatrixf(Single* m);
00504 [System.Security.SuppressUnmanagedCodeSecurity()]
00505 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixx", ExactSpelling = true)]
00506 internal extern static unsafe void LoadMatrixx(int* m);
00507 [System.Security.SuppressUnmanagedCodeSecurity()]
00508 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixxOES", ExactSpelling = true)]
00509 internal extern static unsafe void LoadMatrixxOES(int* m);
00510 [System.Security.SuppressUnmanagedCodeSecurity()]
00511 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadPaletteFromModelViewMatrixOES", ExactSpelling = true)]
00512 internal extern static void LoadPaletteFromModelViewMatrixOES();
00513 [System.Security.SuppressUnmanagedCodeSecurity()]
00514 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLogicOp", ExactSpelling = true)]
00515 internal extern static void LogicOp(OpenTK.Graphics.ES11.All opcode);
00516 [System.Security.SuppressUnmanagedCodeSecurity()]
00517 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferOES", ExactSpelling = true)]
00518 internal extern static unsafe System.IntPtr MapBufferOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access);
00519 [System.Security.SuppressUnmanagedCodeSecurity()]
00520 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialf", ExactSpelling = true)]
00521 internal extern static void Materialf(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single param);
00522 [System.Security.SuppressUnmanagedCodeSecurity()]
00523 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialfv", ExactSpelling = true)]
00524 internal extern static unsafe void Materialfv(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single* @params);
00525 [System.Security.SuppressUnmanagedCodeSecurity()]
00526 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialx", ExactSpelling = true)]
00527 internal extern static void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param);
00528 [System.Security.SuppressUnmanagedCodeSecurity()]
00529 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialxOES", ExactSpelling = true)]
00530 internal extern static void MaterialxOES(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param);
00531 [System.Security.SuppressUnmanagedCodeSecurity()]
00532 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialxv", ExactSpelling = true)]
00533 internal extern static unsafe void Materialxv(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params);
00534 [System.Security.SuppressUnmanagedCodeSecurity()]
00535 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMaterialxvOES", ExactSpelling = true)]
00536 internal extern static unsafe void MaterialxvOES(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params);
00537 [System.Security.SuppressUnmanagedCodeSecurity()]
00538 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixIndexPointerOES", ExactSpelling = true)]
00539 internal extern static void MatrixIndexPointerOES(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00540 [System.Security.SuppressUnmanagedCodeSecurity()]
00541 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMatrixMode", ExactSpelling = true)]
00542 internal extern static void MatrixMode(OpenTK.Graphics.ES11.All mode);
00543 [System.Security.SuppressUnmanagedCodeSecurity()]
00544 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4f", ExactSpelling = true)]
00545 internal extern static void MultiTexCoord4f(OpenTK.Graphics.ES11.All target, Single s, Single t, Single r, Single q);
00546 [System.Security.SuppressUnmanagedCodeSecurity()]
00547 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4x", ExactSpelling = true)]
00548 internal extern static void MultiTexCoord4x(OpenTK.Graphics.ES11.All target, int s, int t, int r, int q);
00549 [System.Security.SuppressUnmanagedCodeSecurity()]
00550 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultiTexCoord4xOES", ExactSpelling = true)]
00551 internal extern static void MultiTexCoord4xOES(OpenTK.Graphics.ES11.All target, int s, int t, int r, int q);
00552 [System.Security.SuppressUnmanagedCodeSecurity()]
00553 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultMatrixf", ExactSpelling = true)]
00554 internal extern static unsafe void MultMatrixf(Single* m);
00555 [System.Security.SuppressUnmanagedCodeSecurity()]
00556 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultMatrixx", ExactSpelling = true)]
00557 internal extern static unsafe void MultMatrixx(int* m);
00558 [System.Security.SuppressUnmanagedCodeSecurity()]
00559 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMultMatrixxOES", ExactSpelling = true)]
00560 internal extern static unsafe void MultMatrixxOES(int* m);
00561 [System.Security.SuppressUnmanagedCodeSecurity()]
00562 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3f", ExactSpelling = true)]
00563 internal extern static void Normal3f(Single nx, Single ny, Single nz);
00564 [System.Security.SuppressUnmanagedCodeSecurity()]
00565 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3x", ExactSpelling = true)]
00566 internal extern static void Normal3x(int nx, int ny, int nz);
00567 [System.Security.SuppressUnmanagedCodeSecurity()]
00568 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormal3xOES", ExactSpelling = true)]
00569 internal extern static void Normal3xOES(int nx, int ny, int nz);
00570 [System.Security.SuppressUnmanagedCodeSecurity()]
00571 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glNormalPointer", ExactSpelling = true)]
00572 internal extern static void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00573 [System.Security.SuppressUnmanagedCodeSecurity()]
00574 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glOrthof", ExactSpelling = true)]
00575 internal extern static void Orthof(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar);
00576 [System.Security.SuppressUnmanagedCodeSecurity()]
00577 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glOrthofOES", ExactSpelling = true)]
00578 internal extern static void OrthofOES(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar);
00579 [System.Security.SuppressUnmanagedCodeSecurity()]
00580 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glOrthox", ExactSpelling = true)]
00581 internal extern static void Orthox(int left, int right, int bottom, int top, int zNear, int zFar);
00582 [System.Security.SuppressUnmanagedCodeSecurity()]
00583 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glOrthoxOES", ExactSpelling = true)]
00584 internal extern static void OrthoxOES(int left, int right, int bottom, int top, int zNear, int zFar);
00585 [System.Security.SuppressUnmanagedCodeSecurity()]
00586 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelStorei", ExactSpelling = true)]
00587 internal extern static void PixelStorei(OpenTK.Graphics.ES11.All pname, Int32 param);
00588 [System.Security.SuppressUnmanagedCodeSecurity()]
00589 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterf", ExactSpelling = true)]
00590 internal extern static void PointParameterf(OpenTK.Graphics.ES11.All pname, Single param);
00591 [System.Security.SuppressUnmanagedCodeSecurity()]
00592 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterfv", ExactSpelling = true)]
00593 internal extern static unsafe void PointParameterfv(OpenTK.Graphics.ES11.All pname, Single* @params);
00594 [System.Security.SuppressUnmanagedCodeSecurity()]
00595 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterx", ExactSpelling = true)]
00596 internal extern static void PointParameterx(OpenTK.Graphics.ES11.All pname, int param);
00597 [System.Security.SuppressUnmanagedCodeSecurity()]
00598 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterxOES", ExactSpelling = true)]
00599 internal extern static void PointParameterxOES(OpenTK.Graphics.ES11.All pname, int param);
00600 [System.Security.SuppressUnmanagedCodeSecurity()]
00601 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterxv", ExactSpelling = true)]
00602 internal extern static unsafe void PointParameterxv(OpenTK.Graphics.ES11.All pname, int* @params);
00603 [System.Security.SuppressUnmanagedCodeSecurity()]
00604 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointParameterxvOES", ExactSpelling = true)]
00605 internal extern static unsafe void PointParameterxvOES(OpenTK.Graphics.ES11.All pname, int* @params);
00606 [System.Security.SuppressUnmanagedCodeSecurity()]
00607 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointSize", ExactSpelling = true)]
00608 internal extern static void PointSize(Single size);
00609 [System.Security.SuppressUnmanagedCodeSecurity()]
00610 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointSizePointerOES", ExactSpelling = true)]
00611 internal extern static void PointSizePointerOES(OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00612 [System.Security.SuppressUnmanagedCodeSecurity()]
00613 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointSizex", ExactSpelling = true)]
00614 internal extern static void PointSizex(int size);
00615 [System.Security.SuppressUnmanagedCodeSecurity()]
00616 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPointSizexOES", ExactSpelling = true)]
00617 internal extern static void PointSizexOES(int size);
00618 [System.Security.SuppressUnmanagedCodeSecurity()]
00619 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffset", ExactSpelling = true)]
00620 internal extern static void PolygonOffset(Single factor, Single units);
00621 [System.Security.SuppressUnmanagedCodeSecurity()]
00622 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffsetx", ExactSpelling = true)]
00623 internal extern static void PolygonOffsetx(int factor, int units);
00624 [System.Security.SuppressUnmanagedCodeSecurity()]
00625 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPolygonOffsetxOES", ExactSpelling = true)]
00626 internal extern static void PolygonOffsetxOES(int factor, int units);
00627 [System.Security.SuppressUnmanagedCodeSecurity()]
00628 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPopMatrix", ExactSpelling = true)]
00629 internal extern static void PopMatrix();
00630 [System.Security.SuppressUnmanagedCodeSecurity()]
00631 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPushMatrix", ExactSpelling = true)]
00632 internal extern static void PushMatrix();
00633 [System.Security.SuppressUnmanagedCodeSecurity()]
00634 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glQueryMatrixxOES", ExactSpelling = true)]
00635 internal extern static unsafe Int32 QueryMatrixxOES(int* mantissa, Int32* exponent);
00636 [System.Security.SuppressUnmanagedCodeSecurity()]
00637 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glReadPixels", ExactSpelling = true)]
00638 internal extern static void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, IntPtr pixels);
00639 [System.Security.SuppressUnmanagedCodeSecurity()]
00640 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRenderbufferStorageOES", ExactSpelling = true)]
00641 internal extern static void RenderbufferStorageOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height);
00642 [System.Security.SuppressUnmanagedCodeSecurity()]
00643 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRotatef", ExactSpelling = true)]
00644 internal extern static void Rotatef(Single angle, Single x, Single y, Single z);
00645 [System.Security.SuppressUnmanagedCodeSecurity()]
00646 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRotatex", ExactSpelling = true)]
00647 internal extern static void Rotatex(int angle, int x, int y, int z);
00648 [System.Security.SuppressUnmanagedCodeSecurity()]
00649 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRotatexOES", ExactSpelling = true)]
00650 internal extern static void RotatexOES(int angle, int x, int y, int z);
00651 [System.Security.SuppressUnmanagedCodeSecurity()]
00652 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleCoverage", ExactSpelling = true)]
00653 internal extern static void SampleCoverage(Single value, bool invert);
00654 [System.Security.SuppressUnmanagedCodeSecurity()]
00655 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleCoveragex", ExactSpelling = true)]
00656 internal extern static void SampleCoveragex(int value, bool invert);
00657 [System.Security.SuppressUnmanagedCodeSecurity()]
00658 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSampleCoveragexOES", ExactSpelling = true)]
00659 internal extern static void SampleCoveragexOES(int value, bool invert);
00660 [System.Security.SuppressUnmanagedCodeSecurity()]
00661 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScalef", ExactSpelling = true)]
00662 internal extern static void Scalef(Single x, Single y, Single z);
00663 [System.Security.SuppressUnmanagedCodeSecurity()]
00664 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScalex", ExactSpelling = true)]
00665 internal extern static void Scalex(int x, int y, int z);
00666 [System.Security.SuppressUnmanagedCodeSecurity()]
00667 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScalexOES", ExactSpelling = true)]
00668 internal extern static void ScalexOES(int x, int y, int z);
00669 [System.Security.SuppressUnmanagedCodeSecurity()]
00670 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glScissor", ExactSpelling = true)]
00671 internal extern static void Scissor(Int32 x, Int32 y, Int32 width, Int32 height);
00672 [System.Security.SuppressUnmanagedCodeSecurity()]
00673 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetFenceNV", ExactSpelling = true)]
00674 internal extern static void SetFenceNV(UInt32 fence, OpenTK.Graphics.ES11.All condition);
00675 [System.Security.SuppressUnmanagedCodeSecurity()]
00676 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glShadeModel", ExactSpelling = true)]
00677 internal extern static void ShadeModel(OpenTK.Graphics.ES11.All mode);
00678 [System.Security.SuppressUnmanagedCodeSecurity()]
00679 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilFunc", ExactSpelling = true)]
00680 internal extern static void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, UInt32 mask);
00681 [System.Security.SuppressUnmanagedCodeSecurity()]
00682 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilMask", ExactSpelling = true)]
00683 internal extern static void StencilMask(UInt32 mask);
00684 [System.Security.SuppressUnmanagedCodeSecurity()]
00685 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glStencilOp", ExactSpelling = true)]
00686 internal extern static void StencilOp(OpenTK.Graphics.ES11.All fail, OpenTK.Graphics.ES11.All zfail, OpenTK.Graphics.ES11.All zpass);
00687 [System.Security.SuppressUnmanagedCodeSecurity()]
00688 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTestFenceNV", ExactSpelling = true)]
00689 internal extern static bool TestFenceNV(UInt32 fence);
00690 [System.Security.SuppressUnmanagedCodeSecurity()]
00691 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexCoordPointer", ExactSpelling = true)]
00692 internal extern static void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00693 [System.Security.SuppressUnmanagedCodeSecurity()]
00694 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvf", ExactSpelling = true)]
00695 internal extern static void TexEnvf(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param);
00696 [System.Security.SuppressUnmanagedCodeSecurity()]
00697 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvfv", ExactSpelling = true)]
00698 internal extern static unsafe void TexEnvfv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params);
00699 [System.Security.SuppressUnmanagedCodeSecurity()]
00700 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvi", ExactSpelling = true)]
00701 internal extern static void TexEnvi(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param);
00702 [System.Security.SuppressUnmanagedCodeSecurity()]
00703 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnviv", ExactSpelling = true)]
00704 internal extern static unsafe void TexEnviv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params);
00705 [System.Security.SuppressUnmanagedCodeSecurity()]
00706 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvx", ExactSpelling = true)]
00707 internal extern static void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param);
00708 [System.Security.SuppressUnmanagedCodeSecurity()]
00709 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvxOES", ExactSpelling = true)]
00710 internal extern static void TexEnvxOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param);
00711 [System.Security.SuppressUnmanagedCodeSecurity()]
00712 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvxv", ExactSpelling = true)]
00713 internal extern static unsafe void TexEnvxv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params);
00714 [System.Security.SuppressUnmanagedCodeSecurity()]
00715 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexEnvxvOES", ExactSpelling = true)]
00716 internal extern static unsafe void TexEnvxvOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params);
00717 [System.Security.SuppressUnmanagedCodeSecurity()]
00718 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenfOES", ExactSpelling = true)]
00719 internal extern static void TexGenfOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param);
00720 [System.Security.SuppressUnmanagedCodeSecurity()]
00721 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenfvOES", ExactSpelling = true)]
00722 internal extern static unsafe void TexGenfvOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single* @params);
00723 [System.Security.SuppressUnmanagedCodeSecurity()]
00724 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGeniOES", ExactSpelling = true)]
00725 internal extern static void TexGeniOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param);
00726 [System.Security.SuppressUnmanagedCodeSecurity()]
00727 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenivOES", ExactSpelling = true)]
00728 internal extern static unsafe void TexGenivOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32* @params);
00729 [System.Security.SuppressUnmanagedCodeSecurity()]
00730 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenxOES", ExactSpelling = true)]
00731 internal extern static void TexGenxOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int param);
00732 [System.Security.SuppressUnmanagedCodeSecurity()]
00733 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexGenxvOES", ExactSpelling = true)]
00734 internal extern static unsafe void TexGenxvOES(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int* @params);
00735 [System.Security.SuppressUnmanagedCodeSecurity()]
00736 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexImage2D", ExactSpelling = true)]
00737 internal extern static void TexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 internalformat, Int32 width, Int32 height, Int32 border, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, IntPtr pixels);
00738 [System.Security.SuppressUnmanagedCodeSecurity()]
00739 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterf", ExactSpelling = true)]
00740 internal extern static void TexParameterf(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param);
00741 [System.Security.SuppressUnmanagedCodeSecurity()]
00742 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterfv", ExactSpelling = true)]
00743 internal extern static unsafe void TexParameterfv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params);
00744 [System.Security.SuppressUnmanagedCodeSecurity()]
00745 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameteri", ExactSpelling = true)]
00746 internal extern static void TexParameteri(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param);
00747 [System.Security.SuppressUnmanagedCodeSecurity()]
00748 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameteriv", ExactSpelling = true)]
00749 internal extern static unsafe void TexParameteriv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params);
00750 [System.Security.SuppressUnmanagedCodeSecurity()]
00751 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterx", ExactSpelling = true)]
00752 internal extern static void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param);
00753 [System.Security.SuppressUnmanagedCodeSecurity()]
00754 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterxOES", ExactSpelling = true)]
00755 internal extern static void TexParameterxOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param);
00756 [System.Security.SuppressUnmanagedCodeSecurity()]
00757 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterxv", ExactSpelling = true)]
00758 internal extern static unsafe void TexParameterxv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params);
00759 [System.Security.SuppressUnmanagedCodeSecurity()]
00760 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexParameterxvOES", ExactSpelling = true)]
00761 internal extern static unsafe void TexParameterxvOES(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params);
00762 [System.Security.SuppressUnmanagedCodeSecurity()]
00763 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTexSubImage2D", ExactSpelling = true)]
00764 internal extern static void TexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, IntPtr pixels);
00765 [System.Security.SuppressUnmanagedCodeSecurity()]
00766 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTranslatef", ExactSpelling = true)]
00767 internal extern static void Translatef(Single x, Single y, Single z);
00768 [System.Security.SuppressUnmanagedCodeSecurity()]
00769 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTranslatex", ExactSpelling = true)]
00770 internal extern static void Translatex(int x, int y, int z);
00771 [System.Security.SuppressUnmanagedCodeSecurity()]
00772 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glTranslatexOES", ExactSpelling = true)]
00773 internal extern static void TranslatexOES(int x, int y, int z);
00774 [System.Security.SuppressUnmanagedCodeSecurity()]
00775 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glUnmapBufferOES", ExactSpelling = true)]
00776 internal extern static bool UnmapBufferOES(OpenTK.Graphics.ES11.All target);
00777 [System.Security.SuppressUnmanagedCodeSecurity()]
00778 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glVertexPointer", ExactSpelling = true)]
00779 internal extern static void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00780 [System.Security.SuppressUnmanagedCodeSecurity()]
00781 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glViewport", ExactSpelling = true)]
00782 internal extern static void Viewport(Int32 x, Int32 y, Int32 width, Int32 height);
00783 [System.Security.SuppressUnmanagedCodeSecurity()]
00784 [System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glWeightPointerOES", ExactSpelling = true)]
00785 internal extern static void WeightPointerOES(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer);
00786 }
00787 }
00788 }
00789 #endif