fake-bpy-module 20240320__py3-none-any.whl → 20240322__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86358 -87091
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
bgl/__init__.pyi CHANGED
@@ -19,9 +19,7 @@ class Buffer:
19
19
  """The contents of the Buffer as a python list."""
20
20
  ...
21
21
 
22
- def __init__(
23
- self, type: int, dimensions: typing.List[int], template: typing.List = None
24
- ) -> "Buffer":
22
+ def __init__(self, type: int, dimensions, template=None):
25
23
  """This will create a new Buffer object for use with other bgl OpenGL commands.
26
24
  Only the type of argument to store in the buffer and the dimensions of the buffer
27
25
  are necessary. Buffers are zeroed by default unless a template is supplied, in
@@ -37,11 +35,8 @@ class Buffer:
37
35
  a three- dimensional buffer. You can think of each additional dimension as a sub-item
38
36
  of the dimension to the left. i.e. [10,2] is a 10 element array each with 2 sub-items.
39
37
  [(0,0), (0,1), (1,0), (1,1), (2,0), ...] etc.
40
- :type dimensions: typing.List[int]
41
38
  :param template: A sequence of matching dimensions which will be used to initialize
42
39
  the Buffer. If a template is not passed in all fields will be initialized to 0.
43
- :type template: typing.List
44
- :rtype: 'Buffer'
45
40
  :return: The newly created buffer as a PyObject.
46
41
  """
47
42
  ...
@@ -151,11 +146,11 @@ def glBindRenderbuffer(p0: int, p1: int):
151
146
 
152
147
  ...
153
148
 
154
- def glBindTexture(target: typing.Union[typing.Set[int], typing.Set[str]], texture: int):
149
+ def glBindTexture(target: typing.Union[typing.Set[str], typing.Set[int]], texture: int):
155
150
  """Bind a named texture to a texturing target`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glBindTexture.xhtml>`__
156
151
 
157
152
  :param target: Specifies the target to which the texture is bound.
158
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
153
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
159
154
  :param texture: Specifies the name of a texture.
160
155
  :type texture: int
161
156
  """
@@ -208,17 +203,17 @@ def glBlendEquationSeparate(p0: int, p1: int):
208
203
  ...
209
204
 
210
205
  def glBlendFunc(
211
- sfactor: typing.Union[typing.Set[int], typing.Set[str]],
212
- dfactor: typing.Union[typing.Set[int], typing.Set[str]],
206
+ sfactor: typing.Union[typing.Set[str], typing.Set[int]],
207
+ dfactor: typing.Union[typing.Set[str], typing.Set[int]],
213
208
  ):
214
209
  """Specify pixel arithmetic`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendFunc.xhtml>`__
215
210
 
216
211
  :param sfactor: Specifies how the red, green, blue, and alpha source blending factors are
217
212
  computed.
218
- :type sfactor: typing.Union[typing.Set[int], typing.Set[str]]
213
+ :type sfactor: typing.Union[typing.Set[str], typing.Set[int]]
219
214
  :param dfactor: Specifies how the red, green, blue, and alpha destination
220
215
  blending factors are computed.
221
- :type dfactor: typing.Union[typing.Set[int], typing.Set[str]]
216
+ :type dfactor: typing.Union[typing.Set[str], typing.Set[int]]
222
217
  """
223
218
 
224
219
  ...
@@ -291,11 +286,10 @@ def glCheckFramebufferStatus(p0: int) -> int:
291
286
 
292
287
  ...
293
288
 
294
- def glClear(mask: typing.Any):
289
+ def glClear(mask):
295
290
  """Clear buffers to preset values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClear.xhtml>`__
296
291
 
297
292
  :param mask: Bitwise OR of masks that indicate the buffers to be cleared.
298
- :type mask: typing.Any
299
293
  """
300
294
 
301
295
  ...
@@ -365,15 +359,15 @@ def glClearStencil(p0: int):
365
359
  ...
366
360
 
367
361
  def glClipPlane(
368
- plane: typing.Union[typing.Set[int], typing.Set[str]], equation: "Buffer"
362
+ plane: typing.Union[typing.Set[str], typing.Set[int]], equation: Buffer
369
363
  ):
370
364
  """Specify a plane against which all geometry is clipped`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClipPlane.xhtml>`__
371
365
 
372
366
  :param plane: Specifies which clipping plane is being positioned.
373
- :type plane: typing.Union[typing.Set[int], typing.Set[str]]
367
+ :type plane: typing.Union[typing.Set[str], typing.Set[int]]
374
368
  :param equation: Specifies the address of an array of four double- precision
375
369
  floating-point values. These values are interpreted as a plane equation.
376
- :type equation: 'Buffer'
370
+ :type equation: Buffer
377
371
  """
378
372
 
379
373
  ...
@@ -533,7 +527,7 @@ def glCopyTexImage1D(p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: i
533
527
  ...
534
528
 
535
529
  def glCopyTexImage2D(
536
- target: typing.Union[typing.Set[int], typing.Set[str]],
530
+ target: typing.Union[typing.Set[str], typing.Set[int]],
537
531
  level: int,
538
532
  internalformat: int,
539
533
  x: int,
@@ -545,7 +539,7 @@ def glCopyTexImage2D(
545
539
  """Copy pixels into a 2D texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexImage2D.xhtml>`__
546
540
 
547
541
  :param target: Specifies the target texture.
548
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
542
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
549
543
  :param level: Specifies the level-of-detail number. Level 0 is the base image level.
550
544
  Level n is the nth mipmap reduction image.
551
545
  :type level: int
@@ -637,8 +631,8 @@ def glCopyTexSubImage3D(
637
631
  def glCreateProgram() -> int:
638
632
  """Creates a program object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateProgram.xhtml>`__
639
633
 
640
- :rtype: int
641
634
  :return: The new program or zero if an error occurs.
635
+ :rtype: int
642
636
  """
643
637
 
644
638
  ...
@@ -652,12 +646,13 @@ def glCreateProgram(p0: typing.Any) -> int:
652
646
 
653
647
  ...
654
648
 
655
- def glCreateShader(shaderType: "GL_GEOMETRY_SHADER") -> int:
649
+ def glCreateShader(shaderType: GL_GEOMETRY_SHADER) -> int:
656
650
  """Creates a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateShader.xhtml>`__
657
651
 
658
- :type shaderType: 'GL_GEOMETRY_SHADER'
659
- :rtype: int
652
+ :param shaderType:
653
+ :type shaderType: GL_GEOMETRY_SHADER
660
654
  :return: 0 if an error occurs.
655
+ :rtype: int
661
656
  """
662
657
 
663
658
  ...
@@ -671,11 +666,11 @@ def glCreateShader(p0: int) -> int:
671
666
 
672
667
  ...
673
668
 
674
- def glCullFace(mode: typing.Union[typing.Set[int], typing.Set[str]]):
669
+ def glCullFace(mode: typing.Union[typing.Set[str], typing.Set[int]]):
675
670
  """Specify whether front- or back-facing facets can be culled`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCullFace.xhtml>`__
676
671
 
677
672
  :param mode: Specifies whether front- or back-facing facets are candidates for culling.
678
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
673
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
679
674
  """
680
675
 
681
676
  ...
@@ -758,13 +753,13 @@ def glDeleteShader(p0: int):
758
753
 
759
754
  ...
760
755
 
761
- def glDeleteTextures(n: int, textures: "Buffer"):
756
+ def glDeleteTextures(n: int, textures: Buffer):
762
757
  """Delete named textures`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteTextures.xhtml>`__
763
758
 
764
759
  :param n: Specifies the number of textures to be deleted
765
760
  :type n: int
766
761
  :param textures: Specifies an array of textures to be deleted
767
- :type textures: 'Buffer'
762
+ :type textures: Buffer
768
763
  """
769
764
 
770
765
  ...
@@ -787,11 +782,11 @@ def glDeleteVertexArrays(p0: int, p1: int):
787
782
 
788
783
  ...
789
784
 
790
- def glDepthFunc(func: typing.Union[typing.Set[int], typing.Set[str]]):
785
+ def glDepthFunc(func: typing.Union[typing.Set[str], typing.Set[int]]):
791
786
  """Specify the value used for depth buffer comparisons`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthFunc.xhtml>`__
792
787
 
793
788
  :param func: Specifies the depth comparison function.
794
- :type func: typing.Union[typing.Set[int], typing.Set[str]]
789
+ :type func: typing.Union[typing.Set[str], typing.Set[int]]
795
790
  """
796
791
 
797
792
  ...
@@ -865,11 +860,11 @@ def glDetachShader(p0: int, p1: int):
865
860
 
866
861
  ...
867
862
 
868
- def glDisable(cap: typing.Union[typing.Set[int], typing.Set[str]]):
863
+ def glDisable(cap: typing.Union[typing.Set[str], typing.Set[int]]):
869
864
  """Disable server-side GL capabilities`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEnable.xhtml>`__
870
865
 
871
866
  :param cap: Specifies a symbolic constant indicating a GL capability.
872
- :type cap: typing.Union[typing.Set[int], typing.Set[str]]
867
+ :type cap: typing.Union[typing.Set[str], typing.Set[int]]
873
868
  """
874
869
 
875
870
  ...
@@ -900,11 +895,11 @@ def glDrawArrays(p0: int, p1: int, p2: int):
900
895
 
901
896
  ...
902
897
 
903
- def glDrawBuffer(mode: typing.Union[typing.Set[int], typing.Set[str]]):
898
+ def glDrawBuffer(mode: typing.Union[typing.Set[str], typing.Set[int]]):
904
899
  """Specify which color buffers are to be drawn into`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawBuffer.xhtml>`__
905
900
 
906
901
  :param mode: Specifies up to four color buffers to be drawn into.
907
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
902
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
908
903
  """
909
904
 
910
905
  ...
@@ -950,20 +945,19 @@ def glDrawRangeElements(p0: int, p1: int, p2: int, p3: int, p4: int, p5: typing.
950
945
 
951
946
  ...
952
947
 
953
- def glEdgeFlag(flag: typing.Any):
948
+ def glEdgeFlag(flag):
954
949
  """B{glEdgeFlag, glEdgeFlagv}Flag edges as either boundary or non-boundary`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEdgeFlag.xhtml>`__
955
950
 
956
951
  :param flag: Specifies the current edge flag value.The initial value is GL_TRUE.
957
- :type flag: typing.Any
958
952
  """
959
953
 
960
954
  ...
961
955
 
962
- def glEnable(cap: typing.Union[typing.Set[int], typing.Set[str]]):
956
+ def glEnable(cap: typing.Union[typing.Set[str], typing.Set[int]]):
963
957
  """Enable server-side GL capabilities`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEnable.xhtml>`__
964
958
 
965
959
  :param cap: Specifies a symbolic constant indicating a GL capability.
966
- :type cap: typing.Union[typing.Set[int], typing.Set[str]]
960
+ :type cap: typing.Union[typing.Set[str], typing.Set[int]]
967
961
  """
968
962
 
969
963
  ...
@@ -1008,31 +1002,30 @@ def glEvalCoord(u: typing.Any, v: typing.Any):
1008
1002
 
1009
1003
  ...
1010
1004
 
1011
- def glEvalMesh(mode: typing.Union[typing.Set[int], typing.Set[str]], i1: int, i2):
1005
+ def glEvalMesh(mode: typing.Union[typing.Set[str], typing.Set[int]], i1: int, i2):
1012
1006
  """B{glEvalMesh1 or glEvalMesh2}Compute a one- or two-dimensional grid of points or lines`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEvalMesh.xhtml>`__
1013
1007
 
1014
1008
  :param mode: In glEvalMesh1, specifies whether to compute a one-dimensional
1015
1009
  mesh of points or lines.
1016
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
1010
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
1017
1011
  :param i1: Specify the first and last integer values for the grid domain variable i.
1018
1012
  :type i1: int
1019
1013
  """
1020
1014
 
1021
1015
  ...
1022
1016
 
1023
- def glEvalPoint(i: int, j: int):
1017
+ def glEvalPoint(i: int, j):
1024
1018
  """B{glEvalPoint1 and glEvalPoint2}Generate and evaluate a single point in a mesh`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEvalPoint.xhtml>`__
1025
1019
 
1026
1020
  :param i: Specifies the integer value for grid domain variable i.
1027
1021
  :type i: int
1028
1022
  :param j: Specifies the integer value for grid domain variable j (glEvalPoint2 only).
1029
- :type j: int
1030
1023
  """
1031
1024
 
1032
1025
  ...
1033
1026
 
1034
1027
  def glFeedbackBuffer(
1035
- size: int, type: typing.Union[typing.Set[int], typing.Set[str]], buffer: "Buffer"
1028
+ size: int, type: typing.Union[typing.Set[str], typing.Set[int]], buffer: Buffer
1036
1029
  ):
1037
1030
  """Controls feedback mode`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFeedbackBuffer.xhtml>`__
1038
1031
 
@@ -1040,9 +1033,9 @@ def glFeedbackBuffer(
1040
1033
  :type size: int
1041
1034
  :param type: Specifies a symbolic constant that describes the information that
1042
1035
  will be returned for each vertex.
1043
- :type type: typing.Union[typing.Set[int], typing.Set[str]]
1036
+ :type type: typing.Union[typing.Set[str], typing.Set[int]]
1044
1037
  :param buffer: Returns the feedback data.
1045
- :type buffer: 'Buffer'
1038
+ :type buffer: Buffer
1046
1039
  """
1047
1040
 
1048
1041
  ...
@@ -1073,12 +1066,12 @@ def glFlush(p0: typing.Any):
1073
1066
 
1074
1067
  ...
1075
1068
 
1076
- def glFog(pname: typing.Union[typing.Set[int], typing.Set[str]], param: typing.Any):
1069
+ def glFog(pname: typing.Union[typing.Set[str], typing.Set[int]], param: typing.Any):
1077
1070
  """B{glFogf, glFogi, glFogfv, glFogiv}Specify fog parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFog.xhtml>`__
1078
1071
 
1079
1072
  :param pname: Specifies a single-valued fog parameter. If the function prototype
1080
1073
  ends in 'v' specifies a fog parameter.
1081
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1074
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1082
1075
  :param param: Specifies the value or values to be assigned to pname. GL_FOG_COLOR
1083
1076
  requires an array of four values. All other parameters accept an array containing
1084
1077
  only a single value.
@@ -1109,11 +1102,11 @@ def glFramebufferTexture(p0: int, p1: int, p2: int, p3: int):
1109
1102
 
1110
1103
  ...
1111
1104
 
1112
- def glFrontFace(mode: typing.Union[typing.Set[int], typing.Set[str]]):
1105
+ def glFrontFace(mode: typing.Union[typing.Set[str], typing.Set[int]]):
1113
1106
  """Define front- and back-facing polygons`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFrontFace.xhtml>`__
1114
1107
 
1115
1108
  :param mode: Specifies the orientation of front-facing polygons.
1116
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
1109
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
1117
1110
  """
1118
1111
 
1119
1112
  ...
@@ -1162,13 +1155,13 @@ def glGenRenderbuffers(p0: int, p1: int):
1162
1155
 
1163
1156
  ...
1164
1157
 
1165
- def glGenTextures(n: int, textures: "Buffer"):
1158
+ def glGenTextures(n: int, textures: Buffer):
1166
1159
  """Generate texture names`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGenTextures.xhtml>`__
1167
1160
 
1168
1161
  :param n: Specifies the number of textures name to be generated.
1169
1162
  :type n: int
1170
1163
  :param textures: Specifies an array in which the generated textures names are stored.
1171
- :type textures: 'Buffer'
1164
+ :type textures: Buffer
1172
1165
  """
1173
1166
 
1174
1167
  ...
@@ -1191,11 +1184,11 @@ def glGenVertexArrays(p0: int, p1: int):
1191
1184
 
1192
1185
  ...
1193
1186
 
1194
- def glGet(pname: typing.Union[typing.Set[int], typing.Set[str]], param: typing.Any):
1187
+ def glGet(pname: typing.Union[typing.Set[str], typing.Set[int]], param: typing.Any):
1195
1188
  """B{glGetBooleanv, glGetfloatv, glGetFloatv, glGetIntegerv}Return the value or values of a selected parameter`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGet.xhtml>`__
1196
1189
 
1197
1190
  :param pname: Specifies the parameter value to be returned.
1198
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1191
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1199
1192
  :param param: Returns the value or values of the specified parameter.
1200
1193
  :type param: typing.Any
1201
1194
  """
@@ -1277,9 +1270,7 @@ def glGetActiveUniformsiv(p0: int, p1: int, p2: int, p3: int, p4: int):
1277
1270
 
1278
1271
  ...
1279
1272
 
1280
- def glGetAttachedShaders(
1281
- program: int, maxCount: int, count: "Buffer", shaders: "Buffer"
1282
- ):
1273
+ def glGetAttachedShaders(program: int, maxCount: int, count: Buffer, shaders: Buffer):
1283
1274
  """Returns the handles of the shader objects attached to a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetAttachedShaders.xhtml>`__
1284
1275
 
1285
1276
  :param program: Specifies the program object to be queried.
@@ -1287,9 +1278,9 @@ def glGetAttachedShaders(
1287
1278
  :param maxCount: Specifies the size of the array for storing the returned object names.
1288
1279
  :type maxCount: int
1289
1280
  :param count: Returns the number of names actually returned in objects.
1290
- :type count: 'Buffer'
1281
+ :type count: Buffer
1291
1282
  :param shaders: Specifies an array that is used to return the names of attached shader objects.
1292
- :type shaders: 'Buffer'
1283
+ :type shaders: Buffer
1293
1284
  """
1294
1285
 
1295
1286
  ...
@@ -1417,55 +1408,55 @@ def glGetIntegerv(p0: int, p1: int):
1417
1408
  ...
1418
1409
 
1419
1410
  def glGetLight(
1420
- light: typing.Union[typing.Set[int], typing.Set[str]],
1421
- pname: typing.Union[typing.Set[int], typing.Set[str]],
1422
- params: "Buffer",
1411
+ light: typing.Union[typing.Set[str], typing.Set[int]],
1412
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
1413
+ params: Buffer,
1423
1414
  ):
1424
1415
  """B{glGetLightfv and glGetLightiv}Return light source parameter values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetLight.xhtml>`__
1425
1416
 
1426
1417
  :param light: Specifies a light source. The number of possible lights depends on the
1427
1418
  implementation, but at least eight lights are supported. They are identified by symbolic
1428
1419
  names of the form GL_LIGHTi where 0 < i < GL_MAX_LIGHTS.
1429
- :type light: typing.Union[typing.Set[int], typing.Set[str]]
1420
+ :type light: typing.Union[typing.Set[str], typing.Set[int]]
1430
1421
  :param pname: Specifies a light source parameter for light.
1431
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1422
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1432
1423
  :param params: Returns the requested data.
1433
- :type params: 'Buffer'
1424
+ :type params: Buffer
1434
1425
  """
1435
1426
 
1436
1427
  ...
1437
1428
 
1438
1429
  def glGetMap(
1439
- target: typing.Union[typing.Set[int], typing.Set[str]],
1440
- query: typing.Union[typing.Set[int], typing.Set[str]],
1441
- v: "Buffer",
1430
+ target: typing.Union[typing.Set[str], typing.Set[int]],
1431
+ query: typing.Union[typing.Set[str], typing.Set[int]],
1432
+ v: Buffer,
1442
1433
  ):
1443
1434
  """B{glGetMapdv, glGetMapfv, glGetMapiv}Return evaluator parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetMap.xhtml>`__
1444
1435
 
1445
1436
  :param target: Specifies the symbolic name of a map.
1446
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
1437
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
1447
1438
  :param query: Specifies which parameter to return.
1448
- :type query: typing.Union[typing.Set[int], typing.Set[str]]
1439
+ :type query: typing.Union[typing.Set[str], typing.Set[int]]
1449
1440
  :param v: Returns the requested data.
1450
- :type v: 'Buffer'
1441
+ :type v: Buffer
1451
1442
  """
1452
1443
 
1453
1444
  ...
1454
1445
 
1455
1446
  def glGetMaterial(
1456
- face: typing.Union[typing.Set[int], typing.Set[str]],
1457
- pname: typing.Union[typing.Set[int], typing.Set[str]],
1458
- params: "Buffer",
1447
+ face: typing.Union[typing.Set[str], typing.Set[int]],
1448
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
1449
+ params: Buffer,
1459
1450
  ):
1460
1451
  """B{glGetMaterialfv, glGetMaterialiv}Return material parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetMaterial.xhtml>`__
1461
1452
 
1462
1453
  :param face: Specifies which of the two materials is being queried.
1463
1454
  representing the front and back materials, respectively.
1464
- :type face: typing.Union[typing.Set[int], typing.Set[str]]
1455
+ :type face: typing.Union[typing.Set[str], typing.Set[int]]
1465
1456
  :param pname: Specifies the material parameter to return.
1466
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1457
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1467
1458
  :param params: Returns the requested data.
1468
- :type params: 'Buffer'
1459
+ :type params: Buffer
1469
1460
  """
1470
1461
 
1471
1462
  ...
@@ -1480,22 +1471,18 @@ def glGetMultisamplefv(p0: int, p1: int, p2: float):
1480
1471
 
1481
1472
  ...
1482
1473
 
1483
- def glGetPixelMap(
1484
- map: typing.Union[typing.Set[int], typing.Set[str]], values: "Buffer"
1485
- ):
1474
+ def glGetPixelMap(map: typing.Union[typing.Set[str], typing.Set[int]], values: Buffer):
1486
1475
  """B{glGetPixelMapfv, glGetPixelMapuiv, glGetPixelMapusv}Return the specified pixel map`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetPixelMap.xhtml>`__
1487
1476
 
1488
1477
  :param map: Specifies the name of the pixel map to return.
1489
- :type map: typing.Union[typing.Set[int], typing.Set[str]]
1478
+ :type map: typing.Union[typing.Set[str], typing.Set[int]]
1490
1479
  :param values: Returns the pixel map contents.
1491
- :type values: 'Buffer'
1480
+ :type values: Buffer
1492
1481
  """
1493
1482
 
1494
1483
  ...
1495
1484
 
1496
- def glGetProgramInfoLog(
1497
- program: int, maxLength: int, length: "Buffer", infoLog: "Buffer"
1498
- ):
1485
+ def glGetProgramInfoLog(program: int, maxLength: int, length: Buffer, infoLog: Buffer):
1499
1486
  """Returns the information log for a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramInfoLog.xhtml>`__
1500
1487
 
1501
1488
  :param program: Specifies the program object whose information log is to be queried.
@@ -1503,9 +1490,9 @@ def glGetProgramInfoLog(
1503
1490
  :param maxLength: Specifies the size of the character buffer for storing the returned information log.
1504
1491
  :type maxLength: int
1505
1492
  :param length: Returns the length of the string returned in infoLog (excluding the null terminator).
1506
- :type length: 'Buffer'
1493
+ :type length: Buffer
1507
1494
  :param infoLog: Specifies an array of characters that is used to return the information log.
1508
- :type infoLog: 'Buffer'
1495
+ :type infoLog: Buffer
1509
1496
  """
1510
1497
 
1511
1498
  ...
@@ -1521,7 +1508,7 @@ def glGetProgramInfoLog(p0: int, p1: int, p2: int, p3: int):
1521
1508
 
1522
1509
  ...
1523
1510
 
1524
- def glGetProgramiv(program: int, pname: int, params: "Buffer"):
1511
+ def glGetProgramiv(program: int, pname: int, params: Buffer):
1525
1512
  """Returns a parameter from a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgram.xhtml>`__
1526
1513
 
1527
1514
  :param program: Specifies the program object to be queried.
@@ -1529,7 +1516,7 @@ def glGetProgramiv(program: int, pname: int, params: "Buffer"):
1529
1516
  :param pname: Specifies the object parameter.
1530
1517
  :type pname: int
1531
1518
  :param params: Returns the requested object parameter.
1532
- :type params: 'Buffer'
1519
+ :type params: Buffer
1533
1520
  """
1534
1521
 
1535
1522
  ...
@@ -1574,15 +1561,15 @@ def glGetQueryiv(p0: int, p1: int, p2: int):
1574
1561
 
1575
1562
  ...
1576
1563
 
1577
- def glGetShaderInfoLog(program, maxLength: int, length: "Buffer", infoLog: "Buffer"):
1564
+ def glGetShaderInfoLog(program, maxLength: int, length: Buffer, infoLog: Buffer):
1578
1565
  """Returns the information log for a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderInfoLog.xhtml>`__
1579
1566
 
1580
1567
  :param maxLength: Specifies the size of the character buffer for storing the returned information log.
1581
1568
  :type maxLength: int
1582
1569
  :param length: Returns the length of the string returned in infoLog (excluding the null terminator).
1583
- :type length: 'Buffer'
1570
+ :type length: Buffer
1584
1571
  :param infoLog: Specifies an array of characters that is used to return the information log.
1585
- :type infoLog: 'Buffer'
1572
+ :type infoLog: Buffer
1586
1573
  """
1587
1574
 
1588
1575
  ...
@@ -1598,7 +1585,7 @@ def glGetShaderInfoLog(p0: int, p1: int, p2: int, p3: int):
1598
1585
 
1599
1586
  ...
1600
1587
 
1601
- def glGetShaderSource(shader: int, bufSize: int, length: "Buffer", source: "Buffer"):
1588
+ def glGetShaderSource(shader: int, bufSize: int, length: Buffer, source: Buffer):
1602
1589
  """Returns the source code string from a shader object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderSource.xhtml>`__
1603
1590
 
1604
1591
  :param shader: Specifies the shader object to be queried.
@@ -1606,9 +1593,9 @@ def glGetShaderSource(shader: int, bufSize: int, length: "Buffer", source: "Buff
1606
1593
  :param bufSize: Specifies the size of the character buffer for storing the returned source code string.
1607
1594
  :type bufSize: int
1608
1595
  :param length: Returns the length of the string returned in source (excluding the null terminator).
1609
- :type length: 'Buffer'
1596
+ :type length: Buffer
1610
1597
  :param source: Specifies an array of characters that is used to return the source code string.
1611
- :type source: 'Buffer'
1598
+ :type source: Buffer
1612
1599
  """
1613
1600
 
1614
1601
  ...
@@ -1634,11 +1621,11 @@ def glGetShaderiv(p0: int, p1: int, p2: int):
1634
1621
 
1635
1622
  ...
1636
1623
 
1637
- def glGetString(name: typing.Union[typing.Set[int], typing.Set[str]]):
1624
+ def glGetString(name: typing.Union[typing.Set[str], typing.Set[int]]):
1638
1625
  """Return a string describing the current GL connection`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetString.xhtml>`__
1639
1626
 
1640
1627
  :param name: Specifies a symbolic constant.
1641
- :type name: typing.Union[typing.Set[int], typing.Set[str]]
1628
+ :type name: typing.Union[typing.Set[str], typing.Set[int]]
1642
1629
  """
1643
1630
 
1644
1631
  ...
@@ -1663,60 +1650,60 @@ def glGetStringi(p0: int, p1: int) -> str:
1663
1650
  ...
1664
1651
 
1665
1652
  def glGetTexEnv(
1666
- target: typing.Union[typing.Set[int], typing.Set[str]],
1667
- pname: typing.Union[typing.Set[int], typing.Set[str]],
1668
- params: "Buffer",
1653
+ target: typing.Union[typing.Set[str], typing.Set[int]],
1654
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
1655
+ params: Buffer,
1669
1656
  ):
1670
1657
  """B{glGetTexEnvfv, glGetTexEnviv}Return texture environment parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexEnv.xhtml>`__
1671
1658
 
1672
1659
  :param target: Specifies a texture environment. Must be GL_TEXTURE_ENV.
1673
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
1660
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
1674
1661
  :param pname: Specifies the symbolic name of a texture environment parameter.
1675
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1662
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1676
1663
  :param params: Returns the requested data.
1677
- :type params: 'Buffer'
1664
+ :type params: Buffer
1678
1665
  """
1679
1666
 
1680
1667
  ...
1681
1668
 
1682
1669
  def glGetTexGen(
1683
- coord: typing.Union[typing.Set[int], typing.Set[str]],
1684
- pname: typing.Union[typing.Set[int], typing.Set[str]],
1685
- params: "Buffer",
1670
+ coord: typing.Union[typing.Set[str], typing.Set[int]],
1671
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
1672
+ params: Buffer,
1686
1673
  ):
1687
1674
  """B{glGetTexGendv, glGetTexGenfv, glGetTexGeniv}Return texture coordinate generation parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexGen.xhtml>`__
1688
1675
 
1689
1676
  :param coord: Specifies a texture coordinate.
1690
- :type coord: typing.Union[typing.Set[int], typing.Set[str]]
1677
+ :type coord: typing.Union[typing.Set[str], typing.Set[int]]
1691
1678
  :param pname: Specifies the symbolic name of the value(s) to be returned.
1692
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1679
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1693
1680
  :param params: Returns the requested data.
1694
- :type params: 'Buffer'
1681
+ :type params: Buffer
1695
1682
  """
1696
1683
 
1697
1684
  ...
1698
1685
 
1699
1686
  def glGetTexImage(
1700
- target: typing.Union[typing.Set[int], typing.Set[str]],
1687
+ target: typing.Union[typing.Set[str], typing.Set[int]],
1701
1688
  level: int,
1702
- format: typing.Union[typing.Set[int], typing.Set[str]],
1703
- type: typing.Union[typing.Set[int], typing.Set[str]],
1704
- pixels: "Buffer",
1689
+ format: typing.Union[typing.Set[str], typing.Set[int]],
1690
+ type: typing.Union[typing.Set[str], typing.Set[int]],
1691
+ pixels: Buffer,
1705
1692
  ):
1706
1693
  """Return a texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexImage.xhtml>`__
1707
1694
 
1708
1695
  :param target: Specifies which texture is to be obtained.
1709
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
1696
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
1710
1697
  :param level: Specifies the level-of-detail number of the desired image.
1711
1698
  Level 0 is the base image level. Level n is the nth mipmap reduction image.
1712
1699
  :type level: int
1713
1700
  :param format: Specifies a pixel format for the returned data.
1714
- :type format: typing.Union[typing.Set[int], typing.Set[str]]
1701
+ :type format: typing.Union[typing.Set[str], typing.Set[int]]
1715
1702
  :param type: Specifies a pixel type for the returned data.
1716
- :type type: typing.Union[typing.Set[int], typing.Set[str]]
1703
+ :type type: typing.Union[typing.Set[str], typing.Set[int]]
1717
1704
  :param pixels: Returns the texture image. Should be a pointer to an array of the
1718
1705
  type specified by type
1719
- :type pixels: 'Buffer'
1706
+ :type pixels: Buffer
1720
1707
  """
1721
1708
 
1722
1709
  ...
@@ -1734,22 +1721,22 @@ def glGetTexImage(p0: int, p1: int, p2: int, p3: int, p4: typing.Any):
1734
1721
  ...
1735
1722
 
1736
1723
  def glGetTexLevelParameter(
1737
- target: typing.Union[typing.Set[int], typing.Set[str]],
1724
+ target: typing.Union[typing.Set[str], typing.Set[int]],
1738
1725
  level: int,
1739
- pname: typing.Union[typing.Set[int], typing.Set[str]],
1740
- params: "Buffer",
1726
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
1727
+ params: Buffer,
1741
1728
  ):
1742
1729
  """B{glGetTexLevelParameterfv, glGetTexLevelParameteriv}return texture parameter values for a specific level of detail`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexLevelParameter.xhtml>`__
1743
1730
 
1744
1731
  :param target: Specifies the symbolic name of the target texture.
1745
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
1732
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
1746
1733
  :param level: Specifies the level-of-detail number of the desired image.
1747
1734
  Level 0 is the base image level. Level n is the nth mipmap reduction image.
1748
1735
  :type level: int
1749
1736
  :param pname: Specifies the symbolic name of a texture parameter.
1750
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1737
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1751
1738
  :param params: Returns the requested data.
1752
- :type params: 'Buffer'
1739
+ :type params: Buffer
1753
1740
  """
1754
1741
 
1755
1742
  ...
@@ -1777,18 +1764,18 @@ def glGetTexLevelParameteriv(p0: int, p1: int, p2: int, p3: int):
1777
1764
  ...
1778
1765
 
1779
1766
  def glGetTexParameter(
1780
- target: typing.Union[typing.Set[int], typing.Set[str]],
1781
- pname: typing.Union[typing.Set[int], typing.Set[str]],
1782
- params: "Buffer",
1767
+ target: typing.Union[typing.Set[str], typing.Set[int]],
1768
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
1769
+ params: Buffer,
1783
1770
  ):
1784
1771
  """B{glGetTexParameterfv, glGetTexParameteriv}Return texture parameter values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexParameter.xhtml>`__
1785
1772
 
1786
1773
  :param target: Specifies the symbolic name of the target texture.
1787
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
1774
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
1788
1775
  :param pname: Specifies the symbolic name the target texture.
1789
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
1776
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
1790
1777
  :param params: Returns the texture parameters.
1791
- :type params: 'Buffer'
1778
+ :type params: Buffer
1792
1779
  """
1793
1780
 
1794
1781
  ...
@@ -1905,16 +1892,16 @@ def glGetVertexAttribiv(p0: int, p1: int, p2: int):
1905
1892
  ...
1906
1893
 
1907
1894
  def glHint(
1908
- target: typing.Union[typing.Set[int], typing.Set[str]],
1909
- mode: typing.Union[typing.Set[int], typing.Set[str]],
1895
+ target: typing.Union[typing.Set[str], typing.Set[int]],
1896
+ mode: typing.Union[typing.Set[str], typing.Set[int]],
1910
1897
  ):
1911
1898
  """Specify implementation-specific hints`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glHint.xhtml>`__
1912
1899
 
1913
1900
  :param target: Specifies a symbolic constant indicating the behavior to be
1914
1901
  controlled.
1915
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
1902
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
1916
1903
  :param mode: Specifies a symbolic constant indicating the desired behavior.
1917
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
1904
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
1918
1905
  """
1919
1906
 
1920
1907
  ...
@@ -1937,11 +1924,11 @@ def glIsBuffer(p0: int) -> bool:
1937
1924
 
1938
1925
  ...
1939
1926
 
1940
- def glIsEnabled(cap: typing.Union[typing.Set[int], typing.Set[str]]):
1927
+ def glIsEnabled(cap: typing.Union[typing.Set[str], typing.Set[int]]):
1941
1928
  """Test whether a capability is enabled`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsEnabled.xhtml>`__
1942
1929
 
1943
1930
  :param cap: Specifies a constant representing a GL capability.
1944
- :type cap: typing.Union[typing.Set[int], typing.Set[str]]
1931
+ :type cap: typing.Union[typing.Set[str], typing.Set[int]]
1945
1932
  """
1946
1933
 
1947
1934
  ...
@@ -2028,8 +2015,8 @@ def glIsVertexArray(p0: int) -> bool:
2028
2015
  ...
2029
2016
 
2030
2017
  def glLight(
2031
- light: typing.Union[typing.Set[int], typing.Set[str]],
2032
- pname: typing.Union[typing.Set[int], typing.Set[str]],
2018
+ light: typing.Union[typing.Set[str], typing.Set[int]],
2019
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
2033
2020
  param: typing.Any,
2034
2021
  ):
2035
2022
  """B{glLightf,glLighti, glLightfv, glLightiv}Set the light source parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLight.xhtml>`__
@@ -2037,9 +2024,9 @@ def glLight(
2037
2024
  :param light: Specifies a light. The number of lights depends on the implementation,
2038
2025
  but at least eight lights are supported. They are identified by symbolic names of the
2039
2026
  form GL_LIGHTi where 0 < i < GL_MAX_LIGHTS.
2040
- :type light: typing.Union[typing.Set[int], typing.Set[str]]
2027
+ :type light: typing.Union[typing.Set[str], typing.Set[int]]
2041
2028
  :param pname: Specifies a single-valued light source parameter for light.
2042
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2029
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2043
2030
  :param param: Specifies the value that parameter pname of light source light will be set to.
2044
2031
  If function prototype ends in 'v' specifies a pointer to the value or values that
2045
2032
  parameter pname of light source light will be set to.
@@ -2049,12 +2036,12 @@ def glLight(
2049
2036
  ...
2050
2037
 
2051
2038
  def glLightModel(
2052
- pname: typing.Union[typing.Set[int], typing.Set[str]], param: typing.Any
2039
+ pname: typing.Union[typing.Set[str], typing.Set[int]], param: typing.Any
2053
2040
  ):
2054
2041
  """B{glLightModelf, glLightModeli, glLightModelfv, glLightModeliv}Set the lighting model parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLightModel.xhtml>`__
2055
2042
 
2056
2043
  :param pname: Specifies a single-value light model parameter.
2057
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2044
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2058
2045
  :param param: Specifies the value that param will be set to. If function prototype ends in 'v'
2059
2046
  specifies a pointer to the value or values that param will be set to.
2060
2047
  :type param: typing.Any
@@ -2096,21 +2083,21 @@ def glLinkProgram(p0: int):
2096
2083
 
2097
2084
  ...
2098
2085
 
2099
- def glLoadMatrix(m: "Buffer"):
2086
+ def glLoadMatrix(m: Buffer):
2100
2087
  """B{glLoadMatrixd, glLoadMatixf}Replace the current matrix with the specified matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLoadMatrix.xhtml>`__
2101
2088
 
2102
2089
  :param m: Specifies a pointer to 16 consecutive values, which are used as the elements
2103
2090
  of a 4x4 column-major matrix.
2104
- :type m: 'Buffer'
2091
+ :type m: Buffer
2105
2092
  """
2106
2093
 
2107
2094
  ...
2108
2095
 
2109
- def glLogicOp(opcode: typing.Union[typing.Set[int], typing.Set[str]]):
2096
+ def glLogicOp(opcode: typing.Union[typing.Set[str], typing.Set[int]]):
2110
2097
  """Specify a logical pixel operation for color index rendering`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLogicOp.xhtml>`__
2111
2098
 
2112
2099
  :param opcode: Specifies a symbolic constant that selects a logical operation.
2113
- :type opcode: typing.Union[typing.Set[int], typing.Set[str]]
2100
+ :type opcode: typing.Union[typing.Set[str], typing.Set[int]]
2114
2101
  """
2115
2102
 
2116
2103
  ...
@@ -2124,17 +2111,17 @@ def glLogicOp(p0: int):
2124
2111
  ...
2125
2112
 
2126
2113
  def glMap1(
2127
- target: typing.Union[typing.Set[int], typing.Set[str]],
2114
+ target: typing.Union[typing.Set[str], typing.Set[int]],
2128
2115
  u1: typing.Any,
2129
2116
  u2,
2130
2117
  stride: int,
2131
2118
  order: int,
2132
- points: "Buffer",
2119
+ points: Buffer,
2133
2120
  ):
2134
2121
  """B{glMap1d, glMap1f}Define a one-dimensional evaluator`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMap1.xhtml>`__
2135
2122
 
2136
2123
  :param target: Specifies the kind of values that are generated by the evaluator.
2137
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
2124
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
2138
2125
  :param u1: Specify a linear mapping of u, as presented to glEvalCoord1, to ^, t
2139
2126
  he variable that is evaluated by the equations specified by this command.
2140
2127
  :type u1: typing.Any
@@ -2147,13 +2134,13 @@ def glMap1(
2147
2134
  :param order: Specifies the number of control points. Must be positive.
2148
2135
  :type order: int
2149
2136
  :param points: Specifies a pointer to the array of control points.
2150
- :type points: 'Buffer'
2137
+ :type points: Buffer
2151
2138
  """
2152
2139
 
2153
2140
  ...
2154
2141
 
2155
2142
  def glMap2(
2156
- target: typing.Union[typing.Set[int], typing.Set[str]],
2143
+ target: typing.Union[typing.Set[str], typing.Set[int]],
2157
2144
  u1: typing.Any,
2158
2145
  u2,
2159
2146
  ustride: int,
@@ -2162,12 +2149,12 @@ def glMap2(
2162
2149
  v2,
2163
2150
  vstride: int,
2164
2151
  vorder: int,
2165
- points: "Buffer",
2152
+ points: Buffer,
2166
2153
  ):
2167
2154
  """B{glMap2d, glMap2f}Define a two-dimensional evaluator`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMap2.xhtml>`__
2168
2155
 
2169
2156
  :param target: Specifies the kind of values that are generated by the evaluator.
2170
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
2157
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
2171
2158
  :param u1: Specify a linear mapping of u, as presented to glEvalCoord2, to ^, t
2172
2159
  he variable that is evaluated by the equations specified by this command. Initially
2173
2160
  u1 is 0 and u2 is 1.
@@ -2196,7 +2183,7 @@ def glMap2(
2196
2183
  Must be positive. The initial value is 1.
2197
2184
  :type vorder: int
2198
2185
  :param points: Specifies a pointer to the array of control points.
2199
- :type points: 'Buffer'
2186
+ :type points: Buffer
2200
2187
  """
2201
2188
 
2202
2189
  ...
@@ -2229,17 +2216,17 @@ def glMapGrid(un: int, u1: typing.Any, u2, vn: int, v1: typing.Any, v2):
2229
2216
  ...
2230
2217
 
2231
2218
  def glMaterial(
2232
- face: typing.Union[typing.Set[int], typing.Set[str]],
2233
- pname: typing.Union[typing.Set[int], typing.Set[str]],
2219
+ face: typing.Union[typing.Set[str], typing.Set[int]],
2220
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
2234
2221
  params: int,
2235
2222
  ):
2236
2223
  """Specify material parameters for the lighting model.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMaterial.xhtml>`__
2237
2224
 
2238
2225
  :param face: Specifies which face or faces are being updated. Must be one of:
2239
- :type face: typing.Union[typing.Set[int], typing.Set[str]]
2226
+ :type face: typing.Union[typing.Set[str], typing.Set[int]]
2240
2227
  :param pname: Specifies the single-valued material parameter of the face
2241
2228
  or faces that is being updated. Must be GL_SHININESS.
2242
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2229
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2243
2230
  :param params: Specifies the value that parameter GL_SHININESS will be set to.
2244
2231
  If function prototype ends in 'v' specifies a pointer to the value or values that
2245
2232
  pname will be set to.
@@ -2248,17 +2235,17 @@ def glMaterial(
2248
2235
 
2249
2236
  ...
2250
2237
 
2251
- def glMultMatrix(m: "Buffer"):
2238
+ def glMultMatrix(m: Buffer):
2252
2239
  """B{glMultMatrixd, glMultMatrixf}Multiply the current matrix with the specified matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMultMatrix.xhtml>`__
2253
2240
 
2254
2241
  :param m: Points to 16 consecutive values that are used as the elements of a 4x4 column
2255
2242
  major matrix.
2256
- :type m: 'Buffer'
2243
+ :type m: Buffer
2257
2244
  """
2258
2245
 
2259
2246
  ...
2260
2247
 
2261
- def glNormal3(nx: typing.Any, ny, nz, v: "Buffer"):
2248
+ def glNormal3(nx: typing.Any, ny, nz, v: Buffer):
2262
2249
  """B{Normal3b, Normal3bv, Normal3d, Normal3dv, Normal3f, Normal3fv, Normal3i, Normal3iv,
2263
2250
  Normal3s, Normal3sv}Set the current normal vector`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glNormal.xhtml>`__
2264
2251
 
@@ -2267,35 +2254,35 @@ def glNormal3(nx: typing.Any, ny, nz, v: "Buffer"):
2267
2254
  :type nx: typing.Any
2268
2255
  :param v: Specifies a pointer to an array of three elements: the x, y, and z coordinates
2269
2256
  of the new current normal.
2270
- :type v: 'Buffer'
2257
+ :type v: Buffer
2271
2258
  """
2272
2259
 
2273
2260
  ...
2274
2261
 
2275
2262
  def glPixelMap(
2276
- map: typing.Union[typing.Set[int], typing.Set[str]], mapsize: int, values: "Buffer"
2263
+ map: typing.Union[typing.Set[str], typing.Set[int]], mapsize: int, values: Buffer
2277
2264
  ):
2278
2265
  """B{glPixelMapfv, glPixelMapuiv, glPixelMapusv}Set up pixel transfer maps`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelMap.xhtml>`__
2279
2266
 
2280
2267
  :param map: Specifies a symbolic map name.
2281
- :type map: typing.Union[typing.Set[int], typing.Set[str]]
2268
+ :type map: typing.Union[typing.Set[str], typing.Set[int]]
2282
2269
  :param mapsize: Specifies the size of the map being defined.
2283
2270
  :type mapsize: int
2284
2271
  :param values: Specifies an array of mapsize values.
2285
- :type values: 'Buffer'
2272
+ :type values: Buffer
2286
2273
  """
2287
2274
 
2288
2275
  ...
2289
2276
 
2290
2277
  def glPixelStore(
2291
- pname: typing.Union[typing.Set[int], typing.Set[str]], param: typing.Any
2278
+ pname: typing.Union[typing.Set[str], typing.Set[int]], param: typing.Any
2292
2279
  ):
2293
2280
  """B{glPixelStoref, glPixelStorei}Set pixel storage modes`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelStore.xhtml>`__
2294
2281
 
2295
2282
  :param pname: Specifies the symbolic name of the parameter to be set.
2296
2283
  Six values affect the packing of pixel data into memory.
2297
2284
  Six more affect the unpacking of pixel data from memory.
2298
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2285
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2299
2286
  :param param: Specifies the value that pname is set to.
2300
2287
  :type param: typing.Any
2301
2288
  """
@@ -2321,12 +2308,12 @@ def glPixelStorei(p0: int, p1: int):
2321
2308
  ...
2322
2309
 
2323
2310
  def glPixelTransfer(
2324
- pname: typing.Union[typing.Set[int], typing.Set[str]], param: typing.Any
2311
+ pname: typing.Union[typing.Set[str], typing.Set[int]], param: typing.Any
2325
2312
  ):
2326
2313
  """B{glPixelTransferf, glPixelTransferi}Set pixel transfer modes`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelTransfer.xhtml>`__
2327
2314
 
2328
2315
  :param pname: Specifies the symbolic name of the pixel transfer parameter to be set.
2329
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2316
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2330
2317
  :param param: Specifies the value that pname is set to.
2331
2318
  :type param: typing.Any
2332
2319
  """
@@ -2351,18 +2338,18 @@ def glPointSize(p0: float):
2351
2338
  ...
2352
2339
 
2353
2340
  def glPolygonMode(
2354
- face: typing.Union[typing.Set[int], typing.Set[str]],
2355
- mode: typing.Union[typing.Set[int], typing.Set[str]],
2341
+ face: typing.Union[typing.Set[str], typing.Set[int]],
2342
+ mode: typing.Union[typing.Set[str], typing.Set[int]],
2356
2343
  ):
2357
2344
  """Select a polygon rasterization mode`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonMode.xhtml>`__
2358
2345
 
2359
2346
  :param face: Specifies the polygons that mode applies to.
2360
2347
  Must be GL_FRONT for front-facing polygons, GL_BACK for back- facing
2361
2348
  polygons, or GL_FRONT_AND_BACK for front- and back-facing polygons.
2362
- :type face: typing.Union[typing.Set[int], typing.Set[str]]
2349
+ :type face: typing.Union[typing.Set[str], typing.Set[int]]
2363
2350
  :param mode: Specifies how polygons will be rasterized.
2364
2351
  The initial value is GL_FILL for both front- and back- facing polygons.
2365
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
2352
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
2366
2353
  """
2367
2354
 
2368
2355
  ...
@@ -2413,11 +2400,11 @@ def glRasterPos(x: typing.Any, y, z, w):
2413
2400
 
2414
2401
  ...
2415
2402
 
2416
- def glReadBuffer(mode: typing.Union[typing.Set[int], typing.Set[str]]):
2403
+ def glReadBuffer(mode: typing.Union[typing.Set[str], typing.Set[int]]):
2417
2404
  """Select a color buffer source for pixels.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glReadBuffer.xhtml>`__
2418
2405
 
2419
2406
  :param mode: Specifies a color buffer.
2420
- :type mode: typing.Union[typing.Set[int], typing.Set[str]]
2407
+ :type mode: typing.Union[typing.Set[str], typing.Set[int]]
2421
2408
  """
2422
2409
 
2423
2410
  ...
@@ -2435,9 +2422,9 @@ def glReadPixels(
2435
2422
  y,
2436
2423
  width: int,
2437
2424
  height,
2438
- format: typing.Union[typing.Set[int], typing.Set[str]],
2439
- type: typing.Union[typing.Set[int], typing.Set[str]],
2440
- pixels: "Buffer",
2425
+ format: typing.Union[typing.Set[str], typing.Set[int]],
2426
+ type: typing.Union[typing.Set[str], typing.Set[int]],
2427
+ pixels: Buffer,
2441
2428
  ):
2442
2429
  """Read a block of pixels from the frame buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glReadPixels.xhtml>`__
2443
2430
 
@@ -2449,11 +2436,11 @@ def glReadPixels(
2449
2436
  height of one correspond to a single pixel.
2450
2437
  :type width: int
2451
2438
  :param format: Specifies the format of the pixel data.
2452
- :type format: typing.Union[typing.Set[int], typing.Set[str]]
2439
+ :type format: typing.Union[typing.Set[str], typing.Set[int]]
2453
2440
  :param type: Specifies the data type of the pixel data.
2454
- :type type: typing.Union[typing.Set[int], typing.Set[str]]
2441
+ :type type: typing.Union[typing.Set[str], typing.Set[int]]
2455
2442
  :param pixels: Returns the pixel data.
2456
- :type pixels: 'Buffer'
2443
+ :type pixels: Buffer
2457
2444
  """
2458
2445
 
2459
2446
  ...
@@ -2571,12 +2558,12 @@ def glShaderSource(shader: int, shader_string: str):
2571
2558
  ...
2572
2559
 
2573
2560
  def glStencilFunc(
2574
- func: typing.Union[typing.Set[int], typing.Set[str]], ref: int, mask: int
2561
+ func: typing.Union[typing.Set[str], typing.Set[int]], ref: int, mask: int
2575
2562
  ):
2576
2563
  """Set function and reference value for stencil testing`OpenGL Docs <https://www.opengl.org/sdk/docs/man/docbook4/xhtml/glStencilFunc.xhtml>`__
2577
2564
 
2578
2565
  :param func: Specifies the test function.
2579
- :type func: typing.Union[typing.Set[int], typing.Set[str]]
2566
+ :type func: typing.Union[typing.Set[str], typing.Set[int]]
2580
2567
  :param ref: Specifies the reference value for the stencil test. ref is clamped
2581
2568
  to the range [0,2n-1], where n is the number of bitplanes in the stencil
2582
2569
  buffer. The initial value is 0.
@@ -2637,25 +2624,25 @@ def glStencilMaskSeparate(p0: int, p1: int):
2637
2624
  ...
2638
2625
 
2639
2626
  def glStencilOp(
2640
- fail: typing.Union[typing.Set[int], typing.Set[str]],
2641
- zfail: typing.Union[typing.Set[int], typing.Set[str]],
2642
- zpass: typing.Union[typing.Set[int], typing.Set[str]],
2627
+ fail: typing.Union[typing.Set[str], typing.Set[int]],
2628
+ zfail: typing.Union[typing.Set[str], typing.Set[int]],
2629
+ zpass: typing.Union[typing.Set[str], typing.Set[int]],
2643
2630
  ):
2644
2631
  """Set stencil test actions`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilOp.xhtml>`__
2645
2632
 
2646
2633
  :param fail: Specifies the action to take when the stencil test fails.
2647
2634
  The initial value is GL_KEEP.
2648
- :type fail: typing.Union[typing.Set[int], typing.Set[str]]
2635
+ :type fail: typing.Union[typing.Set[str], typing.Set[int]]
2649
2636
  :param zfail: Specifies the stencil action when the stencil test passes, but the
2650
2637
  depth test fails. zfail accepts the same symbolic constants as fail.
2651
2638
  The initial value is GL_KEEP.
2652
- :type zfail: typing.Union[typing.Set[int], typing.Set[str]]
2639
+ :type zfail: typing.Union[typing.Set[str], typing.Set[int]]
2653
2640
  :param zpass: Specifies the stencil action when both the stencil test and the
2654
2641
  depth test pass, or when the stencil test passes and either there is no
2655
2642
  depth buffer or depth testing is not enabled. zpass accepts the same
2656
2643
  symbolic constants
2657
2644
  as fail. The initial value is GL_KEEP.
2658
- :type zpass: typing.Union[typing.Set[int], typing.Set[str]]
2645
+ :type zpass: typing.Union[typing.Set[str], typing.Set[int]]
2659
2646
  """
2660
2647
 
2661
2648
  ...
@@ -2681,7 +2668,7 @@ def glStencilOpSeparate(p0: int, p1: int, p2: int, p3: int):
2681
2668
 
2682
2669
  ...
2683
2670
 
2684
- def glTexCoord(s: typing.Any, t, r, q, v: "Buffer"):
2671
+ def glTexCoord(s: typing.Any, t, r, q, v: Buffer):
2685
2672
  """B{glTexCoord1d, glTexCoord1f, glTexCoord1i, glTexCoord1s, glTexCoord2d, glTexCoord2f,
2686
2673
  glTexCoord2i, glTexCoord2s, glTexCoord3d, glTexCoord3f, glTexCoord3i, glTexCoord3s,
2687
2674
  glTexCoord4d, glTexCoord4f, glTexCoord4i, glTexCoord4s, glTexCoord1dv, glTexCoord1fv,
@@ -2694,23 +2681,23 @@ def glTexCoord(s: typing.Any, t, r, q, v: "Buffer"):
2694
2681
  :type s: typing.Any
2695
2682
  :param v: Specifies a pointer to an array of one, two, three, or four elements,
2696
2683
  which in turn specify the s, t, r, and q texture coordinates.
2697
- :type v: 'Buffer'
2684
+ :type v: Buffer
2698
2685
  """
2699
2686
 
2700
2687
  ...
2701
2688
 
2702
2689
  def glTexEnv(
2703
- target: typing.Union[typing.Set[int], typing.Set[str]],
2704
- pname: typing.Union[typing.Set[int], typing.Set[str]],
2690
+ target: typing.Union[typing.Set[str], typing.Set[int]],
2691
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
2705
2692
  param: typing.Any,
2706
2693
  ):
2707
2694
  """B{glTextEnvf, glTextEnvi, glTextEnvfv, glTextEnviv}Set texture environment parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexEnv.xhtml>`__
2708
2695
 
2709
2696
  :param target: Specifies a texture environment. Must be GL_TEXTURE_ENV.
2710
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
2697
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
2711
2698
  :param pname: Specifies the symbolic name of a single-valued texture environment
2712
2699
  parameter. Must be GL_TEXTURE_ENV_MODE.
2713
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2700
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2714
2701
  :param param: Specifies a single symbolic constant. If function prototype ends in 'v'
2715
2702
  specifies a pointer to a parameter array that contains either a single
2716
2703
  symbolic constant or an RGBA color
@@ -2720,16 +2707,16 @@ def glTexEnv(
2720
2707
  ...
2721
2708
 
2722
2709
  def glTexGen(
2723
- coord: typing.Union[typing.Set[int], typing.Set[str]],
2724
- pname: typing.Union[typing.Set[int], typing.Set[str]],
2710
+ coord: typing.Union[typing.Set[str], typing.Set[int]],
2711
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
2725
2712
  param: typing.Any,
2726
2713
  ):
2727
2714
  """B{glTexGend, glTexGenf, glTexGeni, glTexGendv, glTexGenfv, glTexGeniv}Control the generation of texture coordinates`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexGen.xhtml>`__
2728
2715
 
2729
2716
  :param coord: Specifies a texture coordinate.
2730
- :type coord: typing.Union[typing.Set[int], typing.Set[str]]
2717
+ :type coord: typing.Union[typing.Set[str], typing.Set[int]]
2731
2718
  :param pname: Specifies the symbolic name of the texture- coordinate generation function.
2732
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2719
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2733
2720
  :param param: Specifies a single-valued texture generation parameter.
2734
2721
  If function prototype ends in 'v' specifies a pointer to an array of texture
2735
2722
  generation parameters. If pname is GL_TEXTURE_GEN_MODE, then the array must
@@ -2741,19 +2728,19 @@ def glTexGen(
2741
2728
  ...
2742
2729
 
2743
2730
  def glTexImage1D(
2744
- target: typing.Union[typing.Set[int], typing.Set[str]],
2731
+ target: typing.Union[typing.Set[str], typing.Set[int]],
2745
2732
  level: int,
2746
2733
  internalformat: int,
2747
2734
  width: int,
2748
2735
  border: int,
2749
- format: typing.Union[typing.Set[int], typing.Set[str]],
2750
- type: typing.Union[typing.Set[int], typing.Set[str]],
2751
- pixels: "Buffer",
2736
+ format: typing.Union[typing.Set[str], typing.Set[int]],
2737
+ type: typing.Union[typing.Set[str], typing.Set[int]],
2738
+ pixels: Buffer,
2752
2739
  ):
2753
2740
  """Specify a one-dimensional texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage1D.xhtml>`__
2754
2741
 
2755
2742
  :param target: Specifies the target texture.
2756
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
2743
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
2757
2744
  :param level: Specifies the level-of-detail number. Level 0 is the base image level.
2758
2745
  Level n is the nth mipmap reduction image.
2759
2746
  :type level: int
@@ -2766,11 +2753,11 @@ def glTexImage1D(
2766
2753
  :param border: Specifies the width of the border. Must be either 0 or 1.
2767
2754
  :type border: int
2768
2755
  :param format: Specifies the format of the pixel data.
2769
- :type format: typing.Union[typing.Set[int], typing.Set[str]]
2756
+ :type format: typing.Union[typing.Set[str], typing.Set[int]]
2770
2757
  :param type: Specifies the data type of the pixel data.
2771
- :type type: typing.Union[typing.Set[int], typing.Set[str]]
2758
+ :type type: typing.Union[typing.Set[str], typing.Set[int]]
2772
2759
  :param pixels: Specifies a pointer to the image data in memory.
2773
- :type pixels: 'Buffer'
2760
+ :type pixels: Buffer
2774
2761
  """
2775
2762
 
2776
2763
  ...
@@ -2793,20 +2780,20 @@ def glTexImage1D(
2793
2780
  ...
2794
2781
 
2795
2782
  def glTexImage2D(
2796
- target: typing.Union[typing.Set[int], typing.Set[str]],
2783
+ target: typing.Union[typing.Set[str], typing.Set[int]],
2797
2784
  level: int,
2798
2785
  internalformat: int,
2799
2786
  width: int,
2800
2787
  height: int,
2801
2788
  border: int,
2802
- format: typing.Union[typing.Set[int], typing.Set[str]],
2803
- type: typing.Union[typing.Set[int], typing.Set[str]],
2804
- pixels: "Buffer",
2789
+ format: typing.Union[typing.Set[str], typing.Set[int]],
2790
+ type: typing.Union[typing.Set[str], typing.Set[int]],
2791
+ pixels: Buffer,
2805
2792
  ):
2806
2793
  """Specify a two-dimensional texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage2D.xhtml>`__
2807
2794
 
2808
2795
  :param target: Specifies the target texture.
2809
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
2796
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
2810
2797
  :param level: Specifies the level-of-detail number. Level 0 is the base image level.
2811
2798
  Level n is the nth mipmap reduction image.
2812
2799
  :type level: int
@@ -2823,11 +2810,11 @@ def glTexImage2D(
2823
2810
  :param border: Specifies the width of the border. Must be either 0 or 1.
2824
2811
  :type border: int
2825
2812
  :param format: Specifies the format of the pixel data.
2826
- :type format: typing.Union[typing.Set[int], typing.Set[str]]
2813
+ :type format: typing.Union[typing.Set[str], typing.Set[int]]
2827
2814
  :param type: Specifies the data type of the pixel data.
2828
- :type type: typing.Union[typing.Set[int], typing.Set[str]]
2815
+ :type type: typing.Union[typing.Set[str], typing.Set[int]]
2829
2816
  :param pixels: Specifies a pointer to the image data in memory.
2830
- :type pixels: 'Buffer'
2817
+ :type pixels: Buffer
2831
2818
  """
2832
2819
 
2833
2820
  ...
@@ -2916,16 +2903,16 @@ def glTexImage3DMultisample(
2916
2903
  ...
2917
2904
 
2918
2905
  def glTexParameter(
2919
- target: typing.Union[typing.Set[int], typing.Set[str]],
2920
- pname: typing.Union[typing.Set[int], typing.Set[str]],
2906
+ target: typing.Union[typing.Set[str], typing.Set[int]],
2907
+ pname: typing.Union[typing.Set[str], typing.Set[int]],
2921
2908
  param: typing.Any,
2922
2909
  ):
2923
2910
  """B{glTexParameterf, glTexParameteri, glTexParameterfv, glTexParameteriv}Set texture parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexParameter.xhtml>`__
2924
2911
 
2925
2912
  :param target: Specifies the target texture.
2926
- :type target: typing.Union[typing.Set[int], typing.Set[str]]
2913
+ :type target: typing.Union[typing.Set[str], typing.Set[int]]
2927
2914
  :param pname: Specifies the symbolic name of a single-valued texture parameter.
2928
- :type pname: typing.Union[typing.Set[int], typing.Set[str]]
2915
+ :type pname: typing.Union[typing.Set[str], typing.Set[int]]
2929
2916
  :param param: Specifies the value of pname. If function prototype ends in 'v' specifies
2930
2917
  a pointer to an array where the value or values of pname are stored.
2931
2918
  :type param: typing.Any
@@ -3766,1629 +3753,3257 @@ def glViewport(p0: int, p1: int, p2: int, p3: int):
3766
3753
  ...
3767
3754
 
3768
3755
  GL_ACTIVE_ATTRIBUTES: float
3756
+ """
3757
+ """
3769
3758
 
3770
3759
  GL_ACTIVE_ATTRIBUTE_MAX_LENGTH: float
3760
+ """
3761
+ """
3771
3762
 
3772
3763
  GL_ACTIVE_TEXTURE: float
3764
+ """
3765
+ """
3773
3766
 
3774
3767
  GL_ACTIVE_UNIFORMS: float
3768
+ """
3769
+ """
3775
3770
 
3776
3771
  GL_ACTIVE_UNIFORM_BLOCKS: float
3772
+ """
3773
+ """
3777
3774
 
3778
3775
  GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH: float
3776
+ """
3777
+ """
3779
3778
 
3780
3779
  GL_ACTIVE_UNIFORM_MAX_LENGTH: float
3780
+ """
3781
+ """
3781
3782
 
3782
3783
  GL_ALIASED_LINE_WIDTH_RANGE: float
3784
+ """
3785
+ """
3783
3786
 
3784
3787
  GL_ALPHA: float
3788
+ """
3789
+ """
3785
3790
 
3786
3791
  GL_ALREADY_SIGNALED: float
3792
+ """
3793
+ """
3787
3794
 
3788
3795
  GL_ALWAYS: float
3796
+ """
3797
+ """
3789
3798
 
3790
3799
  GL_AND: float
3800
+ """
3801
+ """
3791
3802
 
3792
3803
  GL_AND_INVERTED: float
3804
+ """
3805
+ """
3793
3806
 
3794
3807
  GL_AND_REVERSE: float
3808
+ """
3809
+ """
3795
3810
 
3796
3811
  GL_ANY_SAMPLES_PASSED: float
3812
+ """
3813
+ """
3797
3814
 
3798
3815
  GL_ARRAY_BUFFER: float
3816
+ """
3817
+ """
3799
3818
 
3800
3819
  GL_ARRAY_BUFFER_BINDING: float
3820
+ """
3821
+ """
3801
3822
 
3802
3823
  GL_ATTACHED_SHADERS: float
3824
+ """
3825
+ """
3803
3826
 
3804
3827
  GL_BACK: float
3828
+ """
3829
+ """
3805
3830
 
3806
3831
  GL_BACK_LEFT: float
3832
+ """
3833
+ """
3807
3834
 
3808
3835
  GL_BACK_RIGHT: float
3836
+ """
3837
+ """
3809
3838
 
3810
3839
  GL_BGR: float
3840
+ """
3841
+ """
3811
3842
 
3812
3843
  GL_BGRA: float
3844
+ """
3845
+ """
3813
3846
 
3814
3847
  GL_BGRA_INTEGER: float
3848
+ """
3849
+ """
3815
3850
 
3816
3851
  GL_BGR_INTEGER: float
3852
+ """
3853
+ """
3817
3854
 
3818
3855
  GL_BLEND: float
3856
+ """
3857
+ """
3819
3858
 
3820
3859
  GL_BLEND_DST: float
3860
+ """
3861
+ """
3821
3862
 
3822
3863
  GL_BLEND_DST_ALPHA: float
3864
+ """
3865
+ """
3823
3866
 
3824
3867
  GL_BLEND_DST_RGB: float
3868
+ """
3869
+ """
3825
3870
 
3826
3871
  GL_BLEND_EQUATION_ALPHA: float
3872
+ """
3873
+ """
3827
3874
 
3828
3875
  GL_BLEND_EQUATION_RGB: float
3876
+ """
3877
+ """
3829
3878
 
3830
3879
  GL_BLEND_SRC: float
3880
+ """
3881
+ """
3831
3882
 
3832
3883
  GL_BLEND_SRC_ALPHA: float
3884
+ """
3885
+ """
3833
3886
 
3834
3887
  GL_BLEND_SRC_RGB: float
3888
+ """
3889
+ """
3835
3890
 
3836
3891
  GL_BLUE: float
3892
+ """
3893
+ """
3837
3894
 
3838
3895
  GL_BLUE_INTEGER: float
3896
+ """
3897
+ """
3839
3898
 
3840
3899
  GL_BOOL: float
3900
+ """
3901
+ """
3841
3902
 
3842
3903
  GL_BOOL_VEC2: float
3904
+ """
3905
+ """
3843
3906
 
3844
3907
  GL_BOOL_VEC3: float
3908
+ """
3909
+ """
3845
3910
 
3846
3911
  GL_BOOL_VEC4: float
3912
+ """
3913
+ """
3847
3914
 
3848
3915
  GL_BUFFER_ACCESS: float
3916
+ """
3917
+ """
3849
3918
 
3850
3919
  GL_BUFFER_ACCESS_FLAGS: float
3920
+ """
3921
+ """
3851
3922
 
3852
3923
  GL_BUFFER_MAPPED: float
3924
+ """
3925
+ """
3853
3926
 
3854
3927
  GL_BUFFER_MAP_LENGTH: float
3928
+ """
3929
+ """
3855
3930
 
3856
3931
  GL_BUFFER_MAP_OFFSET: float
3932
+ """
3933
+ """
3857
3934
 
3858
3935
  GL_BUFFER_MAP_POINTER: float
3936
+ """
3937
+ """
3859
3938
 
3860
3939
  GL_BUFFER_SIZE: float
3940
+ """
3941
+ """
3861
3942
 
3862
3943
  GL_BUFFER_USAGE: float
3944
+ """
3945
+ """
3863
3946
 
3864
3947
  GL_BYTE: float
3948
+ """
3949
+ """
3865
3950
 
3866
3951
  GL_CCW: float
3952
+ """
3953
+ """
3867
3954
 
3868
3955
  GL_CLAMP_READ_COLOR: float
3956
+ """
3957
+ """
3869
3958
 
3870
3959
  GL_CLAMP_TO_BORDER: float
3960
+ """
3961
+ """
3871
3962
 
3872
3963
  GL_CLAMP_TO_EDGE: float
3964
+ """
3965
+ """
3873
3966
 
3874
3967
  GL_CLEAR: float
3968
+ """
3969
+ """
3875
3970
 
3876
3971
  GL_CLIP_DISTANCE0: float
3972
+ """
3973
+ """
3877
3974
 
3878
3975
  GL_CLIP_DISTANCE1: float
3976
+ """
3977
+ """
3879
3978
 
3880
3979
  GL_CLIP_DISTANCE2: float
3980
+ """
3981
+ """
3881
3982
 
3882
3983
  GL_CLIP_DISTANCE3: float
3984
+ """
3985
+ """
3883
3986
 
3884
3987
  GL_CLIP_DISTANCE4: float
3988
+ """
3989
+ """
3885
3990
 
3886
3991
  GL_CLIP_DISTANCE5: float
3992
+ """
3993
+ """
3887
3994
 
3888
3995
  GL_CLIP_DISTANCE6: float
3996
+ """
3997
+ """
3889
3998
 
3890
3999
  GL_CLIP_DISTANCE7: float
4000
+ """
4001
+ """
3891
4002
 
3892
4003
  GL_COLOR: float
4004
+ """
4005
+ """
3893
4006
 
3894
4007
  GL_COLOR_ATTACHMENT0: float
4008
+ """
4009
+ """
3895
4010
 
3896
4011
  GL_COLOR_ATTACHMENT1: float
4012
+ """
4013
+ """
3897
4014
 
3898
4015
  GL_COLOR_ATTACHMENT10: float
4016
+ """
4017
+ """
3899
4018
 
3900
4019
  GL_COLOR_ATTACHMENT11: float
4020
+ """
4021
+ """
3901
4022
 
3902
4023
  GL_COLOR_ATTACHMENT12: float
4024
+ """
4025
+ """
3903
4026
 
3904
4027
  GL_COLOR_ATTACHMENT13: float
4028
+ """
4029
+ """
3905
4030
 
3906
4031
  GL_COLOR_ATTACHMENT14: float
4032
+ """
4033
+ """
3907
4034
 
3908
4035
  GL_COLOR_ATTACHMENT15: float
4036
+ """
4037
+ """
3909
4038
 
3910
4039
  GL_COLOR_ATTACHMENT16: float
4040
+ """
4041
+ """
3911
4042
 
3912
4043
  GL_COLOR_ATTACHMENT17: float
4044
+ """
4045
+ """
3913
4046
 
3914
4047
  GL_COLOR_ATTACHMENT18: float
4048
+ """
4049
+ """
3915
4050
 
3916
4051
  GL_COLOR_ATTACHMENT19: float
4052
+ """
4053
+ """
3917
4054
 
3918
4055
  GL_COLOR_ATTACHMENT2: float
4056
+ """
4057
+ """
3919
4058
 
3920
4059
  GL_COLOR_ATTACHMENT20: float
4060
+ """
4061
+ """
3921
4062
 
3922
4063
  GL_COLOR_ATTACHMENT21: float
4064
+ """
4065
+ """
3923
4066
 
3924
4067
  GL_COLOR_ATTACHMENT22: float
4068
+ """
4069
+ """
3925
4070
 
3926
4071
  GL_COLOR_ATTACHMENT23: float
4072
+ """
4073
+ """
3927
4074
 
3928
4075
  GL_COLOR_ATTACHMENT24: float
4076
+ """
4077
+ """
3929
4078
 
3930
4079
  GL_COLOR_ATTACHMENT25: float
4080
+ """
4081
+ """
3931
4082
 
3932
4083
  GL_COLOR_ATTACHMENT26: float
4084
+ """
4085
+ """
3933
4086
 
3934
4087
  GL_COLOR_ATTACHMENT27: float
4088
+ """
4089
+ """
3935
4090
 
3936
4091
  GL_COLOR_ATTACHMENT28: float
4092
+ """
4093
+ """
3937
4094
 
3938
4095
  GL_COLOR_ATTACHMENT29: float
4096
+ """
4097
+ """
3939
4098
 
3940
4099
  GL_COLOR_ATTACHMENT3: float
4100
+ """
4101
+ """
3941
4102
 
3942
4103
  GL_COLOR_ATTACHMENT30: float
4104
+ """
4105
+ """
3943
4106
 
3944
4107
  GL_COLOR_ATTACHMENT31: float
4108
+ """
4109
+ """
3945
4110
 
3946
4111
  GL_COLOR_ATTACHMENT4: float
4112
+ """
4113
+ """
3947
4114
 
3948
4115
  GL_COLOR_ATTACHMENT5: float
4116
+ """
4117
+ """
3949
4118
 
3950
4119
  GL_COLOR_ATTACHMENT6: float
4120
+ """
4121
+ """
3951
4122
 
3952
4123
  GL_COLOR_ATTACHMENT7: float
4124
+ """
4125
+ """
3953
4126
 
3954
4127
  GL_COLOR_ATTACHMENT8: float
4128
+ """
4129
+ """
3955
4130
 
3956
4131
  GL_COLOR_ATTACHMENT9: float
4132
+ """
4133
+ """
3957
4134
 
3958
4135
  GL_COLOR_BUFFER_BIT: float
4136
+ """
4137
+ """
3959
4138
 
3960
4139
  GL_COLOR_CLEAR_VALUE: float
4140
+ """
4141
+ """
3961
4142
 
3962
4143
  GL_COLOR_LOGIC_OP: float
4144
+ """
4145
+ """
3963
4146
 
3964
4147
  GL_COLOR_WRITEMASK: float
4148
+ """
4149
+ """
3965
4150
 
3966
4151
  GL_COMPARE_REF_TO_TEXTURE: float
4152
+ """
4153
+ """
3967
4154
 
3968
4155
  GL_COMPILE_STATUS: float
4156
+ """
4157
+ """
3969
4158
 
3970
4159
  GL_COMPRESSED_RED: float
4160
+ """
4161
+ """
3971
4162
 
3972
4163
  GL_COMPRESSED_RED_RGTC1: float
4164
+ """
4165
+ """
3973
4166
 
3974
4167
  GL_COMPRESSED_RG: float
4168
+ """
4169
+ """
3975
4170
 
3976
4171
  GL_COMPRESSED_RGB: float
4172
+ """
4173
+ """
3977
4174
 
3978
4175
  GL_COMPRESSED_RGBA: float
4176
+ """
4177
+ """
3979
4178
 
3980
4179
  GL_COMPRESSED_RG_RGTC2: float
4180
+ """
4181
+ """
3981
4182
 
3982
4183
  GL_COMPRESSED_SIGNED_RED_RGTC1: float
4184
+ """
4185
+ """
3983
4186
 
3984
4187
  GL_COMPRESSED_SIGNED_RG_RGTC2: float
4188
+ """
4189
+ """
3985
4190
 
3986
4191
  GL_COMPRESSED_SRGB: float
4192
+ """
4193
+ """
3987
4194
 
3988
4195
  GL_COMPRESSED_SRGB_ALPHA: float
4196
+ """
4197
+ """
3989
4198
 
3990
4199
  GL_COMPRESSED_TEXTURE_FORMATS: float
4200
+ """
4201
+ """
3991
4202
 
3992
4203
  GL_CONDITION_SATISFIED: float
4204
+ """
4205
+ """
3993
4206
 
3994
4207
  GL_CONSTANT_ALPHA: float
4208
+ """
4209
+ """
3995
4210
 
3996
4211
  GL_CONSTANT_COLOR: float
4212
+ """
4213
+ """
3997
4214
 
3998
4215
  GL_CONTEXT_COMPATIBILITY_PROFILE_BIT: float
4216
+ """
4217
+ """
3999
4218
 
4000
4219
  GL_CONTEXT_CORE_PROFILE_BIT: float
4220
+ """
4221
+ """
4001
4222
 
4002
4223
  GL_CONTEXT_FLAGS: float
4224
+ """
4225
+ """
4003
4226
 
4004
4227
  GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT: float
4228
+ """
4229
+ """
4005
4230
 
4006
4231
  GL_CONTEXT_PROFILE_MASK: float
4232
+ """
4233
+ """
4007
4234
 
4008
4235
  GL_COPY: float
4236
+ """
4237
+ """
4009
4238
 
4010
4239
  GL_COPY_INVERTED: float
4240
+ """
4241
+ """
4011
4242
 
4012
4243
  GL_COPY_READ_BUFFER: float
4244
+ """
4245
+ """
4013
4246
 
4014
4247
  GL_COPY_WRITE_BUFFER: float
4248
+ """
4249
+ """
4015
4250
 
4016
4251
  GL_CULL_FACE: float
4252
+ """
4253
+ """
4017
4254
 
4018
4255
  GL_CULL_FACE_MODE: float
4256
+ """
4257
+ """
4019
4258
 
4020
4259
  GL_CURRENT_PROGRAM: float
4260
+ """
4261
+ """
4021
4262
 
4022
4263
  GL_CURRENT_QUERY: float
4264
+ """
4265
+ """
4023
4266
 
4024
4267
  GL_CURRENT_VERTEX_ATTRIB: float
4268
+ """
4269
+ """
4025
4270
 
4026
4271
  GL_CW: float
4272
+ """
4273
+ """
4027
4274
 
4028
4275
  GL_DECR: float
4276
+ """
4277
+ """
4029
4278
 
4030
4279
  GL_DECR_WRAP: float
4280
+ """
4281
+ """
4031
4282
 
4032
4283
  GL_DELETE_STATUS: float
4284
+ """
4285
+ """
4033
4286
 
4034
4287
  GL_DEPTH: float
4288
+ """
4289
+ """
4035
4290
 
4036
4291
  GL_DEPTH24_STENCIL8: float
4292
+ """
4293
+ """
4037
4294
 
4038
4295
  GL_DEPTH32F_STENCIL8: float
4296
+ """
4297
+ """
4039
4298
 
4040
4299
  GL_DEPTH_ATTACHMENT: float
4300
+ """
4301
+ """
4041
4302
 
4042
4303
  GL_DEPTH_BUFFER_BIT: float
4304
+ """
4305
+ """
4043
4306
 
4044
4307
  GL_DEPTH_CLAMP: float
4308
+ """
4309
+ """
4045
4310
 
4046
4311
  GL_DEPTH_CLEAR_VALUE: float
4312
+ """
4313
+ """
4047
4314
 
4048
4315
  GL_DEPTH_COMPONENT: float
4316
+ """
4317
+ """
4049
4318
 
4050
4319
  GL_DEPTH_COMPONENT16: float
4320
+ """
4321
+ """
4051
4322
 
4052
4323
  GL_DEPTH_COMPONENT24: float
4324
+ """
4325
+ """
4053
4326
 
4054
4327
  GL_DEPTH_COMPONENT32: float
4328
+ """
4329
+ """
4055
4330
 
4056
4331
  GL_DEPTH_COMPONENT32F: float
4332
+ """
4333
+ """
4057
4334
 
4058
4335
  GL_DEPTH_FUNC: float
4336
+ """
4337
+ """
4059
4338
 
4060
4339
  GL_DEPTH_RANGE: float
4340
+ """
4341
+ """
4061
4342
 
4062
4343
  GL_DEPTH_STENCIL: float
4344
+ """
4345
+ """
4063
4346
 
4064
4347
  GL_DEPTH_STENCIL_ATTACHMENT: float
4348
+ """
4349
+ """
4065
4350
 
4066
4351
  GL_DEPTH_TEST: float
4352
+ """
4353
+ """
4067
4354
 
4068
4355
  GL_DEPTH_WRITEMASK: float
4356
+ """
4357
+ """
4069
4358
 
4070
4359
  GL_DITHER: float
4360
+ """
4361
+ """
4071
4362
 
4072
4363
  GL_DONT_CARE: float
4364
+ """
4365
+ """
4073
4366
 
4074
4367
  GL_DOUBLE: float
4368
+ """
4369
+ """
4075
4370
 
4076
4371
  GL_DOUBLEBUFFER: float
4372
+ """
4373
+ """
4077
4374
 
4078
4375
  GL_DRAW_BUFFER: float
4376
+ """
4377
+ """
4079
4378
 
4080
4379
  GL_DRAW_BUFFER0: float
4380
+ """
4381
+ """
4081
4382
 
4082
4383
  GL_DRAW_BUFFER1: float
4384
+ """
4385
+ """
4083
4386
 
4084
4387
  GL_DRAW_BUFFER10: float
4388
+ """
4389
+ """
4085
4390
 
4086
4391
  GL_DRAW_BUFFER11: float
4392
+ """
4393
+ """
4087
4394
 
4088
4395
  GL_DRAW_BUFFER12: float
4396
+ """
4397
+ """
4089
4398
 
4090
4399
  GL_DRAW_BUFFER13: float
4400
+ """
4401
+ """
4091
4402
 
4092
4403
  GL_DRAW_BUFFER14: float
4404
+ """
4405
+ """
4093
4406
 
4094
4407
  GL_DRAW_BUFFER15: float
4408
+ """
4409
+ """
4095
4410
 
4096
4411
  GL_DRAW_BUFFER2: float
4412
+ """
4413
+ """
4097
4414
 
4098
4415
  GL_DRAW_BUFFER3: float
4416
+ """
4417
+ """
4099
4418
 
4100
4419
  GL_DRAW_BUFFER4: float
4420
+ """
4421
+ """
4101
4422
 
4102
4423
  GL_DRAW_BUFFER5: float
4424
+ """
4425
+ """
4103
4426
 
4104
4427
  GL_DRAW_BUFFER6: float
4428
+ """
4429
+ """
4105
4430
 
4106
4431
  GL_DRAW_BUFFER7: float
4432
+ """
4433
+ """
4107
4434
 
4108
4435
  GL_DRAW_BUFFER8: float
4436
+ """
4437
+ """
4109
4438
 
4110
4439
  GL_DRAW_BUFFER9: float
4440
+ """
4441
+ """
4111
4442
 
4112
4443
  GL_DRAW_FRAMEBUFFER: float
4444
+ """
4445
+ """
4113
4446
 
4114
4447
  GL_DRAW_FRAMEBUFFER_BINDING: float
4448
+ """
4449
+ """
4115
4450
 
4116
4451
  GL_DST_ALPHA: float
4452
+ """
4453
+ """
4117
4454
 
4118
4455
  GL_DST_COLOR: float
4456
+ """
4457
+ """
4119
4458
 
4120
4459
  GL_DYNAMIC_COPY: float
4460
+ """
4461
+ """
4121
4462
 
4122
4463
  GL_DYNAMIC_DRAW: float
4464
+ """
4465
+ """
4123
4466
 
4124
4467
  GL_DYNAMIC_READ: float
4468
+ """
4469
+ """
4125
4470
 
4126
4471
  GL_ELEMENT_ARRAY_BUFFER: float
4472
+ """
4473
+ """
4127
4474
 
4128
4475
  GL_ELEMENT_ARRAY_BUFFER_BINDING: float
4476
+ """
4477
+ """
4129
4478
 
4130
4479
  GL_EQUAL: float
4480
+ """
4481
+ """
4131
4482
 
4132
4483
  GL_EQUIV: float
4484
+ """
4485
+ """
4133
4486
 
4134
4487
  GL_EXTENSIONS: float
4488
+ """
4489
+ """
4135
4490
 
4136
4491
  GL_FALSE: float
4492
+ """
4493
+ """
4137
4494
 
4138
4495
  GL_FASTEST: float
4496
+ """
4497
+ """
4139
4498
 
4140
4499
  GL_FILL: float
4500
+ """
4501
+ """
4141
4502
 
4142
4503
  GL_FIRST_VERTEX_CONVENTION: float
4504
+ """
4505
+ """
4143
4506
 
4144
4507
  GL_FIXED_ONLY: float
4508
+ """
4509
+ """
4145
4510
 
4146
4511
  GL_FLOAT: float
4512
+ """
4513
+ """
4147
4514
 
4148
4515
  GL_FLOAT_32_UNSIGNED_INT_24_8_REV: float
4516
+ """
4517
+ """
4149
4518
 
4150
4519
  GL_FLOAT_MAT2: float
4520
+ """
4521
+ """
4151
4522
 
4152
4523
  GL_FLOAT_MAT2x3: float
4524
+ """
4525
+ """
4153
4526
 
4154
4527
  GL_FLOAT_MAT2x4: float
4528
+ """
4529
+ """
4155
4530
 
4156
4531
  GL_FLOAT_MAT3: float
4532
+ """
4533
+ """
4157
4534
 
4158
4535
  GL_FLOAT_MAT3x2: float
4536
+ """
4537
+ """
4159
4538
 
4160
4539
  GL_FLOAT_MAT3x4: float
4540
+ """
4541
+ """
4161
4542
 
4162
4543
  GL_FLOAT_MAT4: float
4544
+ """
4545
+ """
4163
4546
 
4164
4547
  GL_FLOAT_MAT4x2: float
4548
+ """
4549
+ """
4165
4550
 
4166
4551
  GL_FLOAT_MAT4x3: float
4552
+ """
4553
+ """
4167
4554
 
4168
4555
  GL_FLOAT_VEC2: float
4556
+ """
4557
+ """
4169
4558
 
4170
4559
  GL_FLOAT_VEC3: float
4560
+ """
4561
+ """
4171
4562
 
4172
4563
  GL_FLOAT_VEC4: float
4564
+ """
4565
+ """
4173
4566
 
4174
4567
  GL_FRAGMENT_SHADER: float
4568
+ """
4569
+ """
4175
4570
 
4176
4571
  GL_FRAGMENT_SHADER_DERIVATIVE_HINT: float
4572
+ """
4573
+ """
4177
4574
 
4178
4575
  GL_FRAMEBUFFER: float
4576
+ """
4577
+ """
4179
4578
 
4180
4579
  GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: float
4580
+ """
4581
+ """
4181
4582
 
4182
4583
  GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: float
4584
+ """
4585
+ """
4183
4586
 
4184
4587
  GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: float
4588
+ """
4589
+ """
4185
4590
 
4186
4591
  GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: float
4592
+ """
4593
+ """
4187
4594
 
4188
4595
  GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: float
4596
+ """
4597
+ """
4189
4598
 
4190
4599
  GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: float
4600
+ """
4601
+ """
4191
4602
 
4192
4603
  GL_FRAMEBUFFER_ATTACHMENT_LAYERED: float
4604
+ """
4605
+ """
4193
4606
 
4194
4607
  GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: float
4608
+ """
4609
+ """
4195
4610
 
4196
4611
  GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: float
4612
+ """
4613
+ """
4197
4614
 
4198
4615
  GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE: float
4616
+ """
4617
+ """
4199
4618
 
4200
4619
  GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: float
4620
+ """
4621
+ """
4201
4622
 
4202
4623
  GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: float
4624
+ """
4625
+ """
4203
4626
 
4204
4627
  GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: float
4628
+ """
4629
+ """
4205
4630
 
4206
4631
  GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: float
4632
+ """
4633
+ """
4207
4634
 
4208
4635
  GL_FRAMEBUFFER_BINDING: float
4636
+ """
4637
+ """
4209
4638
 
4210
4639
  GL_FRAMEBUFFER_COMPLETE: float
4640
+ """
4641
+ """
4211
4642
 
4212
4643
  GL_FRAMEBUFFER_DEFAULT: float
4644
+ """
4645
+ """
4213
4646
 
4214
4647
  GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT: float
4648
+ """
4649
+ """
4215
4650
 
4216
4651
  GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER: float
4652
+ """
4653
+ """
4217
4654
 
4218
4655
  GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS: float
4656
+ """
4657
+ """
4219
4658
 
4220
4659
  GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: float
4660
+ """
4661
+ """
4221
4662
 
4222
4663
  GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: float
4664
+ """
4665
+ """
4223
4666
 
4224
4667
  GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER: float
4668
+ """
4669
+ """
4225
4670
 
4226
4671
  GL_FRAMEBUFFER_SRGB: float
4672
+ """
4673
+ """
4227
4674
 
4228
4675
  GL_FRAMEBUFFER_UNDEFINED: float
4676
+ """
4677
+ """
4229
4678
 
4230
4679
  GL_FRAMEBUFFER_UNSUPPORTED: float
4680
+ """
4681
+ """
4231
4682
 
4232
4683
  GL_FRONT: float
4684
+ """
4685
+ """
4233
4686
 
4234
4687
  GL_FRONT_AND_BACK: float
4688
+ """
4689
+ """
4235
4690
 
4236
4691
  GL_FRONT_FACE: float
4692
+ """
4693
+ """
4237
4694
 
4238
4695
  GL_FRONT_LEFT: float
4696
+ """
4697
+ """
4239
4698
 
4240
4699
  GL_FRONT_RIGHT: float
4700
+ """
4701
+ """
4241
4702
 
4242
4703
  GL_FUNC_ADD: float
4704
+ """
4705
+ """
4243
4706
 
4244
4707
  GL_FUNC_REVERSE_SUBTRACT: float
4708
+ """
4709
+ """
4245
4710
 
4246
4711
  GL_FUNC_SUBTRACT: float
4712
+ """
4713
+ """
4247
4714
 
4248
4715
  GL_GEOMETRY_INPUT_TYPE: float
4716
+ """
4717
+ """
4249
4718
 
4250
4719
  GL_GEOMETRY_OUTPUT_TYPE: float
4720
+ """
4721
+ """
4251
4722
 
4252
4723
  GL_GEOMETRY_SHADER: float
4724
+ """
4725
+ """
4253
4726
 
4254
4727
  GL_GEOMETRY_VERTICES_OUT: float
4728
+ """
4729
+ """
4255
4730
 
4256
4731
  GL_GEQUAL: float
4732
+ """
4733
+ """
4257
4734
 
4258
4735
  GL_GREATER: float
4736
+ """
4737
+ """
4259
4738
 
4260
4739
  GL_GREEN: float
4740
+ """
4741
+ """
4261
4742
 
4262
4743
  GL_GREEN_INTEGER: float
4744
+ """
4745
+ """
4263
4746
 
4264
4747
  GL_HALF_FLOAT: float
4748
+ """
4749
+ """
4265
4750
 
4266
4751
  GL_INCR: float
4752
+ """
4753
+ """
4267
4754
 
4268
4755
  GL_INCR_WRAP: float
4756
+ """
4757
+ """
4269
4758
 
4270
4759
  GL_INDEX: float
4760
+ """
4761
+ """
4271
4762
 
4272
4763
  GL_INFO_LOG_LENGTH: float
4764
+ """
4765
+ """
4273
4766
 
4274
4767
  GL_INT: float
4768
+ """
4769
+ """
4275
4770
 
4276
4771
  GL_INTERLEAVED_ATTRIBS: float
4772
+ """
4773
+ """
4277
4774
 
4278
4775
  GL_INT_2_10_10_10_REV: float
4776
+ """
4777
+ """
4279
4778
 
4280
4779
  GL_INT_SAMPLER_1D: float
4780
+ """
4781
+ """
4281
4782
 
4282
4783
  GL_INT_SAMPLER_1D_ARRAY: float
4784
+ """
4785
+ """
4283
4786
 
4284
4787
  GL_INT_SAMPLER_2D: float
4788
+ """
4789
+ """
4285
4790
 
4286
4791
  GL_INT_SAMPLER_2D_ARRAY: float
4792
+ """
4793
+ """
4287
4794
 
4288
4795
  GL_INT_SAMPLER_2D_MULTISAMPLE: float
4796
+ """
4797
+ """
4289
4798
 
4290
4799
  GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY: float
4800
+ """
4801
+ """
4291
4802
 
4292
4803
  GL_INT_SAMPLER_2D_RECT: float
4804
+ """
4805
+ """
4293
4806
 
4294
4807
  GL_INT_SAMPLER_3D: float
4808
+ """
4809
+ """
4295
4810
 
4296
4811
  GL_INT_SAMPLER_BUFFER: float
4812
+ """
4813
+ """
4297
4814
 
4298
4815
  GL_INT_SAMPLER_CUBE: float
4816
+ """
4817
+ """
4299
4818
 
4300
4819
  GL_INT_VEC2: float
4820
+ """
4821
+ """
4301
4822
 
4302
4823
  GL_INT_VEC3: float
4824
+ """
4825
+ """
4303
4826
 
4304
4827
  GL_INT_VEC4: float
4828
+ """
4829
+ """
4305
4830
 
4306
4831
  GL_INVALID_ENUM: float
4832
+ """
4833
+ """
4307
4834
 
4308
4835
  GL_INVALID_FRAMEBUFFER_OPERATION: float
4836
+ """
4837
+ """
4309
4838
 
4310
4839
  GL_INVALID_INDEX: float
4840
+ """
4841
+ """
4311
4842
 
4312
4843
  GL_INVALID_OPERATION: float
4844
+ """
4845
+ """
4313
4846
 
4314
4847
  GL_INVALID_VALUE: float
4848
+ """
4849
+ """
4315
4850
 
4316
4851
  GL_INVERT: float
4852
+ """
4853
+ """
4317
4854
 
4318
4855
  GL_KEEP: float
4856
+ """
4857
+ """
4319
4858
 
4320
4859
  GL_LAST_VERTEX_CONVENTION: float
4860
+ """
4861
+ """
4321
4862
 
4322
4863
  GL_LEFT: float
4864
+ """
4865
+ """
4323
4866
 
4324
4867
  GL_LEQUAL: float
4868
+ """
4869
+ """
4325
4870
 
4326
4871
  GL_LESS: float
4872
+ """
4873
+ """
4327
4874
 
4328
4875
  GL_LINE: float
4876
+ """
4877
+ """
4329
4878
 
4330
4879
  GL_LINEAR: float
4880
+ """
4881
+ """
4331
4882
 
4332
4883
  GL_LINEAR_MIPMAP_LINEAR: float
4884
+ """
4885
+ """
4333
4886
 
4334
4887
  GL_LINEAR_MIPMAP_NEAREST: float
4888
+ """
4889
+ """
4335
4890
 
4336
4891
  GL_LINES: float
4892
+ """
4893
+ """
4337
4894
 
4338
4895
  GL_LINES_ADJACENCY: float
4896
+ """
4897
+ """
4339
4898
 
4340
4899
  GL_LINE_LOOP: float
4900
+ """
4901
+ """
4341
4902
 
4342
4903
  GL_LINE_SMOOTH: float
4904
+ """
4905
+ """
4343
4906
 
4344
4907
  GL_LINE_SMOOTH_HINT: float
4908
+ """
4909
+ """
4345
4910
 
4346
4911
  GL_LINE_STRIP: float
4912
+ """
4913
+ """
4347
4914
 
4348
4915
  GL_LINE_STRIP_ADJACENCY: float
4916
+ """
4917
+ """
4349
4918
 
4350
4919
  GL_LINE_WIDTH: float
4920
+ """
4921
+ """
4351
4922
 
4352
4923
  GL_LINE_WIDTH_GRANULARITY: float
4924
+ """
4925
+ """
4353
4926
 
4354
4927
  GL_LINE_WIDTH_RANGE: float
4928
+ """
4929
+ """
4355
4930
 
4356
4931
  GL_LINK_STATUS: float
4932
+ """
4933
+ """
4357
4934
 
4358
4935
  GL_LOGIC_OP_MODE: float
4936
+ """
4937
+ """
4359
4938
 
4360
4939
  GL_LOWER_LEFT: float
4940
+ """
4941
+ """
4361
4942
 
4362
4943
  GL_MAJOR_VERSION: float
4944
+ """
4945
+ """
4363
4946
 
4364
4947
  GL_MAP_FLUSH_EXPLICIT_BIT: float
4948
+ """
4949
+ """
4365
4950
 
4366
4951
  GL_MAP_INVALIDATE_BUFFER_BIT: float
4952
+ """
4953
+ """
4367
4954
 
4368
4955
  GL_MAP_INVALIDATE_RANGE_BIT: float
4956
+ """
4957
+ """
4369
4958
 
4370
4959
  GL_MAP_READ_BIT: float
4960
+ """
4961
+ """
4371
4962
 
4372
4963
  GL_MAP_UNSYNCHRONIZED_BIT: float
4964
+ """
4965
+ """
4373
4966
 
4374
4967
  GL_MAP_WRITE_BIT: float
4968
+ """
4969
+ """
4375
4970
 
4376
4971
  GL_MAX: float
4972
+ """
4973
+ """
4377
4974
 
4378
4975
  GL_MAX_3D_TEXTURE_SIZE: float
4976
+ """
4977
+ """
4379
4978
 
4380
4979
  GL_MAX_ARRAY_TEXTURE_LAYERS: float
4980
+ """
4981
+ """
4381
4982
 
4382
4983
  GL_MAX_CLIP_DISTANCES: float
4984
+ """
4985
+ """
4383
4986
 
4384
4987
  GL_MAX_COLOR_ATTACHMENTS: float
4988
+ """
4989
+ """
4385
4990
 
4386
4991
  GL_MAX_COLOR_TEXTURE_SAMPLES: float
4992
+ """
4993
+ """
4387
4994
 
4388
4995
  GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: float
4996
+ """
4997
+ """
4389
4998
 
4390
4999
  GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS: float
5000
+ """
5001
+ """
4391
5002
 
4392
5003
  GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS: float
5004
+ """
5005
+ """
4393
5006
 
4394
5007
  GL_MAX_COMBINED_UNIFORM_BLOCKS: float
5008
+ """
5009
+ """
4395
5010
 
4396
5011
  GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: float
5012
+ """
5013
+ """
4397
5014
 
4398
5015
  GL_MAX_CUBE_MAP_TEXTURE_SIZE: float
5016
+ """
5017
+ """
4399
5018
 
4400
5019
  GL_MAX_DEPTH_TEXTURE_SAMPLES: float
5020
+ """
5021
+ """
4401
5022
 
4402
5023
  GL_MAX_DRAW_BUFFERS: float
5024
+ """
5025
+ """
4403
5026
 
4404
5027
  GL_MAX_DUAL_SOURCE_DRAW_BUFFERS: float
5028
+ """
5029
+ """
4405
5030
 
4406
5031
  GL_MAX_ELEMENTS_INDICES: float
5032
+ """
5033
+ """
4407
5034
 
4408
5035
  GL_MAX_ELEMENTS_VERTICES: float
5036
+ """
5037
+ """
4409
5038
 
4410
5039
  GL_MAX_FRAGMENT_INPUT_COMPONENTS: float
5040
+ """
5041
+ """
4411
5042
 
4412
5043
  GL_MAX_FRAGMENT_UNIFORM_BLOCKS: float
5044
+ """
5045
+ """
4413
5046
 
4414
5047
  GL_MAX_FRAGMENT_UNIFORM_COMPONENTS: float
5048
+ """
5049
+ """
4415
5050
 
4416
5051
  GL_MAX_GEOMETRY_INPUT_COMPONENTS: float
5052
+ """
5053
+ """
4417
5054
 
4418
5055
  GL_MAX_GEOMETRY_OUTPUT_COMPONENTS: float
5056
+ """
5057
+ """
4419
5058
 
4420
5059
  GL_MAX_GEOMETRY_OUTPUT_VERTICES: float
5060
+ """
5061
+ """
4421
5062
 
4422
5063
  GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS: float
5064
+ """
5065
+ """
4423
5066
 
4424
5067
  GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS: float
5068
+ """
5069
+ """
4425
5070
 
4426
5071
  GL_MAX_GEOMETRY_UNIFORM_BLOCKS: float
5072
+ """
5073
+ """
4427
5074
 
4428
5075
  GL_MAX_GEOMETRY_UNIFORM_COMPONENTS: float
5076
+ """
5077
+ """
4429
5078
 
4430
5079
  GL_MAX_INTEGER_SAMPLES: float
5080
+ """
5081
+ """
4431
5082
 
4432
5083
  GL_MAX_PROGRAM_TEXEL_OFFSET: float
5084
+ """
5085
+ """
4433
5086
 
4434
5087
  GL_MAX_RECTANGLE_TEXTURE_SIZE: float
5088
+ """
5089
+ """
4435
5090
 
4436
5091
  GL_MAX_RENDERBUFFER_SIZE: float
5092
+ """
5093
+ """
4437
5094
 
4438
5095
  GL_MAX_SAMPLES: float
5096
+ """
5097
+ """
4439
5098
 
4440
5099
  GL_MAX_SAMPLE_MASK_WORDS: float
5100
+ """
5101
+ """
4441
5102
 
4442
5103
  GL_MAX_SERVER_WAIT_TIMEOUT: float
5104
+ """
5105
+ """
4443
5106
 
4444
5107
  GL_MAX_TEXTURE_BUFFER_SIZE: float
5108
+ """
5109
+ """
4445
5110
 
4446
5111
  GL_MAX_TEXTURE_IMAGE_UNITS: float
5112
+ """
5113
+ """
4447
5114
 
4448
5115
  GL_MAX_TEXTURE_LOD_BIAS: float
5116
+ """
5117
+ """
4449
5118
 
4450
5119
  GL_MAX_TEXTURE_SIZE: float
5120
+ """
5121
+ """
4451
5122
 
4452
5123
  GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: float
5124
+ """
5125
+ """
4453
5126
 
4454
5127
  GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: float
5128
+ """
5129
+ """
4455
5130
 
4456
5131
  GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: float
5132
+ """
5133
+ """
4457
5134
 
4458
5135
  GL_MAX_UNIFORM_BLOCK_SIZE: float
5136
+ """
5137
+ """
4459
5138
 
4460
5139
  GL_MAX_UNIFORM_BUFFER_BINDINGS: float
5140
+ """
5141
+ """
4461
5142
 
4462
5143
  GL_MAX_VARYING_COMPONENTS: float
5144
+ """
5145
+ """
4463
5146
 
4464
5147
  GL_MAX_VARYING_FLOATS: float
5148
+ """
5149
+ """
4465
5150
 
4466
5151
  GL_MAX_VERTEX_ATTRIBS: float
5152
+ """
5153
+ """
4467
5154
 
4468
5155
  GL_MAX_VERTEX_OUTPUT_COMPONENTS: float
5156
+ """
5157
+ """
4469
5158
 
4470
5159
  GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS: float
5160
+ """
5161
+ """
4471
5162
 
4472
5163
  GL_MAX_VERTEX_UNIFORM_BLOCKS: float
5164
+ """
5165
+ """
4473
5166
 
4474
5167
  GL_MAX_VERTEX_UNIFORM_COMPONENTS: float
5168
+ """
5169
+ """
4475
5170
 
4476
5171
  GL_MAX_VIEWPORT_DIMS: float
5172
+ """
5173
+ """
4477
5174
 
4478
5175
  GL_MIN: float
5176
+ """
5177
+ """
4479
5178
 
4480
5179
  GL_MINOR_VERSION: float
5180
+ """
5181
+ """
4481
5182
 
4482
5183
  GL_MIN_PROGRAM_TEXEL_OFFSET: float
5184
+ """
5185
+ """
4483
5186
 
4484
5187
  GL_MIRRORED_REPEAT: float
5188
+ """
5189
+ """
4485
5190
 
4486
5191
  GL_MULTISAMPLE: float
5192
+ """
5193
+ """
4487
5194
 
4488
5195
  GL_NAND: float
5196
+ """
5197
+ """
4489
5198
 
4490
5199
  GL_NEAREST: float
5200
+ """
5201
+ """
4491
5202
 
4492
5203
  GL_NEAREST_MIPMAP_LINEAR: float
5204
+ """
5205
+ """
4493
5206
 
4494
5207
  GL_NEAREST_MIPMAP_NEAREST: float
5208
+ """
5209
+ """
4495
5210
 
4496
5211
  GL_NEVER: float
5212
+ """
5213
+ """
4497
5214
 
4498
5215
  GL_NICEST: float
5216
+ """
5217
+ """
4499
5218
 
4500
5219
  GL_NONE: float
5220
+ """
5221
+ """
4501
5222
 
4502
5223
  GL_NOOP: float
5224
+ """
5225
+ """
4503
5226
 
4504
5227
  GL_NOR: float
5228
+ """
5229
+ """
4505
5230
 
4506
5231
  GL_NOTEQUAL: float
5232
+ """
5233
+ """
4507
5234
 
4508
5235
  GL_NO_ERROR: float
5236
+ """
5237
+ """
4509
5238
 
4510
5239
  GL_NUM_COMPRESSED_TEXTURE_FORMATS: float
5240
+ """
5241
+ """
4511
5242
 
4512
5243
  GL_NUM_EXTENSIONS: float
5244
+ """
5245
+ """
4513
5246
 
4514
5247
  GL_OBJECT_TYPE: float
5248
+ """
5249
+ """
4515
5250
 
4516
5251
  GL_ONE: float
5252
+ """
5253
+ """
4517
5254
 
4518
5255
  GL_ONE_MINUS_CONSTANT_ALPHA: float
5256
+ """
5257
+ """
4519
5258
 
4520
5259
  GL_ONE_MINUS_CONSTANT_COLOR: float
5260
+ """
5261
+ """
4521
5262
 
4522
5263
  GL_ONE_MINUS_DST_ALPHA: float
5264
+ """
5265
+ """
4523
5266
 
4524
5267
  GL_ONE_MINUS_DST_COLOR: float
5268
+ """
5269
+ """
4525
5270
 
4526
5271
  GL_ONE_MINUS_SRC1_ALPHA: float
5272
+ """
5273
+ """
4527
5274
 
4528
5275
  GL_ONE_MINUS_SRC1_COLOR: float
5276
+ """
5277
+ """
4529
5278
 
4530
5279
  GL_ONE_MINUS_SRC_ALPHA: float
5280
+ """
5281
+ """
4531
5282
 
4532
5283
  GL_ONE_MINUS_SRC_COLOR: float
5284
+ """
5285
+ """
4533
5286
 
4534
5287
  GL_OR: float
5288
+ """
5289
+ """
4535
5290
 
4536
5291
  GL_OR_INVERTED: float
5292
+ """
5293
+ """
4537
5294
 
4538
5295
  GL_OR_REVERSE: float
5296
+ """
5297
+ """
4539
5298
 
4540
5299
  GL_OUT_OF_MEMORY: float
5300
+ """
5301
+ """
4541
5302
 
4542
5303
  GL_PACK_ALIGNMENT: float
5304
+ """
5305
+ """
4543
5306
 
4544
5307
  GL_PACK_IMAGE_HEIGHT: float
5308
+ """
5309
+ """
4545
5310
 
4546
5311
  GL_PACK_LSB_FIRST: float
5312
+ """
5313
+ """
4547
5314
 
4548
5315
  GL_PACK_ROW_LENGTH: float
5316
+ """
5317
+ """
4549
5318
 
4550
5319
  GL_PACK_SKIP_IMAGES: float
5320
+ """
5321
+ """
4551
5322
 
4552
5323
  GL_PACK_SKIP_PIXELS: float
5324
+ """
5325
+ """
4553
5326
 
4554
5327
  GL_PACK_SKIP_ROWS: float
5328
+ """
5329
+ """
4555
5330
 
4556
5331
  GL_PACK_SWAP_BYTES: float
5332
+ """
5333
+ """
4557
5334
 
4558
5335
  GL_PIXEL_PACK_BUFFER: float
5336
+ """
5337
+ """
4559
5338
 
4560
5339
  GL_PIXEL_PACK_BUFFER_BINDING: float
5340
+ """
5341
+ """
4561
5342
 
4562
5343
  GL_PIXEL_UNPACK_BUFFER: float
5344
+ """
5345
+ """
4563
5346
 
4564
5347
  GL_PIXEL_UNPACK_BUFFER_BINDING: float
5348
+ """
5349
+ """
4565
5350
 
4566
5351
  GL_POINT: float
5352
+ """
5353
+ """
4567
5354
 
4568
5355
  GL_POINTS: float
5356
+ """
5357
+ """
4569
5358
 
4570
5359
  GL_POINT_FADE_THRESHOLD_SIZE: float
5360
+ """
5361
+ """
4571
5362
 
4572
5363
  GL_POINT_SIZE: float
5364
+ """
5365
+ """
4573
5366
 
4574
5367
  GL_POINT_SPRITE_COORD_ORIGIN: float
5368
+ """
5369
+ """
4575
5370
 
4576
5371
  GL_POLYGON_MODE: float
5372
+ """
5373
+ """
4577
5374
 
4578
5375
  GL_POLYGON_OFFSET_FACTOR: float
5376
+ """
5377
+ """
4579
5378
 
4580
5379
  GL_POLYGON_OFFSET_FILL: float
5380
+ """
5381
+ """
4581
5382
 
4582
5383
  GL_POLYGON_OFFSET_LINE: float
5384
+ """
5385
+ """
4583
5386
 
4584
5387
  GL_POLYGON_OFFSET_POINT: float
5388
+ """
5389
+ """
4585
5390
 
4586
5391
  GL_POLYGON_OFFSET_UNITS: float
5392
+ """
5393
+ """
4587
5394
 
4588
5395
  GL_POLYGON_SMOOTH: float
5396
+ """
5397
+ """
4589
5398
 
4590
5399
  GL_POLYGON_SMOOTH_HINT: float
5400
+ """
5401
+ """
4591
5402
 
4592
5403
  GL_PRIMITIVES_GENERATED: float
5404
+ """
5405
+ """
4593
5406
 
4594
5407
  GL_PRIMITIVE_RESTART: float
5408
+ """
5409
+ """
4595
5410
 
4596
5411
  GL_PRIMITIVE_RESTART_INDEX: float
5412
+ """
5413
+ """
4597
5414
 
4598
5415
  GL_PROGRAM_POINT_SIZE: float
5416
+ """
5417
+ """
4599
5418
 
4600
5419
  GL_PROVOKING_VERTEX: float
5420
+ """
5421
+ """
4601
5422
 
4602
5423
  GL_PROXY_TEXTURE_1D: float
5424
+ """
5425
+ """
4603
5426
 
4604
5427
  GL_PROXY_TEXTURE_1D_ARRAY: float
5428
+ """
5429
+ """
4605
5430
 
4606
5431
  GL_PROXY_TEXTURE_2D: float
5432
+ """
5433
+ """
4607
5434
 
4608
5435
  GL_PROXY_TEXTURE_2D_ARRAY: float
5436
+ """
5437
+ """
4609
5438
 
4610
5439
  GL_PROXY_TEXTURE_2D_MULTISAMPLE: float
5440
+ """
5441
+ """
4611
5442
 
4612
5443
  GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY: float
5444
+ """
5445
+ """
4613
5446
 
4614
5447
  GL_PROXY_TEXTURE_3D: float
5448
+ """
5449
+ """
4615
5450
 
4616
5451
  GL_PROXY_TEXTURE_CUBE_MAP: float
5452
+ """
5453
+ """
4617
5454
 
4618
5455
  GL_PROXY_TEXTURE_RECTANGLE: float
5456
+ """
5457
+ """
4619
5458
 
4620
5459
  GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION: float
5460
+ """
5461
+ """
4621
5462
 
4622
5463
  GL_QUERY_BY_REGION_NO_WAIT: float
5464
+ """
5465
+ """
4623
5466
 
4624
5467
  GL_QUERY_BY_REGION_WAIT: float
5468
+ """
5469
+ """
4625
5470
 
4626
5471
  GL_QUERY_COUNTER_BITS: float
5472
+ """
5473
+ """
4627
5474
 
4628
5475
  GL_QUERY_NO_WAIT: float
5476
+ """
5477
+ """
4629
5478
 
4630
5479
  GL_QUERY_RESULT: float
5480
+ """
5481
+ """
4631
5482
 
4632
5483
  GL_QUERY_RESULT_AVAILABLE: float
5484
+ """
5485
+ """
4633
5486
 
4634
5487
  GL_QUERY_WAIT: float
5488
+ """
5489
+ """
4635
5490
 
4636
5491
  GL_R11F_G11F_B10F: float
5492
+ """
5493
+ """
4637
5494
 
4638
5495
  GL_R16: float
5496
+ """
5497
+ """
4639
5498
 
4640
5499
  GL_R16F: float
5500
+ """
5501
+ """
4641
5502
 
4642
5503
  GL_R16I: float
5504
+ """
5505
+ """
4643
5506
 
4644
5507
  GL_R16UI: float
5508
+ """
5509
+ """
4645
5510
 
4646
5511
  GL_R16_SNORM: float
5512
+ """
5513
+ """
4647
5514
 
4648
5515
  GL_R32F: float
5516
+ """
5517
+ """
4649
5518
 
4650
5519
  GL_R32I: float
5520
+ """
5521
+ """
4651
5522
 
4652
5523
  GL_R32UI: float
5524
+ """
5525
+ """
4653
5526
 
4654
5527
  GL_R3_G3_B2: float
5528
+ """
5529
+ """
4655
5530
 
4656
5531
  GL_R8: float
5532
+ """
5533
+ """
4657
5534
 
4658
5535
  GL_R8I: float
5536
+ """
5537
+ """
4659
5538
 
4660
5539
  GL_R8UI: float
5540
+ """
5541
+ """
4661
5542
 
4662
5543
  GL_R8_SNORM: float
5544
+ """
5545
+ """
4663
5546
 
4664
5547
  GL_RASTERIZER_DISCARD: float
5548
+ """
5549
+ """
4665
5550
 
4666
5551
  GL_READ_BUFFER: float
5552
+ """
5553
+ """
4667
5554
 
4668
5555
  GL_READ_FRAMEBUFFER: float
5556
+ """
5557
+ """
4669
5558
 
4670
5559
  GL_READ_FRAMEBUFFER_BINDING: float
5560
+ """
5561
+ """
4671
5562
 
4672
5563
  GL_READ_ONLY: float
5564
+ """
5565
+ """
4673
5566
 
4674
5567
  GL_READ_WRITE: float
5568
+ """
5569
+ """
4675
5570
 
4676
5571
  GL_RED: float
5572
+ """
5573
+ """
4677
5574
 
4678
5575
  GL_RED_INTEGER: float
5576
+ """
5577
+ """
4679
5578
 
4680
5579
  GL_RENDERBUFFER: float
5580
+ """
5581
+ """
4681
5582
 
4682
5583
  GL_RENDERBUFFER_ALPHA_SIZE: float
5584
+ """
5585
+ """
4683
5586
 
4684
5587
  GL_RENDERBUFFER_BINDING: float
5588
+ """
5589
+ """
4685
5590
 
4686
5591
  GL_RENDERBUFFER_BLUE_SIZE: float
5592
+ """
5593
+ """
4687
5594
 
4688
5595
  GL_RENDERBUFFER_DEPTH_SIZE: float
5596
+ """
5597
+ """
4689
5598
 
4690
5599
  GL_RENDERBUFFER_GREEN_SIZE: float
5600
+ """
5601
+ """
4691
5602
 
4692
5603
  GL_RENDERBUFFER_HEIGHT: float
5604
+ """
5605
+ """
4693
5606
 
4694
5607
  GL_RENDERBUFFER_INTERNAL_FORMAT: float
5608
+ """
5609
+ """
4695
5610
 
4696
5611
  GL_RENDERBUFFER_RED_SIZE: float
5612
+ """
5613
+ """
4697
5614
 
4698
5615
  GL_RENDERBUFFER_SAMPLES: float
5616
+ """
5617
+ """
4699
5618
 
4700
5619
  GL_RENDERBUFFER_STENCIL_SIZE: float
5620
+ """
5621
+ """
4701
5622
 
4702
5623
  GL_RENDERBUFFER_WIDTH: float
5624
+ """
5625
+ """
4703
5626
 
4704
5627
  GL_RENDERER: float
5628
+ """
5629
+ """
4705
5630
 
4706
5631
  GL_REPEAT: float
5632
+ """
5633
+ """
4707
5634
 
4708
5635
  GL_REPLACE: float
5636
+ """
5637
+ """
4709
5638
 
4710
5639
  GL_RG: float
5640
+ """
5641
+ """
4711
5642
 
4712
5643
  GL_RG16: float
5644
+ """
5645
+ """
4713
5646
 
4714
5647
  GL_RG16F: float
5648
+ """
5649
+ """
4715
5650
 
4716
5651
  GL_RG16I: float
5652
+ """
5653
+ """
4717
5654
 
4718
5655
  GL_RG16UI: float
5656
+ """
5657
+ """
4719
5658
 
4720
5659
  GL_RG16_SNORM: float
5660
+ """
5661
+ """
4721
5662
 
4722
5663
  GL_RG32F: float
5664
+ """
5665
+ """
4723
5666
 
4724
5667
  GL_RG32I: float
5668
+ """
5669
+ """
4725
5670
 
4726
5671
  GL_RG32UI: float
5672
+ """
5673
+ """
4727
5674
 
4728
5675
  GL_RG8: float
5676
+ """
5677
+ """
4729
5678
 
4730
5679
  GL_RG8I: float
5680
+ """
5681
+ """
4731
5682
 
4732
5683
  GL_RG8UI: float
5684
+ """
5685
+ """
4733
5686
 
4734
5687
  GL_RG8_SNORM: float
5688
+ """
5689
+ """
4735
5690
 
4736
5691
  GL_RGB: float
5692
+ """
5693
+ """
4737
5694
 
4738
5695
  GL_RGB10: float
5696
+ """
5697
+ """
4739
5698
 
4740
5699
  GL_RGB10_A2: float
5700
+ """
5701
+ """
4741
5702
 
4742
5703
  GL_RGB10_A2UI: float
5704
+ """
5705
+ """
4743
5706
 
4744
5707
  GL_RGB12: float
5708
+ """
5709
+ """
4745
5710
 
4746
5711
  GL_RGB16: float
5712
+ """
5713
+ """
4747
5714
 
4748
5715
  GL_RGB16F: float
5716
+ """
5717
+ """
4749
5718
 
4750
5719
  GL_RGB16I: float
5720
+ """
5721
+ """
4751
5722
 
4752
5723
  GL_RGB16UI: float
5724
+ """
5725
+ """
4753
5726
 
4754
5727
  GL_RGB16_SNORM: float
5728
+ """
5729
+ """
4755
5730
 
4756
5731
  GL_RGB32F: float
5732
+ """
5733
+ """
4757
5734
 
4758
5735
  GL_RGB32I: float
5736
+ """
5737
+ """
4759
5738
 
4760
5739
  GL_RGB32UI: float
5740
+ """
5741
+ """
4761
5742
 
4762
5743
  GL_RGB4: float
5744
+ """
5745
+ """
4763
5746
 
4764
5747
  GL_RGB5: float
5748
+ """
5749
+ """
4765
5750
 
4766
5751
  GL_RGB5_A1: float
5752
+ """
5753
+ """
4767
5754
 
4768
5755
  GL_RGB8: float
5756
+ """
5757
+ """
4769
5758
 
4770
5759
  GL_RGB8I: float
5760
+ """
5761
+ """
4771
5762
 
4772
5763
  GL_RGB8UI: float
5764
+ """
5765
+ """
4773
5766
 
4774
5767
  GL_RGB8_SNORM: float
5768
+ """
5769
+ """
4775
5770
 
4776
5771
  GL_RGB9_E5: float
5772
+ """
5773
+ """
4777
5774
 
4778
5775
  GL_RGBA: float
5776
+ """
5777
+ """
4779
5778
 
4780
5779
  GL_RGBA12: float
5780
+ """
5781
+ """
4781
5782
 
4782
5783
  GL_RGBA16: float
5784
+ """
5785
+ """
4783
5786
 
4784
5787
  GL_RGBA16F: float
5788
+ """
5789
+ """
4785
5790
 
4786
5791
  GL_RGBA16I: float
5792
+ """
5793
+ """
4787
5794
 
4788
5795
  GL_RGBA16UI: float
5796
+ """
5797
+ """
4789
5798
 
4790
5799
  GL_RGBA16_SNORM: float
5800
+ """
5801
+ """
4791
5802
 
4792
5803
  GL_RGBA2: float
5804
+ """
5805
+ """
4793
5806
 
4794
5807
  GL_RGBA32F: float
5808
+ """
5809
+ """
4795
5810
 
4796
5811
  GL_RGBA32I: float
5812
+ """
5813
+ """
4797
5814
 
4798
5815
  GL_RGBA32UI: float
5816
+ """
5817
+ """
4799
5818
 
4800
5819
  GL_RGBA4: float
5820
+ """
5821
+ """
4801
5822
 
4802
5823
  GL_RGBA8: float
5824
+ """
5825
+ """
4803
5826
 
4804
5827
  GL_RGBA8I: float
5828
+ """
5829
+ """
4805
5830
 
4806
5831
  GL_RGBA8UI: float
5832
+ """
5833
+ """
4807
5834
 
4808
5835
  GL_RGBA8_SNORM: float
5836
+ """
5837
+ """
4809
5838
 
4810
5839
  GL_RGBA_INTEGER: float
5840
+ """
5841
+ """
4811
5842
 
4812
5843
  GL_RGB_INTEGER: float
5844
+ """
5845
+ """
4813
5846
 
4814
5847
  GL_RG_INTEGER: float
5848
+ """
5849
+ """
4815
5850
 
4816
5851
  GL_RIGHT: float
5852
+ """
5853
+ """
4817
5854
 
4818
5855
  GL_SAMPLER_1D: float
5856
+ """
5857
+ """
4819
5858
 
4820
5859
  GL_SAMPLER_1D_ARRAY: float
5860
+ """
5861
+ """
4821
5862
 
4822
5863
  GL_SAMPLER_1D_ARRAY_SHADOW: float
5864
+ """
5865
+ """
4823
5866
 
4824
5867
  GL_SAMPLER_1D_SHADOW: float
5868
+ """
5869
+ """
4825
5870
 
4826
5871
  GL_SAMPLER_2D: float
5872
+ """
5873
+ """
4827
5874
 
4828
5875
  GL_SAMPLER_2D_ARRAY: float
5876
+ """
5877
+ """
4829
5878
 
4830
5879
  GL_SAMPLER_2D_ARRAY_SHADOW: float
5880
+ """
5881
+ """
4831
5882
 
4832
5883
  GL_SAMPLER_2D_MULTISAMPLE: float
5884
+ """
5885
+ """
4833
5886
 
4834
5887
  GL_SAMPLER_2D_MULTISAMPLE_ARRAY: float
5888
+ """
5889
+ """
4835
5890
 
4836
5891
  GL_SAMPLER_2D_RECT: float
5892
+ """
5893
+ """
4837
5894
 
4838
5895
  GL_SAMPLER_2D_RECT_SHADOW: float
5896
+ """
5897
+ """
4839
5898
 
4840
5899
  GL_SAMPLER_2D_SHADOW: float
5900
+ """
5901
+ """
4841
5902
 
4842
5903
  GL_SAMPLER_3D: float
5904
+ """
5905
+ """
4843
5906
 
4844
5907
  GL_SAMPLER_BINDING: float
5908
+ """
5909
+ """
4845
5910
 
4846
5911
  GL_SAMPLER_BUFFER: float
5912
+ """
5913
+ """
4847
5914
 
4848
5915
  GL_SAMPLER_CUBE: float
5916
+ """
5917
+ """
4849
5918
 
4850
5919
  GL_SAMPLER_CUBE_SHADOW: float
5920
+ """
5921
+ """
4851
5922
 
4852
5923
  GL_SAMPLES: float
5924
+ """
5925
+ """
4853
5926
 
4854
5927
  GL_SAMPLES_PASSED: float
5928
+ """
5929
+ """
4855
5930
 
4856
5931
  GL_SAMPLE_ALPHA_TO_COVERAGE: float
5932
+ """
5933
+ """
4857
5934
 
4858
5935
  GL_SAMPLE_ALPHA_TO_ONE: float
5936
+ """
5937
+ """
4859
5938
 
4860
5939
  GL_SAMPLE_BUFFERS: float
5940
+ """
5941
+ """
4861
5942
 
4862
5943
  GL_SAMPLE_COVERAGE: float
5944
+ """
5945
+ """
4863
5946
 
4864
5947
  GL_SAMPLE_COVERAGE_INVERT: float
5948
+ """
5949
+ """
4865
5950
 
4866
5951
  GL_SAMPLE_COVERAGE_VALUE: float
5952
+ """
5953
+ """
4867
5954
 
4868
5955
  GL_SAMPLE_MASK: float
5956
+ """
5957
+ """
4869
5958
 
4870
5959
  GL_SAMPLE_MASK_VALUE: float
5960
+ """
5961
+ """
4871
5962
 
4872
5963
  GL_SAMPLE_POSITION: float
5964
+ """
5965
+ """
4873
5966
 
4874
5967
  GL_SCISSOR_BOX: float
5968
+ """
5969
+ """
4875
5970
 
4876
5971
  GL_SCISSOR_TEST: float
5972
+ """
5973
+ """
4877
5974
 
4878
5975
  GL_SEPARATE_ATTRIBS: float
5976
+ """
5977
+ """
4879
5978
 
4880
5979
  GL_SET: float
5980
+ """
5981
+ """
4881
5982
 
4882
5983
  GL_SHADER_SOURCE_LENGTH: float
5984
+ """
5985
+ """
4883
5986
 
4884
5987
  GL_SHADER_TYPE: float
5988
+ """
5989
+ """
4885
5990
 
4886
5991
  GL_SHADING_LANGUAGE_VERSION: float
5992
+ """
5993
+ """
4887
5994
 
4888
5995
  GL_SHORT: float
5996
+ """
5997
+ """
4889
5998
 
4890
5999
  GL_SIGNALED: float
6000
+ """
6001
+ """
4891
6002
 
4892
6003
  GL_SIGNED_NORMALIZED: float
6004
+ """
6005
+ """
4893
6006
 
4894
6007
  GL_SMOOTH_LINE_WIDTH_GRANULARITY: float
6008
+ """
6009
+ """
4895
6010
 
4896
6011
  GL_SMOOTH_LINE_WIDTH_RANGE: float
6012
+ """
6013
+ """
4897
6014
 
4898
6015
  GL_SMOOTH_POINT_SIZE_GRANULARITY: float
6016
+ """
6017
+ """
4899
6018
 
4900
6019
  GL_SMOOTH_POINT_SIZE_RANGE: float
6020
+ """
6021
+ """
4901
6022
 
4902
6023
  GL_SRC1_COLOR: float
6024
+ """
6025
+ """
4903
6026
 
4904
6027
  GL_SRC_ALPHA: float
6028
+ """
6029
+ """
4905
6030
 
4906
6031
  GL_SRC_ALPHA_SATURATE: float
6032
+ """
6033
+ """
4907
6034
 
4908
6035
  GL_SRC_COLOR: float
6036
+ """
6037
+ """
4909
6038
 
4910
6039
  GL_SRGB: float
6040
+ """
6041
+ """
4911
6042
 
4912
6043
  GL_SRGB8: float
6044
+ """
6045
+ """
4913
6046
 
4914
6047
  GL_SRGB8_ALPHA8: float
6048
+ """
6049
+ """
4915
6050
 
4916
6051
  GL_SRGB_ALPHA: float
6052
+ """
6053
+ """
4917
6054
 
4918
6055
  GL_STATIC_COPY: float
6056
+ """
6057
+ """
4919
6058
 
4920
6059
  GL_STATIC_DRAW: float
6060
+ """
6061
+ """
4921
6062
 
4922
6063
  GL_STATIC_READ: float
6064
+ """
6065
+ """
4923
6066
 
4924
6067
  GL_STENCIL: float
6068
+ """
6069
+ """
4925
6070
 
4926
6071
  GL_STENCIL_ATTACHMENT: float
6072
+ """
6073
+ """
4927
6074
 
4928
6075
  GL_STENCIL_BACK_FAIL: float
6076
+ """
6077
+ """
4929
6078
 
4930
6079
  GL_STENCIL_BACK_FUNC: float
6080
+ """
6081
+ """
4931
6082
 
4932
6083
  GL_STENCIL_BACK_PASS_DEPTH_FAIL: float
6084
+ """
6085
+ """
4933
6086
 
4934
6087
  GL_STENCIL_BACK_PASS_DEPTH_PASS: float
6088
+ """
6089
+ """
4935
6090
 
4936
6091
  GL_STENCIL_BACK_REF: float
6092
+ """
6093
+ """
4937
6094
 
4938
6095
  GL_STENCIL_BACK_VALUE_MASK: float
6096
+ """
6097
+ """
4939
6098
 
4940
6099
  GL_STENCIL_BACK_WRITEMASK: float
6100
+ """
6101
+ """
4941
6102
 
4942
6103
  GL_STENCIL_BUFFER_BIT: float
6104
+ """
6105
+ """
4943
6106
 
4944
6107
  GL_STENCIL_CLEAR_VALUE: float
6108
+ """
6109
+ """
4945
6110
 
4946
6111
  GL_STENCIL_FAIL: float
6112
+ """
6113
+ """
4947
6114
 
4948
6115
  GL_STENCIL_FUNC: float
6116
+ """
6117
+ """
4949
6118
 
4950
6119
  GL_STENCIL_INDEX: float
6120
+ """
6121
+ """
4951
6122
 
4952
6123
  GL_STENCIL_INDEX1: float
6124
+ """
6125
+ """
4953
6126
 
4954
6127
  GL_STENCIL_INDEX16: float
6128
+ """
6129
+ """
4955
6130
 
4956
6131
  GL_STENCIL_INDEX4: float
6132
+ """
6133
+ """
4957
6134
 
4958
6135
  GL_STENCIL_INDEX8: float
6136
+ """
6137
+ """
4959
6138
 
4960
6139
  GL_STENCIL_PASS_DEPTH_FAIL: float
6140
+ """
6141
+ """
4961
6142
 
4962
6143
  GL_STENCIL_PASS_DEPTH_PASS: float
6144
+ """
6145
+ """
4963
6146
 
4964
6147
  GL_STENCIL_REF: float
6148
+ """
6149
+ """
4965
6150
 
4966
6151
  GL_STENCIL_TEST: float
6152
+ """
6153
+ """
4967
6154
 
4968
6155
  GL_STENCIL_VALUE_MASK: float
6156
+ """
6157
+ """
4969
6158
 
4970
6159
  GL_STENCIL_WRITEMASK: float
6160
+ """
6161
+ """
4971
6162
 
4972
6163
  GL_STEREO: float
6164
+ """
6165
+ """
4973
6166
 
4974
6167
  GL_STREAM_COPY: float
6168
+ """
6169
+ """
4975
6170
 
4976
6171
  GL_STREAM_DRAW: float
6172
+ """
6173
+ """
4977
6174
 
4978
6175
  GL_STREAM_READ: float
6176
+ """
6177
+ """
4979
6178
 
4980
6179
  GL_SUBPIXEL_BITS: float
6180
+ """
6181
+ """
4981
6182
 
4982
6183
  GL_SYNC_CONDITION: float
6184
+ """
6185
+ """
4983
6186
 
4984
6187
  GL_SYNC_FENCE: float
6188
+ """
6189
+ """
4985
6190
 
4986
6191
  GL_SYNC_FLAGS: float
6192
+ """
6193
+ """
4987
6194
 
4988
6195
  GL_SYNC_FLUSH_COMMANDS_BIT: float
6196
+ """
6197
+ """
4989
6198
 
4990
6199
  GL_SYNC_GPU_COMMANDS_COMPLETE: float
6200
+ """
6201
+ """
4991
6202
 
4992
6203
  GL_SYNC_STATUS: float
6204
+ """
6205
+ """
4993
6206
 
4994
6207
  GL_TEXTURE: float
6208
+ """
6209
+ """
4995
6210
 
4996
6211
  GL_TEXTURE0: float
6212
+ """
6213
+ """
4997
6214
 
4998
6215
  GL_TEXTURE1: float
6216
+ """
6217
+ """
4999
6218
 
5000
6219
  GL_TEXTURE10: float
6220
+ """
6221
+ """
5001
6222
 
5002
6223
  GL_TEXTURE11: float
6224
+ """
6225
+ """
5003
6226
 
5004
6227
  GL_TEXTURE12: float
6228
+ """
6229
+ """
5005
6230
 
5006
6231
  GL_TEXTURE13: float
6232
+ """
6233
+ """
5007
6234
 
5008
6235
  GL_TEXTURE14: float
6236
+ """
6237
+ """
5009
6238
 
5010
6239
  GL_TEXTURE15: float
6240
+ """
6241
+ """
5011
6242
 
5012
6243
  GL_TEXTURE16: float
6244
+ """
6245
+ """
5013
6246
 
5014
6247
  GL_TEXTURE17: float
6248
+ """
6249
+ """
5015
6250
 
5016
6251
  GL_TEXTURE18: float
6252
+ """
6253
+ """
5017
6254
 
5018
6255
  GL_TEXTURE19: float
6256
+ """
6257
+ """
5019
6258
 
5020
6259
  GL_TEXTURE2: float
6260
+ """
6261
+ """
5021
6262
 
5022
6263
  GL_TEXTURE20: float
6264
+ """
6265
+ """
5023
6266
 
5024
6267
  GL_TEXTURE21: float
6268
+ """
6269
+ """
5025
6270
 
5026
6271
  GL_TEXTURE22: float
6272
+ """
6273
+ """
5027
6274
 
5028
6275
  GL_TEXTURE23: float
6276
+ """
6277
+ """
5029
6278
 
5030
6279
  GL_TEXTURE24: float
6280
+ """
6281
+ """
5031
6282
 
5032
6283
  GL_TEXTURE25: float
6284
+ """
6285
+ """
5033
6286
 
5034
6287
  GL_TEXTURE26: float
6288
+ """
6289
+ """
5035
6290
 
5036
6291
  GL_TEXTURE27: float
6292
+ """
6293
+ """
5037
6294
 
5038
6295
  GL_TEXTURE28: float
6296
+ """
6297
+ """
5039
6298
 
5040
6299
  GL_TEXTURE29: float
6300
+ """
6301
+ """
5041
6302
 
5042
6303
  GL_TEXTURE3: float
6304
+ """
6305
+ """
5043
6306
 
5044
6307
  GL_TEXTURE30: float
6308
+ """
6309
+ """
5045
6310
 
5046
6311
  GL_TEXTURE31: float
6312
+ """
6313
+ """
5047
6314
 
5048
6315
  GL_TEXTURE4: float
6316
+ """
6317
+ """
5049
6318
 
5050
6319
  GL_TEXTURE5: float
6320
+ """
6321
+ """
5051
6322
 
5052
6323
  GL_TEXTURE6: float
6324
+ """
6325
+ """
5053
6326
 
5054
6327
  GL_TEXTURE7: float
6328
+ """
6329
+ """
5055
6330
 
5056
6331
  GL_TEXTURE8: float
6332
+ """
6333
+ """
5057
6334
 
5058
6335
  GL_TEXTURE9: float
6336
+ """
6337
+ """
5059
6338
 
5060
6339
  GL_TEXTURE_1D: float
6340
+ """
6341
+ """
5061
6342
 
5062
6343
  GL_TEXTURE_1D_ARRAY: float
6344
+ """
6345
+ """
5063
6346
 
5064
6347
  GL_TEXTURE_2D: float
6348
+ """
6349
+ """
5065
6350
 
5066
6351
  GL_TEXTURE_2D_ARRAY: float
6352
+ """
6353
+ """
5067
6354
 
5068
6355
  GL_TEXTURE_2D_MULTISAMPLE: float
6356
+ """
6357
+ """
5069
6358
 
5070
6359
  GL_TEXTURE_2D_MULTISAMPLE_ARRAY: float
6360
+ """
6361
+ """
5071
6362
 
5072
6363
  GL_TEXTURE_3D: float
6364
+ """
6365
+ """
5073
6366
 
5074
6367
  GL_TEXTURE_ALPHA_SIZE: float
6368
+ """
6369
+ """
5075
6370
 
5076
6371
  GL_TEXTURE_ALPHA_TYPE: float
6372
+ """
6373
+ """
5077
6374
 
5078
6375
  GL_TEXTURE_BASE_LEVEL: float
6376
+ """
6377
+ """
5079
6378
 
5080
6379
  GL_TEXTURE_BINDING_1D: float
6380
+ """
6381
+ """
5081
6382
 
5082
6383
  GL_TEXTURE_BINDING_1D_ARRAY: float
6384
+ """
6385
+ """
5083
6386
 
5084
6387
  GL_TEXTURE_BINDING_2D: float
6388
+ """
6389
+ """
5085
6390
 
5086
6391
  GL_TEXTURE_BINDING_2D_ARRAY: float
6392
+ """
6393
+ """
5087
6394
 
5088
6395
  GL_TEXTURE_BINDING_2D_MULTISAMPLE: float
6396
+ """
6397
+ """
5089
6398
 
5090
6399
  GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY: float
6400
+ """
6401
+ """
5091
6402
 
5092
6403
  GL_TEXTURE_BINDING_3D: float
6404
+ """
6405
+ """
5093
6406
 
5094
6407
  GL_TEXTURE_BINDING_BUFFER: float
6408
+ """
6409
+ """
5095
6410
 
5096
6411
  GL_TEXTURE_BINDING_CUBE_MAP: float
6412
+ """
6413
+ """
5097
6414
 
5098
6415
  GL_TEXTURE_BINDING_RECTANGLE: float
6416
+ """
6417
+ """
5099
6418
 
5100
6419
  GL_TEXTURE_BLUE_SIZE: float
6420
+ """
6421
+ """
5101
6422
 
5102
6423
  GL_TEXTURE_BLUE_TYPE: float
6424
+ """
6425
+ """
5103
6426
 
5104
6427
  GL_TEXTURE_BORDER_COLOR: float
6428
+ """
6429
+ """
5105
6430
 
5106
6431
  GL_TEXTURE_BUFFER: float
6432
+ """
6433
+ """
5107
6434
 
5108
6435
  GL_TEXTURE_BUFFER_DATA_STORE_BINDING: float
6436
+ """
6437
+ """
5109
6438
 
5110
6439
  GL_TEXTURE_COMPARE_FUNC: float
6440
+ """
6441
+ """
5111
6442
 
5112
6443
  GL_TEXTURE_COMPARE_MODE: float
6444
+ """
6445
+ """
5113
6446
 
5114
6447
  GL_TEXTURE_COMPRESSED: float
6448
+ """
6449
+ """
5115
6450
 
5116
6451
  GL_TEXTURE_COMPRESSED_IMAGE_SIZE: float
6452
+ """
6453
+ """
5117
6454
 
5118
6455
  GL_TEXTURE_COMPRESSION_HINT: float
6456
+ """
6457
+ """
5119
6458
 
5120
6459
  GL_TEXTURE_CUBE_MAP: float
6460
+ """
6461
+ """
5121
6462
 
5122
6463
  GL_TEXTURE_CUBE_MAP_NEGATIVE_X: float
6464
+ """
6465
+ """
5123
6466
 
5124
6467
  GL_TEXTURE_CUBE_MAP_NEGATIVE_Y: float
6468
+ """
6469
+ """
5125
6470
 
5126
6471
  GL_TEXTURE_CUBE_MAP_NEGATIVE_Z: float
6472
+ """
6473
+ """
5127
6474
 
5128
6475
  GL_TEXTURE_CUBE_MAP_POSITIVE_X: float
6476
+ """
6477
+ """
5129
6478
 
5130
6479
  GL_TEXTURE_CUBE_MAP_POSITIVE_Y: float
6480
+ """
6481
+ """
5131
6482
 
5132
6483
  GL_TEXTURE_CUBE_MAP_POSITIVE_Z: float
6484
+ """
6485
+ """
5133
6486
 
5134
6487
  GL_TEXTURE_CUBE_MAP_SEAMLESS: float
6488
+ """
6489
+ """
5135
6490
 
5136
6491
  GL_TEXTURE_DEPTH: float
6492
+ """
6493
+ """
5137
6494
 
5138
6495
  GL_TEXTURE_DEPTH_SIZE: float
6496
+ """
6497
+ """
5139
6498
 
5140
6499
  GL_TEXTURE_DEPTH_TYPE: float
6500
+ """
6501
+ """
5141
6502
 
5142
6503
  GL_TEXTURE_FIXED_SAMPLE_LOCATIONS: float
6504
+ """
6505
+ """
5143
6506
 
5144
6507
  GL_TEXTURE_GREEN_SIZE: float
6508
+ """
6509
+ """
5145
6510
 
5146
6511
  GL_TEXTURE_GREEN_TYPE: float
6512
+ """
6513
+ """
5147
6514
 
5148
6515
  GL_TEXTURE_HEIGHT: float
6516
+ """
6517
+ """
5149
6518
 
5150
6519
  GL_TEXTURE_INTERNAL_FORMAT: float
6520
+ """
6521
+ """
5151
6522
 
5152
6523
  GL_TEXTURE_LOD_BIAS: float
6524
+ """
6525
+ """
5153
6526
 
5154
6527
  GL_TEXTURE_MAG_FILTER: float
6528
+ """
6529
+ """
5155
6530
 
5156
6531
  GL_TEXTURE_MAX_LEVEL: float
6532
+ """
6533
+ """
5157
6534
 
5158
6535
  GL_TEXTURE_MAX_LOD: float
6536
+ """
6537
+ """
5159
6538
 
5160
6539
  GL_TEXTURE_MIN_FILTER: float
6540
+ """
6541
+ """
5161
6542
 
5162
6543
  GL_TEXTURE_MIN_LOD: float
6544
+ """
6545
+ """
5163
6546
 
5164
6547
  GL_TEXTURE_RECTANGLE: float
6548
+ """
6549
+ """
5165
6550
 
5166
6551
  GL_TEXTURE_RED_SIZE: float
6552
+ """
6553
+ """
5167
6554
 
5168
6555
  GL_TEXTURE_RED_TYPE: float
6556
+ """
6557
+ """
5169
6558
 
5170
6559
  GL_TEXTURE_SAMPLES: float
6560
+ """
6561
+ """
5171
6562
 
5172
6563
  GL_TEXTURE_SHARED_SIZE: float
6564
+ """
6565
+ """
5173
6566
 
5174
6567
  GL_TEXTURE_STENCIL_SIZE: float
6568
+ """
6569
+ """
5175
6570
 
5176
6571
  GL_TEXTURE_SWIZZLE_A: float
6572
+ """
6573
+ """
5177
6574
 
5178
6575
  GL_TEXTURE_SWIZZLE_B: float
6576
+ """
6577
+ """
5179
6578
 
5180
6579
  GL_TEXTURE_SWIZZLE_G: float
6580
+ """
6581
+ """
5181
6582
 
5182
6583
  GL_TEXTURE_SWIZZLE_R: float
6584
+ """
6585
+ """
5183
6586
 
5184
6587
  GL_TEXTURE_SWIZZLE_RGBA: float
6588
+ """
6589
+ """
5185
6590
 
5186
6591
  GL_TEXTURE_WIDTH: float
6592
+ """
6593
+ """
5187
6594
 
5188
6595
  GL_TEXTURE_WRAP_R: float
6596
+ """
6597
+ """
5189
6598
 
5190
6599
  GL_TEXTURE_WRAP_S: float
6600
+ """
6601
+ """
5191
6602
 
5192
6603
  GL_TEXTURE_WRAP_T: float
6604
+ """
6605
+ """
5193
6606
 
5194
6607
  GL_TIMEOUT_EXPIRED: float
6608
+ """
6609
+ """
5195
6610
 
5196
6611
  GL_TIMEOUT_IGNORED: float
6612
+ """
6613
+ """
5197
6614
 
5198
6615
  GL_TIMESTAMP: float
6616
+ """
6617
+ """
5199
6618
 
5200
6619
  GL_TIME_ELAPSED: float
6620
+ """
6621
+ """
5201
6622
 
5202
6623
  GL_TRANSFORM_FEEDBACK_BUFFER: float
6624
+ """
6625
+ """
5203
6626
 
5204
6627
  GL_TRANSFORM_FEEDBACK_BUFFER_BINDING: float
6628
+ """
6629
+ """
5205
6630
 
5206
6631
  GL_TRANSFORM_FEEDBACK_BUFFER_MODE: float
6632
+ """
6633
+ """
5207
6634
 
5208
6635
  GL_TRANSFORM_FEEDBACK_BUFFER_SIZE: float
6636
+ """
6637
+ """
5209
6638
 
5210
6639
  GL_TRANSFORM_FEEDBACK_BUFFER_START: float
6640
+ """
6641
+ """
5211
6642
 
5212
6643
  GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: float
6644
+ """
6645
+ """
5213
6646
 
5214
6647
  GL_TRANSFORM_FEEDBACK_VARYINGS: float
6648
+ """
6649
+ """
5215
6650
 
5216
6651
  GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH: float
6652
+ """
6653
+ """
5217
6654
 
5218
6655
  GL_TRIANGLES: float
6656
+ """
6657
+ """
5219
6658
 
5220
6659
  GL_TRIANGLES_ADJACENCY: float
6660
+ """
6661
+ """
5221
6662
 
5222
6663
  GL_TRIANGLE_FAN: float
6664
+ """
6665
+ """
5223
6666
 
5224
6667
  GL_TRIANGLE_STRIP: float
6668
+ """
6669
+ """
5225
6670
 
5226
6671
  GL_TRIANGLE_STRIP_ADJACENCY: float
6672
+ """
6673
+ """
5227
6674
 
5228
6675
  GL_TRUE: float
6676
+ """
6677
+ """
5229
6678
 
5230
6679
  GL_UNIFORM_ARRAY_STRIDE: float
6680
+ """
6681
+ """
5231
6682
 
5232
6683
  GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS: float
6684
+ """
6685
+ """
5233
6686
 
5234
6687
  GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: float
6688
+ """
6689
+ """
5235
6690
 
5236
6691
  GL_UNIFORM_BLOCK_BINDING: float
6692
+ """
6693
+ """
5237
6694
 
5238
6695
  GL_UNIFORM_BLOCK_DATA_SIZE: float
6696
+ """
6697
+ """
5239
6698
 
5240
6699
  GL_UNIFORM_BLOCK_INDEX: float
6700
+ """
6701
+ """
5241
6702
 
5242
6703
  GL_UNIFORM_BLOCK_NAME_LENGTH: float
6704
+ """
6705
+ """
5243
6706
 
5244
6707
  GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: float
6708
+ """
6709
+ """
5245
6710
 
5246
6711
  GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER: float
6712
+ """
6713
+ """
5247
6714
 
5248
6715
  GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: float
6716
+ """
6717
+ """
5249
6718
 
5250
6719
  GL_UNIFORM_BUFFER: float
6720
+ """
6721
+ """
5251
6722
 
5252
6723
  GL_UNIFORM_BUFFER_BINDING: float
6724
+ """
6725
+ """
5253
6726
 
5254
6727
  GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT: float
6728
+ """
6729
+ """
5255
6730
 
5256
6731
  GL_UNIFORM_BUFFER_SIZE: float
6732
+ """
6733
+ """
5257
6734
 
5258
6735
  GL_UNIFORM_BUFFER_START: float
6736
+ """
6737
+ """
5259
6738
 
5260
6739
  GL_UNIFORM_IS_ROW_MAJOR: float
6740
+ """
6741
+ """
5261
6742
 
5262
6743
  GL_UNIFORM_MATRIX_STRIDE: float
6744
+ """
6745
+ """
5263
6746
 
5264
6747
  GL_UNIFORM_NAME_LENGTH: float
6748
+ """
6749
+ """
5265
6750
 
5266
6751
  GL_UNIFORM_OFFSET: float
6752
+ """
6753
+ """
5267
6754
 
5268
6755
  GL_UNIFORM_SIZE: float
6756
+ """
6757
+ """
5269
6758
 
5270
6759
  GL_UNIFORM_TYPE: float
6760
+ """
6761
+ """
5271
6762
 
5272
6763
  GL_UNPACK_ALIGNMENT: float
6764
+ """
6765
+ """
5273
6766
 
5274
6767
  GL_UNPACK_IMAGE_HEIGHT: float
6768
+ """
6769
+ """
5275
6770
 
5276
6771
  GL_UNPACK_LSB_FIRST: float
6772
+ """
6773
+ """
5277
6774
 
5278
6775
  GL_UNPACK_ROW_LENGTH: float
6776
+ """
6777
+ """
5279
6778
 
5280
6779
  GL_UNPACK_SKIP_IMAGES: float
6780
+ """
6781
+ """
5281
6782
 
5282
6783
  GL_UNPACK_SKIP_PIXELS: float
6784
+ """
6785
+ """
5283
6786
 
5284
6787
  GL_UNPACK_SKIP_ROWS: float
6788
+ """
6789
+ """
5285
6790
 
5286
6791
  GL_UNPACK_SWAP_BYTES: float
6792
+ """
6793
+ """
5287
6794
 
5288
6795
  GL_UNSIGNALED: float
6796
+ """
6797
+ """
5289
6798
 
5290
6799
  GL_UNSIGNED_BYTE: float
6800
+ """
6801
+ """
5291
6802
 
5292
6803
  GL_UNSIGNED_BYTE_2_3_3_REV: float
6804
+ """
6805
+ """
5293
6806
 
5294
6807
  GL_UNSIGNED_BYTE_3_3_2: float
6808
+ """
6809
+ """
5295
6810
 
5296
6811
  GL_UNSIGNED_INT: float
6812
+ """
6813
+ """
5297
6814
 
5298
6815
  GL_UNSIGNED_INT_10F_11F_11F_REV: float
6816
+ """
6817
+ """
5299
6818
 
5300
6819
  GL_UNSIGNED_INT_10_10_10_2: float
6820
+ """
6821
+ """
5301
6822
 
5302
6823
  GL_UNSIGNED_INT_24_8: float
6824
+ """
6825
+ """
5303
6826
 
5304
6827
  GL_UNSIGNED_INT_2_10_10_10_REV: float
6828
+ """
6829
+ """
5305
6830
 
5306
6831
  GL_UNSIGNED_INT_5_9_9_9_REV: float
6832
+ """
6833
+ """
5307
6834
 
5308
6835
  GL_UNSIGNED_INT_8_8_8_8: float
6836
+ """
6837
+ """
5309
6838
 
5310
6839
  GL_UNSIGNED_INT_8_8_8_8_REV: float
6840
+ """
6841
+ """
5311
6842
 
5312
6843
  GL_UNSIGNED_INT_SAMPLER_1D: float
6844
+ """
6845
+ """
5313
6846
 
5314
6847
  GL_UNSIGNED_INT_SAMPLER_1D_ARRAY: float
6848
+ """
6849
+ """
5315
6850
 
5316
6851
  GL_UNSIGNED_INT_SAMPLER_2D: float
6852
+ """
6853
+ """
5317
6854
 
5318
6855
  GL_UNSIGNED_INT_SAMPLER_2D_ARRAY: float
6856
+ """
6857
+ """
5319
6858
 
5320
6859
  GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE: float
6860
+ """
6861
+ """
5321
6862
 
5322
6863
  GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY: float
6864
+ """
6865
+ """
5323
6866
 
5324
6867
  GL_UNSIGNED_INT_SAMPLER_2D_RECT: float
6868
+ """
6869
+ """
5325
6870
 
5326
6871
  GL_UNSIGNED_INT_SAMPLER_3D: float
6872
+ """
6873
+ """
5327
6874
 
5328
6875
  GL_UNSIGNED_INT_SAMPLER_BUFFER: float
6876
+ """
6877
+ """
5329
6878
 
5330
6879
  GL_UNSIGNED_INT_SAMPLER_CUBE: float
6880
+ """
6881
+ """
5331
6882
 
5332
6883
  GL_UNSIGNED_INT_VEC2: float
6884
+ """
6885
+ """
5333
6886
 
5334
6887
  GL_UNSIGNED_INT_VEC3: float
6888
+ """
6889
+ """
5335
6890
 
5336
6891
  GL_UNSIGNED_INT_VEC4: float
6892
+ """
6893
+ """
5337
6894
 
5338
6895
  GL_UNSIGNED_NORMALIZED: float
6896
+ """
6897
+ """
5339
6898
 
5340
6899
  GL_UNSIGNED_SHORT: float
6900
+ """
6901
+ """
5341
6902
 
5342
6903
  GL_UNSIGNED_SHORT_1_5_5_5_REV: float
6904
+ """
6905
+ """
5343
6906
 
5344
6907
  GL_UNSIGNED_SHORT_4_4_4_4: float
6908
+ """
6909
+ """
5345
6910
 
5346
6911
  GL_UNSIGNED_SHORT_4_4_4_4_REV: float
6912
+ """
6913
+ """
5347
6914
 
5348
6915
  GL_UNSIGNED_SHORT_5_5_5_1: float
6916
+ """
6917
+ """
5349
6918
 
5350
6919
  GL_UNSIGNED_SHORT_5_6_5: float
6920
+ """
6921
+ """
5351
6922
 
5352
6923
  GL_UNSIGNED_SHORT_5_6_5_REV: float
6924
+ """
6925
+ """
5353
6926
 
5354
6927
  GL_UPPER_LEFT: float
6928
+ """
6929
+ """
5355
6930
 
5356
6931
  GL_VALIDATE_STATUS: float
6932
+ """
6933
+ """
5357
6934
 
5358
6935
  GL_VENDOR: float
6936
+ """
6937
+ """
5359
6938
 
5360
6939
  GL_VERSION: float
6940
+ """
6941
+ """
5361
6942
 
5362
6943
  GL_VERTEX_ARRAY_BINDING: float
6944
+ """
6945
+ """
5363
6946
 
5364
6947
  GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: float
6948
+ """
6949
+ """
5365
6950
 
5366
6951
  GL_VERTEX_ATTRIB_ARRAY_DIVISOR: float
6952
+ """
6953
+ """
5367
6954
 
5368
6955
  GL_VERTEX_ATTRIB_ARRAY_ENABLED: float
6956
+ """
6957
+ """
5369
6958
 
5370
6959
  GL_VERTEX_ATTRIB_ARRAY_INTEGER: float
6960
+ """
6961
+ """
5371
6962
 
5372
6963
  GL_VERTEX_ATTRIB_ARRAY_NORMALIZED: float
6964
+ """
6965
+ """
5373
6966
 
5374
6967
  GL_VERTEX_ATTRIB_ARRAY_POINTER: float
6968
+ """
6969
+ """
5375
6970
 
5376
6971
  GL_VERTEX_ATTRIB_ARRAY_SIZE: float
6972
+ """
6973
+ """
5377
6974
 
5378
6975
  GL_VERTEX_ATTRIB_ARRAY_STRIDE: float
6976
+ """
6977
+ """
5379
6978
 
5380
6979
  GL_VERTEX_ATTRIB_ARRAY_TYPE: float
6980
+ """
6981
+ """
5381
6982
 
5382
6983
  GL_VERTEX_PROGRAM_POINT_SIZE: float
6984
+ """
6985
+ """
5383
6986
 
5384
6987
  GL_VERTEX_SHADER: float
6988
+ """
6989
+ """
5385
6990
 
5386
6991
  GL_VIEWPORT: float
6992
+ """
6993
+ """
5387
6994
 
5388
6995
  GL_WAIT_FAILED: float
6996
+ """
6997
+ """
5389
6998
 
5390
6999
  GL_WRITE_ONLY: float
7000
+ """
7001
+ """
5391
7002
 
5392
7003
  GL_XOR: float
7004
+ """
7005
+ """
5393
7006
 
5394
7007
  GL_ZERO: float
7008
+ """
7009
+ """