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 #pragma warning disable 1572
00036 #pragma warning disable 1573
00037
00038 partial class GL
00039 {
00040
00041
00050 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glActiveTexture")]
00051 public static
00052 void ActiveTexture(OpenTK.Graphics.ES11.All texture)
00053 {
00054 #if DEBUG
00055 using (new ErrorHelper(GraphicsContext.CurrentContext))
00056 {
00057 #endif
00058 Delegates.glActiveTexture((OpenTK.Graphics.ES11.All)texture);
00059 #if DEBUG
00060 }
00061 #endif
00062 }
00063
00064
00078 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glAlphaFunc")]
00079 public static
00080 void AlphaFunc(OpenTK.Graphics.ES11.All func, Single @ref)
00081 {
00082 #if DEBUG
00083 using (new ErrorHelper(GraphicsContext.CurrentContext))
00084 {
00085 #endif
00086 Delegates.glAlphaFunc((OpenTK.Graphics.ES11.All)func, (Single)@ref);
00087 #if DEBUG
00088 }
00089 #endif
00090 }
00091
00092 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glAlphaFuncx")]
00093 public static
00094 void AlphaFuncx(OpenTK.Graphics.ES11.All func, int @ref)
00095 {
00096 #if DEBUG
00097 using (new ErrorHelper(GraphicsContext.CurrentContext))
00098 {
00099 #endif
00100 Delegates.glAlphaFuncx((OpenTK.Graphics.ES11.All)func, (int)@ref);
00101 #if DEBUG
00102 }
00103 #endif
00104 }
00105
00106
00120 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindBuffer")]
00121 public static
00122 void BindBuffer(OpenTK.Graphics.ES11.All target, Int32 buffer)
00123 {
00124 #if DEBUG
00125 using (new ErrorHelper(GraphicsContext.CurrentContext))
00126 {
00127 #endif
00128 Delegates.glBindBuffer((OpenTK.Graphics.ES11.All)target, (UInt32)buffer);
00129 #if DEBUG
00130 }
00131 #endif
00132 }
00133
00134
00148 [System.CLSCompliant(false)]
00149 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindBuffer")]
00150 public static
00151 void BindBuffer(OpenTK.Graphics.ES11.All target, UInt32 buffer)
00152 {
00153 #if DEBUG
00154 using (new ErrorHelper(GraphicsContext.CurrentContext))
00155 {
00156 #endif
00157 Delegates.glBindBuffer((OpenTK.Graphics.ES11.All)target, (UInt32)buffer);
00158 #if DEBUG
00159 }
00160 #endif
00161 }
00162
00163
00177 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindTexture")]
00178 public static
00179 void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture)
00180 {
00181 #if DEBUG
00182 using (new ErrorHelper(GraphicsContext.CurrentContext))
00183 {
00184 #endif
00185 Delegates.glBindTexture((OpenTK.Graphics.ES11.All)target, (UInt32)texture);
00186 #if DEBUG
00187 }
00188 #endif
00189 }
00190
00191
00205 [System.CLSCompliant(false)]
00206 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindTexture")]
00207 public static
00208 void BindTexture(OpenTK.Graphics.ES11.All target, UInt32 texture)
00209 {
00210 #if DEBUG
00211 using (new ErrorHelper(GraphicsContext.CurrentContext))
00212 {
00213 #endif
00214 Delegates.glBindTexture((OpenTK.Graphics.ES11.All)target, (UInt32)texture);
00215 #if DEBUG
00216 }
00217 #endif
00218 }
00219
00220
00234 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBlendFunc")]
00235 public static
00236 void BlendFunc(OpenTK.Graphics.ES11.All sfactor, OpenTK.Graphics.ES11.All dfactor)
00237 {
00238 #if DEBUG
00239 using (new ErrorHelper(GraphicsContext.CurrentContext))
00240 {
00241 #endif
00242 Delegates.glBlendFunc((OpenTK.Graphics.ES11.All)sfactor, (OpenTK.Graphics.ES11.All)dfactor);
00243 #if DEBUG
00244 }
00245 #endif
00246 }
00247
00248
00272 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferData")]
00273 public static
00274 void BufferData<T2>(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] ref T2 data, OpenTK.Graphics.ES11.All usage)
00275 where T2 : struct
00276 {
00277 #if DEBUG
00278 using (new ErrorHelper(GraphicsContext.CurrentContext))
00279 {
00280 #endif
00281 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00282 try
00283 {
00284 Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage);
00285 data = (T2)data_ptr.Target;
00286 }
00287 finally
00288 {
00289 data_ptr.Free();
00290 }
00291 #if DEBUG
00292 }
00293 #endif
00294 }
00295
00296
00320 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferData")]
00321 public static
00322 void BufferData<T2>(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] T2[,,] data, OpenTK.Graphics.ES11.All usage)
00323 where T2 : struct
00324 {
00325 #if DEBUG
00326 using (new ErrorHelper(GraphicsContext.CurrentContext))
00327 {
00328 #endif
00329 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00330 try
00331 {
00332 Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage);
00333 }
00334 finally
00335 {
00336 data_ptr.Free();
00337 }
00338 #if DEBUG
00339 }
00340 #endif
00341 }
00342
00343
00367 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferData")]
00368 public static
00369 void BufferData<T2>(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] T2[,] data, OpenTK.Graphics.ES11.All usage)
00370 where T2 : struct
00371 {
00372 #if DEBUG
00373 using (new ErrorHelper(GraphicsContext.CurrentContext))
00374 {
00375 #endif
00376 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00377 try
00378 {
00379 Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage);
00380 }
00381 finally
00382 {
00383 data_ptr.Free();
00384 }
00385 #if DEBUG
00386 }
00387 #endif
00388 }
00389
00390
00414 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferData")]
00415 public static
00416 void BufferData<T2>(OpenTK.Graphics.ES11.All target, IntPtr size, [InAttribute, OutAttribute] T2[] data, OpenTK.Graphics.ES11.All usage)
00417 where T2 : struct
00418 {
00419 #if DEBUG
00420 using (new ErrorHelper(GraphicsContext.CurrentContext))
00421 {
00422 #endif
00423 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00424 try
00425 {
00426 Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject(), (OpenTK.Graphics.ES11.All)usage);
00427 }
00428 finally
00429 {
00430 data_ptr.Free();
00431 }
00432 #if DEBUG
00433 }
00434 #endif
00435 }
00436
00437
00461 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferData")]
00462 public static
00463 void BufferData(OpenTK.Graphics.ES11.All target, IntPtr size, IntPtr data, OpenTK.Graphics.ES11.All usage)
00464 {
00465 #if DEBUG
00466 using (new ErrorHelper(GraphicsContext.CurrentContext))
00467 {
00468 #endif
00469 Delegates.glBufferData((OpenTK.Graphics.ES11.All)target, (IntPtr)size, (IntPtr)data, (OpenTK.Graphics.ES11.All)usage);
00470 #if DEBUG
00471 }
00472 #endif
00473 }
00474
00475
00499 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferSubData")]
00500 public static
00501 void BufferSubData<T3>(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T3 data)
00502 where T3 : struct
00503 {
00504 #if DEBUG
00505 using (new ErrorHelper(GraphicsContext.CurrentContext))
00506 {
00507 #endif
00508 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00509 try
00510 {
00511 Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
00512 data = (T3)data_ptr.Target;
00513 }
00514 finally
00515 {
00516 data_ptr.Free();
00517 }
00518 #if DEBUG
00519 }
00520 #endif
00521 }
00522
00523
00547 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferSubData")]
00548 public static
00549 void BufferSubData<T3>(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,,] data)
00550 where T3 : struct
00551 {
00552 #if DEBUG
00553 using (new ErrorHelper(GraphicsContext.CurrentContext))
00554 {
00555 #endif
00556 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00557 try
00558 {
00559 Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
00560 }
00561 finally
00562 {
00563 data_ptr.Free();
00564 }
00565 #if DEBUG
00566 }
00567 #endif
00568 }
00569
00570
00594 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferSubData")]
00595 public static
00596 void BufferSubData<T3>(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[,] data)
00597 where T3 : struct
00598 {
00599 #if DEBUG
00600 using (new ErrorHelper(GraphicsContext.CurrentContext))
00601 {
00602 #endif
00603 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00604 try
00605 {
00606 Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
00607 }
00608 finally
00609 {
00610 data_ptr.Free();
00611 }
00612 #if DEBUG
00613 }
00614 #endif
00615 }
00616
00617
00641 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferSubData")]
00642 public static
00643 void BufferSubData<T3>(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T3[] data)
00644 where T3 : struct
00645 {
00646 #if DEBUG
00647 using (new ErrorHelper(GraphicsContext.CurrentContext))
00648 {
00649 #endif
00650 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
00651 try
00652 {
00653 Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data_ptr.AddrOfPinnedObject());
00654 }
00655 finally
00656 {
00657 data_ptr.Free();
00658 }
00659 #if DEBUG
00660 }
00661 #endif
00662 }
00663
00664
00688 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBufferSubData")]
00689 public static
00690 void BufferSubData(OpenTK.Graphics.ES11.All target, IntPtr offset, IntPtr size, IntPtr data)
00691 {
00692 #if DEBUG
00693 using (new ErrorHelper(GraphicsContext.CurrentContext))
00694 {
00695 #endif
00696 Delegates.glBufferSubData((OpenTK.Graphics.ES11.All)target, (IntPtr)offset, (IntPtr)size, (IntPtr)data);
00697 #if DEBUG
00698 }
00699 #endif
00700 }
00701
00702
00711 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClear")]
00712 public static
00713 void Clear(Int32 mask)
00714 {
00715 #if DEBUG
00716 using (new ErrorHelper(GraphicsContext.CurrentContext))
00717 {
00718 #endif
00719 Delegates.glClear((UInt32)mask);
00720 #if DEBUG
00721 }
00722 #endif
00723 }
00724
00725
00734 [System.CLSCompliant(false)]
00735 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClear")]
00736 public static
00737 void Clear(UInt32 mask)
00738 {
00739 #if DEBUG
00740 using (new ErrorHelper(GraphicsContext.CurrentContext))
00741 {
00742 #endif
00743 Delegates.glClear((UInt32)mask);
00744 #if DEBUG
00745 }
00746 #endif
00747 }
00748
00749
00758 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearColor")]
00759 public static
00760 void ClearColor(Single red, Single green, Single blue, Single alpha)
00761 {
00762 #if DEBUG
00763 using (new ErrorHelper(GraphicsContext.CurrentContext))
00764 {
00765 #endif
00766 Delegates.glClearColor((Single)red, (Single)green, (Single)blue, (Single)alpha);
00767 #if DEBUG
00768 }
00769 #endif
00770 }
00771
00772 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearColorx")]
00773 public static
00774 void ClearColorx(int red, int green, int blue, int alpha)
00775 {
00776 #if DEBUG
00777 using (new ErrorHelper(GraphicsContext.CurrentContext))
00778 {
00779 #endif
00780 Delegates.glClearColorx((int)red, (int)green, (int)blue, (int)alpha);
00781 #if DEBUG
00782 }
00783 #endif
00784 }
00785
00786
00795 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearDepthf")]
00796 public static
00797 void ClearDepth(Single depth)
00798 {
00799 #if DEBUG
00800 using (new ErrorHelper(GraphicsContext.CurrentContext))
00801 {
00802 #endif
00803 Delegates.glClearDepthf((Single)depth);
00804 #if DEBUG
00805 }
00806 #endif
00807 }
00808
00809 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearDepthx")]
00810 public static
00811 void ClearDepthx(int depth)
00812 {
00813 #if DEBUG
00814 using (new ErrorHelper(GraphicsContext.CurrentContext))
00815 {
00816 #endif
00817 Delegates.glClearDepthx((int)depth);
00818 #if DEBUG
00819 }
00820 #endif
00821 }
00822
00823
00832 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearStencil")]
00833 public static
00834 void ClearStencil(Int32 s)
00835 {
00836 #if DEBUG
00837 using (new ErrorHelper(GraphicsContext.CurrentContext))
00838 {
00839 #endif
00840 Delegates.glClearStencil((Int32)s);
00841 #if DEBUG
00842 }
00843 #endif
00844 }
00845
00846
00855 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClientActiveTexture")]
00856 public static
00857 void ClientActiveTexture(OpenTK.Graphics.ES11.All texture)
00858 {
00859 #if DEBUG
00860 using (new ErrorHelper(GraphicsContext.CurrentContext))
00861 {
00862 #endif
00863 Delegates.glClientActiveTexture((OpenTK.Graphics.ES11.All)texture);
00864 #if DEBUG
00865 }
00866 #endif
00867 }
00868
00869
00883 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanef")]
00884 public static
00885 void ClipPlane(OpenTK.Graphics.ES11.All plane, ref Single equation)
00886 {
00887 #if DEBUG
00888 using (new ErrorHelper(GraphicsContext.CurrentContext))
00889 {
00890 #endif
00891 unsafe
00892 {
00893 fixed (Single* equation_ptr = &equation)
00894 {
00895 Delegates.glClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr);
00896 }
00897 }
00898 #if DEBUG
00899 }
00900 #endif
00901 }
00902
00903
00917 [System.CLSCompliant(false)]
00918 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanef")]
00919 public static
00920 unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, Single* equation)
00921 {
00922 #if DEBUG
00923 using (new ErrorHelper(GraphicsContext.CurrentContext))
00924 {
00925 #endif
00926 Delegates.glClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation);
00927 #if DEBUG
00928 }
00929 #endif
00930 }
00931
00932
00946 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanef")]
00947 public static
00948 void ClipPlane(OpenTK.Graphics.ES11.All plane, Single[] equation)
00949 {
00950 #if DEBUG
00951 using (new ErrorHelper(GraphicsContext.CurrentContext))
00952 {
00953 #endif
00954 unsafe
00955 {
00956 fixed (Single* equation_ptr = equation)
00957 {
00958 Delegates.glClipPlanef((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr);
00959 }
00960 }
00961 #if DEBUG
00962 }
00963 #endif
00964 }
00965
00966 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanefIMG")]
00967 public static
00968 void ClipPlanefIMG(OpenTK.Graphics.ES11.All p, ref Single eqn)
00969 {
00970 #if DEBUG
00971 using (new ErrorHelper(GraphicsContext.CurrentContext))
00972 {
00973 #endif
00974 unsafe
00975 {
00976 fixed (Single* eqn_ptr = &eqn)
00977 {
00978 Delegates.glClipPlanefIMG((OpenTK.Graphics.ES11.All)p, (Single*)eqn_ptr);
00979 }
00980 }
00981 #if DEBUG
00982 }
00983 #endif
00984 }
00985
00986 [System.CLSCompliant(false)]
00987 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanefIMG")]
00988 public static
00989 unsafe void ClipPlanefIMG(OpenTK.Graphics.ES11.All p, Single* eqn)
00990 {
00991 #if DEBUG
00992 using (new ErrorHelper(GraphicsContext.CurrentContext))
00993 {
00994 #endif
00995 Delegates.glClipPlanefIMG((OpenTK.Graphics.ES11.All)p, (Single*)eqn);
00996 #if DEBUG
00997 }
00998 #endif
00999 }
01000
01001 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanefIMG")]
01002 public static
01003 void ClipPlanefIMG(OpenTK.Graphics.ES11.All p, Single[] eqn)
01004 {
01005 #if DEBUG
01006 using (new ErrorHelper(GraphicsContext.CurrentContext))
01007 {
01008 #endif
01009 unsafe
01010 {
01011 fixed (Single* eqn_ptr = eqn)
01012 {
01013 Delegates.glClipPlanefIMG((OpenTK.Graphics.ES11.All)p, (Single*)eqn_ptr);
01014 }
01015 }
01016 #if DEBUG
01017 }
01018 #endif
01019 }
01020
01021 [System.CLSCompliant(false)]
01022 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanex")]
01023 public static
01024 unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation)
01025 {
01026 #if DEBUG
01027 using (new ErrorHelper(GraphicsContext.CurrentContext))
01028 {
01029 #endif
01030 Delegates.glClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation);
01031 #if DEBUG
01032 }
01033 #endif
01034 }
01035
01036 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanex")]
01037 public static
01038 void ClipPlanex(OpenTK.Graphics.ES11.All plane, int[] equation)
01039 {
01040 #if DEBUG
01041 using (new ErrorHelper(GraphicsContext.CurrentContext))
01042 {
01043 #endif
01044 unsafe
01045 {
01046 fixed (int* equation_ptr = equation)
01047 {
01048 Delegates.glClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr);
01049 }
01050 }
01051 #if DEBUG
01052 }
01053 #endif
01054 }
01055
01056 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanex")]
01057 public static
01058 void ClipPlanex(OpenTK.Graphics.ES11.All plane, ref int equation)
01059 {
01060 #if DEBUG
01061 using (new ErrorHelper(GraphicsContext.CurrentContext))
01062 {
01063 #endif
01064 unsafe
01065 {
01066 fixed (int* equation_ptr = &equation)
01067 {
01068 Delegates.glClipPlanex((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr);
01069 }
01070 }
01071 #if DEBUG
01072 }
01073 #endif
01074 }
01075
01076 [System.CLSCompliant(false)]
01077 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanexIMG")]
01078 public static
01079 unsafe void ClipPlanexIMG(OpenTK.Graphics.ES11.All p, int* eqn)
01080 {
01081 #if DEBUG
01082 using (new ErrorHelper(GraphicsContext.CurrentContext))
01083 {
01084 #endif
01085 Delegates.glClipPlanexIMG((OpenTK.Graphics.ES11.All)p, (int*)eqn);
01086 #if DEBUG
01087 }
01088 #endif
01089 }
01090
01091 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanexIMG")]
01092 public static
01093 void ClipPlanexIMG(OpenTK.Graphics.ES11.All p, int[] eqn)
01094 {
01095 #if DEBUG
01096 using (new ErrorHelper(GraphicsContext.CurrentContext))
01097 {
01098 #endif
01099 unsafe
01100 {
01101 fixed (int* eqn_ptr = eqn)
01102 {
01103 Delegates.glClipPlanexIMG((OpenTK.Graphics.ES11.All)p, (int*)eqn_ptr);
01104 }
01105 }
01106 #if DEBUG
01107 }
01108 #endif
01109 }
01110
01111 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanexIMG")]
01112 public static
01113 void ClipPlanexIMG(OpenTK.Graphics.ES11.All p, ref int eqn)
01114 {
01115 #if DEBUG
01116 using (new ErrorHelper(GraphicsContext.CurrentContext))
01117 {
01118 #endif
01119 unsafe
01120 {
01121 fixed (int* eqn_ptr = &eqn)
01122 {
01123 Delegates.glClipPlanexIMG((OpenTK.Graphics.ES11.All)p, (int*)eqn_ptr);
01124 }
01125 }
01126 #if DEBUG
01127 }
01128 #endif
01129 }
01130
01131
01145 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColor4f")]
01146 public static
01147 void Color4(Single red, Single green, Single blue, Single alpha)
01148 {
01149 #if DEBUG
01150 using (new ErrorHelper(GraphicsContext.CurrentContext))
01151 {
01152 #endif
01153 Delegates.glColor4f((Single)red, (Single)green, (Single)blue, (Single)alpha);
01154 #if DEBUG
01155 }
01156 #endif
01157 }
01158
01159
01173 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColor4ub")]
01174 public static
01175 void Color4(Byte red, Byte green, Byte blue, Byte alpha)
01176 {
01177 #if DEBUG
01178 using (new ErrorHelper(GraphicsContext.CurrentContext))
01179 {
01180 #endif
01181 Delegates.glColor4ub((Byte)red, (Byte)green, (Byte)blue, (Byte)alpha);
01182 #if DEBUG
01183 }
01184 #endif
01185 }
01186
01187 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColor4x")]
01188 public static
01189 void Color4x(int red, int green, int blue, int alpha)
01190 {
01191 #if DEBUG
01192 using (new ErrorHelper(GraphicsContext.CurrentContext))
01193 {
01194 #endif
01195 Delegates.glColor4x((int)red, (int)green, (int)blue, (int)alpha);
01196 #if DEBUG
01197 }
01198 #endif
01199 }
01200
01201
01210 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColorMask")]
01211 public static
01212 void ColorMask(bool red, bool green, bool blue, bool alpha)
01213 {
01214 #if DEBUG
01215 using (new ErrorHelper(GraphicsContext.CurrentContext))
01216 {
01217 #endif
01218 Delegates.glColorMask((bool)red, (bool)green, (bool)blue, (bool)alpha);
01219 #if DEBUG
01220 }
01221 #endif
01222 }
01223
01224
01248 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColorPointer")]
01249 public static
01250 void ColorPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
01251 where T3 : struct
01252 {
01253 #if DEBUG
01254 using (new ErrorHelper(GraphicsContext.CurrentContext))
01255 {
01256 #endif
01257 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
01258 try
01259 {
01260 Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
01261 pointer = (T3)pointer_ptr.Target;
01262 }
01263 finally
01264 {
01265 pointer_ptr.Free();
01266 }
01267 #if DEBUG
01268 }
01269 #endif
01270 }
01271
01272
01296 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColorPointer")]
01297 public static
01298 void ColorPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
01299 where T3 : struct
01300 {
01301 #if DEBUG
01302 using (new ErrorHelper(GraphicsContext.CurrentContext))
01303 {
01304 #endif
01305 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
01306 try
01307 {
01308 Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
01309 }
01310 finally
01311 {
01312 pointer_ptr.Free();
01313 }
01314 #if DEBUG
01315 }
01316 #endif
01317 }
01318
01319
01343 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColorPointer")]
01344 public static
01345 void ColorPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
01346 where T3 : struct
01347 {
01348 #if DEBUG
01349 using (new ErrorHelper(GraphicsContext.CurrentContext))
01350 {
01351 #endif
01352 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
01353 try
01354 {
01355 Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
01356 }
01357 finally
01358 {
01359 pointer_ptr.Free();
01360 }
01361 #if DEBUG
01362 }
01363 #endif
01364 }
01365
01366
01390 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColorPointer")]
01391 public static
01392 void ColorPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
01393 where T3 : struct
01394 {
01395 #if DEBUG
01396 using (new ErrorHelper(GraphicsContext.CurrentContext))
01397 {
01398 #endif
01399 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
01400 try
01401 {
01402 Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
01403 }
01404 finally
01405 {
01406 pointer_ptr.Free();
01407 }
01408 #if DEBUG
01409 }
01410 #endif
01411 }
01412
01413
01437 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColorPointer")]
01438 public static
01439 void ColorPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
01440 {
01441 #if DEBUG
01442 using (new ErrorHelper(GraphicsContext.CurrentContext))
01443 {
01444 #endif
01445 Delegates.glColorPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
01446 #if DEBUG
01447 }
01448 #endif
01449 }
01450
01451
01495 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexImage2D")]
01496 public static
01497 void CompressedTexImage2D<T7>(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] ref T7 data)
01498 where T7 : struct
01499 {
01500 #if DEBUG
01501 using (new ErrorHelper(GraphicsContext.CurrentContext))
01502 {
01503 #endif
01504 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01505 try
01506 {
01507 Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01508 data = (T7)data_ptr.Target;
01509 }
01510 finally
01511 {
01512 data_ptr.Free();
01513 }
01514 #if DEBUG
01515 }
01516 #endif
01517 }
01518
01519
01563 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexImage2D")]
01564 public static
01565 void CompressedTexImage2D<T7>(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,,] data)
01566 where T7 : struct
01567 {
01568 #if DEBUG
01569 using (new ErrorHelper(GraphicsContext.CurrentContext))
01570 {
01571 #endif
01572 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01573 try
01574 {
01575 Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01576 }
01577 finally
01578 {
01579 data_ptr.Free();
01580 }
01581 #if DEBUG
01582 }
01583 #endif
01584 }
01585
01586
01630 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexImage2D")]
01631 public static
01632 void CompressedTexImage2D<T7>(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[,] data)
01633 where T7 : struct
01634 {
01635 #if DEBUG
01636 using (new ErrorHelper(GraphicsContext.CurrentContext))
01637 {
01638 #endif
01639 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01640 try
01641 {
01642 Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01643 }
01644 finally
01645 {
01646 data_ptr.Free();
01647 }
01648 #if DEBUG
01649 }
01650 #endif
01651 }
01652
01653
01697 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexImage2D")]
01698 public static
01699 void CompressedTexImage2D<T7>(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, [InAttribute, OutAttribute] T7[] data)
01700 where T7 : struct
01701 {
01702 #if DEBUG
01703 using (new ErrorHelper(GraphicsContext.CurrentContext))
01704 {
01705 #endif
01706 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01707 try
01708 {
01709 Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01710 }
01711 finally
01712 {
01713 data_ptr.Free();
01714 }
01715 #if DEBUG
01716 }
01717 #endif
01718 }
01719
01720
01764 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexImage2D")]
01765 public static
01766 void CompressedTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height, Int32 border, Int32 imageSize, IntPtr data)
01767 {
01768 #if DEBUG
01769 using (new ErrorHelper(GraphicsContext.CurrentContext))
01770 {
01771 #endif
01772 Delegates.glCompressedTexImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height, (Int32)border, (Int32)imageSize, (IntPtr)data);
01773 #if DEBUG
01774 }
01775 #endif
01776 }
01777
01778
01827 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexSubImage2D")]
01828 public static
01829 void CompressedTexSubImage2D<T8>(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] ref T8 data)
01830 where T8 : struct
01831 {
01832 #if DEBUG
01833 using (new ErrorHelper(GraphicsContext.CurrentContext))
01834 {
01835 #endif
01836 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01837 try
01838 {
01839 Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01840 data = (T8)data_ptr.Target;
01841 }
01842 finally
01843 {
01844 data_ptr.Free();
01845 }
01846 #if DEBUG
01847 }
01848 #endif
01849 }
01850
01851
01900 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexSubImage2D")]
01901 public static
01902 void CompressedTexSubImage2D<T8>(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,,] data)
01903 where T8 : struct
01904 {
01905 #if DEBUG
01906 using (new ErrorHelper(GraphicsContext.CurrentContext))
01907 {
01908 #endif
01909 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01910 try
01911 {
01912 Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01913 }
01914 finally
01915 {
01916 data_ptr.Free();
01917 }
01918 #if DEBUG
01919 }
01920 #endif
01921 }
01922
01923
01972 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexSubImage2D")]
01973 public static
01974 void CompressedTexSubImage2D<T8>(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[,] data)
01975 where T8 : struct
01976 {
01977 #if DEBUG
01978 using (new ErrorHelper(GraphicsContext.CurrentContext))
01979 {
01980 #endif
01981 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
01982 try
01983 {
01984 Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
01985 }
01986 finally
01987 {
01988 data_ptr.Free();
01989 }
01990 #if DEBUG
01991 }
01992 #endif
01993 }
01994
01995
02044 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexSubImage2D")]
02045 public static
02046 void CompressedTexSubImage2D<T8>(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, Int32 imageSize, [InAttribute, OutAttribute] T8[] data)
02047 where T8 : struct
02048 {
02049 #if DEBUG
02050 using (new ErrorHelper(GraphicsContext.CurrentContext))
02051 {
02052 #endif
02053 GCHandle data_ptr = GCHandle.Alloc(data, GCHandleType.Pinned);
02054 try
02055 {
02056 Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (Int32)imageSize, (IntPtr)data_ptr.AddrOfPinnedObject());
02057 }
02058 finally
02059 {
02060 data_ptr.Free();
02061 }
02062 #if DEBUG
02063 }
02064 #endif
02065 }
02066
02067
02116 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCompressedTexSubImage2D")]
02117 public static
02118 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)
02119 {
02120 #if DEBUG
02121 using (new ErrorHelper(GraphicsContext.CurrentContext))
02122 {
02123 #endif
02124 Delegates.glCompressedTexSubImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (Int32)imageSize, (IntPtr)data);
02125 #if DEBUG
02126 }
02127 #endif
02128 }
02129
02130
02169 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCopyTexImage2D")]
02170 public static
02171 void CopyTexImage2D(OpenTK.Graphics.ES11.All target, Int32 level, OpenTK.Graphics.ES11.All internalformat, Int32 x, Int32 y, Int32 width, Int32 height, Int32 border)
02172 {
02173 #if DEBUG
02174 using (new ErrorHelper(GraphicsContext.CurrentContext))
02175 {
02176 #endif
02177 Delegates.glCopyTexImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (OpenTK.Graphics.ES11.All)internalformat, (Int32)x, (Int32)y, (Int32)width, (Int32)height, (Int32)border);
02178 #if DEBUG
02179 }
02180 #endif
02181 }
02182
02183
02222 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCopyTexSubImage2D")]
02223 public static
02224 void CopyTexSubImage2D(OpenTK.Graphics.ES11.All target, Int32 level, Int32 xoffset, Int32 yoffset, Int32 x, Int32 y, Int32 width, Int32 height)
02225 {
02226 #if DEBUG
02227 using (new ErrorHelper(GraphicsContext.CurrentContext))
02228 {
02229 #endif
02230 Delegates.glCopyTexSubImage2D((OpenTK.Graphics.ES11.All)target, (Int32)level, (Int32)xoffset, (Int32)yoffset, (Int32)x, (Int32)y, (Int32)width, (Int32)height);
02231 #if DEBUG
02232 }
02233 #endif
02234 }
02235
02236
02245 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCullFace")]
02246 public static
02247 void CullFace(OpenTK.Graphics.ES11.All mode)
02248 {
02249 #if DEBUG
02250 using (new ErrorHelper(GraphicsContext.CurrentContext))
02251 {
02252 #endif
02253 Delegates.glCullFace((OpenTK.Graphics.ES11.All)mode);
02254 #if DEBUG
02255 }
02256 #endif
02257 }
02258
02259
02273 [System.CLSCompliant(false)]
02274 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteBuffers")]
02275 public static
02276 unsafe void DeleteBuffers(Int32 n, Int32* buffers)
02277 {
02278 #if DEBUG
02279 using (new ErrorHelper(GraphicsContext.CurrentContext))
02280 {
02281 #endif
02282 Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers);
02283 #if DEBUG
02284 }
02285 #endif
02286 }
02287
02288
02302 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteBuffers")]
02303 public static
02304 void DeleteBuffers(Int32 n, Int32[] buffers)
02305 {
02306 #if DEBUG
02307 using (new ErrorHelper(GraphicsContext.CurrentContext))
02308 {
02309 #endif
02310 unsafe
02311 {
02312 fixed (Int32* buffers_ptr = buffers)
02313 {
02314 Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr);
02315 }
02316 }
02317 #if DEBUG
02318 }
02319 #endif
02320 }
02321
02322
02336 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteBuffers")]
02337 public static
02338 void DeleteBuffers(Int32 n, ref Int32 buffers)
02339 {
02340 #if DEBUG
02341 using (new ErrorHelper(GraphicsContext.CurrentContext))
02342 {
02343 #endif
02344 unsafe
02345 {
02346 fixed (Int32* buffers_ptr = &buffers)
02347 {
02348 Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr);
02349 }
02350 }
02351 #if DEBUG
02352 }
02353 #endif
02354 }
02355
02356
02370 [System.CLSCompliant(false)]
02371 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteBuffers")]
02372 public static
02373 void DeleteBuffers(Int32 n, ref UInt32 buffers)
02374 {
02375 #if DEBUG
02376 using (new ErrorHelper(GraphicsContext.CurrentContext))
02377 {
02378 #endif
02379 unsafe
02380 {
02381 fixed (UInt32* buffers_ptr = &buffers)
02382 {
02383 Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr);
02384 }
02385 }
02386 #if DEBUG
02387 }
02388 #endif
02389 }
02390
02391
02405 [System.CLSCompliant(false)]
02406 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteBuffers")]
02407 public static
02408 unsafe void DeleteBuffers(Int32 n, UInt32* buffers)
02409 {
02410 #if DEBUG
02411 using (new ErrorHelper(GraphicsContext.CurrentContext))
02412 {
02413 #endif
02414 Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers);
02415 #if DEBUG
02416 }
02417 #endif
02418 }
02419
02420
02434 [System.CLSCompliant(false)]
02435 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteBuffers")]
02436 public static
02437 void DeleteBuffers(Int32 n, UInt32[] buffers)
02438 {
02439 #if DEBUG
02440 using (new ErrorHelper(GraphicsContext.CurrentContext))
02441 {
02442 #endif
02443 unsafe
02444 {
02445 fixed (UInt32* buffers_ptr = buffers)
02446 {
02447 Delegates.glDeleteBuffers((Int32)n, (UInt32*)buffers_ptr);
02448 }
02449 }
02450 #if DEBUG
02451 }
02452 #endif
02453 }
02454
02455
02469 [System.CLSCompliant(false)]
02470 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteTextures")]
02471 public static
02472 unsafe void DeleteTextures(Int32 n, Int32* textures)
02473 {
02474 #if DEBUG
02475 using (new ErrorHelper(GraphicsContext.CurrentContext))
02476 {
02477 #endif
02478 Delegates.glDeleteTextures((Int32)n, (UInt32*)textures);
02479 #if DEBUG
02480 }
02481 #endif
02482 }
02483
02484
02498 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteTextures")]
02499 public static
02500 void DeleteTextures(Int32 n, Int32[] textures)
02501 {
02502 #if DEBUG
02503 using (new ErrorHelper(GraphicsContext.CurrentContext))
02504 {
02505 #endif
02506 unsafe
02507 {
02508 fixed (Int32* textures_ptr = textures)
02509 {
02510 Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr);
02511 }
02512 }
02513 #if DEBUG
02514 }
02515 #endif
02516 }
02517
02518
02532 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteTextures")]
02533 public static
02534 void DeleteTextures(Int32 n, ref Int32 textures)
02535 {
02536 #if DEBUG
02537 using (new ErrorHelper(GraphicsContext.CurrentContext))
02538 {
02539 #endif
02540 unsafe
02541 {
02542 fixed (Int32* textures_ptr = &textures)
02543 {
02544 Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr);
02545 }
02546 }
02547 #if DEBUG
02548 }
02549 #endif
02550 }
02551
02552
02566 [System.CLSCompliant(false)]
02567 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteTextures")]
02568 public static
02569 void DeleteTextures(Int32 n, ref UInt32 textures)
02570 {
02571 #if DEBUG
02572 using (new ErrorHelper(GraphicsContext.CurrentContext))
02573 {
02574 #endif
02575 unsafe
02576 {
02577 fixed (UInt32* textures_ptr = &textures)
02578 {
02579 Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr);
02580 }
02581 }
02582 #if DEBUG
02583 }
02584 #endif
02585 }
02586
02587
02601 [System.CLSCompliant(false)]
02602 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteTextures")]
02603 public static
02604 unsafe void DeleteTextures(Int32 n, UInt32* textures)
02605 {
02606 #if DEBUG
02607 using (new ErrorHelper(GraphicsContext.CurrentContext))
02608 {
02609 #endif
02610 Delegates.glDeleteTextures((Int32)n, (UInt32*)textures);
02611 #if DEBUG
02612 }
02613 #endif
02614 }
02615
02616
02630 [System.CLSCompliant(false)]
02631 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteTextures")]
02632 public static
02633 void DeleteTextures(Int32 n, UInt32[] textures)
02634 {
02635 #if DEBUG
02636 using (new ErrorHelper(GraphicsContext.CurrentContext))
02637 {
02638 #endif
02639 unsafe
02640 {
02641 fixed (UInt32* textures_ptr = textures)
02642 {
02643 Delegates.glDeleteTextures((Int32)n, (UInt32*)textures_ptr);
02644 }
02645 }
02646 #if DEBUG
02647 }
02648 #endif
02649 }
02650
02651
02660 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDepthFunc")]
02661 public static
02662 void DepthFunc(OpenTK.Graphics.ES11.All func)
02663 {
02664 #if DEBUG
02665 using (new ErrorHelper(GraphicsContext.CurrentContext))
02666 {
02667 #endif
02668 Delegates.glDepthFunc((OpenTK.Graphics.ES11.All)func);
02669 #if DEBUG
02670 }
02671 #endif
02672 }
02673
02674
02683 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDepthMask")]
02684 public static
02685 void DepthMask(bool flag)
02686 {
02687 #if DEBUG
02688 using (new ErrorHelper(GraphicsContext.CurrentContext))
02689 {
02690 #endif
02691 Delegates.glDepthMask((bool)flag);
02692 #if DEBUG
02693 }
02694 #endif
02695 }
02696
02697
02711 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDepthRangef")]
02712 public static
02713 void DepthRange(Single zNear, Single zFar)
02714 {
02715 #if DEBUG
02716 using (new ErrorHelper(GraphicsContext.CurrentContext))
02717 {
02718 #endif
02719 Delegates.glDepthRangef((Single)zNear, (Single)zFar);
02720 #if DEBUG
02721 }
02722 #endif
02723 }
02724
02725 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDepthRangex")]
02726 public static
02727 void DepthRangex(int zNear, int zFar)
02728 {
02729 #if DEBUG
02730 using (new ErrorHelper(GraphicsContext.CurrentContext))
02731 {
02732 #endif
02733 Delegates.glDepthRangex((int)zNear, (int)zFar);
02734 #if DEBUG
02735 }
02736 #endif
02737 }
02738
02739 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDisable")]
02740 public static
02741 void Disable(OpenTK.Graphics.ES11.All cap)
02742 {
02743 #if DEBUG
02744 using (new ErrorHelper(GraphicsContext.CurrentContext))
02745 {
02746 #endif
02747 Delegates.glDisable((OpenTK.Graphics.ES11.All)cap);
02748 #if DEBUG
02749 }
02750 #endif
02751 }
02752
02753 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDisableClientState")]
02754 public static
02755 void DisableClientState(OpenTK.Graphics.ES11.All array)
02756 {
02757 #if DEBUG
02758 using (new ErrorHelper(GraphicsContext.CurrentContext))
02759 {
02760 #endif
02761 Delegates.glDisableClientState((OpenTK.Graphics.ES11.All)array);
02762 #if DEBUG
02763 }
02764 #endif
02765 }
02766
02767 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDisableDriverControlQCOM")]
02768 public static
02769 void DisableDriverControlQCOM(Int32 driverControl)
02770 {
02771 #if DEBUG
02772 using (new ErrorHelper(GraphicsContext.CurrentContext))
02773 {
02774 #endif
02775 Delegates.glDisableDriverControlQCOM((UInt32)driverControl);
02776 #if DEBUG
02777 }
02778 #endif
02779 }
02780
02781 [System.CLSCompliant(false)]
02782 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDisableDriverControlQCOM")]
02783 public static
02784 void DisableDriverControlQCOM(UInt32 driverControl)
02785 {
02786 #if DEBUG
02787 using (new ErrorHelper(GraphicsContext.CurrentContext))
02788 {
02789 #endif
02790 Delegates.glDisableDriverControlQCOM((UInt32)driverControl);
02791 #if DEBUG
02792 }
02793 #endif
02794 }
02795
02796
02815 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawArrays")]
02816 public static
02817 void DrawArrays(OpenTK.Graphics.ES11.All mode, Int32 first, Int32 count)
02818 {
02819 #if DEBUG
02820 using (new ErrorHelper(GraphicsContext.CurrentContext))
02821 {
02822 #endif
02823 Delegates.glDrawArrays((OpenTK.Graphics.ES11.All)mode, (Int32)first, (Int32)count);
02824 #if DEBUG
02825 }
02826 #endif
02827 }
02828
02829
02853 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawElements")]
02854 public static
02855 void DrawElements<T3>(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T3 indices)
02856 where T3 : struct
02857 {
02858 #if DEBUG
02859 using (new ErrorHelper(GraphicsContext.CurrentContext))
02860 {
02861 #endif
02862 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned);
02863 try
02864 {
02865 Delegates.glDrawElements((OpenTK.Graphics.ES11.All)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject());
02866 indices = (T3)indices_ptr.Target;
02867 }
02868 finally
02869 {
02870 indices_ptr.Free();
02871 }
02872 #if DEBUG
02873 }
02874 #endif
02875 }
02876
02877
02901 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawElements")]
02902 public static
02903 void DrawElements<T3>(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,,] indices)
02904 where T3 : struct
02905 {
02906 #if DEBUG
02907 using (new ErrorHelper(GraphicsContext.CurrentContext))
02908 {
02909 #endif
02910 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned);
02911 try
02912 {
02913 Delegates.glDrawElements((OpenTK.Graphics.ES11.All)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject());
02914 }
02915 finally
02916 {
02917 indices_ptr.Free();
02918 }
02919 #if DEBUG
02920 }
02921 #endif
02922 }
02923
02924
02948 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawElements")]
02949 public static
02950 void DrawElements<T3>(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[,] indices)
02951 where T3 : struct
02952 {
02953 #if DEBUG
02954 using (new ErrorHelper(GraphicsContext.CurrentContext))
02955 {
02956 #endif
02957 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned);
02958 try
02959 {
02960 Delegates.glDrawElements((OpenTK.Graphics.ES11.All)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject());
02961 }
02962 finally
02963 {
02964 indices_ptr.Free();
02965 }
02966 #if DEBUG
02967 }
02968 #endif
02969 }
02970
02971
02995 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawElements")]
02996 public static
02997 void DrawElements<T3>(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T3[] indices)
02998 where T3 : struct
02999 {
03000 #if DEBUG
03001 using (new ErrorHelper(GraphicsContext.CurrentContext))
03002 {
03003 #endif
03004 GCHandle indices_ptr = GCHandle.Alloc(indices, GCHandleType.Pinned);
03005 try
03006 {
03007 Delegates.glDrawElements((OpenTK.Graphics.ES11.All)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices_ptr.AddrOfPinnedObject());
03008 }
03009 finally
03010 {
03011 indices_ptr.Free();
03012 }
03013 #if DEBUG
03014 }
03015 #endif
03016 }
03017
03018
03042 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawElements")]
03043 public static
03044 void DrawElements(OpenTK.Graphics.ES11.All mode, Int32 count, OpenTK.Graphics.ES11.All type, IntPtr indices)
03045 {
03046 #if DEBUG
03047 using (new ErrorHelper(GraphicsContext.CurrentContext))
03048 {
03049 #endif
03050 Delegates.glDrawElements((OpenTK.Graphics.ES11.All)mode, (Int32)count, (OpenTK.Graphics.ES11.All)type, (IntPtr)indices);
03051 #if DEBUG
03052 }
03053 #endif
03054 }
03055
03056
03065 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glEnable")]
03066 public static
03067 void Enable(OpenTK.Graphics.ES11.All cap)
03068 {
03069 #if DEBUG
03070 using (new ErrorHelper(GraphicsContext.CurrentContext))
03071 {
03072 #endif
03073 Delegates.glEnable((OpenTK.Graphics.ES11.All)cap);
03074 #if DEBUG
03075 }
03076 #endif
03077 }
03078
03079
03088 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glEnableClientState")]
03089 public static
03090 void EnableClientState(OpenTK.Graphics.ES11.All array)
03091 {
03092 #if DEBUG
03093 using (new ErrorHelper(GraphicsContext.CurrentContext))
03094 {
03095 #endif
03096 Delegates.glEnableClientState((OpenTK.Graphics.ES11.All)array);
03097 #if DEBUG
03098 }
03099 #endif
03100 }
03101
03102 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glEnableDriverControlQCOM")]
03103 public static
03104 void EnableDriverControlQCOM(Int32 driverControl)
03105 {
03106 #if DEBUG
03107 using (new ErrorHelper(GraphicsContext.CurrentContext))
03108 {
03109 #endif
03110 Delegates.glEnableDriverControlQCOM((UInt32)driverControl);
03111 #if DEBUG
03112 }
03113 #endif
03114 }
03115
03116 [System.CLSCompliant(false)]
03117 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glEnableDriverControlQCOM")]
03118 public static
03119 void EnableDriverControlQCOM(UInt32 driverControl)
03120 {
03121 #if DEBUG
03122 using (new ErrorHelper(GraphicsContext.CurrentContext))
03123 {
03124 #endif
03125 Delegates.glEnableDriverControlQCOM((UInt32)driverControl);
03126 #if DEBUG
03127 }
03128 #endif
03129 }
03130
03131
03135 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFinish")]
03136 public static
03137 void Finish()
03138 {
03139 #if DEBUG
03140 using (new ErrorHelper(GraphicsContext.CurrentContext))
03141 {
03142 #endif
03143 Delegates.glFinish();
03144 #if DEBUG
03145 }
03146 #endif
03147 }
03148
03149
03153 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFlush")]
03154 public static
03155 void Flush()
03156 {
03157 #if DEBUG
03158 using (new ErrorHelper(GraphicsContext.CurrentContext))
03159 {
03160 #endif
03161 Delegates.glFlush();
03162 #if DEBUG
03163 }
03164 #endif
03165 }
03166
03167
03181 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogf")]
03182 public static
03183 void Fog(OpenTK.Graphics.ES11.All pname, Single param)
03184 {
03185 #if DEBUG
03186 using (new ErrorHelper(GraphicsContext.CurrentContext))
03187 {
03188 #endif
03189 Delegates.glFogf((OpenTK.Graphics.ES11.All)pname, (Single)param);
03190 #if DEBUG
03191 }
03192 #endif
03193 }
03194
03195
03209 [System.CLSCompliant(false)]
03210 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogfv")]
03211 public static
03212 unsafe void Fog(OpenTK.Graphics.ES11.All pname, Single* @params)
03213 {
03214 #if DEBUG
03215 using (new ErrorHelper(GraphicsContext.CurrentContext))
03216 {
03217 #endif
03218 Delegates.glFogfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params);
03219 #if DEBUG
03220 }
03221 #endif
03222 }
03223
03224
03238 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogfv")]
03239 public static
03240 void Fog(OpenTK.Graphics.ES11.All pname, Single[] @params)
03241 {
03242 #if DEBUG
03243 using (new ErrorHelper(GraphicsContext.CurrentContext))
03244 {
03245 #endif
03246 unsafe
03247 {
03248 fixed (Single* @params_ptr = @params)
03249 {
03250 Delegates.glFogfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
03251 }
03252 }
03253 #if DEBUG
03254 }
03255 #endif
03256 }
03257
03258 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogx")]
03259 public static
03260 void Fogx(OpenTK.Graphics.ES11.All pname, int param)
03261 {
03262 #if DEBUG
03263 using (new ErrorHelper(GraphicsContext.CurrentContext))
03264 {
03265 #endif
03266 Delegates.glFogx((OpenTK.Graphics.ES11.All)pname, (int)param);
03267 #if DEBUG
03268 }
03269 #endif
03270 }
03271
03272 [System.CLSCompliant(false)]
03273 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogxv")]
03274 public static
03275 unsafe void Fogx(OpenTK.Graphics.ES11.All pname, int* @params)
03276 {
03277 #if DEBUG
03278 using (new ErrorHelper(GraphicsContext.CurrentContext))
03279 {
03280 #endif
03281 Delegates.glFogxv((OpenTK.Graphics.ES11.All)pname, (int*)@params);
03282 #if DEBUG
03283 }
03284 #endif
03285 }
03286
03287 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogxv")]
03288 public static
03289 void Fogx(OpenTK.Graphics.ES11.All pname, int[] @params)
03290 {
03291 #if DEBUG
03292 using (new ErrorHelper(GraphicsContext.CurrentContext))
03293 {
03294 #endif
03295 unsafe
03296 {
03297 fixed (int* @params_ptr = @params)
03298 {
03299 Delegates.glFogxv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
03300 }
03301 }
03302 #if DEBUG
03303 }
03304 #endif
03305 }
03306
03307
03316 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFrontFace")]
03317 public static
03318 void FrontFace(OpenTK.Graphics.ES11.All mode)
03319 {
03320 #if DEBUG
03321 using (new ErrorHelper(GraphicsContext.CurrentContext))
03322 {
03323 #endif
03324 Delegates.glFrontFace((OpenTK.Graphics.ES11.All)mode);
03325 #if DEBUG
03326 }
03327 #endif
03328 }
03329
03330
03349 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFrustumf")]
03350 public static
03351 void Frustum(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar)
03352 {
03353 #if DEBUG
03354 using (new ErrorHelper(GraphicsContext.CurrentContext))
03355 {
03356 #endif
03357 Delegates.glFrustumf((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar);
03358 #if DEBUG
03359 }
03360 #endif
03361 }
03362
03363 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFrustumx")]
03364 public static
03365 void Frustumx(int left, int right, int bottom, int top, int zNear, int zFar)
03366 {
03367 #if DEBUG
03368 using (new ErrorHelper(GraphicsContext.CurrentContext))
03369 {
03370 #endif
03371 Delegates.glFrustumx((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar);
03372 #if DEBUG
03373 }
03374 #endif
03375 }
03376
03377
03391 [System.CLSCompliant(false)]
03392 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenBuffers")]
03393 public static
03394 unsafe void GenBuffers(Int32 n, Int32* buffers)
03395 {
03396 #if DEBUG
03397 using (new ErrorHelper(GraphicsContext.CurrentContext))
03398 {
03399 #endif
03400 Delegates.glGenBuffers((Int32)n, (UInt32*)buffers);
03401 #if DEBUG
03402 }
03403 #endif
03404 }
03405
03406
03420 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenBuffers")]
03421 public static
03422 void GenBuffers(Int32 n, Int32[] buffers)
03423 {
03424 #if DEBUG
03425 using (new ErrorHelper(GraphicsContext.CurrentContext))
03426 {
03427 #endif
03428 unsafe
03429 {
03430 fixed (Int32* buffers_ptr = buffers)
03431 {
03432 Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr);
03433 }
03434 }
03435 #if DEBUG
03436 }
03437 #endif
03438 }
03439
03440
03454 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenBuffers")]
03455 public static
03456 void GenBuffers(Int32 n, ref Int32 buffers)
03457 {
03458 #if DEBUG
03459 using (new ErrorHelper(GraphicsContext.CurrentContext))
03460 {
03461 #endif
03462 unsafe
03463 {
03464 fixed (Int32* buffers_ptr = &buffers)
03465 {
03466 Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr);
03467 }
03468 }
03469 #if DEBUG
03470 }
03471 #endif
03472 }
03473
03474
03488 [System.CLSCompliant(false)]
03489 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenBuffers")]
03490 public static
03491 void GenBuffers(Int32 n, ref UInt32 buffers)
03492 {
03493 #if DEBUG
03494 using (new ErrorHelper(GraphicsContext.CurrentContext))
03495 {
03496 #endif
03497 unsafe
03498 {
03499 fixed (UInt32* buffers_ptr = &buffers)
03500 {
03501 Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr);
03502 }
03503 }
03504 #if DEBUG
03505 }
03506 #endif
03507 }
03508
03509
03523 [System.CLSCompliant(false)]
03524 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenBuffers")]
03525 public static
03526 unsafe void GenBuffers(Int32 n, UInt32* buffers)
03527 {
03528 #if DEBUG
03529 using (new ErrorHelper(GraphicsContext.CurrentContext))
03530 {
03531 #endif
03532 Delegates.glGenBuffers((Int32)n, (UInt32*)buffers);
03533 #if DEBUG
03534 }
03535 #endif
03536 }
03537
03538
03552 [System.CLSCompliant(false)]
03553 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenBuffers")]
03554 public static
03555 void GenBuffers(Int32 n, UInt32[] buffers)
03556 {
03557 #if DEBUG
03558 using (new ErrorHelper(GraphicsContext.CurrentContext))
03559 {
03560 #endif
03561 unsafe
03562 {
03563 fixed (UInt32* buffers_ptr = buffers)
03564 {
03565 Delegates.glGenBuffers((Int32)n, (UInt32*)buffers_ptr);
03566 }
03567 }
03568 #if DEBUG
03569 }
03570 #endif
03571 }
03572
03573
03587 [System.CLSCompliant(false)]
03588 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenTextures")]
03589 public static
03590 unsafe void GenTextures(Int32 n, Int32* textures)
03591 {
03592 #if DEBUG
03593 using (new ErrorHelper(GraphicsContext.CurrentContext))
03594 {
03595 #endif
03596 Delegates.glGenTextures((Int32)n, (UInt32*)textures);
03597 #if DEBUG
03598 }
03599 #endif
03600 }
03601
03602
03616 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenTextures")]
03617 public static
03618 void GenTextures(Int32 n, Int32[] textures)
03619 {
03620 #if DEBUG
03621 using (new ErrorHelper(GraphicsContext.CurrentContext))
03622 {
03623 #endif
03624 unsafe
03625 {
03626 fixed (Int32* textures_ptr = textures)
03627 {
03628 Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr);
03629 }
03630 }
03631 #if DEBUG
03632 }
03633 #endif
03634 }
03635
03636
03650 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenTextures")]
03651 public static
03652 void GenTextures(Int32 n, ref Int32 textures)
03653 {
03654 #if DEBUG
03655 using (new ErrorHelper(GraphicsContext.CurrentContext))
03656 {
03657 #endif
03658 unsafe
03659 {
03660 fixed (Int32* textures_ptr = &textures)
03661 {
03662 Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr);
03663 }
03664 }
03665 #if DEBUG
03666 }
03667 #endif
03668 }
03669
03670
03684 [System.CLSCompliant(false)]
03685 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenTextures")]
03686 public static
03687 void GenTextures(Int32 n, ref UInt32 textures)
03688 {
03689 #if DEBUG
03690 using (new ErrorHelper(GraphicsContext.CurrentContext))
03691 {
03692 #endif
03693 unsafe
03694 {
03695 fixed (UInt32* textures_ptr = &textures)
03696 {
03697 Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr);
03698 }
03699 }
03700 #if DEBUG
03701 }
03702 #endif
03703 }
03704
03705
03719 [System.CLSCompliant(false)]
03720 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenTextures")]
03721 public static
03722 unsafe void GenTextures(Int32 n, UInt32* textures)
03723 {
03724 #if DEBUG
03725 using (new ErrorHelper(GraphicsContext.CurrentContext))
03726 {
03727 #endif
03728 Delegates.glGenTextures((Int32)n, (UInt32*)textures);
03729 #if DEBUG
03730 }
03731 #endif
03732 }
03733
03734
03748 [System.CLSCompliant(false)]
03749 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenTextures")]
03750 public static
03751 void GenTextures(Int32 n, UInt32[] textures)
03752 {
03753 #if DEBUG
03754 using (new ErrorHelper(GraphicsContext.CurrentContext))
03755 {
03756 #endif
03757 unsafe
03758 {
03759 fixed (UInt32* textures_ptr = textures)
03760 {
03761 Delegates.glGenTextures((Int32)n, (UInt32*)textures_ptr);
03762 }
03763 }
03764 #if DEBUG
03765 }
03766 #endif
03767 }
03768
03769 [System.CLSCompliant(false)]
03770 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBooleanv")]
03771 public static
03772 unsafe void GetBoolean(OpenTK.Graphics.ES11.All pname, bool* @params)
03773 {
03774 #if DEBUG
03775 using (new ErrorHelper(GraphicsContext.CurrentContext))
03776 {
03777 #endif
03778 Delegates.glGetBooleanv((OpenTK.Graphics.ES11.All)pname, (bool*)@params);
03779 #if DEBUG
03780 }
03781 #endif
03782 }
03783
03784 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBooleanv")]
03785 public static
03786 void GetBoolean(OpenTK.Graphics.ES11.All pname, bool[] @params)
03787 {
03788 #if DEBUG
03789 using (new ErrorHelper(GraphicsContext.CurrentContext))
03790 {
03791 #endif
03792 unsafe
03793 {
03794 fixed (bool* @params_ptr = @params)
03795 {
03796 Delegates.glGetBooleanv((OpenTK.Graphics.ES11.All)pname, (bool*)@params_ptr);
03797 }
03798 }
03799 #if DEBUG
03800 }
03801 #endif
03802 }
03803
03804 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBooleanv")]
03805 public static
03806 void GetBoolean(OpenTK.Graphics.ES11.All pname, ref bool @params)
03807 {
03808 #if DEBUG
03809 using (new ErrorHelper(GraphicsContext.CurrentContext))
03810 {
03811 #endif
03812 unsafe
03813 {
03814 fixed (bool* @params_ptr = &@params)
03815 {
03816 Delegates.glGetBooleanv((OpenTK.Graphics.ES11.All)pname, (bool*)@params_ptr);
03817 }
03818 }
03819 #if DEBUG
03820 }
03821 #endif
03822 }
03823
03824
03843 [System.CLSCompliant(false)]
03844 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferParameteriv")]
03845 public static
03846 unsafe void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params)
03847 {
03848 #if DEBUG
03849 using (new ErrorHelper(GraphicsContext.CurrentContext))
03850 {
03851 #endif
03852 Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
03853 #if DEBUG
03854 }
03855 #endif
03856 }
03857
03858
03877 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferParameteriv")]
03878 public static
03879 void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params)
03880 {
03881 #if DEBUG
03882 using (new ErrorHelper(GraphicsContext.CurrentContext))
03883 {
03884 #endif
03885 unsafe
03886 {
03887 fixed (Int32* @params_ptr = @params)
03888 {
03889 Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
03890 }
03891 }
03892 #if DEBUG
03893 }
03894 #endif
03895 }
03896
03897
03916 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferParameteriv")]
03917 public static
03918 void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
03919 {
03920 #if DEBUG
03921 using (new ErrorHelper(GraphicsContext.CurrentContext))
03922 {
03923 #endif
03924 unsafe
03925 {
03926 fixed (Int32* @params_ptr = &@params)
03927 {
03928 Delegates.glGetBufferParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
03929 }
03930 }
03931 #if DEBUG
03932 }
03933 #endif
03934 }
03935
03936
03950 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanef")]
03951 public static
03952 void GetClipPlane(OpenTK.Graphics.ES11.All pname, ref Single eqn)
03953 {
03954 #if DEBUG
03955 using (new ErrorHelper(GraphicsContext.CurrentContext))
03956 {
03957 #endif
03958 unsafe
03959 {
03960 fixed (Single* eqn_ptr = &eqn)
03961 {
03962 Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)pname, (Single*)eqn_ptr);
03963 }
03964 }
03965 #if DEBUG
03966 }
03967 #endif
03968 }
03969
03970
03984 [System.CLSCompliant(false)]
03985 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanef")]
03986 public static
03987 unsafe void GetClipPlane(OpenTK.Graphics.ES11.All pname, Single* eqn)
03988 {
03989 #if DEBUG
03990 using (new ErrorHelper(GraphicsContext.CurrentContext))
03991 {
03992 #endif
03993 Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)pname, (Single*)eqn);
03994 #if DEBUG
03995 }
03996 #endif
03997 }
03998
03999
04013 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanef")]
04014 public static
04015 void GetClipPlane(OpenTK.Graphics.ES11.All pname, Single[] eqn)
04016 {
04017 #if DEBUG
04018 using (new ErrorHelper(GraphicsContext.CurrentContext))
04019 {
04020 #endif
04021 unsafe
04022 {
04023 fixed (Single* eqn_ptr = eqn)
04024 {
04025 Delegates.glGetClipPlanef((OpenTK.Graphics.ES11.All)pname, (Single*)eqn_ptr);
04026 }
04027 }
04028 #if DEBUG
04029 }
04030 #endif
04031 }
04032
04033 [System.CLSCompliant(false)]
04034 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanex")]
04035 public static
04036 unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All pname, int* eqn)
04037 {
04038 #if DEBUG
04039 using (new ErrorHelper(GraphicsContext.CurrentContext))
04040 {
04041 #endif
04042 Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)pname, (int*)eqn);
04043 #if DEBUG
04044 }
04045 #endif
04046 }
04047
04048 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanex")]
04049 public static
04050 void GetClipPlanex(OpenTK.Graphics.ES11.All pname, int[] eqn)
04051 {
04052 #if DEBUG
04053 using (new ErrorHelper(GraphicsContext.CurrentContext))
04054 {
04055 #endif
04056 unsafe
04057 {
04058 fixed (int* eqn_ptr = eqn)
04059 {
04060 Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)pname, (int*)eqn_ptr);
04061 }
04062 }
04063 #if DEBUG
04064 }
04065 #endif
04066 }
04067
04068 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanex")]
04069 public static
04070 void GetClipPlanex(OpenTK.Graphics.ES11.All pname, ref int eqn)
04071 {
04072 #if DEBUG
04073 using (new ErrorHelper(GraphicsContext.CurrentContext))
04074 {
04075 #endif
04076 unsafe
04077 {
04078 fixed (int* eqn_ptr = &eqn)
04079 {
04080 Delegates.glGetClipPlanex((OpenTK.Graphics.ES11.All)pname, (int*)eqn_ptr);
04081 }
04082 }
04083 #if DEBUG
04084 }
04085 #endif
04086 }
04087
04088 [System.CLSCompliant(false)]
04089 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlsQCOM")]
04090 public static
04091 unsafe void GetDriverControlsQCOM(Int32* num, Int32 size, Int32* driverControls)
04092 {
04093 #if DEBUG
04094 using (new ErrorHelper(GraphicsContext.CurrentContext))
04095 {
04096 #endif
04097 Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls);
04098 #if DEBUG
04099 }
04100 #endif
04101 }
04102
04103 [System.CLSCompliant(false)]
04104 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlsQCOM")]
04105 public static
04106 unsafe void GetDriverControlsQCOM(Int32* num, Int32 size, UInt32* driverControls)
04107 {
04108 #if DEBUG
04109 using (new ErrorHelper(GraphicsContext.CurrentContext))
04110 {
04111 #endif
04112 Delegates.glGetDriverControlsQCOM((Int32*)num, (Int32)size, (UInt32*)driverControls);
04113 #if DEBUG
04114 }
04115 #endif
04116 }
04117
04118 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlsQCOM")]
04119 public static
04120 void GetDriverControlsQCOM(Int32[] num, Int32 size, Int32[] driverControls)
04121 {
04122 #if DEBUG
04123 using (new ErrorHelper(GraphicsContext.CurrentContext))
04124 {
04125 #endif
04126 unsafe
04127 {
04128 fixed (Int32* num_ptr = num)
04129 fixed (Int32* driverControls_ptr = driverControls)
04130 {
04131 Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr);
04132 }
04133 }
04134 #if DEBUG
04135 }
04136 #endif
04137 }
04138
04139 [System.CLSCompliant(false)]
04140 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlsQCOM")]
04141 public static
04142 void GetDriverControlsQCOM(Int32[] num, Int32 size, UInt32[] driverControls)
04143 {
04144 #if DEBUG
04145 using (new ErrorHelper(GraphicsContext.CurrentContext))
04146 {
04147 #endif
04148 unsafe
04149 {
04150 fixed (Int32* num_ptr = num)
04151 fixed (UInt32* driverControls_ptr = driverControls)
04152 {
04153 Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr);
04154 }
04155 }
04156 #if DEBUG
04157 }
04158 #endif
04159 }
04160
04161 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlsQCOM")]
04162 public static
04163 void GetDriverControlsQCOM(ref Int32 num, Int32 size, ref Int32 driverControls)
04164 {
04165 #if DEBUG
04166 using (new ErrorHelper(GraphicsContext.CurrentContext))
04167 {
04168 #endif
04169 unsafe
04170 {
04171 fixed (Int32* num_ptr = &num)
04172 fixed (Int32* driverControls_ptr = &driverControls)
04173 {
04174 Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr);
04175 }
04176 }
04177 #if DEBUG
04178 }
04179 #endif
04180 }
04181
04182 [System.CLSCompliant(false)]
04183 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlsQCOM")]
04184 public static
04185 void GetDriverControlsQCOM(ref Int32 num, Int32 size, ref UInt32 driverControls)
04186 {
04187 #if DEBUG
04188 using (new ErrorHelper(GraphicsContext.CurrentContext))
04189 {
04190 #endif
04191 unsafe
04192 {
04193 fixed (Int32* num_ptr = &num)
04194 fixed (UInt32* driverControls_ptr = &driverControls)
04195 {
04196 Delegates.glGetDriverControlsQCOM((Int32*)num_ptr, (Int32)size, (UInt32*)driverControls_ptr);
04197 }
04198 }
04199 #if DEBUG
04200 }
04201 #endif
04202 }
04203
04204 [System.CLSCompliant(false)]
04205 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlStringQCOM")]
04206 public static
04207 unsafe void GetDriverControlStringQCOM(Int32 driverControl, Int32 bufSize, Int32* length, String driverControlString)
04208 {
04209 #if DEBUG
04210 using (new ErrorHelper(GraphicsContext.CurrentContext))
04211 {
04212 #endif
04213 Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (String)driverControlString);
04214 #if DEBUG
04215 }
04216 #endif
04217 }
04218
04219 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlStringQCOM")]
04220 public static
04221 void GetDriverControlStringQCOM(Int32 driverControl, Int32 bufSize, Int32[] length, String driverControlString)
04222 {
04223 #if DEBUG
04224 using (new ErrorHelper(GraphicsContext.CurrentContext))
04225 {
04226 #endif
04227 unsafe
04228 {
04229 fixed (Int32* length_ptr = length)
04230 {
04231 Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (String)driverControlString);
04232 }
04233 }
04234 #if DEBUG
04235 }
04236 #endif
04237 }
04238
04239 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlStringQCOM")]
04240 public static
04241 void GetDriverControlStringQCOM(Int32 driverControl, Int32 bufSize, ref Int32 length, String driverControlString)
04242 {
04243 #if DEBUG
04244 using (new ErrorHelper(GraphicsContext.CurrentContext))
04245 {
04246 #endif
04247 unsafe
04248 {
04249 fixed (Int32* length_ptr = &length)
04250 {
04251 Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (String)driverControlString);
04252 }
04253 }
04254 #if DEBUG
04255 }
04256 #endif
04257 }
04258
04259 [System.CLSCompliant(false)]
04260 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlStringQCOM")]
04261 public static
04262 unsafe void GetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, Int32* length, String driverControlString)
04263 {
04264 #if DEBUG
04265 using (new ErrorHelper(GraphicsContext.CurrentContext))
04266 {
04267 #endif
04268 Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length, (String)driverControlString);
04269 #if DEBUG
04270 }
04271 #endif
04272 }
04273
04274 [System.CLSCompliant(false)]
04275 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlStringQCOM")]
04276 public static
04277 void GetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, Int32[] length, String driverControlString)
04278 {
04279 #if DEBUG
04280 using (new ErrorHelper(GraphicsContext.CurrentContext))
04281 {
04282 #endif
04283 unsafe
04284 {
04285 fixed (Int32* length_ptr = length)
04286 {
04287 Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (String)driverControlString);
04288 }
04289 }
04290 #if DEBUG
04291 }
04292 #endif
04293 }
04294
04295 [System.CLSCompliant(false)]
04296 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetDriverControlStringQCOM")]
04297 public static
04298 void GetDriverControlStringQCOM(UInt32 driverControl, Int32 bufSize, ref Int32 length, String driverControlString)
04299 {
04300 #if DEBUG
04301 using (new ErrorHelper(GraphicsContext.CurrentContext))
04302 {
04303 #endif
04304 unsafe
04305 {
04306 fixed (Int32* length_ptr = &length)
04307 {
04308 Delegates.glGetDriverControlStringQCOM((UInt32)driverControl, (Int32)bufSize, (Int32*)length_ptr, (String)driverControlString);
04309 }
04310 }
04311 #if DEBUG
04312 }
04313 #endif
04314 }
04315
04316
04320 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetError")]
04321 public static
04322 OpenTK.Graphics.ES11.All GetError()
04323 {
04324 return Delegates.glGetError();
04325 }
04326
04327 [System.CLSCompliant(false)]
04328 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFixedv")]
04329 public static
04330 unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, int* @params)
04331 {
04332 #if DEBUG
04333 using (new ErrorHelper(GraphicsContext.CurrentContext))
04334 {
04335 #endif
04336 Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params);
04337 #if DEBUG
04338 }
04339 #endif
04340 }
04341
04342 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFixedv")]
04343 public static
04344 void GetFixed(OpenTK.Graphics.ES11.All pname, int[] @params)
04345 {
04346 #if DEBUG
04347 using (new ErrorHelper(GraphicsContext.CurrentContext))
04348 {
04349 #endif
04350 unsafe
04351 {
04352 fixed (int* @params_ptr = @params)
04353 {
04354 Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
04355 }
04356 }
04357 #if DEBUG
04358 }
04359 #endif
04360 }
04361
04362 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFixedv")]
04363 public static
04364 void GetFixed(OpenTK.Graphics.ES11.All pname, ref int @params)
04365 {
04366 #if DEBUG
04367 using (new ErrorHelper(GraphicsContext.CurrentContext))
04368 {
04369 #endif
04370 unsafe
04371 {
04372 fixed (int* @params_ptr = &@params)
04373 {
04374 Delegates.glGetFixedv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
04375 }
04376 }
04377 #if DEBUG
04378 }
04379 #endif
04380 }
04381
04382 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFloatv")]
04383 public static
04384 void GetFloat(OpenTK.Graphics.ES11.All pname, ref Single @params)
04385 {
04386 #if DEBUG
04387 using (new ErrorHelper(GraphicsContext.CurrentContext))
04388 {
04389 #endif
04390 unsafe
04391 {
04392 fixed (Single* @params_ptr = &@params)
04393 {
04394 Delegates.glGetFloatv((OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
04395 }
04396 }
04397 #if DEBUG
04398 }
04399 #endif
04400 }
04401
04402 [System.CLSCompliant(false)]
04403 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFloatv")]
04404 public static
04405 unsafe void GetFloat(OpenTK.Graphics.ES11.All pname, Single* @params)
04406 {
04407 #if DEBUG
04408 using (new ErrorHelper(GraphicsContext.CurrentContext))
04409 {
04410 #endif
04411 Delegates.glGetFloatv((OpenTK.Graphics.ES11.All)pname, (Single*)@params);
04412 #if DEBUG
04413 }
04414 #endif
04415 }
04416
04417 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFloatv")]
04418 public static
04419 void GetFloat(OpenTK.Graphics.ES11.All pname, Single[] @params)
04420 {
04421 #if DEBUG
04422 using (new ErrorHelper(GraphicsContext.CurrentContext))
04423 {
04424 #endif
04425 unsafe
04426 {
04427 fixed (Single* @params_ptr = @params)
04428 {
04429 Delegates.glGetFloatv((OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
04430 }
04431 }
04432 #if DEBUG
04433 }
04434 #endif
04435 }
04436
04437 [System.CLSCompliant(false)]
04438 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetIntegerv")]
04439 public static
04440 unsafe void GetInteger(OpenTK.Graphics.ES11.All pname, Int32* @params)
04441 {
04442 #if DEBUG
04443 using (new ErrorHelper(GraphicsContext.CurrentContext))
04444 {
04445 #endif
04446 Delegates.glGetIntegerv((OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
04447 #if DEBUG
04448 }
04449 #endif
04450 }
04451
04452 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetIntegerv")]
04453 public static
04454 void GetInteger(OpenTK.Graphics.ES11.All pname, Int32[] @params)
04455 {
04456 #if DEBUG
04457 using (new ErrorHelper(GraphicsContext.CurrentContext))
04458 {
04459 #endif
04460 unsafe
04461 {
04462 fixed (Int32* @params_ptr = @params)
04463 {
04464 Delegates.glGetIntegerv((OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
04465 }
04466 }
04467 #if DEBUG
04468 }
04469 #endif
04470 }
04471
04472 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetIntegerv")]
04473 public static
04474 void GetInteger(OpenTK.Graphics.ES11.All pname, ref Int32 @params)
04475 {
04476 #if DEBUG
04477 using (new ErrorHelper(GraphicsContext.CurrentContext))
04478 {
04479 #endif
04480 unsafe
04481 {
04482 fixed (Int32* @params_ptr = &@params)
04483 {
04484 Delegates.glGetIntegerv((OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
04485 }
04486 }
04487 #if DEBUG
04488 }
04489 #endif
04490 }
04491
04492
04511 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightfv")]
04512 public static
04513 void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, ref Single @params)
04514 {
04515 #if DEBUG
04516 using (new ErrorHelper(GraphicsContext.CurrentContext))
04517 {
04518 #endif
04519 unsafe
04520 {
04521 fixed (Single* @params_ptr = &@params)
04522 {
04523 Delegates.glGetLightfv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
04524 }
04525 }
04526 #if DEBUG
04527 }
04528 #endif
04529 }
04530
04531
04550 [System.CLSCompliant(false)]
04551 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightfv")]
04552 public static
04553 unsafe void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single* @params)
04554 {
04555 #if DEBUG
04556 using (new ErrorHelper(GraphicsContext.CurrentContext))
04557 {
04558 #endif
04559 Delegates.glGetLightfv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
04560 #if DEBUG
04561 }
04562 #endif
04563 }
04564
04565
04584 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightfv")]
04585 public static
04586 void GetLight(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single[] @params)
04587 {
04588 #if DEBUG
04589 using (new ErrorHelper(GraphicsContext.CurrentContext))
04590 {
04591 #endif
04592 unsafe
04593 {
04594 fixed (Single* @params_ptr = @params)
04595 {
04596 Delegates.glGetLightfv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
04597 }
04598 }
04599 #if DEBUG
04600 }
04601 #endif
04602 }
04603
04604 [System.CLSCompliant(false)]
04605 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightxv")]
04606 public static
04607 unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params)
04608 {
04609 #if DEBUG
04610 using (new ErrorHelper(GraphicsContext.CurrentContext))
04611 {
04612 #endif
04613 Delegates.glGetLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
04614 #if DEBUG
04615 }
04616 #endif
04617 }
04618
04619 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightxv")]
04620 public static
04621 void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params)
04622 {
04623 #if DEBUG
04624 using (new ErrorHelper(GraphicsContext.CurrentContext))
04625 {
04626 #endif
04627 unsafe
04628 {
04629 fixed (int* @params_ptr = @params)
04630 {
04631 Delegates.glGetLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
04632 }
04633 }
04634 #if DEBUG
04635 }
04636 #endif
04637 }
04638
04639 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightxv")]
04640 public static
04641 void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, ref int @params)
04642 {
04643 #if DEBUG
04644 using (new ErrorHelper(GraphicsContext.CurrentContext))
04645 {
04646 #endif
04647 unsafe
04648 {
04649 fixed (int* @params_ptr = &@params)
04650 {
04651 Delegates.glGetLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
04652 }
04653 }
04654 #if DEBUG
04655 }
04656 #endif
04657 }
04658
04659
04678 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialfv")]
04679 public static
04680 void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, ref Single @params)
04681 {
04682 #if DEBUG
04683 using (new ErrorHelper(GraphicsContext.CurrentContext))
04684 {
04685 #endif
04686 unsafe
04687 {
04688 fixed (Single* @params_ptr = &@params)
04689 {
04690 Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
04691 }
04692 }
04693 #if DEBUG
04694 }
04695 #endif
04696 }
04697
04698
04717 [System.CLSCompliant(false)]
04718 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialfv")]
04719 public static
04720 unsafe void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single* @params)
04721 {
04722 #if DEBUG
04723 using (new ErrorHelper(GraphicsContext.CurrentContext))
04724 {
04725 #endif
04726 Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
04727 #if DEBUG
04728 }
04729 #endif
04730 }
04731
04732
04751 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialfv")]
04752 public static
04753 void GetMaterial(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single[] @params)
04754 {
04755 #if DEBUG
04756 using (new ErrorHelper(GraphicsContext.CurrentContext))
04757 {
04758 #endif
04759 unsafe
04760 {
04761 fixed (Single* @params_ptr = @params)
04762 {
04763 Delegates.glGetMaterialfv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
04764 }
04765 }
04766 #if DEBUG
04767 }
04768 #endif
04769 }
04770
04771 [System.CLSCompliant(false)]
04772 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialxv")]
04773 public static
04774 unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params)
04775 {
04776 #if DEBUG
04777 using (new ErrorHelper(GraphicsContext.CurrentContext))
04778 {
04779 #endif
04780 Delegates.glGetMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
04781 #if DEBUG
04782 }
04783 #endif
04784 }
04785
04786 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialxv")]
04787 public static
04788 void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] @params)
04789 {
04790 #if DEBUG
04791 using (new ErrorHelper(GraphicsContext.CurrentContext))
04792 {
04793 #endif
04794 unsafe
04795 {
04796 fixed (int* @params_ptr = @params)
04797 {
04798 Delegates.glGetMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
04799 }
04800 }
04801 #if DEBUG
04802 }
04803 #endif
04804 }
04805
04806 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialxv")]
04807 public static
04808 void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, ref int @params)
04809 {
04810 #if DEBUG
04811 using (new ErrorHelper(GraphicsContext.CurrentContext))
04812 {
04813 #endif
04814 unsafe
04815 {
04816 fixed (int* @params_ptr = &@params)
04817 {
04818 Delegates.glGetMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
04819 }
04820 }
04821 #if DEBUG
04822 }
04823 #endif
04824 }
04825
04826
04840 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetPointerv")]
04841 public static
04842 void GetPointer<T1>(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T1 @params)
04843 where T1 : struct
04844 {
04845 #if DEBUG
04846 using (new ErrorHelper(GraphicsContext.CurrentContext))
04847 {
04848 #endif
04849 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
04850 try
04851 {
04852 Delegates.glGetPointerv((OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
04853 @params = (T1)@params_ptr.Target;
04854 }
04855 finally
04856 {
04857 @params_ptr.Free();
04858 }
04859 #if DEBUG
04860 }
04861 #endif
04862 }
04863
04864
04878 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetPointerv")]
04879 public static
04880 void GetPointer<T1>(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[,,] @params)
04881 where T1 : struct
04882 {
04883 #if DEBUG
04884 using (new ErrorHelper(GraphicsContext.CurrentContext))
04885 {
04886 #endif
04887 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
04888 try
04889 {
04890 Delegates.glGetPointerv((OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
04891 }
04892 finally
04893 {
04894 @params_ptr.Free();
04895 }
04896 #if DEBUG
04897 }
04898 #endif
04899 }
04900
04901
04915 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetPointerv")]
04916 public static
04917 void GetPointer<T1>(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[,] @params)
04918 where T1 : struct
04919 {
04920 #if DEBUG
04921 using (new ErrorHelper(GraphicsContext.CurrentContext))
04922 {
04923 #endif
04924 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
04925 try
04926 {
04927 Delegates.glGetPointerv((OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
04928 }
04929 finally
04930 {
04931 @params_ptr.Free();
04932 }
04933 #if DEBUG
04934 }
04935 #endif
04936 }
04937
04938
04952 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetPointerv")]
04953 public static
04954 void GetPointer<T1>(OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T1[] @params)
04955 where T1 : struct
04956 {
04957 #if DEBUG
04958 using (new ErrorHelper(GraphicsContext.CurrentContext))
04959 {
04960 #endif
04961 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
04962 try
04963 {
04964 Delegates.glGetPointerv((OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
04965 }
04966 finally
04967 {
04968 @params_ptr.Free();
04969 }
04970 #if DEBUG
04971 }
04972 #endif
04973 }
04974
04975
04989 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetPointerv")]
04990 public static
04991 void GetPointer(OpenTK.Graphics.ES11.All pname, IntPtr @params)
04992 {
04993 #if DEBUG
04994 using (new ErrorHelper(GraphicsContext.CurrentContext))
04995 {
04996 #endif
04997 Delegates.glGetPointerv((OpenTK.Graphics.ES11.All)pname, (IntPtr)@params);
04998 #if DEBUG
04999 }
05000 #endif
05001 }
05002
05003
05012 [System.CLSCompliant(false)]
05013 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetString")]
05014 public static
05015 unsafe System.String GetString(OpenTK.Graphics.ES11.All name)
05016 {
05017 #if DEBUG
05018 using (new ErrorHelper(GraphicsContext.CurrentContext))
05019 {
05020 #endif
05021 unsafe { return new string((sbyte*)Delegates.glGetString((OpenTK.Graphics.ES11.All)name)); }
05022 #if DEBUG
05023 }
05024 #endif
05025 }
05026
05027
05046 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvfv")]
05047 public static
05048 void GetTexEnv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, ref Single @params)
05049 {
05050 #if DEBUG
05051 using (new ErrorHelper(GraphicsContext.CurrentContext))
05052 {
05053 #endif
05054 unsafe
05055 {
05056 fixed (Single* @params_ptr = &@params)
05057 {
05058 Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
05059 }
05060 }
05061 #if DEBUG
05062 }
05063 #endif
05064 }
05065
05066
05085 [System.CLSCompliant(false)]
05086 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvfv")]
05087 public static
05088 unsafe void GetTexEnv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, Single* @params)
05089 {
05090 #if DEBUG
05091 using (new ErrorHelper(GraphicsContext.CurrentContext))
05092 {
05093 #endif
05094 Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
05095 #if DEBUG
05096 }
05097 #endif
05098 }
05099
05100
05119 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvfv")]
05120 public static
05121 void GetTexEnv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, Single[] @params)
05122 {
05123 #if DEBUG
05124 using (new ErrorHelper(GraphicsContext.CurrentContext))
05125 {
05126 #endif
05127 unsafe
05128 {
05129 fixed (Single* @params_ptr = @params)
05130 {
05131 Delegates.glGetTexEnvfv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
05132 }
05133 }
05134 #if DEBUG
05135 }
05136 #endif
05137 }
05138
05139
05158 [System.CLSCompliant(false)]
05159 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnviv")]
05160 public static
05161 unsafe void GetTexEnv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, Int32* @params)
05162 {
05163 #if DEBUG
05164 using (new ErrorHelper(GraphicsContext.CurrentContext))
05165 {
05166 #endif
05167 Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
05168 #if DEBUG
05169 }
05170 #endif
05171 }
05172
05173
05192 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnviv")]
05193 public static
05194 void GetTexEnv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, Int32[] @params)
05195 {
05196 #if DEBUG
05197 using (new ErrorHelper(GraphicsContext.CurrentContext))
05198 {
05199 #endif
05200 unsafe
05201 {
05202 fixed (Int32* @params_ptr = @params)
05203 {
05204 Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
05205 }
05206 }
05207 #if DEBUG
05208 }
05209 #endif
05210 }
05211
05212
05231 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnviv")]
05232 public static
05233 void GetTexEnv(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
05234 {
05235 #if DEBUG
05236 using (new ErrorHelper(GraphicsContext.CurrentContext))
05237 {
05238 #endif
05239 unsafe
05240 {
05241 fixed (Int32* @params_ptr = &@params)
05242 {
05243 Delegates.glGetTexEnviv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
05244 }
05245 }
05246 #if DEBUG
05247 }
05248 #endif
05249 }
05250
05251 [System.CLSCompliant(false)]
05252 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvxv")]
05253 public static
05254 unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, int* @params)
05255 {
05256 #if DEBUG
05257 using (new ErrorHelper(GraphicsContext.CurrentContext))
05258 {
05259 #endif
05260 Delegates.glGetTexEnvxv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
05261 #if DEBUG
05262 }
05263 #endif
05264 }
05265
05266 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvxv")]
05267 public static
05268 void GetTexEnvx(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, int[] @params)
05269 {
05270 #if DEBUG
05271 using (new ErrorHelper(GraphicsContext.CurrentContext))
05272 {
05273 #endif
05274 unsafe
05275 {
05276 fixed (int* @params_ptr = @params)
05277 {
05278 Delegates.glGetTexEnvxv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
05279 }
05280 }
05281 #if DEBUG
05282 }
05283 #endif
05284 }
05285
05286 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvxv")]
05287 public static
05288 void GetTexEnvx(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, ref int @params)
05289 {
05290 #if DEBUG
05291 using (new ErrorHelper(GraphicsContext.CurrentContext))
05292 {
05293 #endif
05294 unsafe
05295 {
05296 fixed (int* @params_ptr = &@params)
05297 {
05298 Delegates.glGetTexEnvxv((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
05299 }
05300 }
05301 #if DEBUG
05302 }
05303 #endif
05304 }
05305
05306
05325 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterfv")]
05326 public static
05327 void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, ref Single @params)
05328 {
05329 #if DEBUG
05330 using (new ErrorHelper(GraphicsContext.CurrentContext))
05331 {
05332 #endif
05333 unsafe
05334 {
05335 fixed (Single* @params_ptr = &@params)
05336 {
05337 Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
05338 }
05339 }
05340 #if DEBUG
05341 }
05342 #endif
05343 }
05344
05345
05364 [System.CLSCompliant(false)]
05365 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterfv")]
05366 public static
05367 unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params)
05368 {
05369 #if DEBUG
05370 using (new ErrorHelper(GraphicsContext.CurrentContext))
05371 {
05372 #endif
05373 Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
05374 #if DEBUG
05375 }
05376 #endif
05377 }
05378
05379
05398 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterfv")]
05399 public static
05400 void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single[] @params)
05401 {
05402 #if DEBUG
05403 using (new ErrorHelper(GraphicsContext.CurrentContext))
05404 {
05405 #endif
05406 unsafe
05407 {
05408 fixed (Single* @params_ptr = @params)
05409 {
05410 Delegates.glGetTexParameterfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
05411 }
05412 }
05413 #if DEBUG
05414 }
05415 #endif
05416 }
05417
05418
05437 [System.CLSCompliant(false)]
05438 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameteriv")]
05439 public static
05440 unsafe void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params)
05441 {
05442 #if DEBUG
05443 using (new ErrorHelper(GraphicsContext.CurrentContext))
05444 {
05445 #endif
05446 Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
05447 #if DEBUG
05448 }
05449 #endif
05450 }
05451
05452
05471 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameteriv")]
05472 public static
05473 void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params)
05474 {
05475 #if DEBUG
05476 using (new ErrorHelper(GraphicsContext.CurrentContext))
05477 {
05478 #endif
05479 unsafe
05480 {
05481 fixed (Int32* @params_ptr = @params)
05482 {
05483 Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
05484 }
05485 }
05486 #if DEBUG
05487 }
05488 #endif
05489 }
05490
05491
05510 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameteriv")]
05511 public static
05512 void GetTexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
05513 {
05514 #if DEBUG
05515 using (new ErrorHelper(GraphicsContext.CurrentContext))
05516 {
05517 #endif
05518 unsafe
05519 {
05520 fixed (Int32* @params_ptr = &@params)
05521 {
05522 Delegates.glGetTexParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
05523 }
05524 }
05525 #if DEBUG
05526 }
05527 #endif
05528 }
05529
05530 [System.CLSCompliant(false)]
05531 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterxv")]
05532 public static
05533 unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params)
05534 {
05535 #if DEBUG
05536 using (new ErrorHelper(GraphicsContext.CurrentContext))
05537 {
05538 #endif
05539 Delegates.glGetTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
05540 #if DEBUG
05541 }
05542 #endif
05543 }
05544
05545 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterxv")]
05546 public static
05547 void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params)
05548 {
05549 #if DEBUG
05550 using (new ErrorHelper(GraphicsContext.CurrentContext))
05551 {
05552 #endif
05553 unsafe
05554 {
05555 fixed (int* @params_ptr = @params)
05556 {
05557 Delegates.glGetTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
05558 }
05559 }
05560 #if DEBUG
05561 }
05562 #endif
05563 }
05564
05565 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterxv")]
05566 public static
05567 void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, ref int @params)
05568 {
05569 #if DEBUG
05570 using (new ErrorHelper(GraphicsContext.CurrentContext))
05571 {
05572 #endif
05573 unsafe
05574 {
05575 fixed (int* @params_ptr = &@params)
05576 {
05577 Delegates.glGetTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
05578 }
05579 }
05580 #if DEBUG
05581 }
05582 #endif
05583 }
05584
05585
05599 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glHint")]
05600 public static
05601 void Hint(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All mode)
05602 {
05603 #if DEBUG
05604 using (new ErrorHelper(GraphicsContext.CurrentContext))
05605 {
05606 #endif
05607 Delegates.glHint((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)mode);
05608 #if DEBUG
05609 }
05610 #endif
05611 }
05612
05613
05622 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsBuffer")]
05623 public static
05624 bool IsBuffer(Int32 buffer)
05625 {
05626 #if DEBUG
05627 using (new ErrorHelper(GraphicsContext.CurrentContext))
05628 {
05629 #endif
05630 return Delegates.glIsBuffer((UInt32)buffer);
05631 #if DEBUG
05632 }
05633 #endif
05634 }
05635
05636
05645 [System.CLSCompliant(false)]
05646 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsBuffer")]
05647 public static
05648 bool IsBuffer(UInt32 buffer)
05649 {
05650 #if DEBUG
05651 using (new ErrorHelper(GraphicsContext.CurrentContext))
05652 {
05653 #endif
05654 return Delegates.glIsBuffer((UInt32)buffer);
05655 #if DEBUG
05656 }
05657 #endif
05658 }
05659
05660
05669 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsEnabled")]
05670 public static
05671 bool IsEnabled(OpenTK.Graphics.ES11.All cap)
05672 {
05673 #if DEBUG
05674 using (new ErrorHelper(GraphicsContext.CurrentContext))
05675 {
05676 #endif
05677 return Delegates.glIsEnabled((OpenTK.Graphics.ES11.All)cap);
05678 #if DEBUG
05679 }
05680 #endif
05681 }
05682
05683
05692 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsTexture")]
05693 public static
05694 bool IsTexture(Int32 texture)
05695 {
05696 #if DEBUG
05697 using (new ErrorHelper(GraphicsContext.CurrentContext))
05698 {
05699 #endif
05700 return Delegates.glIsTexture((UInt32)texture);
05701 #if DEBUG
05702 }
05703 #endif
05704 }
05705
05706
05715 [System.CLSCompliant(false)]
05716 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsTexture")]
05717 public static
05718 bool IsTexture(UInt32 texture)
05719 {
05720 #if DEBUG
05721 using (new ErrorHelper(GraphicsContext.CurrentContext))
05722 {
05723 #endif
05724 return Delegates.glIsTexture((UInt32)texture);
05725 #if DEBUG
05726 }
05727 #endif
05728 }
05729
05730
05749 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightf")]
05750 public static
05751 void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single param)
05752 {
05753 #if DEBUG
05754 using (new ErrorHelper(GraphicsContext.CurrentContext))
05755 {
05756 #endif
05757 Delegates.glLightf((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (Single)param);
05758 #if DEBUG
05759 }
05760 #endif
05761 }
05762
05763
05782 [System.CLSCompliant(false)]
05783 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightfv")]
05784 public static
05785 unsafe void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single* @params)
05786 {
05787 #if DEBUG
05788 using (new ErrorHelper(GraphicsContext.CurrentContext))
05789 {
05790 #endif
05791 Delegates.glLightfv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
05792 #if DEBUG
05793 }
05794 #endif
05795 }
05796
05797
05816 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightfv")]
05817 public static
05818 void Light(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, Single[] @params)
05819 {
05820 #if DEBUG
05821 using (new ErrorHelper(GraphicsContext.CurrentContext))
05822 {
05823 #endif
05824 unsafe
05825 {
05826 fixed (Single* @params_ptr = @params)
05827 {
05828 Delegates.glLightfv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
05829 }
05830 }
05831 #if DEBUG
05832 }
05833 #endif
05834 }
05835
05836
05850 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelf")]
05851 public static
05852 void LightModel(OpenTK.Graphics.ES11.All pname, Single param)
05853 {
05854 #if DEBUG
05855 using (new ErrorHelper(GraphicsContext.CurrentContext))
05856 {
05857 #endif
05858 Delegates.glLightModelf((OpenTK.Graphics.ES11.All)pname, (Single)param);
05859 #if DEBUG
05860 }
05861 #endif
05862 }
05863
05864
05878 [System.CLSCompliant(false)]
05879 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelfv")]
05880 public static
05881 unsafe void LightModel(OpenTK.Graphics.ES11.All pname, Single* @params)
05882 {
05883 #if DEBUG
05884 using (new ErrorHelper(GraphicsContext.CurrentContext))
05885 {
05886 #endif
05887 Delegates.glLightModelfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params);
05888 #if DEBUG
05889 }
05890 #endif
05891 }
05892
05893
05907 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelfv")]
05908 public static
05909 void LightModel(OpenTK.Graphics.ES11.All pname, Single[] @params)
05910 {
05911 #if DEBUG
05912 using (new ErrorHelper(GraphicsContext.CurrentContext))
05913 {
05914 #endif
05915 unsafe
05916 {
05917 fixed (Single* @params_ptr = @params)
05918 {
05919 Delegates.glLightModelfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
05920 }
05921 }
05922 #if DEBUG
05923 }
05924 #endif
05925 }
05926
05927 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelx")]
05928 public static
05929 void LightModelx(OpenTK.Graphics.ES11.All pname, int param)
05930 {
05931 #if DEBUG
05932 using (new ErrorHelper(GraphicsContext.CurrentContext))
05933 {
05934 #endif
05935 Delegates.glLightModelx((OpenTK.Graphics.ES11.All)pname, (int)param);
05936 #if DEBUG
05937 }
05938 #endif
05939 }
05940
05941 [System.CLSCompliant(false)]
05942 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelxv")]
05943 public static
05944 unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, int* @params)
05945 {
05946 #if DEBUG
05947 using (new ErrorHelper(GraphicsContext.CurrentContext))
05948 {
05949 #endif
05950 Delegates.glLightModelxv((OpenTK.Graphics.ES11.All)pname, (int*)@params);
05951 #if DEBUG
05952 }
05953 #endif
05954 }
05955
05956 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelxv")]
05957 public static
05958 void LightModelx(OpenTK.Graphics.ES11.All pname, int[] @params)
05959 {
05960 #if DEBUG
05961 using (new ErrorHelper(GraphicsContext.CurrentContext))
05962 {
05963 #endif
05964 unsafe
05965 {
05966 fixed (int* @params_ptr = @params)
05967 {
05968 Delegates.glLightModelxv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
05969 }
05970 }
05971 #if DEBUG
05972 }
05973 #endif
05974 }
05975
05976 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightx")]
05977 public static
05978 void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int param)
05979 {
05980 #if DEBUG
05981 using (new ErrorHelper(GraphicsContext.CurrentContext))
05982 {
05983 #endif
05984 Delegates.glLightx((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int)param);
05985 #if DEBUG
05986 }
05987 #endif
05988 }
05989
05990 [System.CLSCompliant(false)]
05991 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightxv")]
05992 public static
05993 unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params)
05994 {
05995 #if DEBUG
05996 using (new ErrorHelper(GraphicsContext.CurrentContext))
05997 {
05998 #endif
05999 Delegates.glLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
06000 #if DEBUG
06001 }
06002 #endif
06003 }
06004
06005 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightxv")]
06006 public static
06007 void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params)
06008 {
06009 #if DEBUG
06010 using (new ErrorHelper(GraphicsContext.CurrentContext))
06011 {
06012 #endif
06013 unsafe
06014 {
06015 fixed (int* @params_ptr = @params)
06016 {
06017 Delegates.glLightxv((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
06018 }
06019 }
06020 #if DEBUG
06021 }
06022 #endif
06023 }
06024
06025
06034 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLineWidth")]
06035 public static
06036 void LineWidth(Single width)
06037 {
06038 #if DEBUG
06039 using (new ErrorHelper(GraphicsContext.CurrentContext))
06040 {
06041 #endif
06042 Delegates.glLineWidth((Single)width);
06043 #if DEBUG
06044 }
06045 #endif
06046 }
06047
06048 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLineWidthx")]
06049 public static
06050 void LineWidthx(int width)
06051 {
06052 #if DEBUG
06053 using (new ErrorHelper(GraphicsContext.CurrentContext))
06054 {
06055 #endif
06056 Delegates.glLineWidthx((int)width);
06057 #if DEBUG
06058 }
06059 #endif
06060 }
06061
06062
06066 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadIdentity")]
06067 public static
06068 void LoadIdentity()
06069 {
06070 #if DEBUG
06071 using (new ErrorHelper(GraphicsContext.CurrentContext))
06072 {
06073 #endif
06074 Delegates.glLoadIdentity();
06075 #if DEBUG
06076 }
06077 #endif
06078 }
06079
06080
06089 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixf")]
06090 public static
06091 void LoadMatrix(ref Single m)
06092 {
06093 #if DEBUG
06094 using (new ErrorHelper(GraphicsContext.CurrentContext))
06095 {
06096 #endif
06097 unsafe
06098 {
06099 fixed (Single* m_ptr = &m)
06100 {
06101 Delegates.glLoadMatrixf((Single*)m_ptr);
06102 }
06103 }
06104 #if DEBUG
06105 }
06106 #endif
06107 }
06108
06109
06118 [System.CLSCompliant(false)]
06119 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixf")]
06120 public static
06121 unsafe void LoadMatrix(Single* m)
06122 {
06123 #if DEBUG
06124 using (new ErrorHelper(GraphicsContext.CurrentContext))
06125 {
06126 #endif
06127 Delegates.glLoadMatrixf((Single*)m);
06128 #if DEBUG
06129 }
06130 #endif
06131 }
06132
06133
06142 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixf")]
06143 public static
06144 void LoadMatrix(Single[] m)
06145 {
06146 #if DEBUG
06147 using (new ErrorHelper(GraphicsContext.CurrentContext))
06148 {
06149 #endif
06150 unsafe
06151 {
06152 fixed (Single* m_ptr = m)
06153 {
06154 Delegates.glLoadMatrixf((Single*)m_ptr);
06155 }
06156 }
06157 #if DEBUG
06158 }
06159 #endif
06160 }
06161
06162 [System.CLSCompliant(false)]
06163 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixx")]
06164 public static
06165 unsafe void LoadMatrixx(int* m)
06166 {
06167 #if DEBUG
06168 using (new ErrorHelper(GraphicsContext.CurrentContext))
06169 {
06170 #endif
06171 Delegates.glLoadMatrixx((int*)m);
06172 #if DEBUG
06173 }
06174 #endif
06175 }
06176
06177 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixx")]
06178 public static
06179 void LoadMatrixx(int[] m)
06180 {
06181 #if DEBUG
06182 using (new ErrorHelper(GraphicsContext.CurrentContext))
06183 {
06184 #endif
06185 unsafe
06186 {
06187 fixed (int* m_ptr = m)
06188 {
06189 Delegates.glLoadMatrixx((int*)m_ptr);
06190 }
06191 }
06192 #if DEBUG
06193 }
06194 #endif
06195 }
06196
06197 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixx")]
06198 public static
06199 void LoadMatrixx(ref int m)
06200 {
06201 #if DEBUG
06202 using (new ErrorHelper(GraphicsContext.CurrentContext))
06203 {
06204 #endif
06205 unsafe
06206 {
06207 fixed (int* m_ptr = &m)
06208 {
06209 Delegates.glLoadMatrixx((int*)m_ptr);
06210 }
06211 }
06212 #if DEBUG
06213 }
06214 #endif
06215 }
06216
06217
06226 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLogicOp")]
06227 public static
06228 void LogicOp(OpenTK.Graphics.ES11.All opcode)
06229 {
06230 #if DEBUG
06231 using (new ErrorHelper(GraphicsContext.CurrentContext))
06232 {
06233 #endif
06234 Delegates.glLogicOp((OpenTK.Graphics.ES11.All)opcode);
06235 #if DEBUG
06236 }
06237 #endif
06238 }
06239
06240
06259 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialf")]
06260 public static
06261 void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single param)
06262 {
06263 #if DEBUG
06264 using (new ErrorHelper(GraphicsContext.CurrentContext))
06265 {
06266 #endif
06267 Delegates.glMaterialf((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (Single)param);
06268 #if DEBUG
06269 }
06270 #endif
06271 }
06272
06273
06292 [System.CLSCompliant(false)]
06293 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialfv")]
06294 public static
06295 unsafe void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single* @params)
06296 {
06297 #if DEBUG
06298 using (new ErrorHelper(GraphicsContext.CurrentContext))
06299 {
06300 #endif
06301 Delegates.glMaterialfv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
06302 #if DEBUG
06303 }
06304 #endif
06305 }
06306
06307
06326 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialfv")]
06327 public static
06328 void Material(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, Single[] @params)
06329 {
06330 #if DEBUG
06331 using (new ErrorHelper(GraphicsContext.CurrentContext))
06332 {
06333 #endif
06334 unsafe
06335 {
06336 fixed (Single* @params_ptr = @params)
06337 {
06338 Delegates.glMaterialfv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
06339 }
06340 }
06341 #if DEBUG
06342 }
06343 #endif
06344 }
06345
06346 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialx")]
06347 public static
06348 void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param)
06349 {
06350 #if DEBUG
06351 using (new ErrorHelper(GraphicsContext.CurrentContext))
06352 {
06353 #endif
06354 Delegates.glMaterialx((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param);
06355 #if DEBUG
06356 }
06357 #endif
06358 }
06359
06360 [System.CLSCompliant(false)]
06361 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialxv")]
06362 public static
06363 unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params)
06364 {
06365 #if DEBUG
06366 using (new ErrorHelper(GraphicsContext.CurrentContext))
06367 {
06368 #endif
06369 Delegates.glMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
06370 #if DEBUG
06371 }
06372 #endif
06373 }
06374
06375 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialxv")]
06376 public static
06377 void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] @params)
06378 {
06379 #if DEBUG
06380 using (new ErrorHelper(GraphicsContext.CurrentContext))
06381 {
06382 #endif
06383 unsafe
06384 {
06385 fixed (int* @params_ptr = @params)
06386 {
06387 Delegates.glMaterialxv((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
06388 }
06389 }
06390 #if DEBUG
06391 }
06392 #endif
06393 }
06394
06395
06404 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMatrixMode")]
06405 public static
06406 void MatrixMode(OpenTK.Graphics.ES11.All mode)
06407 {
06408 #if DEBUG
06409 using (new ErrorHelper(GraphicsContext.CurrentContext))
06410 {
06411 #endif
06412 Delegates.glMatrixMode((OpenTK.Graphics.ES11.All)mode);
06413 #if DEBUG
06414 }
06415 #endif
06416 }
06417
06418
06432 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultiTexCoord4f")]
06433 public static
06434 void MultiTexCoord4(OpenTK.Graphics.ES11.All target, Single s, Single t, Single r, Single q)
06435 {
06436 #if DEBUG
06437 using (new ErrorHelper(GraphicsContext.CurrentContext))
06438 {
06439 #endif
06440 Delegates.glMultiTexCoord4f((OpenTK.Graphics.ES11.All)target, (Single)s, (Single)t, (Single)r, (Single)q);
06441 #if DEBUG
06442 }
06443 #endif
06444 }
06445
06446 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultiTexCoord4x")]
06447 public static
06448 void MultiTexCoord4x(OpenTK.Graphics.ES11.All target, int s, int t, int r, int q)
06449 {
06450 #if DEBUG
06451 using (new ErrorHelper(GraphicsContext.CurrentContext))
06452 {
06453 #endif
06454 Delegates.glMultiTexCoord4x((OpenTK.Graphics.ES11.All)target, (int)s, (int)t, (int)r, (int)q);
06455 #if DEBUG
06456 }
06457 #endif
06458 }
06459
06460
06469 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixf")]
06470 public static
06471 void MultMatrix(ref Single m)
06472 {
06473 #if DEBUG
06474 using (new ErrorHelper(GraphicsContext.CurrentContext))
06475 {
06476 #endif
06477 unsafe
06478 {
06479 fixed (Single* m_ptr = &m)
06480 {
06481 Delegates.glMultMatrixf((Single*)m_ptr);
06482 }
06483 }
06484 #if DEBUG
06485 }
06486 #endif
06487 }
06488
06489
06498 [System.CLSCompliant(false)]
06499 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixf")]
06500 public static
06501 unsafe void MultMatrix(Single* m)
06502 {
06503 #if DEBUG
06504 using (new ErrorHelper(GraphicsContext.CurrentContext))
06505 {
06506 #endif
06507 Delegates.glMultMatrixf((Single*)m);
06508 #if DEBUG
06509 }
06510 #endif
06511 }
06512
06513
06522 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixf")]
06523 public static
06524 void MultMatrix(Single[] m)
06525 {
06526 #if DEBUG
06527 using (new ErrorHelper(GraphicsContext.CurrentContext))
06528 {
06529 #endif
06530 unsafe
06531 {
06532 fixed (Single* m_ptr = m)
06533 {
06534 Delegates.glMultMatrixf((Single*)m_ptr);
06535 }
06536 }
06537 #if DEBUG
06538 }
06539 #endif
06540 }
06541
06542 [System.CLSCompliant(false)]
06543 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixx")]
06544 public static
06545 unsafe void MultMatrixx(int* m)
06546 {
06547 #if DEBUG
06548 using (new ErrorHelper(GraphicsContext.CurrentContext))
06549 {
06550 #endif
06551 Delegates.glMultMatrixx((int*)m);
06552 #if DEBUG
06553 }
06554 #endif
06555 }
06556
06557 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixx")]
06558 public static
06559 void MultMatrixx(int[] m)
06560 {
06561 #if DEBUG
06562 using (new ErrorHelper(GraphicsContext.CurrentContext))
06563 {
06564 #endif
06565 unsafe
06566 {
06567 fixed (int* m_ptr = m)
06568 {
06569 Delegates.glMultMatrixx((int*)m_ptr);
06570 }
06571 }
06572 #if DEBUG
06573 }
06574 #endif
06575 }
06576
06577 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixx")]
06578 public static
06579 void MultMatrixx(ref int m)
06580 {
06581 #if DEBUG
06582 using (new ErrorHelper(GraphicsContext.CurrentContext))
06583 {
06584 #endif
06585 unsafe
06586 {
06587 fixed (int* m_ptr = &m)
06588 {
06589 Delegates.glMultMatrixx((int*)m_ptr);
06590 }
06591 }
06592 #if DEBUG
06593 }
06594 #endif
06595 }
06596
06597
06609 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormal3f")]
06610 public static
06611 void Normal3(Single nx, Single ny, Single nz)
06612 {
06613 #if DEBUG
06614 using (new ErrorHelper(GraphicsContext.CurrentContext))
06615 {
06616 #endif
06617 Delegates.glNormal3f((Single)nx, (Single)ny, (Single)nz);
06618 #if DEBUG
06619 }
06620 #endif
06621 }
06622
06623 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormal3x")]
06624 public static
06625 void Normal3x(int nx, int ny, int nz)
06626 {
06627 #if DEBUG
06628 using (new ErrorHelper(GraphicsContext.CurrentContext))
06629 {
06630 #endif
06631 Delegates.glNormal3x((int)nx, (int)ny, (int)nz);
06632 #if DEBUG
06633 }
06634 #endif
06635 }
06636
06637
06656 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormalPointer")]
06657 public static
06658 void NormalPointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T2 pointer)
06659 where T2 : struct
06660 {
06661 #if DEBUG
06662 using (new ErrorHelper(GraphicsContext.CurrentContext))
06663 {
06664 #endif
06665 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
06666 try
06667 {
06668 Delegates.glNormalPointer((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
06669 pointer = (T2)pointer_ptr.Target;
06670 }
06671 finally
06672 {
06673 pointer_ptr.Free();
06674 }
06675 #if DEBUG
06676 }
06677 #endif
06678 }
06679
06680
06699 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormalPointer")]
06700 public static
06701 void NormalPointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer)
06702 where T2 : struct
06703 {
06704 #if DEBUG
06705 using (new ErrorHelper(GraphicsContext.CurrentContext))
06706 {
06707 #endif
06708 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
06709 try
06710 {
06711 Delegates.glNormalPointer((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
06712 }
06713 finally
06714 {
06715 pointer_ptr.Free();
06716 }
06717 #if DEBUG
06718 }
06719 #endif
06720 }
06721
06722
06741 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormalPointer")]
06742 public static
06743 void NormalPointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer)
06744 where T2 : struct
06745 {
06746 #if DEBUG
06747 using (new ErrorHelper(GraphicsContext.CurrentContext))
06748 {
06749 #endif
06750 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
06751 try
06752 {
06753 Delegates.glNormalPointer((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
06754 }
06755 finally
06756 {
06757 pointer_ptr.Free();
06758 }
06759 #if DEBUG
06760 }
06761 #endif
06762 }
06763
06764
06783 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormalPointer")]
06784 public static
06785 void NormalPointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer)
06786 where T2 : struct
06787 {
06788 #if DEBUG
06789 using (new ErrorHelper(GraphicsContext.CurrentContext))
06790 {
06791 #endif
06792 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
06793 try
06794 {
06795 Delegates.glNormalPointer((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
06796 }
06797 finally
06798 {
06799 pointer_ptr.Free();
06800 }
06801 #if DEBUG
06802 }
06803 #endif
06804 }
06805
06806
06825 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormalPointer")]
06826 public static
06827 void NormalPointer(OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
06828 {
06829 #if DEBUG
06830 using (new ErrorHelper(GraphicsContext.CurrentContext))
06831 {
06832 #endif
06833 Delegates.glNormalPointer((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
06834 #if DEBUG
06835 }
06836 #endif
06837 }
06838
06839
06858 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glOrthof")]
06859 public static
06860 void Ortho(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar)
06861 {
06862 #if DEBUG
06863 using (new ErrorHelper(GraphicsContext.CurrentContext))
06864 {
06865 #endif
06866 Delegates.glOrthof((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar);
06867 #if DEBUG
06868 }
06869 #endif
06870 }
06871
06872 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glOrthox")]
06873 public static
06874 void Orthox(int left, int right, int bottom, int top, int zNear, int zFar)
06875 {
06876 #if DEBUG
06877 using (new ErrorHelper(GraphicsContext.CurrentContext))
06878 {
06879 #endif
06880 Delegates.glOrthox((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar);
06881 #if DEBUG
06882 }
06883 #endif
06884 }
06885
06886
06900 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPixelStorei")]
06901 public static
06902 void PixelStore(OpenTK.Graphics.ES11.All pname, Int32 param)
06903 {
06904 #if DEBUG
06905 using (new ErrorHelper(GraphicsContext.CurrentContext))
06906 {
06907 #endif
06908 Delegates.glPixelStorei((OpenTK.Graphics.ES11.All)pname, (Int32)param);
06909 #if DEBUG
06910 }
06911 #endif
06912 }
06913
06914
06928 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterf")]
06929 public static
06930 void PointParameter(OpenTK.Graphics.ES11.All pname, Single param)
06931 {
06932 #if DEBUG
06933 using (new ErrorHelper(GraphicsContext.CurrentContext))
06934 {
06935 #endif
06936 Delegates.glPointParameterf((OpenTK.Graphics.ES11.All)pname, (Single)param);
06937 #if DEBUG
06938 }
06939 #endif
06940 }
06941
06942
06956 [System.CLSCompliant(false)]
06957 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterfv")]
06958 public static
06959 unsafe void PointParameter(OpenTK.Graphics.ES11.All pname, Single* @params)
06960 {
06961 #if DEBUG
06962 using (new ErrorHelper(GraphicsContext.CurrentContext))
06963 {
06964 #endif
06965 Delegates.glPointParameterfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params);
06966 #if DEBUG
06967 }
06968 #endif
06969 }
06970
06971
06985 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterfv")]
06986 public static
06987 void PointParameter(OpenTK.Graphics.ES11.All pname, Single[] @params)
06988 {
06989 #if DEBUG
06990 using (new ErrorHelper(GraphicsContext.CurrentContext))
06991 {
06992 #endif
06993 unsafe
06994 {
06995 fixed (Single* @params_ptr = @params)
06996 {
06997 Delegates.glPointParameterfv((OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
06998 }
06999 }
07000 #if DEBUG
07001 }
07002 #endif
07003 }
07004
07005 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterx")]
07006 public static
07007 void PointParameterx(OpenTK.Graphics.ES11.All pname, int param)
07008 {
07009 #if DEBUG
07010 using (new ErrorHelper(GraphicsContext.CurrentContext))
07011 {
07012 #endif
07013 Delegates.glPointParameterx((OpenTK.Graphics.ES11.All)pname, (int)param);
07014 #if DEBUG
07015 }
07016 #endif
07017 }
07018
07019 [System.CLSCompliant(false)]
07020 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterxv")]
07021 public static
07022 unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, int* @params)
07023 {
07024 #if DEBUG
07025 using (new ErrorHelper(GraphicsContext.CurrentContext))
07026 {
07027 #endif
07028 Delegates.glPointParameterxv((OpenTK.Graphics.ES11.All)pname, (int*)@params);
07029 #if DEBUG
07030 }
07031 #endif
07032 }
07033
07034 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterxv")]
07035 public static
07036 void PointParameterx(OpenTK.Graphics.ES11.All pname, int[] @params)
07037 {
07038 #if DEBUG
07039 using (new ErrorHelper(GraphicsContext.CurrentContext))
07040 {
07041 #endif
07042 unsafe
07043 {
07044 fixed (int* @params_ptr = @params)
07045 {
07046 Delegates.glPointParameterxv((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
07047 }
07048 }
07049 #if DEBUG
07050 }
07051 #endif
07052 }
07053
07054
07063 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSize")]
07064 public static
07065 void PointSize(Single size)
07066 {
07067 #if DEBUG
07068 using (new ErrorHelper(GraphicsContext.CurrentContext))
07069 {
07070 #endif
07071 Delegates.glPointSize((Single)size);
07072 #if DEBUG
07073 }
07074 #endif
07075 }
07076
07077 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizex")]
07078 public static
07079 void PointSizex(int size)
07080 {
07081 #if DEBUG
07082 using (new ErrorHelper(GraphicsContext.CurrentContext))
07083 {
07084 #endif
07085 Delegates.glPointSizex((int)size);
07086 #if DEBUG
07087 }
07088 #endif
07089 }
07090
07091
07105 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPolygonOffset")]
07106 public static
07107 void PolygonOffset(Single factor, Single units)
07108 {
07109 #if DEBUG
07110 using (new ErrorHelper(GraphicsContext.CurrentContext))
07111 {
07112 #endif
07113 Delegates.glPolygonOffset((Single)factor, (Single)units);
07114 #if DEBUG
07115 }
07116 #endif
07117 }
07118
07119 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPolygonOffsetx")]
07120 public static
07121 void PolygonOffsetx(int factor, int units)
07122 {
07123 #if DEBUG
07124 using (new ErrorHelper(GraphicsContext.CurrentContext))
07125 {
07126 #endif
07127 Delegates.glPolygonOffsetx((int)factor, (int)units);
07128 #if DEBUG
07129 }
07130 #endif
07131 }
07132
07133 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPopMatrix")]
07134 public static
07135 void PopMatrix()
07136 {
07137 #if DEBUG
07138 using (new ErrorHelper(GraphicsContext.CurrentContext))
07139 {
07140 #endif
07141 Delegates.glPopMatrix();
07142 #if DEBUG
07143 }
07144 #endif
07145 }
07146
07147
07151 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPushMatrix")]
07152 public static
07153 void PushMatrix()
07154 {
07155 #if DEBUG
07156 using (new ErrorHelper(GraphicsContext.CurrentContext))
07157 {
07158 #endif
07159 Delegates.glPushMatrix();
07160 #if DEBUG
07161 }
07162 #endif
07163 }
07164
07165
07194 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glReadPixels")]
07195 public static
07196 void ReadPixels<T6>(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] ref T6 pixels)
07197 where T6 : struct
07198 {
07199 #if DEBUG
07200 using (new ErrorHelper(GraphicsContext.CurrentContext))
07201 {
07202 #endif
07203 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
07204 try
07205 {
07206 Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
07207 pixels = (T6)pixels_ptr.Target;
07208 }
07209 finally
07210 {
07211 pixels_ptr.Free();
07212 }
07213 #if DEBUG
07214 }
07215 #endif
07216 }
07217
07218
07247 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glReadPixels")]
07248 public static
07249 void ReadPixels<T6>(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T6[,,] pixels)
07250 where T6 : struct
07251 {
07252 #if DEBUG
07253 using (new ErrorHelper(GraphicsContext.CurrentContext))
07254 {
07255 #endif
07256 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
07257 try
07258 {
07259 Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
07260 }
07261 finally
07262 {
07263 pixels_ptr.Free();
07264 }
07265 #if DEBUG
07266 }
07267 #endif
07268 }
07269
07270
07299 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glReadPixels")]
07300 public static
07301 void ReadPixels<T6>(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T6[,] pixels)
07302 where T6 : struct
07303 {
07304 #if DEBUG
07305 using (new ErrorHelper(GraphicsContext.CurrentContext))
07306 {
07307 #endif
07308 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
07309 try
07310 {
07311 Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
07312 }
07313 finally
07314 {
07315 pixels_ptr.Free();
07316 }
07317 #if DEBUG
07318 }
07319 #endif
07320 }
07321
07322
07351 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glReadPixels")]
07352 public static
07353 void ReadPixels<T6>(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, [InAttribute, OutAttribute] T6[] pixels)
07354 where T6 : struct
07355 {
07356 #if DEBUG
07357 using (new ErrorHelper(GraphicsContext.CurrentContext))
07358 {
07359 #endif
07360 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
07361 try
07362 {
07363 Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)pixels_ptr.AddrOfPinnedObject());
07364 }
07365 finally
07366 {
07367 pixels_ptr.Free();
07368 }
07369 #if DEBUG
07370 }
07371 #endif
07372 }
07373
07374
07403 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glReadPixels")]
07404 public static
07405 void ReadPixels(Int32 x, Int32 y, Int32 width, Int32 height, OpenTK.Graphics.ES11.All format, OpenTK.Graphics.ES11.All type, IntPtr pixels)
07406 {
07407 #if DEBUG
07408 using (new ErrorHelper(GraphicsContext.CurrentContext))
07409 {
07410 #endif
07411 Delegates.glReadPixels((Int32)x, (Int32)y, (Int32)width, (Int32)height, (OpenTK.Graphics.ES11.All)format, (OpenTK.Graphics.ES11.All)type, (IntPtr)pixels);
07412 #if DEBUG
07413 }
07414 #endif
07415 }
07416
07417
07431 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glRotatef")]
07432 public static
07433 void Rotate(Single angle, Single x, Single y, Single z)
07434 {
07435 #if DEBUG
07436 using (new ErrorHelper(GraphicsContext.CurrentContext))
07437 {
07438 #endif
07439 Delegates.glRotatef((Single)angle, (Single)x, (Single)y, (Single)z);
07440 #if DEBUG
07441 }
07442 #endif
07443 }
07444
07445 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glRotatex")]
07446 public static
07447 void Rotatex(int angle, int x, int y, int z)
07448 {
07449 #if DEBUG
07450 using (new ErrorHelper(GraphicsContext.CurrentContext))
07451 {
07452 #endif
07453 Delegates.glRotatex((int)angle, (int)x, (int)y, (int)z);
07454 #if DEBUG
07455 }
07456 #endif
07457 }
07458
07459
07473 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glSampleCoverage")]
07474 public static
07475 void SampleCoverage(Single value, bool invert)
07476 {
07477 #if DEBUG
07478 using (new ErrorHelper(GraphicsContext.CurrentContext))
07479 {
07480 #endif
07481 Delegates.glSampleCoverage((Single)value, (bool)invert);
07482 #if DEBUG
07483 }
07484 #endif
07485 }
07486
07487 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glSampleCoveragex")]
07488 public static
07489 void SampleCoveragex(int value, bool invert)
07490 {
07491 #if DEBUG
07492 using (new ErrorHelper(GraphicsContext.CurrentContext))
07493 {
07494 #endif
07495 Delegates.glSampleCoveragex((int)value, (bool)invert);
07496 #if DEBUG
07497 }
07498 #endif
07499 }
07500
07501
07510 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glScalef")]
07511 public static
07512 void Scale(Single x, Single y, Single z)
07513 {
07514 #if DEBUG
07515 using (new ErrorHelper(GraphicsContext.CurrentContext))
07516 {
07517 #endif
07518 Delegates.glScalef((Single)x, (Single)y, (Single)z);
07519 #if DEBUG
07520 }
07521 #endif
07522 }
07523
07524 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glScalex")]
07525 public static
07526 void Scalex(int x, int y, int z)
07527 {
07528 #if DEBUG
07529 using (new ErrorHelper(GraphicsContext.CurrentContext))
07530 {
07531 #endif
07532 Delegates.glScalex((int)x, (int)y, (int)z);
07533 #if DEBUG
07534 }
07535 #endif
07536 }
07537
07538
07552 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glScissor")]
07553 public static
07554 void Scissor(Int32 x, Int32 y, Int32 width, Int32 height)
07555 {
07556 #if DEBUG
07557 using (new ErrorHelper(GraphicsContext.CurrentContext))
07558 {
07559 #endif
07560 Delegates.glScissor((Int32)x, (Int32)y, (Int32)width, (Int32)height);
07561 #if DEBUG
07562 }
07563 #endif
07564 }
07565
07566
07575 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glShadeModel")]
07576 public static
07577 void ShadeModel(OpenTK.Graphics.ES11.All mode)
07578 {
07579 #if DEBUG
07580 using (new ErrorHelper(GraphicsContext.CurrentContext))
07581 {
07582 #endif
07583 Delegates.glShadeModel((OpenTK.Graphics.ES11.All)mode);
07584 #if DEBUG
07585 }
07586 #endif
07587 }
07588
07589
07608 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glStencilFunc")]
07609 public static
07610 void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask)
07611 {
07612 #if DEBUG
07613 using (new ErrorHelper(GraphicsContext.CurrentContext))
07614 {
07615 #endif
07616 Delegates.glStencilFunc((OpenTK.Graphics.ES11.All)func, (Int32)@ref, (UInt32)mask);
07617 #if DEBUG
07618 }
07619 #endif
07620 }
07621
07622
07641 [System.CLSCompliant(false)]
07642 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glStencilFunc")]
07643 public static
07644 void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, UInt32 mask)
07645 {
07646 #if DEBUG
07647 using (new ErrorHelper(GraphicsContext.CurrentContext))
07648 {
07649 #endif
07650 Delegates.glStencilFunc((OpenTK.Graphics.ES11.All)func, (Int32)@ref, (UInt32)mask);
07651 #if DEBUG
07652 }
07653 #endif
07654 }
07655
07656
07665 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glStencilMask")]
07666 public static
07667 void StencilMask(Int32 mask)
07668 {
07669 #if DEBUG
07670 using (new ErrorHelper(GraphicsContext.CurrentContext))
07671 {
07672 #endif
07673 Delegates.glStencilMask((UInt32)mask);
07674 #if DEBUG
07675 }
07676 #endif
07677 }
07678
07679
07688 [System.CLSCompliant(false)]
07689 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glStencilMask")]
07690 public static
07691 void StencilMask(UInt32 mask)
07692 {
07693 #if DEBUG
07694 using (new ErrorHelper(GraphicsContext.CurrentContext))
07695 {
07696 #endif
07697 Delegates.glStencilMask((UInt32)mask);
07698 #if DEBUG
07699 }
07700 #endif
07701 }
07702
07703
07722 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glStencilOp")]
07723 public static
07724 void StencilOp(OpenTK.Graphics.ES11.All fail, OpenTK.Graphics.ES11.All zfail, OpenTK.Graphics.ES11.All zpass)
07725 {
07726 #if DEBUG
07727 using (new ErrorHelper(GraphicsContext.CurrentContext))
07728 {
07729 #endif
07730 Delegates.glStencilOp((OpenTK.Graphics.ES11.All)fail, (OpenTK.Graphics.ES11.All)zfail, (OpenTK.Graphics.ES11.All)zpass);
07731 #if DEBUG
07732 }
07733 #endif
07734 }
07735
07736
07760 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexCoordPointer")]
07761 public static
07762 void TexCoordPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
07763 where T3 : struct
07764 {
07765 #if DEBUG
07766 using (new ErrorHelper(GraphicsContext.CurrentContext))
07767 {
07768 #endif
07769 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
07770 try
07771 {
07772 Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
07773 pointer = (T3)pointer_ptr.Target;
07774 }
07775 finally
07776 {
07777 pointer_ptr.Free();
07778 }
07779 #if DEBUG
07780 }
07781 #endif
07782 }
07783
07784
07808 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexCoordPointer")]
07809 public static
07810 void TexCoordPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
07811 where T3 : struct
07812 {
07813 #if DEBUG
07814 using (new ErrorHelper(GraphicsContext.CurrentContext))
07815 {
07816 #endif
07817 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
07818 try
07819 {
07820 Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
07821 }
07822 finally
07823 {
07824 pointer_ptr.Free();
07825 }
07826 #if DEBUG
07827 }
07828 #endif
07829 }
07830
07831
07855 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexCoordPointer")]
07856 public static
07857 void TexCoordPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
07858 where T3 : struct
07859 {
07860 #if DEBUG
07861 using (new ErrorHelper(GraphicsContext.CurrentContext))
07862 {
07863 #endif
07864 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
07865 try
07866 {
07867 Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
07868 }
07869 finally
07870 {
07871 pointer_ptr.Free();
07872 }
07873 #if DEBUG
07874 }
07875 #endif
07876 }
07877
07878
07902 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexCoordPointer")]
07903 public static
07904 void TexCoordPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
07905 where T3 : struct
07906 {
07907 #if DEBUG
07908 using (new ErrorHelper(GraphicsContext.CurrentContext))
07909 {
07910 #endif
07911 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
07912 try
07913 {
07914 Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
07915 }
07916 finally
07917 {
07918 pointer_ptr.Free();
07919 }
07920 #if DEBUG
07921 }
07922 #endif
07923 }
07924
07925
07949 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexCoordPointer")]
07950 public static
07951 void TexCoordPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
07952 {
07953 #if DEBUG
07954 using (new ErrorHelper(GraphicsContext.CurrentContext))
07955 {
07956 #endif
07957 Delegates.glTexCoordPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
07958 #if DEBUG
07959 }
07960 #endif
07961 }
07962
07963
07982 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvf")]
07983 public static
07984 void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param)
07985 {
07986 #if DEBUG
07987 using (new ErrorHelper(GraphicsContext.CurrentContext))
07988 {
07989 #endif
07990 Delegates.glTexEnvf((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single)param);
07991 #if DEBUG
07992 }
07993 #endif
07994 }
07995
07996
08015 [System.CLSCompliant(false)]
08016 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvfv")]
08017 public static
08018 unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params)
08019 {
08020 #if DEBUG
08021 using (new ErrorHelper(GraphicsContext.CurrentContext))
08022 {
08023 #endif
08024 Delegates.glTexEnvfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
08025 #if DEBUG
08026 }
08027 #endif
08028 }
08029
08030
08049 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvfv")]
08050 public static
08051 void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single[] @params)
08052 {
08053 #if DEBUG
08054 using (new ErrorHelper(GraphicsContext.CurrentContext))
08055 {
08056 #endif
08057 unsafe
08058 {
08059 fixed (Single* @params_ptr = @params)
08060 {
08061 Delegates.glTexEnvfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
08062 }
08063 }
08064 #if DEBUG
08065 }
08066 #endif
08067 }
08068
08069
08088 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvi")]
08089 public static
08090 void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param)
08091 {
08092 #if DEBUG
08093 using (new ErrorHelper(GraphicsContext.CurrentContext))
08094 {
08095 #endif
08096 Delegates.glTexEnvi((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32)param);
08097 #if DEBUG
08098 }
08099 #endif
08100 }
08101
08102
08121 [System.CLSCompliant(false)]
08122 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnviv")]
08123 public static
08124 unsafe void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params)
08125 {
08126 #if DEBUG
08127 using (new ErrorHelper(GraphicsContext.CurrentContext))
08128 {
08129 #endif
08130 Delegates.glTexEnviv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
08131 #if DEBUG
08132 }
08133 #endif
08134 }
08135
08136
08155 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnviv")]
08156 public static
08157 void TexEnv(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params)
08158 {
08159 #if DEBUG
08160 using (new ErrorHelper(GraphicsContext.CurrentContext))
08161 {
08162 #endif
08163 unsafe
08164 {
08165 fixed (Int32* @params_ptr = @params)
08166 {
08167 Delegates.glTexEnviv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
08168 }
08169 }
08170 #if DEBUG
08171 }
08172 #endif
08173 }
08174
08175 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvx")]
08176 public static
08177 void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param)
08178 {
08179 #if DEBUG
08180 using (new ErrorHelper(GraphicsContext.CurrentContext))
08181 {
08182 #endif
08183 Delegates.glTexEnvx((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param);
08184 #if DEBUG
08185 }
08186 #endif
08187 }
08188
08189 [System.CLSCompliant(false)]
08190 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvxv")]
08191 public static
08192 unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params)
08193 {
08194 #if DEBUG
08195 using (new ErrorHelper(GraphicsContext.CurrentContext))
08196 {
08197 #endif
08198 Delegates.glTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
08199 #if DEBUG
08200 }
08201 #endif
08202 }
08203
08204 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvxv")]
08205 public static
08206 void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params)
08207 {
08208 #if DEBUG
08209 using (new ErrorHelper(GraphicsContext.CurrentContext))
08210 {
08211 #endif
08212 unsafe
08213 {
08214 fixed (int* @params_ptr = @params)
08215 {
08216 Delegates.glTexEnvxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
08217 }
08218 }
08219 #if DEBUG
08220 }
08221 #endif
08222 }
08223
08224
08273 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexImage2D")]
08274 public static
08275 void TexImage2D<T8>(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, [InAttribute, OutAttribute] ref T8 pixels)
08276 where T8 : struct
08277 {
08278 #if DEBUG
08279 using (new ErrorHelper(GraphicsContext.CurrentContext))
08280 {
08281 #endif
08282 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
08283 try
08284 {
08285 Delegates.glTexImage2D((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_ptr.AddrOfPinnedObject());
08286 pixels = (T8)pixels_ptr.Target;
08287 }
08288 finally
08289 {
08290 pixels_ptr.Free();
08291 }
08292 #if DEBUG
08293 }
08294 #endif
08295 }
08296
08297
08346 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexImage2D")]
08347 public static
08348 void TexImage2D<T8>(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, [InAttribute, OutAttribute] T8[,,] pixels)
08349 where T8 : struct
08350 {
08351 #if DEBUG
08352 using (new ErrorHelper(GraphicsContext.CurrentContext))
08353 {
08354 #endif
08355 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
08356 try
08357 {
08358 Delegates.glTexImage2D((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_ptr.AddrOfPinnedObject());
08359 }
08360 finally
08361 {
08362 pixels_ptr.Free();
08363 }
08364 #if DEBUG
08365 }
08366 #endif
08367 }
08368
08369
08418 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexImage2D")]
08419 public static
08420 void TexImage2D<T8>(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, [InAttribute, OutAttribute] T8[,] pixels)
08421 where T8 : struct
08422 {
08423 #if DEBUG
08424 using (new ErrorHelper(GraphicsContext.CurrentContext))
08425 {
08426 #endif
08427 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
08428 try
08429 {
08430 Delegates.glTexImage2D((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_ptr.AddrOfPinnedObject());
08431 }
08432 finally
08433 {
08434 pixels_ptr.Free();
08435 }
08436 #if DEBUG
08437 }
08438 #endif
08439 }
08440
08441
08490 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexImage2D")]
08491 public static
08492 void TexImage2D<T8>(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, [InAttribute, OutAttribute] T8[] pixels)
08493 where T8 : struct
08494 {
08495 #if DEBUG
08496 using (new ErrorHelper(GraphicsContext.CurrentContext))
08497 {
08498 #endif
08499 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
08500 try
08501 {
08502 Delegates.glTexImage2D((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_ptr.AddrOfPinnedObject());
08503 }
08504 finally
08505 {
08506 pixels_ptr.Free();
08507 }
08508 #if DEBUG
08509 }
08510 #endif
08511 }
08512
08513
08562 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexImage2D")]
08563 public static
08564 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)
08565 {
08566 #if DEBUG
08567 using (new ErrorHelper(GraphicsContext.CurrentContext))
08568 {
08569 #endif
08570 Delegates.glTexImage2D((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);
08571 #if DEBUG
08572 }
08573 #endif
08574 }
08575
08576
08595 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterf")]
08596 public static
08597 void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single param)
08598 {
08599 #if DEBUG
08600 using (new ErrorHelper(GraphicsContext.CurrentContext))
08601 {
08602 #endif
08603 Delegates.glTexParameterf((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single)param);
08604 #if DEBUG
08605 }
08606 #endif
08607 }
08608
08609
08628 [System.CLSCompliant(false)]
08629 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterfv")]
08630 public static
08631 unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single* @params)
08632 {
08633 #if DEBUG
08634 using (new ErrorHelper(GraphicsContext.CurrentContext))
08635 {
08636 #endif
08637 Delegates.glTexParameterfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
08638 #if DEBUG
08639 }
08640 #endif
08641 }
08642
08643
08662 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterfv")]
08663 public static
08664 void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Single[] @params)
08665 {
08666 #if DEBUG
08667 using (new ErrorHelper(GraphicsContext.CurrentContext))
08668 {
08669 #endif
08670 unsafe
08671 {
08672 fixed (Single* @params_ptr = @params)
08673 {
08674 Delegates.glTexParameterfv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
08675 }
08676 }
08677 #if DEBUG
08678 }
08679 #endif
08680 }
08681
08682
08701 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameteri")]
08702 public static
08703 void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32 param)
08704 {
08705 #if DEBUG
08706 using (new ErrorHelper(GraphicsContext.CurrentContext))
08707 {
08708 #endif
08709 Delegates.glTexParameteri((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32)param);
08710 #if DEBUG
08711 }
08712 #endif
08713 }
08714
08715
08734 [System.CLSCompliant(false)]
08735 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameteriv")]
08736 public static
08737 unsafe void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params)
08738 {
08739 #if DEBUG
08740 using (new ErrorHelper(GraphicsContext.CurrentContext))
08741 {
08742 #endif
08743 Delegates.glTexParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
08744 #if DEBUG
08745 }
08746 #endif
08747 }
08748
08749
08768 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameteriv")]
08769 public static
08770 void TexParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params)
08771 {
08772 #if DEBUG
08773 using (new ErrorHelper(GraphicsContext.CurrentContext))
08774 {
08775 #endif
08776 unsafe
08777 {
08778 fixed (Int32* @params_ptr = @params)
08779 {
08780 Delegates.glTexParameteriv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
08781 }
08782 }
08783 #if DEBUG
08784 }
08785 #endif
08786 }
08787
08788 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterx")]
08789 public static
08790 void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param)
08791 {
08792 #if DEBUG
08793 using (new ErrorHelper(GraphicsContext.CurrentContext))
08794 {
08795 #endif
08796 Delegates.glTexParameterx((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param);
08797 #if DEBUG
08798 }
08799 #endif
08800 }
08801
08802 [System.CLSCompliant(false)]
08803 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterxv")]
08804 public static
08805 unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params)
08806 {
08807 #if DEBUG
08808 using (new ErrorHelper(GraphicsContext.CurrentContext))
08809 {
08810 #endif
08811 Delegates.glTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
08812 #if DEBUG
08813 }
08814 #endif
08815 }
08816
08817 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterxv")]
08818 public static
08819 void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params)
08820 {
08821 #if DEBUG
08822 using (new ErrorHelper(GraphicsContext.CurrentContext))
08823 {
08824 #endif
08825 unsafe
08826 {
08827 fixed (int* @params_ptr = @params)
08828 {
08829 Delegates.glTexParameterxv((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
08830 }
08831 }
08832 #if DEBUG
08833 }
08834 #endif
08835 }
08836
08837
08886 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexSubImage2D")]
08887 public static
08888 void TexSubImage2D<T8>(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, [InAttribute, OutAttribute] ref T8 pixels)
08889 where T8 : struct
08890 {
08891 #if DEBUG
08892 using (new ErrorHelper(GraphicsContext.CurrentContext))
08893 {
08894 #endif
08895 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
08896 try
08897 {
08898 Delegates.glTexSubImage2D((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_ptr.AddrOfPinnedObject());
08899 pixels = (T8)pixels_ptr.Target;
08900 }
08901 finally
08902 {
08903 pixels_ptr.Free();
08904 }
08905 #if DEBUG
08906 }
08907 #endif
08908 }
08909
08910
08959 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexSubImage2D")]
08960 public static
08961 void TexSubImage2D<T8>(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, [InAttribute, OutAttribute] T8[,,] pixels)
08962 where T8 : struct
08963 {
08964 #if DEBUG
08965 using (new ErrorHelper(GraphicsContext.CurrentContext))
08966 {
08967 #endif
08968 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
08969 try
08970 {
08971 Delegates.glTexSubImage2D((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_ptr.AddrOfPinnedObject());
08972 }
08973 finally
08974 {
08975 pixels_ptr.Free();
08976 }
08977 #if DEBUG
08978 }
08979 #endif
08980 }
08981
08982
09031 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexSubImage2D")]
09032 public static
09033 void TexSubImage2D<T8>(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, [InAttribute, OutAttribute] T8[,] pixels)
09034 where T8 : struct
09035 {
09036 #if DEBUG
09037 using (new ErrorHelper(GraphicsContext.CurrentContext))
09038 {
09039 #endif
09040 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
09041 try
09042 {
09043 Delegates.glTexSubImage2D((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_ptr.AddrOfPinnedObject());
09044 }
09045 finally
09046 {
09047 pixels_ptr.Free();
09048 }
09049 #if DEBUG
09050 }
09051 #endif
09052 }
09053
09054
09103 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexSubImage2D")]
09104 public static
09105 void TexSubImage2D<T8>(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, [InAttribute, OutAttribute] T8[] pixels)
09106 where T8 : struct
09107 {
09108 #if DEBUG
09109 using (new ErrorHelper(GraphicsContext.CurrentContext))
09110 {
09111 #endif
09112 GCHandle pixels_ptr = GCHandle.Alloc(pixels, GCHandleType.Pinned);
09113 try
09114 {
09115 Delegates.glTexSubImage2D((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_ptr.AddrOfPinnedObject());
09116 }
09117 finally
09118 {
09119 pixels_ptr.Free();
09120 }
09121 #if DEBUG
09122 }
09123 #endif
09124 }
09125
09126
09175 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexSubImage2D")]
09176 public static
09177 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)
09178 {
09179 #if DEBUG
09180 using (new ErrorHelper(GraphicsContext.CurrentContext))
09181 {
09182 #endif
09183 Delegates.glTexSubImage2D((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);
09184 #if DEBUG
09185 }
09186 #endif
09187 }
09188
09189
09198 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTranslatef")]
09199 public static
09200 void Translate(Single x, Single y, Single z)
09201 {
09202 #if DEBUG
09203 using (new ErrorHelper(GraphicsContext.CurrentContext))
09204 {
09205 #endif
09206 Delegates.glTranslatef((Single)x, (Single)y, (Single)z);
09207 #if DEBUG
09208 }
09209 #endif
09210 }
09211
09212 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTranslatex")]
09213 public static
09214 void Translatex(int x, int y, int z)
09215 {
09216 #if DEBUG
09217 using (new ErrorHelper(GraphicsContext.CurrentContext))
09218 {
09219 #endif
09220 Delegates.glTranslatex((int)x, (int)y, (int)z);
09221 #if DEBUG
09222 }
09223 #endif
09224 }
09225
09226
09250 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glVertexPointer")]
09251 public static
09252 void VertexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
09253 where T3 : struct
09254 {
09255 #if DEBUG
09256 using (new ErrorHelper(GraphicsContext.CurrentContext))
09257 {
09258 #endif
09259 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
09260 try
09261 {
09262 Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
09263 pointer = (T3)pointer_ptr.Target;
09264 }
09265 finally
09266 {
09267 pointer_ptr.Free();
09268 }
09269 #if DEBUG
09270 }
09271 #endif
09272 }
09273
09274
09298 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glVertexPointer")]
09299 public static
09300 void VertexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
09301 where T3 : struct
09302 {
09303 #if DEBUG
09304 using (new ErrorHelper(GraphicsContext.CurrentContext))
09305 {
09306 #endif
09307 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
09308 try
09309 {
09310 Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
09311 }
09312 finally
09313 {
09314 pointer_ptr.Free();
09315 }
09316 #if DEBUG
09317 }
09318 #endif
09319 }
09320
09321
09345 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glVertexPointer")]
09346 public static
09347 void VertexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
09348 where T3 : struct
09349 {
09350 #if DEBUG
09351 using (new ErrorHelper(GraphicsContext.CurrentContext))
09352 {
09353 #endif
09354 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
09355 try
09356 {
09357 Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
09358 }
09359 finally
09360 {
09361 pointer_ptr.Free();
09362 }
09363 #if DEBUG
09364 }
09365 #endif
09366 }
09367
09368
09392 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glVertexPointer")]
09393 public static
09394 void VertexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
09395 where T3 : struct
09396 {
09397 #if DEBUG
09398 using (new ErrorHelper(GraphicsContext.CurrentContext))
09399 {
09400 #endif
09401 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
09402 try
09403 {
09404 Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
09405 }
09406 finally
09407 {
09408 pointer_ptr.Free();
09409 }
09410 #if DEBUG
09411 }
09412 #endif
09413 }
09414
09415
09439 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glVertexPointer")]
09440 public static
09441 void VertexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
09442 {
09443 #if DEBUG
09444 using (new ErrorHelper(GraphicsContext.CurrentContext))
09445 {
09446 #endif
09447 Delegates.glVertexPointer((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
09448 #if DEBUG
09449 }
09450 #endif
09451 }
09452
09453
09467 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glViewport")]
09468 public static
09469 void Viewport(Int32 x, Int32 y, Int32 width, Int32 height)
09470 {
09471 #if DEBUG
09472 using (new ErrorHelper(GraphicsContext.CurrentContext))
09473 {
09474 #endif
09475 Delegates.glViewport((Int32)x, (Int32)y, (Int32)width, (Int32)height);
09476 #if DEBUG
09477 }
09478 #endif
09479 }
09480
09481 public static partial class NV
09482 {
09483 [System.CLSCompliant(false)]
09484 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFencesNV")]
09485 public static
09486 unsafe void DeleteFences(Int32 n, Int32* fences)
09487 {
09488 #if DEBUG
09489 using (new ErrorHelper(GraphicsContext.CurrentContext))
09490 {
09491 #endif
09492 Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences);
09493 #if DEBUG
09494 }
09495 #endif
09496 }
09497
09498 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFencesNV")]
09499 public static
09500 void DeleteFences(Int32 n, Int32[] fences)
09501 {
09502 #if DEBUG
09503 using (new ErrorHelper(GraphicsContext.CurrentContext))
09504 {
09505 #endif
09506 unsafe
09507 {
09508 fixed (Int32* fences_ptr = fences)
09509 {
09510 Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr);
09511 }
09512 }
09513 #if DEBUG
09514 }
09515 #endif
09516 }
09517
09518 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFencesNV")]
09519 public static
09520 void DeleteFences(Int32 n, ref Int32 fences)
09521 {
09522 #if DEBUG
09523 using (new ErrorHelper(GraphicsContext.CurrentContext))
09524 {
09525 #endif
09526 unsafe
09527 {
09528 fixed (Int32* fences_ptr = &fences)
09529 {
09530 Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr);
09531 }
09532 }
09533 #if DEBUG
09534 }
09535 #endif
09536 }
09537
09538 [System.CLSCompliant(false)]
09539 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFencesNV")]
09540 public static
09541 void DeleteFences(Int32 n, ref UInt32 fences)
09542 {
09543 #if DEBUG
09544 using (new ErrorHelper(GraphicsContext.CurrentContext))
09545 {
09546 #endif
09547 unsafe
09548 {
09549 fixed (UInt32* fences_ptr = &fences)
09550 {
09551 Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr);
09552 }
09553 }
09554 #if DEBUG
09555 }
09556 #endif
09557 }
09558
09559 [System.CLSCompliant(false)]
09560 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFencesNV")]
09561 public static
09562 unsafe void DeleteFences(Int32 n, UInt32* fences)
09563 {
09564 #if DEBUG
09565 using (new ErrorHelper(GraphicsContext.CurrentContext))
09566 {
09567 #endif
09568 Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences);
09569 #if DEBUG
09570 }
09571 #endif
09572 }
09573
09574 [System.CLSCompliant(false)]
09575 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFencesNV")]
09576 public static
09577 void DeleteFences(Int32 n, UInt32[] fences)
09578 {
09579 #if DEBUG
09580 using (new ErrorHelper(GraphicsContext.CurrentContext))
09581 {
09582 #endif
09583 unsafe
09584 {
09585 fixed (UInt32* fences_ptr = fences)
09586 {
09587 Delegates.glDeleteFencesNV((Int32)n, (UInt32*)fences_ptr);
09588 }
09589 }
09590 #if DEBUG
09591 }
09592 #endif
09593 }
09594
09595 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFinishFenceNV")]
09596 public static
09597 void FinishFence(Int32 fence)
09598 {
09599 #if DEBUG
09600 using (new ErrorHelper(GraphicsContext.CurrentContext))
09601 {
09602 #endif
09603 Delegates.glFinishFenceNV((UInt32)fence);
09604 #if DEBUG
09605 }
09606 #endif
09607 }
09608
09609 [System.CLSCompliant(false)]
09610 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFinishFenceNV")]
09611 public static
09612 void FinishFence(UInt32 fence)
09613 {
09614 #if DEBUG
09615 using (new ErrorHelper(GraphicsContext.CurrentContext))
09616 {
09617 #endif
09618 Delegates.glFinishFenceNV((UInt32)fence);
09619 #if DEBUG
09620 }
09621 #endif
09622 }
09623
09624 [System.CLSCompliant(false)]
09625 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFencesNV")]
09626 public static
09627 unsafe void GenFences(Int32 n, Int32* fences)
09628 {
09629 #if DEBUG
09630 using (new ErrorHelper(GraphicsContext.CurrentContext))
09631 {
09632 #endif
09633 Delegates.glGenFencesNV((Int32)n, (UInt32*)fences);
09634 #if DEBUG
09635 }
09636 #endif
09637 }
09638
09639 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFencesNV")]
09640 public static
09641 void GenFences(Int32 n, Int32[] fences)
09642 {
09643 #if DEBUG
09644 using (new ErrorHelper(GraphicsContext.CurrentContext))
09645 {
09646 #endif
09647 unsafe
09648 {
09649 fixed (Int32* fences_ptr = fences)
09650 {
09651 Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr);
09652 }
09653 }
09654 #if DEBUG
09655 }
09656 #endif
09657 }
09658
09659 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFencesNV")]
09660 public static
09661 void GenFences(Int32 n, ref Int32 fences)
09662 {
09663 #if DEBUG
09664 using (new ErrorHelper(GraphicsContext.CurrentContext))
09665 {
09666 #endif
09667 unsafe
09668 {
09669 fixed (Int32* fences_ptr = &fences)
09670 {
09671 Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr);
09672 }
09673 }
09674 #if DEBUG
09675 }
09676 #endif
09677 }
09678
09679 [System.CLSCompliant(false)]
09680 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFencesNV")]
09681 public static
09682 void GenFences(Int32 n, ref UInt32 fences)
09683 {
09684 #if DEBUG
09685 using (new ErrorHelper(GraphicsContext.CurrentContext))
09686 {
09687 #endif
09688 unsafe
09689 {
09690 fixed (UInt32* fences_ptr = &fences)
09691 {
09692 Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr);
09693 }
09694 }
09695 #if DEBUG
09696 }
09697 #endif
09698 }
09699
09700 [System.CLSCompliant(false)]
09701 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFencesNV")]
09702 public static
09703 unsafe void GenFences(Int32 n, UInt32* fences)
09704 {
09705 #if DEBUG
09706 using (new ErrorHelper(GraphicsContext.CurrentContext))
09707 {
09708 #endif
09709 Delegates.glGenFencesNV((Int32)n, (UInt32*)fences);
09710 #if DEBUG
09711 }
09712 #endif
09713 }
09714
09715 [System.CLSCompliant(false)]
09716 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFencesNV")]
09717 public static
09718 void GenFences(Int32 n, UInt32[] fences)
09719 {
09720 #if DEBUG
09721 using (new ErrorHelper(GraphicsContext.CurrentContext))
09722 {
09723 #endif
09724 unsafe
09725 {
09726 fixed (UInt32* fences_ptr = fences)
09727 {
09728 Delegates.glGenFencesNV((Int32)n, (UInt32*)fences_ptr);
09729 }
09730 }
09731 #if DEBUG
09732 }
09733 #endif
09734 }
09735
09736 [System.CLSCompliant(false)]
09737 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFenceivNV")]
09738 public static
09739 unsafe void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, Int32* @params)
09740 {
09741 #if DEBUG
09742 using (new ErrorHelper(GraphicsContext.CurrentContext))
09743 {
09744 #endif
09745 Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
09746 #if DEBUG
09747 }
09748 #endif
09749 }
09750
09751 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFenceivNV")]
09752 public static
09753 void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, Int32[] @params)
09754 {
09755 #if DEBUG
09756 using (new ErrorHelper(GraphicsContext.CurrentContext))
09757 {
09758 #endif
09759 unsafe
09760 {
09761 fixed (Int32* @params_ptr = @params)
09762 {
09763 Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
09764 }
09765 }
09766 #if DEBUG
09767 }
09768 #endif
09769 }
09770
09771 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFenceivNV")]
09772 public static
09773 void GetFence(Int32 fence, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
09774 {
09775 #if DEBUG
09776 using (new ErrorHelper(GraphicsContext.CurrentContext))
09777 {
09778 #endif
09779 unsafe
09780 {
09781 fixed (Int32* @params_ptr = &@params)
09782 {
09783 Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
09784 }
09785 }
09786 #if DEBUG
09787 }
09788 #endif
09789 }
09790
09791 [System.CLSCompliant(false)]
09792 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFenceivNV")]
09793 public static
09794 unsafe void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, Int32* @params)
09795 {
09796 #if DEBUG
09797 using (new ErrorHelper(GraphicsContext.CurrentContext))
09798 {
09799 #endif
09800 Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
09801 #if DEBUG
09802 }
09803 #endif
09804 }
09805
09806 [System.CLSCompliant(false)]
09807 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFenceivNV")]
09808 public static
09809 void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, Int32[] @params)
09810 {
09811 #if DEBUG
09812 using (new ErrorHelper(GraphicsContext.CurrentContext))
09813 {
09814 #endif
09815 unsafe
09816 {
09817 fixed (Int32* @params_ptr = @params)
09818 {
09819 Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
09820 }
09821 }
09822 #if DEBUG
09823 }
09824 #endif
09825 }
09826
09827 [System.CLSCompliant(false)]
09828 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFenceivNV")]
09829 public static
09830 void GetFence(UInt32 fence, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
09831 {
09832 #if DEBUG
09833 using (new ErrorHelper(GraphicsContext.CurrentContext))
09834 {
09835 #endif
09836 unsafe
09837 {
09838 fixed (Int32* @params_ptr = &@params)
09839 {
09840 Delegates.glGetFenceivNV((UInt32)fence, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
09841 }
09842 }
09843 #if DEBUG
09844 }
09845 #endif
09846 }
09847
09848 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsFenceNV")]
09849 public static
09850 bool IsFence(Int32 fence)
09851 {
09852 #if DEBUG
09853 using (new ErrorHelper(GraphicsContext.CurrentContext))
09854 {
09855 #endif
09856 return Delegates.glIsFenceNV((UInt32)fence);
09857 #if DEBUG
09858 }
09859 #endif
09860 }
09861
09862 [System.CLSCompliant(false)]
09863 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsFenceNV")]
09864 public static
09865 bool IsFence(UInt32 fence)
09866 {
09867 #if DEBUG
09868 using (new ErrorHelper(GraphicsContext.CurrentContext))
09869 {
09870 #endif
09871 return Delegates.glIsFenceNV((UInt32)fence);
09872 #if DEBUG
09873 }
09874 #endif
09875 }
09876
09877 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glSetFenceNV")]
09878 public static
09879 void SetFence(Int32 fence, OpenTK.Graphics.ES11.All condition)
09880 {
09881 #if DEBUG
09882 using (new ErrorHelper(GraphicsContext.CurrentContext))
09883 {
09884 #endif
09885 Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES11.All)condition);
09886 #if DEBUG
09887 }
09888 #endif
09889 }
09890
09891 [System.CLSCompliant(false)]
09892 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glSetFenceNV")]
09893 public static
09894 void SetFence(UInt32 fence, OpenTK.Graphics.ES11.All condition)
09895 {
09896 #if DEBUG
09897 using (new ErrorHelper(GraphicsContext.CurrentContext))
09898 {
09899 #endif
09900 Delegates.glSetFenceNV((UInt32)fence, (OpenTK.Graphics.ES11.All)condition);
09901 #if DEBUG
09902 }
09903 #endif
09904 }
09905
09906 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTestFenceNV")]
09907 public static
09908 bool TestFence(Int32 fence)
09909 {
09910 #if DEBUG
09911 using (new ErrorHelper(GraphicsContext.CurrentContext))
09912 {
09913 #endif
09914 return Delegates.glTestFenceNV((UInt32)fence);
09915 #if DEBUG
09916 }
09917 #endif
09918 }
09919
09920 [System.CLSCompliant(false)]
09921 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTestFenceNV")]
09922 public static
09923 bool TestFence(UInt32 fence)
09924 {
09925 #if DEBUG
09926 using (new ErrorHelper(GraphicsContext.CurrentContext))
09927 {
09928 #endif
09929 return Delegates.glTestFenceNV((UInt32)fence);
09930 #if DEBUG
09931 }
09932 #endif
09933 }
09934
09935 }
09936
09937 public static partial class Oes
09938 {
09939 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glAlphaFuncxOES")]
09940 public static
09941 void AlphaFuncx(OpenTK.Graphics.ES11.All func, int @ref)
09942 {
09943 #if DEBUG
09944 using (new ErrorHelper(GraphicsContext.CurrentContext))
09945 {
09946 #endif
09947 Delegates.glAlphaFuncxOES((OpenTK.Graphics.ES11.All)func, (int)@ref);
09948 #if DEBUG
09949 }
09950 #endif
09951 }
09952
09953 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindFramebufferOES")]
09954 public static
09955 void BindFramebuffer(OpenTK.Graphics.ES11.All target, Int32 framebuffer)
09956 {
09957 #if DEBUG
09958 using (new ErrorHelper(GraphicsContext.CurrentContext))
09959 {
09960 #endif
09961 Delegates.glBindFramebufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)framebuffer);
09962 #if DEBUG
09963 }
09964 #endif
09965 }
09966
09967 [System.CLSCompliant(false)]
09968 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindFramebufferOES")]
09969 public static
09970 void BindFramebuffer(OpenTK.Graphics.ES11.All target, UInt32 framebuffer)
09971 {
09972 #if DEBUG
09973 using (new ErrorHelper(GraphicsContext.CurrentContext))
09974 {
09975 #endif
09976 Delegates.glBindFramebufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)framebuffer);
09977 #if DEBUG
09978 }
09979 #endif
09980 }
09981
09982 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindRenderbufferOES")]
09983 public static
09984 void BindRenderbuffer(OpenTK.Graphics.ES11.All target, Int32 renderbuffer)
09985 {
09986 #if DEBUG
09987 using (new ErrorHelper(GraphicsContext.CurrentContext))
09988 {
09989 #endif
09990 Delegates.glBindRenderbufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)renderbuffer);
09991 #if DEBUG
09992 }
09993 #endif
09994 }
09995
09996 [System.CLSCompliant(false)]
09997 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBindRenderbufferOES")]
09998 public static
09999 void BindRenderbuffer(OpenTK.Graphics.ES11.All target, UInt32 renderbuffer)
10000 {
10001 #if DEBUG
10002 using (new ErrorHelper(GraphicsContext.CurrentContext))
10003 {
10004 #endif
10005 Delegates.glBindRenderbufferOES((OpenTK.Graphics.ES11.All)target, (UInt32)renderbuffer);
10006 #if DEBUG
10007 }
10008 #endif
10009 }
10010
10011
10020 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBlendEquationOES")]
10021 public static
10022 void BlendEquation(OpenTK.Graphics.ES11.All mode)
10023 {
10024 #if DEBUG
10025 using (new ErrorHelper(GraphicsContext.CurrentContext))
10026 {
10027 #endif
10028 Delegates.glBlendEquationOES((OpenTK.Graphics.ES11.All)mode);
10029 #if DEBUG
10030 }
10031 #endif
10032 }
10033
10034
10048 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBlendEquationSeparateOES")]
10049 public static
10050 void BlendEquationSeparate(OpenTK.Graphics.ES11.All modeRGB, OpenTK.Graphics.ES11.All modeAlpha)
10051 {
10052 #if DEBUG
10053 using (new ErrorHelper(GraphicsContext.CurrentContext))
10054 {
10055 #endif
10056 Delegates.glBlendEquationSeparateOES((OpenTK.Graphics.ES11.All)modeRGB, (OpenTK.Graphics.ES11.All)modeAlpha);
10057 #if DEBUG
10058 }
10059 #endif
10060 }
10061
10062
10086 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glBlendFuncSeparateOES")]
10087 public static
10088 void BlendFuncSeparate(OpenTK.Graphics.ES11.All srcRGB, OpenTK.Graphics.ES11.All dstRGB, OpenTK.Graphics.ES11.All srcAlpha, OpenTK.Graphics.ES11.All dstAlpha)
10089 {
10090 #if DEBUG
10091 using (new ErrorHelper(GraphicsContext.CurrentContext))
10092 {
10093 #endif
10094 Delegates.glBlendFuncSeparateOES((OpenTK.Graphics.ES11.All)srcRGB, (OpenTK.Graphics.ES11.All)dstRGB, (OpenTK.Graphics.ES11.All)srcAlpha, (OpenTK.Graphics.ES11.All)dstAlpha);
10095 #if DEBUG
10096 }
10097 #endif
10098 }
10099
10100 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCheckFramebufferStatusOES")]
10101 public static
10102 OpenTK.Graphics.ES11.All CheckFramebufferStatus(OpenTK.Graphics.ES11.All target)
10103 {
10104 #if DEBUG
10105 using (new ErrorHelper(GraphicsContext.CurrentContext))
10106 {
10107 #endif
10108 return Delegates.glCheckFramebufferStatusOES((OpenTK.Graphics.ES11.All)target);
10109 #if DEBUG
10110 }
10111 #endif
10112 }
10113
10114 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearColorxOES")]
10115 public static
10116 void ClearColorx(int red, int green, int blue, int alpha)
10117 {
10118 #if DEBUG
10119 using (new ErrorHelper(GraphicsContext.CurrentContext))
10120 {
10121 #endif
10122 Delegates.glClearColorxOES((int)red, (int)green, (int)blue, (int)alpha);
10123 #if DEBUG
10124 }
10125 #endif
10126 }
10127
10128
10137 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearDepthfOES")]
10138 public static
10139 void ClearDepth(Single depth)
10140 {
10141 #if DEBUG
10142 using (new ErrorHelper(GraphicsContext.CurrentContext))
10143 {
10144 #endif
10145 Delegates.glClearDepthfOES((Single)depth);
10146 #if DEBUG
10147 }
10148 #endif
10149 }
10150
10151 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClearDepthxOES")]
10152 public static
10153 void ClearDepthx(int depth)
10154 {
10155 #if DEBUG
10156 using (new ErrorHelper(GraphicsContext.CurrentContext))
10157 {
10158 #endif
10159 Delegates.glClearDepthxOES((int)depth);
10160 #if DEBUG
10161 }
10162 #endif
10163 }
10164
10165
10179 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanefOES")]
10180 public static
10181 void ClipPlane(OpenTK.Graphics.ES11.All plane, ref Single equation)
10182 {
10183 #if DEBUG
10184 using (new ErrorHelper(GraphicsContext.CurrentContext))
10185 {
10186 #endif
10187 unsafe
10188 {
10189 fixed (Single* equation_ptr = &equation)
10190 {
10191 Delegates.glClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr);
10192 }
10193 }
10194 #if DEBUG
10195 }
10196 #endif
10197 }
10198
10199
10213 [System.CLSCompliant(false)]
10214 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanefOES")]
10215 public static
10216 unsafe void ClipPlane(OpenTK.Graphics.ES11.All plane, Single* equation)
10217 {
10218 #if DEBUG
10219 using (new ErrorHelper(GraphicsContext.CurrentContext))
10220 {
10221 #endif
10222 Delegates.glClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation);
10223 #if DEBUG
10224 }
10225 #endif
10226 }
10227
10228
10242 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanefOES")]
10243 public static
10244 void ClipPlane(OpenTK.Graphics.ES11.All plane, Single[] equation)
10245 {
10246 #if DEBUG
10247 using (new ErrorHelper(GraphicsContext.CurrentContext))
10248 {
10249 #endif
10250 unsafe
10251 {
10252 fixed (Single* equation_ptr = equation)
10253 {
10254 Delegates.glClipPlanefOES((OpenTK.Graphics.ES11.All)plane, (Single*)equation_ptr);
10255 }
10256 }
10257 #if DEBUG
10258 }
10259 #endif
10260 }
10261
10262 [System.CLSCompliant(false)]
10263 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanexOES")]
10264 public static
10265 unsafe void ClipPlanex(OpenTK.Graphics.ES11.All plane, int* equation)
10266 {
10267 #if DEBUG
10268 using (new ErrorHelper(GraphicsContext.CurrentContext))
10269 {
10270 #endif
10271 Delegates.glClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation);
10272 #if DEBUG
10273 }
10274 #endif
10275 }
10276
10277 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanexOES")]
10278 public static
10279 void ClipPlanex(OpenTK.Graphics.ES11.All plane, int[] equation)
10280 {
10281 #if DEBUG
10282 using (new ErrorHelper(GraphicsContext.CurrentContext))
10283 {
10284 #endif
10285 unsafe
10286 {
10287 fixed (int* equation_ptr = equation)
10288 {
10289 Delegates.glClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr);
10290 }
10291 }
10292 #if DEBUG
10293 }
10294 #endif
10295 }
10296
10297 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glClipPlanexOES")]
10298 public static
10299 void ClipPlanex(OpenTK.Graphics.ES11.All plane, ref int equation)
10300 {
10301 #if DEBUG
10302 using (new ErrorHelper(GraphicsContext.CurrentContext))
10303 {
10304 #endif
10305 unsafe
10306 {
10307 fixed (int* equation_ptr = &equation)
10308 {
10309 Delegates.glClipPlanexOES((OpenTK.Graphics.ES11.All)plane, (int*)equation_ptr);
10310 }
10311 }
10312 #if DEBUG
10313 }
10314 #endif
10315 }
10316
10317 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glColor4xOES")]
10318 public static
10319 void Color4x(int red, int green, int blue, int alpha)
10320 {
10321 #if DEBUG
10322 using (new ErrorHelper(GraphicsContext.CurrentContext))
10323 {
10324 #endif
10325 Delegates.glColor4xOES((int)red, (int)green, (int)blue, (int)alpha);
10326 #if DEBUG
10327 }
10328 #endif
10329 }
10330
10331 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCurrentPaletteMatrixOES")]
10332 public static
10333 void CurrentPaletteMatrix(Int32 matrixpaletteindex)
10334 {
10335 #if DEBUG
10336 using (new ErrorHelper(GraphicsContext.CurrentContext))
10337 {
10338 #endif
10339 Delegates.glCurrentPaletteMatrixOES((UInt32)matrixpaletteindex);
10340 #if DEBUG
10341 }
10342 #endif
10343 }
10344
10345 [System.CLSCompliant(false)]
10346 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glCurrentPaletteMatrixOES")]
10347 public static
10348 void CurrentPaletteMatrix(UInt32 matrixpaletteindex)
10349 {
10350 #if DEBUG
10351 using (new ErrorHelper(GraphicsContext.CurrentContext))
10352 {
10353 #endif
10354 Delegates.glCurrentPaletteMatrixOES((UInt32)matrixpaletteindex);
10355 #if DEBUG
10356 }
10357 #endif
10358 }
10359
10360 [System.CLSCompliant(false)]
10361 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFramebuffersOES")]
10362 public static
10363 unsafe void DeleteFramebuffers(Int32 n, Int32* framebuffers)
10364 {
10365 #if DEBUG
10366 using (new ErrorHelper(GraphicsContext.CurrentContext))
10367 {
10368 #endif
10369 Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers);
10370 #if DEBUG
10371 }
10372 #endif
10373 }
10374
10375 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFramebuffersOES")]
10376 public static
10377 void DeleteFramebuffers(Int32 n, Int32[] framebuffers)
10378 {
10379 #if DEBUG
10380 using (new ErrorHelper(GraphicsContext.CurrentContext))
10381 {
10382 #endif
10383 unsafe
10384 {
10385 fixed (Int32* framebuffers_ptr = framebuffers)
10386 {
10387 Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
10388 }
10389 }
10390 #if DEBUG
10391 }
10392 #endif
10393 }
10394
10395 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFramebuffersOES")]
10396 public static
10397 void DeleteFramebuffers(Int32 n, ref Int32 framebuffers)
10398 {
10399 #if DEBUG
10400 using (new ErrorHelper(GraphicsContext.CurrentContext))
10401 {
10402 #endif
10403 unsafe
10404 {
10405 fixed (Int32* framebuffers_ptr = &framebuffers)
10406 {
10407 Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
10408 }
10409 }
10410 #if DEBUG
10411 }
10412 #endif
10413 }
10414
10415 [System.CLSCompliant(false)]
10416 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFramebuffersOES")]
10417 public static
10418 void DeleteFramebuffers(Int32 n, ref UInt32 framebuffers)
10419 {
10420 #if DEBUG
10421 using (new ErrorHelper(GraphicsContext.CurrentContext))
10422 {
10423 #endif
10424 unsafe
10425 {
10426 fixed (UInt32* framebuffers_ptr = &framebuffers)
10427 {
10428 Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
10429 }
10430 }
10431 #if DEBUG
10432 }
10433 #endif
10434 }
10435
10436 [System.CLSCompliant(false)]
10437 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFramebuffersOES")]
10438 public static
10439 unsafe void DeleteFramebuffers(Int32 n, UInt32* framebuffers)
10440 {
10441 #if DEBUG
10442 using (new ErrorHelper(GraphicsContext.CurrentContext))
10443 {
10444 #endif
10445 Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers);
10446 #if DEBUG
10447 }
10448 #endif
10449 }
10450
10451 [System.CLSCompliant(false)]
10452 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteFramebuffersOES")]
10453 public static
10454 void DeleteFramebuffers(Int32 n, UInt32[] framebuffers)
10455 {
10456 #if DEBUG
10457 using (new ErrorHelper(GraphicsContext.CurrentContext))
10458 {
10459 #endif
10460 unsafe
10461 {
10462 fixed (UInt32* framebuffers_ptr = framebuffers)
10463 {
10464 Delegates.glDeleteFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
10465 }
10466 }
10467 #if DEBUG
10468 }
10469 #endif
10470 }
10471
10472 [System.CLSCompliant(false)]
10473 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteRenderbuffersOES")]
10474 public static
10475 unsafe void DeleteRenderbuffers(Int32 n, Int32* renderbuffers)
10476 {
10477 #if DEBUG
10478 using (new ErrorHelper(GraphicsContext.CurrentContext))
10479 {
10480 #endif
10481 Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers);
10482 #if DEBUG
10483 }
10484 #endif
10485 }
10486
10487 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteRenderbuffersOES")]
10488 public static
10489 void DeleteRenderbuffers(Int32 n, Int32[] renderbuffers)
10490 {
10491 #if DEBUG
10492 using (new ErrorHelper(GraphicsContext.CurrentContext))
10493 {
10494 #endif
10495 unsafe
10496 {
10497 fixed (Int32* renderbuffers_ptr = renderbuffers)
10498 {
10499 Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
10500 }
10501 }
10502 #if DEBUG
10503 }
10504 #endif
10505 }
10506
10507 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteRenderbuffersOES")]
10508 public static
10509 void DeleteRenderbuffers(Int32 n, ref Int32 renderbuffers)
10510 {
10511 #if DEBUG
10512 using (new ErrorHelper(GraphicsContext.CurrentContext))
10513 {
10514 #endif
10515 unsafe
10516 {
10517 fixed (Int32* renderbuffers_ptr = &renderbuffers)
10518 {
10519 Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
10520 }
10521 }
10522 #if DEBUG
10523 }
10524 #endif
10525 }
10526
10527 [System.CLSCompliant(false)]
10528 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteRenderbuffersOES")]
10529 public static
10530 void DeleteRenderbuffers(Int32 n, ref UInt32 renderbuffers)
10531 {
10532 #if DEBUG
10533 using (new ErrorHelper(GraphicsContext.CurrentContext))
10534 {
10535 #endif
10536 unsafe
10537 {
10538 fixed (UInt32* renderbuffers_ptr = &renderbuffers)
10539 {
10540 Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
10541 }
10542 }
10543 #if DEBUG
10544 }
10545 #endif
10546 }
10547
10548 [System.CLSCompliant(false)]
10549 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteRenderbuffersOES")]
10550 public static
10551 unsafe void DeleteRenderbuffers(Int32 n, UInt32* renderbuffers)
10552 {
10553 #if DEBUG
10554 using (new ErrorHelper(GraphicsContext.CurrentContext))
10555 {
10556 #endif
10557 Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers);
10558 #if DEBUG
10559 }
10560 #endif
10561 }
10562
10563 [System.CLSCompliant(false)]
10564 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDeleteRenderbuffersOES")]
10565 public static
10566 void DeleteRenderbuffers(Int32 n, UInt32[] renderbuffers)
10567 {
10568 #if DEBUG
10569 using (new ErrorHelper(GraphicsContext.CurrentContext))
10570 {
10571 #endif
10572 unsafe
10573 {
10574 fixed (UInt32* renderbuffers_ptr = renderbuffers)
10575 {
10576 Delegates.glDeleteRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
10577 }
10578 }
10579 #if DEBUG
10580 }
10581 #endif
10582 }
10583
10584
10598 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDepthRangefOES")]
10599 public static
10600 void DepthRange(Single zNear, Single zFar)
10601 {
10602 #if DEBUG
10603 using (new ErrorHelper(GraphicsContext.CurrentContext))
10604 {
10605 #endif
10606 Delegates.glDepthRangefOES((Single)zNear, (Single)zFar);
10607 #if DEBUG
10608 }
10609 #endif
10610 }
10611
10612 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDepthRangexOES")]
10613 public static
10614 void DepthRangex(int zNear, int zFar)
10615 {
10616 #if DEBUG
10617 using (new ErrorHelper(GraphicsContext.CurrentContext))
10618 {
10619 #endif
10620 Delegates.glDepthRangexOES((int)zNear, (int)zFar);
10621 #if DEBUG
10622 }
10623 #endif
10624 }
10625
10626 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexfOES")]
10627 public static
10628 void DrawTex(Single x, Single y, Single z, Single width, Single height)
10629 {
10630 #if DEBUG
10631 using (new ErrorHelper(GraphicsContext.CurrentContext))
10632 {
10633 #endif
10634 Delegates.glDrawTexfOES((Single)x, (Single)y, (Single)z, (Single)width, (Single)height);
10635 #if DEBUG
10636 }
10637 #endif
10638 }
10639
10640 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexfvOES")]
10641 public static
10642 void DrawTex(ref Single coords)
10643 {
10644 #if DEBUG
10645 using (new ErrorHelper(GraphicsContext.CurrentContext))
10646 {
10647 #endif
10648 unsafe
10649 {
10650 fixed (Single* coords_ptr = &coords)
10651 {
10652 Delegates.glDrawTexfvOES((Single*)coords_ptr);
10653 }
10654 }
10655 #if DEBUG
10656 }
10657 #endif
10658 }
10659
10660 [System.CLSCompliant(false)]
10661 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexfvOES")]
10662 public static
10663 unsafe void DrawTex(Single* coords)
10664 {
10665 #if DEBUG
10666 using (new ErrorHelper(GraphicsContext.CurrentContext))
10667 {
10668 #endif
10669 Delegates.glDrawTexfvOES((Single*)coords);
10670 #if DEBUG
10671 }
10672 #endif
10673 }
10674
10675 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexfvOES")]
10676 public static
10677 void DrawTex(Single[] coords)
10678 {
10679 #if DEBUG
10680 using (new ErrorHelper(GraphicsContext.CurrentContext))
10681 {
10682 #endif
10683 unsafe
10684 {
10685 fixed (Single* coords_ptr = coords)
10686 {
10687 Delegates.glDrawTexfvOES((Single*)coords_ptr);
10688 }
10689 }
10690 #if DEBUG
10691 }
10692 #endif
10693 }
10694
10695 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexiOES")]
10696 public static
10697 void DrawTex(Int32 x, Int32 y, Int32 z, Int32 width, Int32 height)
10698 {
10699 #if DEBUG
10700 using (new ErrorHelper(GraphicsContext.CurrentContext))
10701 {
10702 #endif
10703 Delegates.glDrawTexiOES((Int32)x, (Int32)y, (Int32)z, (Int32)width, (Int32)height);
10704 #if DEBUG
10705 }
10706 #endif
10707 }
10708
10709 [System.CLSCompliant(false)]
10710 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexivOES")]
10711 public static
10712 unsafe void DrawTex(Int32* coords)
10713 {
10714 #if DEBUG
10715 using (new ErrorHelper(GraphicsContext.CurrentContext))
10716 {
10717 #endif
10718 Delegates.glDrawTexivOES((Int32*)coords);
10719 #if DEBUG
10720 }
10721 #endif
10722 }
10723
10724 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexivOES")]
10725 public static
10726 void DrawTex(Int32[] coords)
10727 {
10728 #if DEBUG
10729 using (new ErrorHelper(GraphicsContext.CurrentContext))
10730 {
10731 #endif
10732 unsafe
10733 {
10734 fixed (Int32* coords_ptr = coords)
10735 {
10736 Delegates.glDrawTexivOES((Int32*)coords_ptr);
10737 }
10738 }
10739 #if DEBUG
10740 }
10741 #endif
10742 }
10743
10744 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexivOES")]
10745 public static
10746 void DrawTex(ref Int32 coords)
10747 {
10748 #if DEBUG
10749 using (new ErrorHelper(GraphicsContext.CurrentContext))
10750 {
10751 #endif
10752 unsafe
10753 {
10754 fixed (Int32* coords_ptr = &coords)
10755 {
10756 Delegates.glDrawTexivOES((Int32*)coords_ptr);
10757 }
10758 }
10759 #if DEBUG
10760 }
10761 #endif
10762 }
10763
10764 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexsOES")]
10765 public static
10766 void DrawTex(Int16 x, Int16 y, Int16 z, Int16 width, Int16 height)
10767 {
10768 #if DEBUG
10769 using (new ErrorHelper(GraphicsContext.CurrentContext))
10770 {
10771 #endif
10772 Delegates.glDrawTexsOES((Int16)x, (Int16)y, (Int16)z, (Int16)width, (Int16)height);
10773 #if DEBUG
10774 }
10775 #endif
10776 }
10777
10778 [System.CLSCompliant(false)]
10779 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexsvOES")]
10780 public static
10781 unsafe void DrawTex(Int16* coords)
10782 {
10783 #if DEBUG
10784 using (new ErrorHelper(GraphicsContext.CurrentContext))
10785 {
10786 #endif
10787 Delegates.glDrawTexsvOES((Int16*)coords);
10788 #if DEBUG
10789 }
10790 #endif
10791 }
10792
10793 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexsvOES")]
10794 public static
10795 void DrawTex(Int16[] coords)
10796 {
10797 #if DEBUG
10798 using (new ErrorHelper(GraphicsContext.CurrentContext))
10799 {
10800 #endif
10801 unsafe
10802 {
10803 fixed (Int16* coords_ptr = coords)
10804 {
10805 Delegates.glDrawTexsvOES((Int16*)coords_ptr);
10806 }
10807 }
10808 #if DEBUG
10809 }
10810 #endif
10811 }
10812
10813 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexsvOES")]
10814 public static
10815 void DrawTex(ref Int16 coords)
10816 {
10817 #if DEBUG
10818 using (new ErrorHelper(GraphicsContext.CurrentContext))
10819 {
10820 #endif
10821 unsafe
10822 {
10823 fixed (Int16* coords_ptr = &coords)
10824 {
10825 Delegates.glDrawTexsvOES((Int16*)coords_ptr);
10826 }
10827 }
10828 #if DEBUG
10829 }
10830 #endif
10831 }
10832
10833 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexxOES")]
10834 public static
10835 void DrawTexx(int x, int y, int z, int width, int height)
10836 {
10837 #if DEBUG
10838 using (new ErrorHelper(GraphicsContext.CurrentContext))
10839 {
10840 #endif
10841 Delegates.glDrawTexxOES((int)x, (int)y, (int)z, (int)width, (int)height);
10842 #if DEBUG
10843 }
10844 #endif
10845 }
10846
10847 [System.CLSCompliant(false)]
10848 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexxvOES")]
10849 public static
10850 unsafe void DrawTexx(int* coords)
10851 {
10852 #if DEBUG
10853 using (new ErrorHelper(GraphicsContext.CurrentContext))
10854 {
10855 #endif
10856 Delegates.glDrawTexxvOES((int*)coords);
10857 #if DEBUG
10858 }
10859 #endif
10860 }
10861
10862 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexxvOES")]
10863 public static
10864 void DrawTexx(int[] coords)
10865 {
10866 #if DEBUG
10867 using (new ErrorHelper(GraphicsContext.CurrentContext))
10868 {
10869 #endif
10870 unsafe
10871 {
10872 fixed (int* coords_ptr = coords)
10873 {
10874 Delegates.glDrawTexxvOES((int*)coords_ptr);
10875 }
10876 }
10877 #if DEBUG
10878 }
10879 #endif
10880 }
10881
10882 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glDrawTexxvOES")]
10883 public static
10884 void DrawTexx(ref int coords)
10885 {
10886 #if DEBUG
10887 using (new ErrorHelper(GraphicsContext.CurrentContext))
10888 {
10889 #endif
10890 unsafe
10891 {
10892 fixed (int* coords_ptr = &coords)
10893 {
10894 Delegates.glDrawTexxvOES((int*)coords_ptr);
10895 }
10896 }
10897 #if DEBUG
10898 }
10899 #endif
10900 }
10901
10902 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glEGLImageTargetRenderbufferStorageOES")]
10903 public static
10904 void EGLImageTargetRenderbufferStorage(OpenTK.Graphics.ES11.All target, IntPtr image)
10905 {
10906 #if DEBUG
10907 using (new ErrorHelper(GraphicsContext.CurrentContext))
10908 {
10909 #endif
10910 Delegates.glEGLImageTargetRenderbufferStorageOES((OpenTK.Graphics.ES11.All)target, (IntPtr)image);
10911 #if DEBUG
10912 }
10913 #endif
10914 }
10915
10916 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glEGLImageTargetTexture2DOES")]
10917 public static
10918 void EGLImageTargetTexture2D(OpenTK.Graphics.ES11.All target, IntPtr image)
10919 {
10920 #if DEBUG
10921 using (new ErrorHelper(GraphicsContext.CurrentContext))
10922 {
10923 #endif
10924 Delegates.glEGLImageTargetTexture2DOES((OpenTK.Graphics.ES11.All)target, (IntPtr)image);
10925 #if DEBUG
10926 }
10927 #endif
10928 }
10929
10930 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogxOES")]
10931 public static
10932 void Fogx(OpenTK.Graphics.ES11.All pname, int param)
10933 {
10934 #if DEBUG
10935 using (new ErrorHelper(GraphicsContext.CurrentContext))
10936 {
10937 #endif
10938 Delegates.glFogxOES((OpenTK.Graphics.ES11.All)pname, (int)param);
10939 #if DEBUG
10940 }
10941 #endif
10942 }
10943
10944 [System.CLSCompliant(false)]
10945 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogxvOES")]
10946 public static
10947 unsafe void Fogx(OpenTK.Graphics.ES11.All pname, int* @params)
10948 {
10949 #if DEBUG
10950 using (new ErrorHelper(GraphicsContext.CurrentContext))
10951 {
10952 #endif
10953 Delegates.glFogxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params);
10954 #if DEBUG
10955 }
10956 #endif
10957 }
10958
10959 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFogxvOES")]
10960 public static
10961 void Fogx(OpenTK.Graphics.ES11.All pname, int[] @params)
10962 {
10963 #if DEBUG
10964 using (new ErrorHelper(GraphicsContext.CurrentContext))
10965 {
10966 #endif
10967 unsafe
10968 {
10969 fixed (int* @params_ptr = @params)
10970 {
10971 Delegates.glFogxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
10972 }
10973 }
10974 #if DEBUG
10975 }
10976 #endif
10977 }
10978
10979 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFramebufferRenderbufferOES")]
10980 public static
10981 void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, Int32 renderbuffer)
10982 {
10983 #if DEBUG
10984 using (new ErrorHelper(GraphicsContext.CurrentContext))
10985 {
10986 #endif
10987 Delegates.glFramebufferRenderbufferOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)renderbuffertarget, (UInt32)renderbuffer);
10988 #if DEBUG
10989 }
10990 #endif
10991 }
10992
10993 [System.CLSCompliant(false)]
10994 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFramebufferRenderbufferOES")]
10995 public static
10996 void FramebufferRenderbuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All renderbuffertarget, UInt32 renderbuffer)
10997 {
10998 #if DEBUG
10999 using (new ErrorHelper(GraphicsContext.CurrentContext))
11000 {
11001 #endif
11002 Delegates.glFramebufferRenderbufferOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)renderbuffertarget, (UInt32)renderbuffer);
11003 #if DEBUG
11004 }
11005 #endif
11006 }
11007
11008 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFramebufferTexture2DOES")]
11009 public static
11010 void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, Int32 texture, Int32 level)
11011 {
11012 #if DEBUG
11013 using (new ErrorHelper(GraphicsContext.CurrentContext))
11014 {
11015 #endif
11016 Delegates.glFramebufferTexture2DOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level);
11017 #if DEBUG
11018 }
11019 #endif
11020 }
11021
11022 [System.CLSCompliant(false)]
11023 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFramebufferTexture2DOES")]
11024 public static
11025 void FramebufferTexture2D(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All textarget, UInt32 texture, Int32 level)
11026 {
11027 #if DEBUG
11028 using (new ErrorHelper(GraphicsContext.CurrentContext))
11029 {
11030 #endif
11031 Delegates.glFramebufferTexture2DOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)textarget, (UInt32)texture, (Int32)level);
11032 #if DEBUG
11033 }
11034 #endif
11035 }
11036
11037
11056 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFrustumfOES")]
11057 public static
11058 void Frustum(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar)
11059 {
11060 #if DEBUG
11061 using (new ErrorHelper(GraphicsContext.CurrentContext))
11062 {
11063 #endif
11064 Delegates.glFrustumfOES((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar);
11065 #if DEBUG
11066 }
11067 #endif
11068 }
11069
11070 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glFrustumxOES")]
11071 public static
11072 void Frustumx(int left, int right, int bottom, int top, int zNear, int zFar)
11073 {
11074 #if DEBUG
11075 using (new ErrorHelper(GraphicsContext.CurrentContext))
11076 {
11077 #endif
11078 Delegates.glFrustumxOES((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar);
11079 #if DEBUG
11080 }
11081 #endif
11082 }
11083
11084 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenerateMipmapOES")]
11085 public static
11086 void GenerateMipmap(OpenTK.Graphics.ES11.All target)
11087 {
11088 #if DEBUG
11089 using (new ErrorHelper(GraphicsContext.CurrentContext))
11090 {
11091 #endif
11092 Delegates.glGenerateMipmapOES((OpenTK.Graphics.ES11.All)target);
11093 #if DEBUG
11094 }
11095 #endif
11096 }
11097
11098 [System.CLSCompliant(false)]
11099 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFramebuffersOES")]
11100 public static
11101 unsafe void GenFramebuffers(Int32 n, Int32* framebuffers)
11102 {
11103 #if DEBUG
11104 using (new ErrorHelper(GraphicsContext.CurrentContext))
11105 {
11106 #endif
11107 Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers);
11108 #if DEBUG
11109 }
11110 #endif
11111 }
11112
11113 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFramebuffersOES")]
11114 public static
11115 void GenFramebuffers(Int32 n, Int32[] framebuffers)
11116 {
11117 #if DEBUG
11118 using (new ErrorHelper(GraphicsContext.CurrentContext))
11119 {
11120 #endif
11121 unsafe
11122 {
11123 fixed (Int32* framebuffers_ptr = framebuffers)
11124 {
11125 Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
11126 }
11127 }
11128 #if DEBUG
11129 }
11130 #endif
11131 }
11132
11133 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFramebuffersOES")]
11134 public static
11135 void GenFramebuffers(Int32 n, ref Int32 framebuffers)
11136 {
11137 #if DEBUG
11138 using (new ErrorHelper(GraphicsContext.CurrentContext))
11139 {
11140 #endif
11141 unsafe
11142 {
11143 fixed (Int32* framebuffers_ptr = &framebuffers)
11144 {
11145 Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
11146 }
11147 }
11148 #if DEBUG
11149 }
11150 #endif
11151 }
11152
11153 [System.CLSCompliant(false)]
11154 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFramebuffersOES")]
11155 public static
11156 void GenFramebuffers(Int32 n, ref UInt32 framebuffers)
11157 {
11158 #if DEBUG
11159 using (new ErrorHelper(GraphicsContext.CurrentContext))
11160 {
11161 #endif
11162 unsafe
11163 {
11164 fixed (UInt32* framebuffers_ptr = &framebuffers)
11165 {
11166 Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
11167 }
11168 }
11169 #if DEBUG
11170 }
11171 #endif
11172 }
11173
11174 [System.CLSCompliant(false)]
11175 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFramebuffersOES")]
11176 public static
11177 unsafe void GenFramebuffers(Int32 n, UInt32* framebuffers)
11178 {
11179 #if DEBUG
11180 using (new ErrorHelper(GraphicsContext.CurrentContext))
11181 {
11182 #endif
11183 Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers);
11184 #if DEBUG
11185 }
11186 #endif
11187 }
11188
11189 [System.CLSCompliant(false)]
11190 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenFramebuffersOES")]
11191 public static
11192 void GenFramebuffers(Int32 n, UInt32[] framebuffers)
11193 {
11194 #if DEBUG
11195 using (new ErrorHelper(GraphicsContext.CurrentContext))
11196 {
11197 #endif
11198 unsafe
11199 {
11200 fixed (UInt32* framebuffers_ptr = framebuffers)
11201 {
11202 Delegates.glGenFramebuffersOES((Int32)n, (UInt32*)framebuffers_ptr);
11203 }
11204 }
11205 #if DEBUG
11206 }
11207 #endif
11208 }
11209
11210 [System.CLSCompliant(false)]
11211 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenRenderbuffersOES")]
11212 public static
11213 unsafe void GenRenderbuffers(Int32 n, Int32* renderbuffers)
11214 {
11215 #if DEBUG
11216 using (new ErrorHelper(GraphicsContext.CurrentContext))
11217 {
11218 #endif
11219 Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers);
11220 #if DEBUG
11221 }
11222 #endif
11223 }
11224
11225 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenRenderbuffersOES")]
11226 public static
11227 void GenRenderbuffers(Int32 n, Int32[] renderbuffers)
11228 {
11229 #if DEBUG
11230 using (new ErrorHelper(GraphicsContext.CurrentContext))
11231 {
11232 #endif
11233 unsafe
11234 {
11235 fixed (Int32* renderbuffers_ptr = renderbuffers)
11236 {
11237 Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
11238 }
11239 }
11240 #if DEBUG
11241 }
11242 #endif
11243 }
11244
11245 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenRenderbuffersOES")]
11246 public static
11247 void GenRenderbuffers(Int32 n, ref Int32 renderbuffers)
11248 {
11249 #if DEBUG
11250 using (new ErrorHelper(GraphicsContext.CurrentContext))
11251 {
11252 #endif
11253 unsafe
11254 {
11255 fixed (Int32* renderbuffers_ptr = &renderbuffers)
11256 {
11257 Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
11258 }
11259 }
11260 #if DEBUG
11261 }
11262 #endif
11263 }
11264
11265 [System.CLSCompliant(false)]
11266 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenRenderbuffersOES")]
11267 public static
11268 void GenRenderbuffers(Int32 n, ref UInt32 renderbuffers)
11269 {
11270 #if DEBUG
11271 using (new ErrorHelper(GraphicsContext.CurrentContext))
11272 {
11273 #endif
11274 unsafe
11275 {
11276 fixed (UInt32* renderbuffers_ptr = &renderbuffers)
11277 {
11278 Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
11279 }
11280 }
11281 #if DEBUG
11282 }
11283 #endif
11284 }
11285
11286 [System.CLSCompliant(false)]
11287 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenRenderbuffersOES")]
11288 public static
11289 unsafe void GenRenderbuffers(Int32 n, UInt32* renderbuffers)
11290 {
11291 #if DEBUG
11292 using (new ErrorHelper(GraphicsContext.CurrentContext))
11293 {
11294 #endif
11295 Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers);
11296 #if DEBUG
11297 }
11298 #endif
11299 }
11300
11301 [System.CLSCompliant(false)]
11302 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGenRenderbuffersOES")]
11303 public static
11304 void GenRenderbuffers(Int32 n, UInt32[] renderbuffers)
11305 {
11306 #if DEBUG
11307 using (new ErrorHelper(GraphicsContext.CurrentContext))
11308 {
11309 #endif
11310 unsafe
11311 {
11312 fixed (UInt32* renderbuffers_ptr = renderbuffers)
11313 {
11314 Delegates.glGenRenderbuffersOES((Int32)n, (UInt32*)renderbuffers_ptr);
11315 }
11316 }
11317 #if DEBUG
11318 }
11319 #endif
11320 }
11321
11322 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferPointervOES")]
11323 public static
11324 void GetBufferPointer<T2>(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] ref T2 @params)
11325 where T2 : struct
11326 {
11327 #if DEBUG
11328 using (new ErrorHelper(GraphicsContext.CurrentContext))
11329 {
11330 #endif
11331 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
11332 try
11333 {
11334 Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
11335 @params = (T2)@params_ptr.Target;
11336 }
11337 finally
11338 {
11339 @params_ptr.Free();
11340 }
11341 #if DEBUG
11342 }
11343 #endif
11344 }
11345
11346 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferPointervOES")]
11347 public static
11348 void GetBufferPointer<T2>(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,,] @params)
11349 where T2 : struct
11350 {
11351 #if DEBUG
11352 using (new ErrorHelper(GraphicsContext.CurrentContext))
11353 {
11354 #endif
11355 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
11356 try
11357 {
11358 Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
11359 }
11360 finally
11361 {
11362 @params_ptr.Free();
11363 }
11364 #if DEBUG
11365 }
11366 #endif
11367 }
11368
11369 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferPointervOES")]
11370 public static
11371 void GetBufferPointer<T2>(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[,] @params)
11372 where T2 : struct
11373 {
11374 #if DEBUG
11375 using (new ErrorHelper(GraphicsContext.CurrentContext))
11376 {
11377 #endif
11378 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
11379 try
11380 {
11381 Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
11382 }
11383 finally
11384 {
11385 @params_ptr.Free();
11386 }
11387 #if DEBUG
11388 }
11389 #endif
11390 }
11391
11392 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferPointervOES")]
11393 public static
11394 void GetBufferPointer<T2>(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [InAttribute, OutAttribute] T2[] @params)
11395 where T2 : struct
11396 {
11397 #if DEBUG
11398 using (new ErrorHelper(GraphicsContext.CurrentContext))
11399 {
11400 #endif
11401 GCHandle @params_ptr = GCHandle.Alloc(@params, GCHandleType.Pinned);
11402 try
11403 {
11404 Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params_ptr.AddrOfPinnedObject());
11405 }
11406 finally
11407 {
11408 @params_ptr.Free();
11409 }
11410 #if DEBUG
11411 }
11412 #endif
11413 }
11414
11415 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetBufferPointervOES")]
11416 public static
11417 void GetBufferPointer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, IntPtr @params)
11418 {
11419 #if DEBUG
11420 using (new ErrorHelper(GraphicsContext.CurrentContext))
11421 {
11422 #endif
11423 Delegates.glGetBufferPointervOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (IntPtr)@params);
11424 #if DEBUG
11425 }
11426 #endif
11427 }
11428
11429
11443 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanefOES")]
11444 public static
11445 void GetClipPlane(OpenTK.Graphics.ES11.All pname, ref Single eqn)
11446 {
11447 #if DEBUG
11448 using (new ErrorHelper(GraphicsContext.CurrentContext))
11449 {
11450 #endif
11451 unsafe
11452 {
11453 fixed (Single* eqn_ptr = &eqn)
11454 {
11455 Delegates.glGetClipPlanefOES((OpenTK.Graphics.ES11.All)pname, (Single*)eqn_ptr);
11456 }
11457 }
11458 #if DEBUG
11459 }
11460 #endif
11461 }
11462
11463
11477 [System.CLSCompliant(false)]
11478 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanefOES")]
11479 public static
11480 unsafe void GetClipPlane(OpenTK.Graphics.ES11.All pname, Single* eqn)
11481 {
11482 #if DEBUG
11483 using (new ErrorHelper(GraphicsContext.CurrentContext))
11484 {
11485 #endif
11486 Delegates.glGetClipPlanefOES((OpenTK.Graphics.ES11.All)pname, (Single*)eqn);
11487 #if DEBUG
11488 }
11489 #endif
11490 }
11491
11492
11506 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanefOES")]
11507 public static
11508 void GetClipPlane(OpenTK.Graphics.ES11.All pname, Single[] eqn)
11509 {
11510 #if DEBUG
11511 using (new ErrorHelper(GraphicsContext.CurrentContext))
11512 {
11513 #endif
11514 unsafe
11515 {
11516 fixed (Single* eqn_ptr = eqn)
11517 {
11518 Delegates.glGetClipPlanefOES((OpenTK.Graphics.ES11.All)pname, (Single*)eqn_ptr);
11519 }
11520 }
11521 #if DEBUG
11522 }
11523 #endif
11524 }
11525
11526 [System.CLSCompliant(false)]
11527 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanexOES")]
11528 public static
11529 unsafe void GetClipPlanex(OpenTK.Graphics.ES11.All pname, int* eqn)
11530 {
11531 #if DEBUG
11532 using (new ErrorHelper(GraphicsContext.CurrentContext))
11533 {
11534 #endif
11535 Delegates.glGetClipPlanexOES((OpenTK.Graphics.ES11.All)pname, (int*)eqn);
11536 #if DEBUG
11537 }
11538 #endif
11539 }
11540
11541 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanexOES")]
11542 public static
11543 void GetClipPlanex(OpenTK.Graphics.ES11.All pname, int[] eqn)
11544 {
11545 #if DEBUG
11546 using (new ErrorHelper(GraphicsContext.CurrentContext))
11547 {
11548 #endif
11549 unsafe
11550 {
11551 fixed (int* eqn_ptr = eqn)
11552 {
11553 Delegates.glGetClipPlanexOES((OpenTK.Graphics.ES11.All)pname, (int*)eqn_ptr);
11554 }
11555 }
11556 #if DEBUG
11557 }
11558 #endif
11559 }
11560
11561 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetClipPlanexOES")]
11562 public static
11563 void GetClipPlanex(OpenTK.Graphics.ES11.All pname, ref int eqn)
11564 {
11565 #if DEBUG
11566 using (new ErrorHelper(GraphicsContext.CurrentContext))
11567 {
11568 #endif
11569 unsafe
11570 {
11571 fixed (int* eqn_ptr = &eqn)
11572 {
11573 Delegates.glGetClipPlanexOES((OpenTK.Graphics.ES11.All)pname, (int*)eqn_ptr);
11574 }
11575 }
11576 #if DEBUG
11577 }
11578 #endif
11579 }
11580
11581 [System.CLSCompliant(false)]
11582 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFixedvOES")]
11583 public static
11584 unsafe void GetFixed(OpenTK.Graphics.ES11.All pname, int* @params)
11585 {
11586 #if DEBUG
11587 using (new ErrorHelper(GraphicsContext.CurrentContext))
11588 {
11589 #endif
11590 Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params);
11591 #if DEBUG
11592 }
11593 #endif
11594 }
11595
11596 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFixedvOES")]
11597 public static
11598 void GetFixed(OpenTK.Graphics.ES11.All pname, int[] @params)
11599 {
11600 #if DEBUG
11601 using (new ErrorHelper(GraphicsContext.CurrentContext))
11602 {
11603 #endif
11604 unsafe
11605 {
11606 fixed (int* @params_ptr = @params)
11607 {
11608 Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11609 }
11610 }
11611 #if DEBUG
11612 }
11613 #endif
11614 }
11615
11616 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFixedvOES")]
11617 public static
11618 void GetFixed(OpenTK.Graphics.ES11.All pname, ref int @params)
11619 {
11620 #if DEBUG
11621 using (new ErrorHelper(GraphicsContext.CurrentContext))
11622 {
11623 #endif
11624 unsafe
11625 {
11626 fixed (int* @params_ptr = &@params)
11627 {
11628 Delegates.glGetFixedvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11629 }
11630 }
11631 #if DEBUG
11632 }
11633 #endif
11634 }
11635
11636 [System.CLSCompliant(false)]
11637 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFramebufferAttachmentParameterivOES")]
11638 public static
11639 unsafe void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, Int32* @params)
11640 {
11641 #if DEBUG
11642 using (new ErrorHelper(GraphicsContext.CurrentContext))
11643 {
11644 #endif
11645 Delegates.glGetFramebufferAttachmentParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
11646 #if DEBUG
11647 }
11648 #endif
11649 }
11650
11651 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFramebufferAttachmentParameterivOES")]
11652 public static
11653 void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, Int32[] @params)
11654 {
11655 #if DEBUG
11656 using (new ErrorHelper(GraphicsContext.CurrentContext))
11657 {
11658 #endif
11659 unsafe
11660 {
11661 fixed (Int32* @params_ptr = @params)
11662 {
11663 Delegates.glGetFramebufferAttachmentParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
11664 }
11665 }
11666 #if DEBUG
11667 }
11668 #endif
11669 }
11670
11671 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetFramebufferAttachmentParameterivOES")]
11672 public static
11673 void GetFramebufferAttachmentParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All attachment, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
11674 {
11675 #if DEBUG
11676 using (new ErrorHelper(GraphicsContext.CurrentContext))
11677 {
11678 #endif
11679 unsafe
11680 {
11681 fixed (Int32* @params_ptr = &@params)
11682 {
11683 Delegates.glGetFramebufferAttachmentParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)attachment, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
11684 }
11685 }
11686 #if DEBUG
11687 }
11688 #endif
11689 }
11690
11691 [System.CLSCompliant(false)]
11692 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightxvOES")]
11693 public static
11694 unsafe void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params)
11695 {
11696 #if DEBUG
11697 using (new ErrorHelper(GraphicsContext.CurrentContext))
11698 {
11699 #endif
11700 Delegates.glGetLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
11701 #if DEBUG
11702 }
11703 #endif
11704 }
11705
11706 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightxvOES")]
11707 public static
11708 void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params)
11709 {
11710 #if DEBUG
11711 using (new ErrorHelper(GraphicsContext.CurrentContext))
11712 {
11713 #endif
11714 unsafe
11715 {
11716 fixed (int* @params_ptr = @params)
11717 {
11718 Delegates.glGetLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11719 }
11720 }
11721 #if DEBUG
11722 }
11723 #endif
11724 }
11725
11726 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetLightxvOES")]
11727 public static
11728 void GetLightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, ref int @params)
11729 {
11730 #if DEBUG
11731 using (new ErrorHelper(GraphicsContext.CurrentContext))
11732 {
11733 #endif
11734 unsafe
11735 {
11736 fixed (int* @params_ptr = &@params)
11737 {
11738 Delegates.glGetLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11739 }
11740 }
11741 #if DEBUG
11742 }
11743 #endif
11744 }
11745
11746 [System.CLSCompliant(false)]
11747 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialxvOES")]
11748 public static
11749 unsafe void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params)
11750 {
11751 #if DEBUG
11752 using (new ErrorHelper(GraphicsContext.CurrentContext))
11753 {
11754 #endif
11755 Delegates.glGetMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
11756 #if DEBUG
11757 }
11758 #endif
11759 }
11760
11761 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialxvOES")]
11762 public static
11763 void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] @params)
11764 {
11765 #if DEBUG
11766 using (new ErrorHelper(GraphicsContext.CurrentContext))
11767 {
11768 #endif
11769 unsafe
11770 {
11771 fixed (int* @params_ptr = @params)
11772 {
11773 Delegates.glGetMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11774 }
11775 }
11776 #if DEBUG
11777 }
11778 #endif
11779 }
11780
11781 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetMaterialxvOES")]
11782 public static
11783 void GetMaterialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, ref int @params)
11784 {
11785 #if DEBUG
11786 using (new ErrorHelper(GraphicsContext.CurrentContext))
11787 {
11788 #endif
11789 unsafe
11790 {
11791 fixed (int* @params_ptr = &@params)
11792 {
11793 Delegates.glGetMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11794 }
11795 }
11796 #if DEBUG
11797 }
11798 #endif
11799 }
11800
11801 [System.CLSCompliant(false)]
11802 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetRenderbufferParameterivOES")]
11803 public static
11804 unsafe void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32* @params)
11805 {
11806 #if DEBUG
11807 using (new ErrorHelper(GraphicsContext.CurrentContext))
11808 {
11809 #endif
11810 Delegates.glGetRenderbufferParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
11811 #if DEBUG
11812 }
11813 #endif
11814 }
11815
11816 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetRenderbufferParameterivOES")]
11817 public static
11818 void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, Int32[] @params)
11819 {
11820 #if DEBUG
11821 using (new ErrorHelper(GraphicsContext.CurrentContext))
11822 {
11823 #endif
11824 unsafe
11825 {
11826 fixed (Int32* @params_ptr = @params)
11827 {
11828 Delegates.glGetRenderbufferParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
11829 }
11830 }
11831 #if DEBUG
11832 }
11833 #endif
11834 }
11835
11836 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetRenderbufferParameterivOES")]
11837 public static
11838 void GetRenderbufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
11839 {
11840 #if DEBUG
11841 using (new ErrorHelper(GraphicsContext.CurrentContext))
11842 {
11843 #endif
11844 unsafe
11845 {
11846 fixed (Int32* @params_ptr = &@params)
11847 {
11848 Delegates.glGetRenderbufferParameterivOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
11849 }
11850 }
11851 #if DEBUG
11852 }
11853 #endif
11854 }
11855
11856 [System.CLSCompliant(false)]
11857 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvxvOES")]
11858 public static
11859 unsafe void GetTexEnvx(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, int* @params)
11860 {
11861 #if DEBUG
11862 using (new ErrorHelper(GraphicsContext.CurrentContext))
11863 {
11864 #endif
11865 Delegates.glGetTexEnvxvOES((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
11866 #if DEBUG
11867 }
11868 #endif
11869 }
11870
11871 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvxvOES")]
11872 public static
11873 void GetTexEnvx(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, int[] @params)
11874 {
11875 #if DEBUG
11876 using (new ErrorHelper(GraphicsContext.CurrentContext))
11877 {
11878 #endif
11879 unsafe
11880 {
11881 fixed (int* @params_ptr = @params)
11882 {
11883 Delegates.glGetTexEnvxvOES((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11884 }
11885 }
11886 #if DEBUG
11887 }
11888 #endif
11889 }
11890
11891 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexEnvxvOES")]
11892 public static
11893 void GetTexEnvx(OpenTK.Graphics.ES11.All env, OpenTK.Graphics.ES11.All pname, ref int @params)
11894 {
11895 #if DEBUG
11896 using (new ErrorHelper(GraphicsContext.CurrentContext))
11897 {
11898 #endif
11899 unsafe
11900 {
11901 fixed (int* @params_ptr = &@params)
11902 {
11903 Delegates.glGetTexEnvxvOES((OpenTK.Graphics.ES11.All)env, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
11904 }
11905 }
11906 #if DEBUG
11907 }
11908 #endif
11909 }
11910
11911
11930 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenfvOES")]
11931 public static
11932 void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, ref Single @params)
11933 {
11934 #if DEBUG
11935 using (new ErrorHelper(GraphicsContext.CurrentContext))
11936 {
11937 #endif
11938 unsafe
11939 {
11940 fixed (Single* @params_ptr = &@params)
11941 {
11942 Delegates.glGetTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
11943 }
11944 }
11945 #if DEBUG
11946 }
11947 #endif
11948 }
11949
11950
11969 [System.CLSCompliant(false)]
11970 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenfvOES")]
11971 public static
11972 unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single* @params)
11973 {
11974 #if DEBUG
11975 using (new ErrorHelper(GraphicsContext.CurrentContext))
11976 {
11977 #endif
11978 Delegates.glGetTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
11979 #if DEBUG
11980 }
11981 #endif
11982 }
11983
11984
12003 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenfvOES")]
12004 public static
12005 void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single[] @params)
12006 {
12007 #if DEBUG
12008 using (new ErrorHelper(GraphicsContext.CurrentContext))
12009 {
12010 #endif
12011 unsafe
12012 {
12013 fixed (Single* @params_ptr = @params)
12014 {
12015 Delegates.glGetTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
12016 }
12017 }
12018 #if DEBUG
12019 }
12020 #endif
12021 }
12022
12023
12042 [System.CLSCompliant(false)]
12043 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenivOES")]
12044 public static
12045 unsafe void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32* @params)
12046 {
12047 #if DEBUG
12048 using (new ErrorHelper(GraphicsContext.CurrentContext))
12049 {
12050 #endif
12051 Delegates.glGetTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
12052 #if DEBUG
12053 }
12054 #endif
12055 }
12056
12057
12076 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenivOES")]
12077 public static
12078 void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32[] @params)
12079 {
12080 #if DEBUG
12081 using (new ErrorHelper(GraphicsContext.CurrentContext))
12082 {
12083 #endif
12084 unsafe
12085 {
12086 fixed (Int32* @params_ptr = @params)
12087 {
12088 Delegates.glGetTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
12089 }
12090 }
12091 #if DEBUG
12092 }
12093 #endif
12094 }
12095
12096
12115 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenivOES")]
12116 public static
12117 void GetTexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, ref Int32 @params)
12118 {
12119 #if DEBUG
12120 using (new ErrorHelper(GraphicsContext.CurrentContext))
12121 {
12122 #endif
12123 unsafe
12124 {
12125 fixed (Int32* @params_ptr = &@params)
12126 {
12127 Delegates.glGetTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
12128 }
12129 }
12130 #if DEBUG
12131 }
12132 #endif
12133 }
12134
12135 [System.CLSCompliant(false)]
12136 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenxvOES")]
12137 public static
12138 unsafe void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int* @params)
12139 {
12140 #if DEBUG
12141 using (new ErrorHelper(GraphicsContext.CurrentContext))
12142 {
12143 #endif
12144 Delegates.glGetTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
12145 #if DEBUG
12146 }
12147 #endif
12148 }
12149
12150 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenxvOES")]
12151 public static
12152 void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int[] @params)
12153 {
12154 #if DEBUG
12155 using (new ErrorHelper(GraphicsContext.CurrentContext))
12156 {
12157 #endif
12158 unsafe
12159 {
12160 fixed (int* @params_ptr = @params)
12161 {
12162 Delegates.glGetTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12163 }
12164 }
12165 #if DEBUG
12166 }
12167 #endif
12168 }
12169
12170 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexGenxvOES")]
12171 public static
12172 void GetTexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, ref int @params)
12173 {
12174 #if DEBUG
12175 using (new ErrorHelper(GraphicsContext.CurrentContext))
12176 {
12177 #endif
12178 unsafe
12179 {
12180 fixed (int* @params_ptr = &@params)
12181 {
12182 Delegates.glGetTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12183 }
12184 }
12185 #if DEBUG
12186 }
12187 #endif
12188 }
12189
12190 [System.CLSCompliant(false)]
12191 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterxvOES")]
12192 public static
12193 unsafe void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params)
12194 {
12195 #if DEBUG
12196 using (new ErrorHelper(GraphicsContext.CurrentContext))
12197 {
12198 #endif
12199 Delegates.glGetTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
12200 #if DEBUG
12201 }
12202 #endif
12203 }
12204
12205 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterxvOES")]
12206 public static
12207 void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params)
12208 {
12209 #if DEBUG
12210 using (new ErrorHelper(GraphicsContext.CurrentContext))
12211 {
12212 #endif
12213 unsafe
12214 {
12215 fixed (int* @params_ptr = @params)
12216 {
12217 Delegates.glGetTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12218 }
12219 }
12220 #if DEBUG
12221 }
12222 #endif
12223 }
12224
12225 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glGetTexParameterxvOES")]
12226 public static
12227 void GetTexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, ref int @params)
12228 {
12229 #if DEBUG
12230 using (new ErrorHelper(GraphicsContext.CurrentContext))
12231 {
12232 #endif
12233 unsafe
12234 {
12235 fixed (int* @params_ptr = &@params)
12236 {
12237 Delegates.glGetTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12238 }
12239 }
12240 #if DEBUG
12241 }
12242 #endif
12243 }
12244
12245 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsFramebufferOES")]
12246 public static
12247 bool IsFramebuffer(Int32 framebuffer)
12248 {
12249 #if DEBUG
12250 using (new ErrorHelper(GraphicsContext.CurrentContext))
12251 {
12252 #endif
12253 return Delegates.glIsFramebufferOES((UInt32)framebuffer);
12254 #if DEBUG
12255 }
12256 #endif
12257 }
12258
12259 [System.CLSCompliant(false)]
12260 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsFramebufferOES")]
12261 public static
12262 bool IsFramebuffer(UInt32 framebuffer)
12263 {
12264 #if DEBUG
12265 using (new ErrorHelper(GraphicsContext.CurrentContext))
12266 {
12267 #endif
12268 return Delegates.glIsFramebufferOES((UInt32)framebuffer);
12269 #if DEBUG
12270 }
12271 #endif
12272 }
12273
12274 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsRenderbufferOES")]
12275 public static
12276 bool IsRenderbuffer(Int32 renderbuffer)
12277 {
12278 #if DEBUG
12279 using (new ErrorHelper(GraphicsContext.CurrentContext))
12280 {
12281 #endif
12282 return Delegates.glIsRenderbufferOES((UInt32)renderbuffer);
12283 #if DEBUG
12284 }
12285 #endif
12286 }
12287
12288 [System.CLSCompliant(false)]
12289 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glIsRenderbufferOES")]
12290 public static
12291 bool IsRenderbuffer(UInt32 renderbuffer)
12292 {
12293 #if DEBUG
12294 using (new ErrorHelper(GraphicsContext.CurrentContext))
12295 {
12296 #endif
12297 return Delegates.glIsRenderbufferOES((UInt32)renderbuffer);
12298 #if DEBUG
12299 }
12300 #endif
12301 }
12302
12303 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelxOES")]
12304 public static
12305 void LightModelx(OpenTK.Graphics.ES11.All pname, int param)
12306 {
12307 #if DEBUG
12308 using (new ErrorHelper(GraphicsContext.CurrentContext))
12309 {
12310 #endif
12311 Delegates.glLightModelxOES((OpenTK.Graphics.ES11.All)pname, (int)param);
12312 #if DEBUG
12313 }
12314 #endif
12315 }
12316
12317 [System.CLSCompliant(false)]
12318 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelxvOES")]
12319 public static
12320 unsafe void LightModelx(OpenTK.Graphics.ES11.All pname, int* @params)
12321 {
12322 #if DEBUG
12323 using (new ErrorHelper(GraphicsContext.CurrentContext))
12324 {
12325 #endif
12326 Delegates.glLightModelxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params);
12327 #if DEBUG
12328 }
12329 #endif
12330 }
12331
12332 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightModelxvOES")]
12333 public static
12334 void LightModelx(OpenTK.Graphics.ES11.All pname, int[] @params)
12335 {
12336 #if DEBUG
12337 using (new ErrorHelper(GraphicsContext.CurrentContext))
12338 {
12339 #endif
12340 unsafe
12341 {
12342 fixed (int* @params_ptr = @params)
12343 {
12344 Delegates.glLightModelxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12345 }
12346 }
12347 #if DEBUG
12348 }
12349 #endif
12350 }
12351
12352 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightxOES")]
12353 public static
12354 void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int param)
12355 {
12356 #if DEBUG
12357 using (new ErrorHelper(GraphicsContext.CurrentContext))
12358 {
12359 #endif
12360 Delegates.glLightxOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int)param);
12361 #if DEBUG
12362 }
12363 #endif
12364 }
12365
12366 [System.CLSCompliant(false)]
12367 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightxvOES")]
12368 public static
12369 unsafe void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int* @params)
12370 {
12371 #if DEBUG
12372 using (new ErrorHelper(GraphicsContext.CurrentContext))
12373 {
12374 #endif
12375 Delegates.glLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
12376 #if DEBUG
12377 }
12378 #endif
12379 }
12380
12381 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLightxvOES")]
12382 public static
12383 void Lightx(OpenTK.Graphics.ES11.All light, OpenTK.Graphics.ES11.All pname, int[] @params)
12384 {
12385 #if DEBUG
12386 using (new ErrorHelper(GraphicsContext.CurrentContext))
12387 {
12388 #endif
12389 unsafe
12390 {
12391 fixed (int* @params_ptr = @params)
12392 {
12393 Delegates.glLightxvOES((OpenTK.Graphics.ES11.All)light, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12394 }
12395 }
12396 #if DEBUG
12397 }
12398 #endif
12399 }
12400
12401 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLineWidthxOES")]
12402 public static
12403 void LineWidthx(int width)
12404 {
12405 #if DEBUG
12406 using (new ErrorHelper(GraphicsContext.CurrentContext))
12407 {
12408 #endif
12409 Delegates.glLineWidthxOES((int)width);
12410 #if DEBUG
12411 }
12412 #endif
12413 }
12414
12415 [System.CLSCompliant(false)]
12416 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixxOES")]
12417 public static
12418 unsafe void LoadMatrixx(int* m)
12419 {
12420 #if DEBUG
12421 using (new ErrorHelper(GraphicsContext.CurrentContext))
12422 {
12423 #endif
12424 Delegates.glLoadMatrixxOES((int*)m);
12425 #if DEBUG
12426 }
12427 #endif
12428 }
12429
12430 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixxOES")]
12431 public static
12432 void LoadMatrixx(int[] m)
12433 {
12434 #if DEBUG
12435 using (new ErrorHelper(GraphicsContext.CurrentContext))
12436 {
12437 #endif
12438 unsafe
12439 {
12440 fixed (int* m_ptr = m)
12441 {
12442 Delegates.glLoadMatrixxOES((int*)m_ptr);
12443 }
12444 }
12445 #if DEBUG
12446 }
12447 #endif
12448 }
12449
12450 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadMatrixxOES")]
12451 public static
12452 void LoadMatrixx(ref int m)
12453 {
12454 #if DEBUG
12455 using (new ErrorHelper(GraphicsContext.CurrentContext))
12456 {
12457 #endif
12458 unsafe
12459 {
12460 fixed (int* m_ptr = &m)
12461 {
12462 Delegates.glLoadMatrixxOES((int*)m_ptr);
12463 }
12464 }
12465 #if DEBUG
12466 }
12467 #endif
12468 }
12469
12470 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glLoadPaletteFromModelViewMatrixOES")]
12471 public static
12472 void LoadPaletteFromModelViewMatrix()
12473 {
12474 #if DEBUG
12475 using (new ErrorHelper(GraphicsContext.CurrentContext))
12476 {
12477 #endif
12478 Delegates.glLoadPaletteFromModelViewMatrixOES();
12479 #if DEBUG
12480 }
12481 #endif
12482 }
12483
12484
12498 [System.CLSCompliant(false)]
12499 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMapBufferOES")]
12500 public static
12501 unsafe System.IntPtr MapBuffer(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All access)
12502 {
12503 #if DEBUG
12504 using (new ErrorHelper(GraphicsContext.CurrentContext))
12505 {
12506 #endif
12507 return Delegates.glMapBufferOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)access);
12508 #if DEBUG
12509 }
12510 #endif
12511 }
12512
12513 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialxOES")]
12514 public static
12515 void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int param)
12516 {
12517 #if DEBUG
12518 using (new ErrorHelper(GraphicsContext.CurrentContext))
12519 {
12520 #endif
12521 Delegates.glMaterialxOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int)param);
12522 #if DEBUG
12523 }
12524 #endif
12525 }
12526
12527 [System.CLSCompliant(false)]
12528 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialxvOES")]
12529 public static
12530 unsafe void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int* @params)
12531 {
12532 #if DEBUG
12533 using (new ErrorHelper(GraphicsContext.CurrentContext))
12534 {
12535 #endif
12536 Delegates.glMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
12537 #if DEBUG
12538 }
12539 #endif
12540 }
12541
12542 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMaterialxvOES")]
12543 public static
12544 void Materialx(OpenTK.Graphics.ES11.All face, OpenTK.Graphics.ES11.All pname, int[] @params)
12545 {
12546 #if DEBUG
12547 using (new ErrorHelper(GraphicsContext.CurrentContext))
12548 {
12549 #endif
12550 unsafe
12551 {
12552 fixed (int* @params_ptr = @params)
12553 {
12554 Delegates.glMaterialxvOES((OpenTK.Graphics.ES11.All)face, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12555 }
12556 }
12557 #if DEBUG
12558 }
12559 #endif
12560 }
12561
12562 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMatrixIndexPointerOES")]
12563 public static
12564 void MatrixIndexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
12565 where T3 : struct
12566 {
12567 #if DEBUG
12568 using (new ErrorHelper(GraphicsContext.CurrentContext))
12569 {
12570 #endif
12571 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12572 try
12573 {
12574 Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12575 pointer = (T3)pointer_ptr.Target;
12576 }
12577 finally
12578 {
12579 pointer_ptr.Free();
12580 }
12581 #if DEBUG
12582 }
12583 #endif
12584 }
12585
12586 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMatrixIndexPointerOES")]
12587 public static
12588 void MatrixIndexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
12589 where T3 : struct
12590 {
12591 #if DEBUG
12592 using (new ErrorHelper(GraphicsContext.CurrentContext))
12593 {
12594 #endif
12595 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12596 try
12597 {
12598 Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12599 }
12600 finally
12601 {
12602 pointer_ptr.Free();
12603 }
12604 #if DEBUG
12605 }
12606 #endif
12607 }
12608
12609 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMatrixIndexPointerOES")]
12610 public static
12611 void MatrixIndexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
12612 where T3 : struct
12613 {
12614 #if DEBUG
12615 using (new ErrorHelper(GraphicsContext.CurrentContext))
12616 {
12617 #endif
12618 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12619 try
12620 {
12621 Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12622 }
12623 finally
12624 {
12625 pointer_ptr.Free();
12626 }
12627 #if DEBUG
12628 }
12629 #endif
12630 }
12631
12632 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMatrixIndexPointerOES")]
12633 public static
12634 void MatrixIndexPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
12635 where T3 : struct
12636 {
12637 #if DEBUG
12638 using (new ErrorHelper(GraphicsContext.CurrentContext))
12639 {
12640 #endif
12641 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12642 try
12643 {
12644 Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12645 }
12646 finally
12647 {
12648 pointer_ptr.Free();
12649 }
12650 #if DEBUG
12651 }
12652 #endif
12653 }
12654
12655 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMatrixIndexPointerOES")]
12656 public static
12657 void MatrixIndexPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
12658 {
12659 #if DEBUG
12660 using (new ErrorHelper(GraphicsContext.CurrentContext))
12661 {
12662 #endif
12663 Delegates.glMatrixIndexPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
12664 #if DEBUG
12665 }
12666 #endif
12667 }
12668
12669 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultiTexCoord4xOES")]
12670 public static
12671 void MultiTexCoord4x(OpenTK.Graphics.ES11.All target, int s, int t, int r, int q)
12672 {
12673 #if DEBUG
12674 using (new ErrorHelper(GraphicsContext.CurrentContext))
12675 {
12676 #endif
12677 Delegates.glMultiTexCoord4xOES((OpenTK.Graphics.ES11.All)target, (int)s, (int)t, (int)r, (int)q);
12678 #if DEBUG
12679 }
12680 #endif
12681 }
12682
12683 [System.CLSCompliant(false)]
12684 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixxOES")]
12685 public static
12686 unsafe void MultMatrixx(int* m)
12687 {
12688 #if DEBUG
12689 using (new ErrorHelper(GraphicsContext.CurrentContext))
12690 {
12691 #endif
12692 Delegates.glMultMatrixxOES((int*)m);
12693 #if DEBUG
12694 }
12695 #endif
12696 }
12697
12698 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixxOES")]
12699 public static
12700 void MultMatrixx(int[] m)
12701 {
12702 #if DEBUG
12703 using (new ErrorHelper(GraphicsContext.CurrentContext))
12704 {
12705 #endif
12706 unsafe
12707 {
12708 fixed (int* m_ptr = m)
12709 {
12710 Delegates.glMultMatrixxOES((int*)m_ptr);
12711 }
12712 }
12713 #if DEBUG
12714 }
12715 #endif
12716 }
12717
12718 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glMultMatrixxOES")]
12719 public static
12720 void MultMatrixx(ref int m)
12721 {
12722 #if DEBUG
12723 using (new ErrorHelper(GraphicsContext.CurrentContext))
12724 {
12725 #endif
12726 unsafe
12727 {
12728 fixed (int* m_ptr = &m)
12729 {
12730 Delegates.glMultMatrixxOES((int*)m_ptr);
12731 }
12732 }
12733 #if DEBUG
12734 }
12735 #endif
12736 }
12737
12738 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glNormal3xOES")]
12739 public static
12740 void Normal3x(int nx, int ny, int nz)
12741 {
12742 #if DEBUG
12743 using (new ErrorHelper(GraphicsContext.CurrentContext))
12744 {
12745 #endif
12746 Delegates.glNormal3xOES((int)nx, (int)ny, (int)nz);
12747 #if DEBUG
12748 }
12749 #endif
12750 }
12751
12752
12771 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glOrthofOES")]
12772 public static
12773 void Ortho(Single left, Single right, Single bottom, Single top, Single zNear, Single zFar)
12774 {
12775 #if DEBUG
12776 using (new ErrorHelper(GraphicsContext.CurrentContext))
12777 {
12778 #endif
12779 Delegates.glOrthofOES((Single)left, (Single)right, (Single)bottom, (Single)top, (Single)zNear, (Single)zFar);
12780 #if DEBUG
12781 }
12782 #endif
12783 }
12784
12785 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glOrthoxOES")]
12786 public static
12787 void Orthox(int left, int right, int bottom, int top, int zNear, int zFar)
12788 {
12789 #if DEBUG
12790 using (new ErrorHelper(GraphicsContext.CurrentContext))
12791 {
12792 #endif
12793 Delegates.glOrthoxOES((int)left, (int)right, (int)bottom, (int)top, (int)zNear, (int)zFar);
12794 #if DEBUG
12795 }
12796 #endif
12797 }
12798
12799 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterxOES")]
12800 public static
12801 void PointParameterx(OpenTK.Graphics.ES11.All pname, int param)
12802 {
12803 #if DEBUG
12804 using (new ErrorHelper(GraphicsContext.CurrentContext))
12805 {
12806 #endif
12807 Delegates.glPointParameterxOES((OpenTK.Graphics.ES11.All)pname, (int)param);
12808 #if DEBUG
12809 }
12810 #endif
12811 }
12812
12813 [System.CLSCompliant(false)]
12814 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterxvOES")]
12815 public static
12816 unsafe void PointParameterx(OpenTK.Graphics.ES11.All pname, int* @params)
12817 {
12818 #if DEBUG
12819 using (new ErrorHelper(GraphicsContext.CurrentContext))
12820 {
12821 #endif
12822 Delegates.glPointParameterxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params);
12823 #if DEBUG
12824 }
12825 #endif
12826 }
12827
12828 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointParameterxvOES")]
12829 public static
12830 void PointParameterx(OpenTK.Graphics.ES11.All pname, int[] @params)
12831 {
12832 #if DEBUG
12833 using (new ErrorHelper(GraphicsContext.CurrentContext))
12834 {
12835 #endif
12836 unsafe
12837 {
12838 fixed (int* @params_ptr = @params)
12839 {
12840 Delegates.glPointParameterxvOES((OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
12841 }
12842 }
12843 #if DEBUG
12844 }
12845 #endif
12846 }
12847
12848 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizePointerOES")]
12849 public static
12850 void PointSizePointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T2 pointer)
12851 where T2 : struct
12852 {
12853 #if DEBUG
12854 using (new ErrorHelper(GraphicsContext.CurrentContext))
12855 {
12856 #endif
12857 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12858 try
12859 {
12860 Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12861 pointer = (T2)pointer_ptr.Target;
12862 }
12863 finally
12864 {
12865 pointer_ptr.Free();
12866 }
12867 #if DEBUG
12868 }
12869 #endif
12870 }
12871
12872 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizePointerOES")]
12873 public static
12874 void PointSizePointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,,] pointer)
12875 where T2 : struct
12876 {
12877 #if DEBUG
12878 using (new ErrorHelper(GraphicsContext.CurrentContext))
12879 {
12880 #endif
12881 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12882 try
12883 {
12884 Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12885 }
12886 finally
12887 {
12888 pointer_ptr.Free();
12889 }
12890 #if DEBUG
12891 }
12892 #endif
12893 }
12894
12895 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizePointerOES")]
12896 public static
12897 void PointSizePointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[,] pointer)
12898 where T2 : struct
12899 {
12900 #if DEBUG
12901 using (new ErrorHelper(GraphicsContext.CurrentContext))
12902 {
12903 #endif
12904 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12905 try
12906 {
12907 Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12908 }
12909 finally
12910 {
12911 pointer_ptr.Free();
12912 }
12913 #if DEBUG
12914 }
12915 #endif
12916 }
12917
12918 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizePointerOES")]
12919 public static
12920 void PointSizePointer<T2>(OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T2[] pointer)
12921 where T2 : struct
12922 {
12923 #if DEBUG
12924 using (new ErrorHelper(GraphicsContext.CurrentContext))
12925 {
12926 #endif
12927 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
12928 try
12929 {
12930 Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
12931 }
12932 finally
12933 {
12934 pointer_ptr.Free();
12935 }
12936 #if DEBUG
12937 }
12938 #endif
12939 }
12940
12941 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizePointerOES")]
12942 public static
12943 void PointSizePointer(OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
12944 {
12945 #if DEBUG
12946 using (new ErrorHelper(GraphicsContext.CurrentContext))
12947 {
12948 #endif
12949 Delegates.glPointSizePointerOES((OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
12950 #if DEBUG
12951 }
12952 #endif
12953 }
12954
12955 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPointSizexOES")]
12956 public static
12957 void PointSizex(int size)
12958 {
12959 #if DEBUG
12960 using (new ErrorHelper(GraphicsContext.CurrentContext))
12961 {
12962 #endif
12963 Delegates.glPointSizexOES((int)size);
12964 #if DEBUG
12965 }
12966 #endif
12967 }
12968
12969 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glPolygonOffsetxOES")]
12970 public static
12971 void PolygonOffsetx(int factor, int units)
12972 {
12973 #if DEBUG
12974 using (new ErrorHelper(GraphicsContext.CurrentContext))
12975 {
12976 #endif
12977 Delegates.glPolygonOffsetxOES((int)factor, (int)units);
12978 #if DEBUG
12979 }
12980 #endif
12981 }
12982
12983 [System.CLSCompliant(false)]
12984 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glQueryMatrixxOES")]
12985 public static
12986 unsafe Int32 QueryMatrixx(int* mantissa, Int32* exponent)
12987 {
12988 #if DEBUG
12989 using (new ErrorHelper(GraphicsContext.CurrentContext))
12990 {
12991 #endif
12992 return Delegates.glQueryMatrixxOES((int*)mantissa, (Int32*)exponent);
12993 #if DEBUG
12994 }
12995 #endif
12996 }
12997
12998 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glQueryMatrixxOES")]
12999 public static
13000 Int32 QueryMatrixx(int[] mantissa, Int32[] exponent)
13001 {
13002 #if DEBUG
13003 using (new ErrorHelper(GraphicsContext.CurrentContext))
13004 {
13005 #endif
13006 unsafe
13007 {
13008 fixed (int* mantissa_ptr = mantissa)
13009 fixed (Int32* exponent_ptr = exponent)
13010 {
13011 return Delegates.glQueryMatrixxOES((int*)mantissa_ptr, (Int32*)exponent_ptr);
13012 }
13013 }
13014 #if DEBUG
13015 }
13016 #endif
13017 }
13018
13019 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glQueryMatrixxOES")]
13020 public static
13021 Int32 QueryMatrixx(ref int mantissa, ref Int32 exponent)
13022 {
13023 #if DEBUG
13024 using (new ErrorHelper(GraphicsContext.CurrentContext))
13025 {
13026 #endif
13027 unsafe
13028 {
13029 fixed (int* mantissa_ptr = &mantissa)
13030 fixed (Int32* exponent_ptr = &exponent)
13031 {
13032 return Delegates.glQueryMatrixxOES((int*)mantissa_ptr, (Int32*)exponent_ptr);
13033 }
13034 }
13035 #if DEBUG
13036 }
13037 #endif
13038 }
13039
13040 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glRenderbufferStorageOES")]
13041 public static
13042 void RenderbufferStorage(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All internalformat, Int32 width, Int32 height)
13043 {
13044 #if DEBUG
13045 using (new ErrorHelper(GraphicsContext.CurrentContext))
13046 {
13047 #endif
13048 Delegates.glRenderbufferStorageOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)internalformat, (Int32)width, (Int32)height);
13049 #if DEBUG
13050 }
13051 #endif
13052 }
13053
13054 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glRotatexOES")]
13055 public static
13056 void Rotatex(int angle, int x, int y, int z)
13057 {
13058 #if DEBUG
13059 using (new ErrorHelper(GraphicsContext.CurrentContext))
13060 {
13061 #endif
13062 Delegates.glRotatexOES((int)angle, (int)x, (int)y, (int)z);
13063 #if DEBUG
13064 }
13065 #endif
13066 }
13067
13068 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glSampleCoveragexOES")]
13069 public static
13070 void SampleCoveragex(int value, bool invert)
13071 {
13072 #if DEBUG
13073 using (new ErrorHelper(GraphicsContext.CurrentContext))
13074 {
13075 #endif
13076 Delegates.glSampleCoveragexOES((int)value, (bool)invert);
13077 #if DEBUG
13078 }
13079 #endif
13080 }
13081
13082 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glScalexOES")]
13083 public static
13084 void Scalex(int x, int y, int z)
13085 {
13086 #if DEBUG
13087 using (new ErrorHelper(GraphicsContext.CurrentContext))
13088 {
13089 #endif
13090 Delegates.glScalexOES((int)x, (int)y, (int)z);
13091 #if DEBUG
13092 }
13093 #endif
13094 }
13095
13096 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvxOES")]
13097 public static
13098 void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param)
13099 {
13100 #if DEBUG
13101 using (new ErrorHelper(GraphicsContext.CurrentContext))
13102 {
13103 #endif
13104 Delegates.glTexEnvxOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param);
13105 #if DEBUG
13106 }
13107 #endif
13108 }
13109
13110 [System.CLSCompliant(false)]
13111 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvxvOES")]
13112 public static
13113 unsafe void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params)
13114 {
13115 #if DEBUG
13116 using (new ErrorHelper(GraphicsContext.CurrentContext))
13117 {
13118 #endif
13119 Delegates.glTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
13120 #if DEBUG
13121 }
13122 #endif
13123 }
13124
13125 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexEnvxvOES")]
13126 public static
13127 void TexEnvx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params)
13128 {
13129 #if DEBUG
13130 using (new ErrorHelper(GraphicsContext.CurrentContext))
13131 {
13132 #endif
13133 unsafe
13134 {
13135 fixed (int* @params_ptr = @params)
13136 {
13137 Delegates.glTexEnvxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
13138 }
13139 }
13140 #if DEBUG
13141 }
13142 #endif
13143 }
13144
13145
13164 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenfOES")]
13165 public static
13166 void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single param)
13167 {
13168 #if DEBUG
13169 using (new ErrorHelper(GraphicsContext.CurrentContext))
13170 {
13171 #endif
13172 Delegates.glTexGenfOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single)param);
13173 #if DEBUG
13174 }
13175 #endif
13176 }
13177
13178
13197 [System.CLSCompliant(false)]
13198 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenfvOES")]
13199 public static
13200 unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single* @params)
13201 {
13202 #if DEBUG
13203 using (new ErrorHelper(GraphicsContext.CurrentContext))
13204 {
13205 #endif
13206 Delegates.glTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params);
13207 #if DEBUG
13208 }
13209 #endif
13210 }
13211
13212
13231 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenfvOES")]
13232 public static
13233 void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Single[] @params)
13234 {
13235 #if DEBUG
13236 using (new ErrorHelper(GraphicsContext.CurrentContext))
13237 {
13238 #endif
13239 unsafe
13240 {
13241 fixed (Single* @params_ptr = @params)
13242 {
13243 Delegates.glTexGenfvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Single*)@params_ptr);
13244 }
13245 }
13246 #if DEBUG
13247 }
13248 #endif
13249 }
13250
13251
13270 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGeniOES")]
13271 public static
13272 void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32 param)
13273 {
13274 #if DEBUG
13275 using (new ErrorHelper(GraphicsContext.CurrentContext))
13276 {
13277 #endif
13278 Delegates.glTexGeniOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32)param);
13279 #if DEBUG
13280 }
13281 #endif
13282 }
13283
13284
13303 [System.CLSCompliant(false)]
13304 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenivOES")]
13305 public static
13306 unsafe void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32* @params)
13307 {
13308 #if DEBUG
13309 using (new ErrorHelper(GraphicsContext.CurrentContext))
13310 {
13311 #endif
13312 Delegates.glTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params);
13313 #if DEBUG
13314 }
13315 #endif
13316 }
13317
13318
13337 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenivOES")]
13338 public static
13339 void TexGen(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, Int32[] @params)
13340 {
13341 #if DEBUG
13342 using (new ErrorHelper(GraphicsContext.CurrentContext))
13343 {
13344 #endif
13345 unsafe
13346 {
13347 fixed (Int32* @params_ptr = @params)
13348 {
13349 Delegates.glTexGenivOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (Int32*)@params_ptr);
13350 }
13351 }
13352 #if DEBUG
13353 }
13354 #endif
13355 }
13356
13357 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenxOES")]
13358 public static
13359 void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int param)
13360 {
13361 #if DEBUG
13362 using (new ErrorHelper(GraphicsContext.CurrentContext))
13363 {
13364 #endif
13365 Delegates.glTexGenxOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int)param);
13366 #if DEBUG
13367 }
13368 #endif
13369 }
13370
13371 [System.CLSCompliant(false)]
13372 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenxvOES")]
13373 public static
13374 unsafe void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int* @params)
13375 {
13376 #if DEBUG
13377 using (new ErrorHelper(GraphicsContext.CurrentContext))
13378 {
13379 #endif
13380 Delegates.glTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
13381 #if DEBUG
13382 }
13383 #endif
13384 }
13385
13386 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexGenxvOES")]
13387 public static
13388 void TexGenx(OpenTK.Graphics.ES11.All coord, OpenTK.Graphics.ES11.All pname, int[] @params)
13389 {
13390 #if DEBUG
13391 using (new ErrorHelper(GraphicsContext.CurrentContext))
13392 {
13393 #endif
13394 unsafe
13395 {
13396 fixed (int* @params_ptr = @params)
13397 {
13398 Delegates.glTexGenxvOES((OpenTK.Graphics.ES11.All)coord, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
13399 }
13400 }
13401 #if DEBUG
13402 }
13403 #endif
13404 }
13405
13406 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterxOES")]
13407 public static
13408 void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int param)
13409 {
13410 #if DEBUG
13411 using (new ErrorHelper(GraphicsContext.CurrentContext))
13412 {
13413 #endif
13414 Delegates.glTexParameterxOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int)param);
13415 #if DEBUG
13416 }
13417 #endif
13418 }
13419
13420 [System.CLSCompliant(false)]
13421 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterxvOES")]
13422 public static
13423 unsafe void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int* @params)
13424 {
13425 #if DEBUG
13426 using (new ErrorHelper(GraphicsContext.CurrentContext))
13427 {
13428 #endif
13429 Delegates.glTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params);
13430 #if DEBUG
13431 }
13432 #endif
13433 }
13434
13435 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTexParameterxvOES")]
13436 public static
13437 void TexParameterx(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, int[] @params)
13438 {
13439 #if DEBUG
13440 using (new ErrorHelper(GraphicsContext.CurrentContext))
13441 {
13442 #endif
13443 unsafe
13444 {
13445 fixed (int* @params_ptr = @params)
13446 {
13447 Delegates.glTexParameterxvOES((OpenTK.Graphics.ES11.All)target, (OpenTK.Graphics.ES11.All)pname, (int*)@params_ptr);
13448 }
13449 }
13450 #if DEBUG
13451 }
13452 #endif
13453 }
13454
13455 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glTranslatexOES")]
13456 public static
13457 void Translatex(int x, int y, int z)
13458 {
13459 #if DEBUG
13460 using (new ErrorHelper(GraphicsContext.CurrentContext))
13461 {
13462 #endif
13463 Delegates.glTranslatexOES((int)x, (int)y, (int)z);
13464 #if DEBUG
13465 }
13466 #endif
13467 }
13468
13469 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glUnmapBufferOES")]
13470 public static
13471 bool UnmapBuffer(OpenTK.Graphics.ES11.All target)
13472 {
13473 #if DEBUG
13474 using (new ErrorHelper(GraphicsContext.CurrentContext))
13475 {
13476 #endif
13477 return Delegates.glUnmapBufferOES((OpenTK.Graphics.ES11.All)target);
13478 #if DEBUG
13479 }
13480 #endif
13481 }
13482
13483 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glWeightPointerOES")]
13484 public static
13485 void WeightPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] ref T3 pointer)
13486 where T3 : struct
13487 {
13488 #if DEBUG
13489 using (new ErrorHelper(GraphicsContext.CurrentContext))
13490 {
13491 #endif
13492 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
13493 try
13494 {
13495 Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
13496 pointer = (T3)pointer_ptr.Target;
13497 }
13498 finally
13499 {
13500 pointer_ptr.Free();
13501 }
13502 #if DEBUG
13503 }
13504 #endif
13505 }
13506
13507 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glWeightPointerOES")]
13508 public static
13509 void WeightPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,,] pointer)
13510 where T3 : struct
13511 {
13512 #if DEBUG
13513 using (new ErrorHelper(GraphicsContext.CurrentContext))
13514 {
13515 #endif
13516 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
13517 try
13518 {
13519 Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
13520 }
13521 finally
13522 {
13523 pointer_ptr.Free();
13524 }
13525 #if DEBUG
13526 }
13527 #endif
13528 }
13529
13530 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glWeightPointerOES")]
13531 public static
13532 void WeightPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[,] pointer)
13533 where T3 : struct
13534 {
13535 #if DEBUG
13536 using (new ErrorHelper(GraphicsContext.CurrentContext))
13537 {
13538 #endif
13539 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
13540 try
13541 {
13542 Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
13543 }
13544 finally
13545 {
13546 pointer_ptr.Free();
13547 }
13548 #if DEBUG
13549 }
13550 #endif
13551 }
13552
13553 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glWeightPointerOES")]
13554 public static
13555 void WeightPointer<T3>(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, [InAttribute, OutAttribute] T3[] pointer)
13556 where T3 : struct
13557 {
13558 #if DEBUG
13559 using (new ErrorHelper(GraphicsContext.CurrentContext))
13560 {
13561 #endif
13562 GCHandle pointer_ptr = GCHandle.Alloc(pointer, GCHandleType.Pinned);
13563 try
13564 {
13565 Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer_ptr.AddrOfPinnedObject());
13566 }
13567 finally
13568 {
13569 pointer_ptr.Free();
13570 }
13571 #if DEBUG
13572 }
13573 #endif
13574 }
13575
13576 [AutoGenerated(Category = "1.1", Version = "1.1", EntryPoint = "glWeightPointerOES")]
13577 public static
13578 void WeightPointer(Int32 size, OpenTK.Graphics.ES11.All type, Int32 stride, IntPtr pointer)
13579 {
13580 #if DEBUG
13581 using (new ErrorHelper(GraphicsContext.CurrentContext))
13582 {
13583 #endif
13584 Delegates.glWeightPointerOES((Int32)size, (OpenTK.Graphics.ES11.All)type, (Int32)stride, (IntPtr)pointer);
13585 #if DEBUG
13586 }
13587 #endif
13588 }
13589
13590 }
13591
13592 }
13593 }
13594 #endif