fake-bpy-module 20250612__py3-none-any.whl → 20260118__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.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bgl/__init__.pyi
DELETED
|
@@ -1,4256 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
[WARNING]
|
|
3
|
-
This module is deprecated and will be removed in a future release,
|
|
4
|
-
when OpenGL is replaced by Metal and Vulkan.
|
|
5
|
-
Use the graphics API independent gpu module instead.
|
|
6
|
-
|
|
7
|
-
This module wraps OpenGL constants and functions, making them available from
|
|
8
|
-
within Blender Python.
|
|
9
|
-
|
|
10
|
-
The complete list can be retrieved from the module itself, by listing its
|
|
11
|
-
contents: dir(bgl). A simple search on the web can point to more
|
|
12
|
-
than enough material to teach OpenGL programming, from books to many
|
|
13
|
-
collections of tutorials.
|
|
14
|
-
|
|
15
|
-
Here is a comprehensive list of books (non free).
|
|
16
|
-
Learn OpenGL is one of the best resources to learn modern OpenGL and
|
|
17
|
-
opengl-tutorial.org offers a set of extensive examples,
|
|
18
|
-
including advanced features.
|
|
19
|
-
|
|
20
|
-
[NOTE]
|
|
21
|
-
You can use the bpy.types.Image type to load and set textures.
|
|
22
|
-
See bpy.types.Image.gl_load and bpy.types.Image.gl_free,
|
|
23
|
-
for example.
|
|
24
|
-
|
|
25
|
-
"""
|
|
26
|
-
|
|
27
|
-
import typing
|
|
28
|
-
import collections.abc
|
|
29
|
-
import typing_extensions
|
|
30
|
-
import numpy.typing as npt
|
|
31
|
-
|
|
32
|
-
class Buffer:
|
|
33
|
-
"""The Buffer object is simply a block of memory that is delineated and initialized by the
|
|
34
|
-
user. Many OpenGL functions return data to a C-style pointer, however, because this
|
|
35
|
-
is not possible in python the Buffer object can be used to this end. Wherever pointer
|
|
36
|
-
notation is used in the OpenGL functions the Buffer object can be used in it's bgl
|
|
37
|
-
wrapper. In some instances the Buffer object will need to be initialized with the template
|
|
38
|
-
parameter, while in other instances the user will want to create just a blank buffer
|
|
39
|
-
which will be zeroed by default.
|
|
40
|
-
"""
|
|
41
|
-
|
|
42
|
-
dimensions: typing.Any
|
|
43
|
-
""" The number of dimensions of the Buffer."""
|
|
44
|
-
|
|
45
|
-
def to_list(self) -> None:
|
|
46
|
-
"""The contents of the Buffer as a python list."""
|
|
47
|
-
|
|
48
|
-
def __init__(self, type: int, dimensions, template=None) -> None:
|
|
49
|
-
"""This will create a new Buffer object for use with other bgl OpenGL commands.
|
|
50
|
-
Only the type of argument to store in the buffer and the dimensions of the buffer
|
|
51
|
-
are necessary. Buffers are zeroed by default unless a template is supplied, in
|
|
52
|
-
which case the buffer is initialized to the template.
|
|
53
|
-
|
|
54
|
-
:param type: The format to store data in. The type should be one of
|
|
55
|
-
GL_BYTE, GL_SHORT, GL_INT, or GL_FLOAT.
|
|
56
|
-
:type type: int
|
|
57
|
-
:param dimensions: If the dimensions are specified as an int a linear array will
|
|
58
|
-
be created for the buffer. If a sequence is passed for the dimensions, the buffer
|
|
59
|
-
becomes n-Dimensional, where n is equal to the number of parameters passed in the
|
|
60
|
-
sequence. Example: [256,2] is a two- dimensional buffer while [256,256,4] creates
|
|
61
|
-
a three- dimensional buffer. You can think of each additional dimension as a sub-item
|
|
62
|
-
of the dimension to the left. i.e. [10,2] is a 10 element array each with 2 sub-items.
|
|
63
|
-
[(0,0), (0,1), (1,0), (1,1), (2,0), ...] etc.
|
|
64
|
-
:param template: A sequence of matching dimensions which will be used to initialize
|
|
65
|
-
the Buffer. If a template is not passed in all fields will be initialized to 0.
|
|
66
|
-
:return: The newly created buffer as a PyObject.
|
|
67
|
-
"""
|
|
68
|
-
|
|
69
|
-
def glActiveTexture(texture: int) -> None:
|
|
70
|
-
"""Select active texture unit.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glActiveTexture.xhtml>`__
|
|
71
|
-
|
|
72
|
-
:param texture: Constant in GL_TEXTURE0 0 - 8
|
|
73
|
-
:type texture: int
|
|
74
|
-
"""
|
|
75
|
-
|
|
76
|
-
def glAttachShader(program: int, shader: int) -> None:
|
|
77
|
-
"""Attaches a shader object to a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glAttachShader.xhtml>`__
|
|
78
|
-
|
|
79
|
-
:param program: Specifies the program object to which a shader object will be attached.
|
|
80
|
-
:type program: int
|
|
81
|
-
:param shader: Specifies the shader object that is to be attached.
|
|
82
|
-
:type shader: int
|
|
83
|
-
"""
|
|
84
|
-
|
|
85
|
-
def glBeginQuery(p0: int, p1: int) -> None:
|
|
86
|
-
"""
|
|
87
|
-
|
|
88
|
-
:type p0: int
|
|
89
|
-
:type p1: int
|
|
90
|
-
"""
|
|
91
|
-
|
|
92
|
-
def glBindAttribLocation(p0: int, p1: int, p2: str) -> None:
|
|
93
|
-
"""
|
|
94
|
-
|
|
95
|
-
:type p0: int
|
|
96
|
-
:type p1: int
|
|
97
|
-
:type p2: str
|
|
98
|
-
"""
|
|
99
|
-
|
|
100
|
-
def glBindBuffer(p0: int, p1: int) -> None:
|
|
101
|
-
"""
|
|
102
|
-
|
|
103
|
-
:type p0: int
|
|
104
|
-
:type p1: int
|
|
105
|
-
"""
|
|
106
|
-
|
|
107
|
-
def glBindBufferBase(p0: int, p1: int, p2: int) -> None:
|
|
108
|
-
"""
|
|
109
|
-
|
|
110
|
-
:type p0: int
|
|
111
|
-
:type p1: int
|
|
112
|
-
:type p2: int
|
|
113
|
-
"""
|
|
114
|
-
|
|
115
|
-
def glBindBufferRange(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
116
|
-
"""
|
|
117
|
-
|
|
118
|
-
:type p0: int
|
|
119
|
-
:type p1: int
|
|
120
|
-
:type p2: int
|
|
121
|
-
:type p3: int
|
|
122
|
-
:type p4: int
|
|
123
|
-
"""
|
|
124
|
-
|
|
125
|
-
def glBindFramebuffer(p0: int, p1: int) -> None:
|
|
126
|
-
"""
|
|
127
|
-
|
|
128
|
-
:type p0: int
|
|
129
|
-
:type p1: int
|
|
130
|
-
"""
|
|
131
|
-
|
|
132
|
-
def glBindRenderbuffer(p0: int, p1: int) -> None:
|
|
133
|
-
"""
|
|
134
|
-
|
|
135
|
-
:type p0: int
|
|
136
|
-
:type p1: int
|
|
137
|
-
"""
|
|
138
|
-
|
|
139
|
-
def glBindTexture(target: set[str], texture: int) -> None:
|
|
140
|
-
"""Bind a named texture to a texturing target`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glBindTexture.xhtml>`__
|
|
141
|
-
|
|
142
|
-
:param target: Specifies the target to which the texture is bound.
|
|
143
|
-
:type target: set[str]
|
|
144
|
-
:param texture: Specifies the name of a texture.
|
|
145
|
-
:type texture: int
|
|
146
|
-
"""
|
|
147
|
-
|
|
148
|
-
def glBindVertexArray(p0: int) -> None:
|
|
149
|
-
"""
|
|
150
|
-
|
|
151
|
-
:type p0: int
|
|
152
|
-
"""
|
|
153
|
-
|
|
154
|
-
def glBlendColor(p0: float, p1: float, p2: float, p3: float) -> None:
|
|
155
|
-
"""
|
|
156
|
-
|
|
157
|
-
:type p0: float
|
|
158
|
-
:type p1: float
|
|
159
|
-
:type p2: float
|
|
160
|
-
:type p3: float
|
|
161
|
-
"""
|
|
162
|
-
|
|
163
|
-
def glBlendEquation(p0: int) -> None:
|
|
164
|
-
"""
|
|
165
|
-
|
|
166
|
-
:type p0: int
|
|
167
|
-
"""
|
|
168
|
-
|
|
169
|
-
def glBlendEquationSeparate(p0: int, p1: int) -> None:
|
|
170
|
-
"""
|
|
171
|
-
|
|
172
|
-
:type p0: int
|
|
173
|
-
:type p1: int
|
|
174
|
-
"""
|
|
175
|
-
|
|
176
|
-
def glBlendFunc(sfactor: set[str], dfactor: set[str]) -> None:
|
|
177
|
-
"""Specify pixel arithmetic`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glBlendFunc.xhtml>`__
|
|
178
|
-
|
|
179
|
-
:param sfactor: Specifies how the red, green, blue, and alpha source blending factors are
|
|
180
|
-
computed.
|
|
181
|
-
:type sfactor: set[str]
|
|
182
|
-
:param dfactor: Specifies how the red, green, blue, and alpha destination
|
|
183
|
-
blending factors are computed.
|
|
184
|
-
:type dfactor: set[str]
|
|
185
|
-
"""
|
|
186
|
-
|
|
187
|
-
def glBlitFramebuffer(
|
|
188
|
-
p0: int,
|
|
189
|
-
p1: int,
|
|
190
|
-
p2: int,
|
|
191
|
-
p3: int,
|
|
192
|
-
p4: int,
|
|
193
|
-
p5: int,
|
|
194
|
-
p6: int,
|
|
195
|
-
p7: int,
|
|
196
|
-
p8: int,
|
|
197
|
-
p9: int,
|
|
198
|
-
) -> None:
|
|
199
|
-
"""
|
|
200
|
-
|
|
201
|
-
:type p0: int
|
|
202
|
-
:type p1: int
|
|
203
|
-
:type p2: int
|
|
204
|
-
:type p3: int
|
|
205
|
-
:type p4: int
|
|
206
|
-
:type p5: int
|
|
207
|
-
:type p6: int
|
|
208
|
-
:type p7: int
|
|
209
|
-
:type p8: int
|
|
210
|
-
:type p9: int
|
|
211
|
-
"""
|
|
212
|
-
|
|
213
|
-
def glBufferData(p0: int, p1: int, p2: typing.Any, p3: int) -> None:
|
|
214
|
-
"""
|
|
215
|
-
|
|
216
|
-
:type p0: int
|
|
217
|
-
:type p1: int
|
|
218
|
-
:type p2: typing.Any
|
|
219
|
-
:type p3: int
|
|
220
|
-
"""
|
|
221
|
-
|
|
222
|
-
def glBufferSubData(p0: int, p1: int, p2: int, p3: typing.Any) -> None:
|
|
223
|
-
"""
|
|
224
|
-
|
|
225
|
-
:type p0: int
|
|
226
|
-
:type p1: int
|
|
227
|
-
:type p2: int
|
|
228
|
-
:type p3: typing.Any
|
|
229
|
-
"""
|
|
230
|
-
|
|
231
|
-
def glCheckFramebufferStatus(p0: int) -> int:
|
|
232
|
-
"""
|
|
233
|
-
|
|
234
|
-
:type p0: int
|
|
235
|
-
:rtype: int
|
|
236
|
-
"""
|
|
237
|
-
|
|
238
|
-
def glClear(mask) -> None:
|
|
239
|
-
"""Clear buffers to preset values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClear.xhtml>`__
|
|
240
|
-
|
|
241
|
-
:param mask: Bitwise OR of masks that indicate the buffers to be cleared.
|
|
242
|
-
"""
|
|
243
|
-
|
|
244
|
-
def glClearColor(red: float, green, blue, alpha) -> None:
|
|
245
|
-
"""Specify clear values for the color buffers`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClearColor.xhtml>`__
|
|
246
|
-
|
|
247
|
-
:param red: Specify the red, green, blue, and alpha values used when the
|
|
248
|
-
color buffers are cleared. The initial values are all 0.
|
|
249
|
-
:type red: float
|
|
250
|
-
"""
|
|
251
|
-
|
|
252
|
-
def glClearDepth(depth: int) -> None:
|
|
253
|
-
"""Specify the clear value for the depth buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClearDepth.xhtml>`__
|
|
254
|
-
|
|
255
|
-
:param depth: Specifies the depth value used when the depth buffer is cleared.
|
|
256
|
-
The initial value is 1.
|
|
257
|
-
:type depth: int
|
|
258
|
-
"""
|
|
259
|
-
|
|
260
|
-
def glClearStencil(s: int) -> None:
|
|
261
|
-
"""Specify the clear value for the stencil buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClearStencil.xhtml>`__
|
|
262
|
-
|
|
263
|
-
:param s: Specifies the index used when the stencil buffer is cleared. The initial value is 0.
|
|
264
|
-
:type s: int
|
|
265
|
-
"""
|
|
266
|
-
|
|
267
|
-
def glClipPlane(plane: set[str], equation: Buffer) -> None:
|
|
268
|
-
"""Specify a plane against which all geometry is clipped`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glClipPlane.xhtml>`__
|
|
269
|
-
|
|
270
|
-
:param plane: Specifies which clipping plane is being positioned.
|
|
271
|
-
:type plane: set[str]
|
|
272
|
-
:param equation: Specifies the address of an array of four double- precision
|
|
273
|
-
floating-point values. These values are interpreted as a plane equation.
|
|
274
|
-
:type equation: Buffer
|
|
275
|
-
"""
|
|
276
|
-
|
|
277
|
-
def glColorMask(red: int, green, blue, alpha) -> None:
|
|
278
|
-
"""Enable and disable writing of frame buffer color components`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glColorMask.xhtml>`__
|
|
279
|
-
|
|
280
|
-
:param red: Specify whether red, green, blue, and alpha can or cannot be
|
|
281
|
-
written into the frame buffer. The initial values are all GL_TRUE, indicating that the
|
|
282
|
-
color components can be written.
|
|
283
|
-
:type red: int
|
|
284
|
-
"""
|
|
285
|
-
|
|
286
|
-
def glCompileShader(shader: int) -> None:
|
|
287
|
-
"""Compiles a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCompileShader.xhtml>`__
|
|
288
|
-
|
|
289
|
-
:param shader: Specifies the shader object to be compiled.
|
|
290
|
-
:type shader: int
|
|
291
|
-
"""
|
|
292
|
-
|
|
293
|
-
def glCompressedTexImage1D(
|
|
294
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: typing.Any
|
|
295
|
-
) -> None:
|
|
296
|
-
"""
|
|
297
|
-
|
|
298
|
-
:type p0: int
|
|
299
|
-
:type p1: int
|
|
300
|
-
:type p2: int
|
|
301
|
-
:type p3: int
|
|
302
|
-
:type p4: int
|
|
303
|
-
:type p5: int
|
|
304
|
-
:type p6: typing.Any
|
|
305
|
-
"""
|
|
306
|
-
|
|
307
|
-
def glCompressedTexImage2D(
|
|
308
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int, p7: typing.Any
|
|
309
|
-
) -> None:
|
|
310
|
-
"""
|
|
311
|
-
|
|
312
|
-
:type p0: int
|
|
313
|
-
:type p1: int
|
|
314
|
-
:type p2: int
|
|
315
|
-
:type p3: int
|
|
316
|
-
:type p4: int
|
|
317
|
-
:type p5: int
|
|
318
|
-
:type p6: int
|
|
319
|
-
:type p7: typing.Any
|
|
320
|
-
"""
|
|
321
|
-
|
|
322
|
-
def glCompressedTexImage3D(
|
|
323
|
-
p0: int,
|
|
324
|
-
p1: int,
|
|
325
|
-
p2: int,
|
|
326
|
-
p3: int,
|
|
327
|
-
p4: int,
|
|
328
|
-
p5: int,
|
|
329
|
-
p6: int,
|
|
330
|
-
p7: int,
|
|
331
|
-
p8: typing.Any,
|
|
332
|
-
) -> None:
|
|
333
|
-
"""
|
|
334
|
-
|
|
335
|
-
:type p0: int
|
|
336
|
-
:type p1: int
|
|
337
|
-
:type p2: int
|
|
338
|
-
:type p3: int
|
|
339
|
-
:type p4: int
|
|
340
|
-
:type p5: int
|
|
341
|
-
:type p6: int
|
|
342
|
-
:type p7: int
|
|
343
|
-
:type p8: typing.Any
|
|
344
|
-
"""
|
|
345
|
-
|
|
346
|
-
def glCompressedTexSubImage1D(
|
|
347
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: typing.Any
|
|
348
|
-
) -> None:
|
|
349
|
-
"""
|
|
350
|
-
|
|
351
|
-
:type p0: int
|
|
352
|
-
:type p1: int
|
|
353
|
-
:type p2: int
|
|
354
|
-
:type p3: int
|
|
355
|
-
:type p4: int
|
|
356
|
-
:type p5: int
|
|
357
|
-
:type p6: typing.Any
|
|
358
|
-
"""
|
|
359
|
-
|
|
360
|
-
def glCompressedTexSubImage2D(
|
|
361
|
-
p0: int,
|
|
362
|
-
p1: int,
|
|
363
|
-
p2: int,
|
|
364
|
-
p3: int,
|
|
365
|
-
p4: int,
|
|
366
|
-
p5: int,
|
|
367
|
-
p6: int,
|
|
368
|
-
p7: int,
|
|
369
|
-
p8: typing.Any,
|
|
370
|
-
) -> None:
|
|
371
|
-
"""
|
|
372
|
-
|
|
373
|
-
:type p0: int
|
|
374
|
-
:type p1: int
|
|
375
|
-
:type p2: int
|
|
376
|
-
:type p3: int
|
|
377
|
-
:type p4: int
|
|
378
|
-
:type p5: int
|
|
379
|
-
:type p6: int
|
|
380
|
-
:type p7: int
|
|
381
|
-
:type p8: typing.Any
|
|
382
|
-
"""
|
|
383
|
-
|
|
384
|
-
def glCopyTexImage1D(
|
|
385
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int
|
|
386
|
-
) -> None:
|
|
387
|
-
"""
|
|
388
|
-
|
|
389
|
-
:type p0: int
|
|
390
|
-
:type p1: int
|
|
391
|
-
:type p2: int
|
|
392
|
-
:type p3: int
|
|
393
|
-
:type p4: int
|
|
394
|
-
:type p5: int
|
|
395
|
-
:type p6: int
|
|
396
|
-
"""
|
|
397
|
-
|
|
398
|
-
def glCopyTexImage2D(
|
|
399
|
-
target: set[str],
|
|
400
|
-
level: int,
|
|
401
|
-
internalformat: int,
|
|
402
|
-
x: int,
|
|
403
|
-
y,
|
|
404
|
-
width: int,
|
|
405
|
-
height: int,
|
|
406
|
-
border: int,
|
|
407
|
-
) -> None:
|
|
408
|
-
"""Copy pixels into a 2D texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCopyTexImage2D.xhtml>`__
|
|
409
|
-
|
|
410
|
-
:param target: Specifies the target texture.
|
|
411
|
-
:type target: set[str]
|
|
412
|
-
:param level: Specifies the level-of-detail number. Level 0 is the base image level.
|
|
413
|
-
Level n is the nth mipmap reduction image.
|
|
414
|
-
:type level: int
|
|
415
|
-
:param internalformat: Specifies the number of color components in the texture.
|
|
416
|
-
:type internalformat: int
|
|
417
|
-
:param x: Specify the window coordinates of the first pixel that is copied
|
|
418
|
-
from the frame buffer. This location is the lower left corner of a rectangular
|
|
419
|
-
block of pixels.
|
|
420
|
-
:type x: int
|
|
421
|
-
:param width: Specifies the width of the texture image. Must be 2n+2(border) for
|
|
422
|
-
some integer n. All implementations support texture images that are at least 64
|
|
423
|
-
texels wide.
|
|
424
|
-
:type width: int
|
|
425
|
-
:param height: Specifies the height of the texture image. Must be 2m+2(border) for
|
|
426
|
-
some integer m. All implementations support texture images that are at least 64
|
|
427
|
-
texels high.
|
|
428
|
-
:type height: int
|
|
429
|
-
:param border: Specifies the width of the border. Must be either 0 or 1.
|
|
430
|
-
:type border: int
|
|
431
|
-
"""
|
|
432
|
-
|
|
433
|
-
def glCopyTexSubImage1D(p0: int, p1: int, p2: int, p3: int, p4: int, p5: int) -> None:
|
|
434
|
-
"""
|
|
435
|
-
|
|
436
|
-
:type p0: int
|
|
437
|
-
:type p1: int
|
|
438
|
-
:type p2: int
|
|
439
|
-
:type p3: int
|
|
440
|
-
:type p4: int
|
|
441
|
-
:type p5: int
|
|
442
|
-
"""
|
|
443
|
-
|
|
444
|
-
def glCopyTexSubImage2D(
|
|
445
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int, p7: int
|
|
446
|
-
) -> None:
|
|
447
|
-
"""
|
|
448
|
-
|
|
449
|
-
:type p0: int
|
|
450
|
-
:type p1: int
|
|
451
|
-
:type p2: int
|
|
452
|
-
:type p3: int
|
|
453
|
-
:type p4: int
|
|
454
|
-
:type p5: int
|
|
455
|
-
:type p6: int
|
|
456
|
-
:type p7: int
|
|
457
|
-
"""
|
|
458
|
-
|
|
459
|
-
def glCopyTexSubImage3D(
|
|
460
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int, p7: int, p8: int
|
|
461
|
-
) -> None:
|
|
462
|
-
"""
|
|
463
|
-
|
|
464
|
-
:type p0: int
|
|
465
|
-
:type p1: int
|
|
466
|
-
:type p2: int
|
|
467
|
-
:type p3: int
|
|
468
|
-
:type p4: int
|
|
469
|
-
:type p5: int
|
|
470
|
-
:type p6: int
|
|
471
|
-
:type p7: int
|
|
472
|
-
:type p8: int
|
|
473
|
-
"""
|
|
474
|
-
|
|
475
|
-
def glCreateProgram() -> int:
|
|
476
|
-
"""Creates a program object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateProgram.xhtml>`__
|
|
477
|
-
|
|
478
|
-
:return: The new program or zero if an error occurs.
|
|
479
|
-
:rtype: int
|
|
480
|
-
"""
|
|
481
|
-
|
|
482
|
-
def glCreateShader(shaderType: GL_GEOMETRY_SHADER | typing.Any) -> int:
|
|
483
|
-
"""Creates a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCreateShader.xhtml>`__
|
|
484
|
-
|
|
485
|
-
:type shaderType: GL_GEOMETRY_SHADER | typing.Any
|
|
486
|
-
:return: 0 if an error occurs.
|
|
487
|
-
:rtype: int
|
|
488
|
-
"""
|
|
489
|
-
|
|
490
|
-
def glCullFace(mode: set[str]) -> None:
|
|
491
|
-
"""Specify whether front- or back-facing facets can be culled`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glCullFace.xhtml>`__
|
|
492
|
-
|
|
493
|
-
:param mode: Specifies whether front- or back-facing facets are candidates for culling.
|
|
494
|
-
:type mode: set[str]
|
|
495
|
-
"""
|
|
496
|
-
|
|
497
|
-
def glDeleteBuffers(p0: int, p1: int) -> None:
|
|
498
|
-
"""
|
|
499
|
-
|
|
500
|
-
:type p0: int
|
|
501
|
-
:type p1: int
|
|
502
|
-
"""
|
|
503
|
-
|
|
504
|
-
def glDeleteFramebuffers(p0: int, p1: int) -> None:
|
|
505
|
-
"""
|
|
506
|
-
|
|
507
|
-
:type p0: int
|
|
508
|
-
:type p1: int
|
|
509
|
-
"""
|
|
510
|
-
|
|
511
|
-
def glDeleteProgram(program: int) -> None:
|
|
512
|
-
"""Deletes a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteProgram.xhtml>`__
|
|
513
|
-
|
|
514
|
-
:param program: Specifies the program object to be deleted.
|
|
515
|
-
:type program: int
|
|
516
|
-
"""
|
|
517
|
-
|
|
518
|
-
def glDeleteQueries(p0: int, p1: int) -> None:
|
|
519
|
-
"""
|
|
520
|
-
|
|
521
|
-
:type p0: int
|
|
522
|
-
:type p1: int
|
|
523
|
-
"""
|
|
524
|
-
|
|
525
|
-
def glDeleteRenderbuffers(p0: int, p1: int) -> None:
|
|
526
|
-
"""
|
|
527
|
-
|
|
528
|
-
:type p0: int
|
|
529
|
-
:type p1: int
|
|
530
|
-
"""
|
|
531
|
-
|
|
532
|
-
def glDeleteShader(shader: int) -> None:
|
|
533
|
-
"""Deletes a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteShader.xhtml>`__
|
|
534
|
-
|
|
535
|
-
:param shader: Specifies the shader object to be deleted.
|
|
536
|
-
:type shader: int
|
|
537
|
-
"""
|
|
538
|
-
|
|
539
|
-
def glDeleteTextures(n: int, textures: Buffer) -> None:
|
|
540
|
-
"""Delete named textures`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDeleteTextures.xhtml>`__
|
|
541
|
-
|
|
542
|
-
:param n: Specifies the number of textures to be deleted
|
|
543
|
-
:type n: int
|
|
544
|
-
:param textures: Specifies an array of textures to be deleted
|
|
545
|
-
:type textures: Buffer
|
|
546
|
-
"""
|
|
547
|
-
|
|
548
|
-
def glDeleteVertexArrays(p0: int, p1: int) -> None:
|
|
549
|
-
"""
|
|
550
|
-
|
|
551
|
-
:type p0: int
|
|
552
|
-
:type p1: int
|
|
553
|
-
"""
|
|
554
|
-
|
|
555
|
-
def glDepthFunc(func: set[str]) -> None:
|
|
556
|
-
"""Specify the value used for depth buffer comparisons`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthFunc.xhtml>`__
|
|
557
|
-
|
|
558
|
-
:param func: Specifies the depth comparison function.
|
|
559
|
-
:type func: set[str]
|
|
560
|
-
"""
|
|
561
|
-
|
|
562
|
-
def glDepthMask(flag: int) -> None:
|
|
563
|
-
"""Enable or disable writing into the depth buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthMask.xhtml>`__
|
|
564
|
-
|
|
565
|
-
:param flag: Specifies whether the depth buffer is enabled for writing. If flag is GL_FALSE,
|
|
566
|
-
depth buffer writing is disabled. Otherwise, it is enabled. Initially, depth buffer
|
|
567
|
-
writing is enabled.
|
|
568
|
-
:type flag: int
|
|
569
|
-
"""
|
|
570
|
-
|
|
571
|
-
def glDepthRange(zNear: int, zFar: int) -> None:
|
|
572
|
-
"""Specify mapping of depth values from normalized device coordinates to window coordinates`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDepthRange.xhtml>`__
|
|
573
|
-
|
|
574
|
-
:param zNear: Specifies the mapping of the near clipping plane to window coordinates.
|
|
575
|
-
The initial value is 0.
|
|
576
|
-
:type zNear: int
|
|
577
|
-
:param zFar: Specifies the mapping of the far clipping plane to window coordinates.
|
|
578
|
-
The initial value is 1.
|
|
579
|
-
:type zFar: int
|
|
580
|
-
"""
|
|
581
|
-
|
|
582
|
-
def glDetachShader(program: int, shader: int) -> None:
|
|
583
|
-
"""Detaches a shader object from a program object to which it is attached.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDetachShader.xhtml>`__
|
|
584
|
-
|
|
585
|
-
:param program: Specifies the program object from which to detach the shader object.
|
|
586
|
-
:type program: int
|
|
587
|
-
:param shader: pecifies the program object from which to detach the shader object.
|
|
588
|
-
:type shader: int
|
|
589
|
-
"""
|
|
590
|
-
|
|
591
|
-
def glDisable(cap: set[str]) -> None:
|
|
592
|
-
"""Disable server-side GL capabilities`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEnable.xhtml>`__
|
|
593
|
-
|
|
594
|
-
:param cap: Specifies a symbolic constant indicating a GL capability.
|
|
595
|
-
:type cap: set[str]
|
|
596
|
-
"""
|
|
597
|
-
|
|
598
|
-
def glDisableVertexAttribArray(p0: int) -> None:
|
|
599
|
-
"""
|
|
600
|
-
|
|
601
|
-
:type p0: int
|
|
602
|
-
"""
|
|
603
|
-
|
|
604
|
-
def glDrawArrays(p0: int, p1: int, p2: int) -> None:
|
|
605
|
-
"""
|
|
606
|
-
|
|
607
|
-
:type p0: int
|
|
608
|
-
:type p1: int
|
|
609
|
-
:type p2: int
|
|
610
|
-
"""
|
|
611
|
-
|
|
612
|
-
def glDrawBuffer(mode: set[str]) -> None:
|
|
613
|
-
"""Specify which color buffers are to be drawn into`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glDrawBuffer.xhtml>`__
|
|
614
|
-
|
|
615
|
-
:param mode: Specifies up to four color buffers to be drawn into.
|
|
616
|
-
:type mode: set[str]
|
|
617
|
-
"""
|
|
618
|
-
|
|
619
|
-
def glDrawBuffers(p0: int, p1: int) -> None:
|
|
620
|
-
"""
|
|
621
|
-
|
|
622
|
-
:type p0: int
|
|
623
|
-
:type p1: int
|
|
624
|
-
"""
|
|
625
|
-
|
|
626
|
-
def glDrawElements(p0: int, p1: int, p2: int, p3: typing.Any) -> None:
|
|
627
|
-
"""
|
|
628
|
-
|
|
629
|
-
:type p0: int
|
|
630
|
-
:type p1: int
|
|
631
|
-
:type p2: int
|
|
632
|
-
:type p3: typing.Any
|
|
633
|
-
"""
|
|
634
|
-
|
|
635
|
-
def glDrawRangeElements(
|
|
636
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: typing.Any
|
|
637
|
-
) -> None:
|
|
638
|
-
"""
|
|
639
|
-
|
|
640
|
-
:type p0: int
|
|
641
|
-
:type p1: int
|
|
642
|
-
:type p2: int
|
|
643
|
-
:type p3: int
|
|
644
|
-
:type p4: int
|
|
645
|
-
:type p5: typing.Any
|
|
646
|
-
"""
|
|
647
|
-
|
|
648
|
-
def glEdgeFlag(flag) -> None:
|
|
649
|
-
"""B{glEdgeFlag, glEdgeFlagv}Flag edges as either boundary or non-boundary`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEdgeFlag.xhtml>`__
|
|
650
|
-
|
|
651
|
-
:param flag: Specifies the current edge flag value.The initial value is GL_TRUE.
|
|
652
|
-
"""
|
|
653
|
-
|
|
654
|
-
def glEnable(cap: set[str]) -> None:
|
|
655
|
-
"""Enable server-side GL capabilities`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEnable.xhtml>`__
|
|
656
|
-
|
|
657
|
-
:param cap: Specifies a symbolic constant indicating a GL capability.
|
|
658
|
-
:type cap: set[str]
|
|
659
|
-
"""
|
|
660
|
-
|
|
661
|
-
def glEnableVertexAttribArray(p0: int) -> None:
|
|
662
|
-
"""
|
|
663
|
-
|
|
664
|
-
:type p0: int
|
|
665
|
-
"""
|
|
666
|
-
|
|
667
|
-
def glEndQuery(p0: int) -> None:
|
|
668
|
-
"""
|
|
669
|
-
|
|
670
|
-
:type p0: int
|
|
671
|
-
"""
|
|
672
|
-
|
|
673
|
-
def glEvalCoord(u: typing.Any, v: typing.Any) -> None:
|
|
674
|
-
"""B{glEvalCoord1d, glEvalCoord1f, glEvalCoord2d, glEvalCoord2f, glEvalCoord1dv, glEvalCoord1fv,
|
|
675
|
-
glEvalCoord2dv, glEvalCoord2fv}Evaluate enabled one- and two-dimensional maps`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glEvalCoord.xhtml>`__
|
|
676
|
-
|
|
677
|
-
:param u: Specifies a value that is the domain coordinate u to the basis function defined
|
|
678
|
-
in a previous glMap1 or glMap2 command. If the function prototype ends in 'v' then
|
|
679
|
-
u specifies a pointer to an array containing either one or two domain coordinates. The first
|
|
680
|
-
coordinate is u. The second coordinate is v, which is present only in glEvalCoord2 versions.
|
|
681
|
-
:type u: typing.Any
|
|
682
|
-
:param v: Specifies a value that is the domain coordinate v to the basis function defined
|
|
683
|
-
in a previous glMap2 command. This argument is not present in a glEvalCoord1 command.
|
|
684
|
-
:type v: typing.Any
|
|
685
|
-
"""
|
|
686
|
-
|
|
687
|
-
def glEvalMesh(mode: set[str], i1: int, i2) -> None:
|
|
688
|
-
"""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>`__
|
|
689
|
-
|
|
690
|
-
:param mode: In glEvalMesh1, specifies whether to compute a one-dimensional
|
|
691
|
-
mesh of points or lines.
|
|
692
|
-
:type mode: set[str]
|
|
693
|
-
:param i1: Specify the first and last integer values for the grid domain variable i.
|
|
694
|
-
:type i1: int
|
|
695
|
-
"""
|
|
696
|
-
|
|
697
|
-
def glEvalPoint(i: int, j) -> None:
|
|
698
|
-
"""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>`__
|
|
699
|
-
|
|
700
|
-
:param i: Specifies the integer value for grid domain variable i.
|
|
701
|
-
:type i: int
|
|
702
|
-
:param j: Specifies the integer value for grid domain variable j (glEvalPoint2 only).
|
|
703
|
-
"""
|
|
704
|
-
|
|
705
|
-
def glFeedbackBuffer(size: int, type: set[str], buffer: Buffer) -> None:
|
|
706
|
-
"""Controls feedback mode`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFeedbackBuffer.xhtml>`__
|
|
707
|
-
|
|
708
|
-
:param size: Specifies the maximum number of values that can be written into buffer.
|
|
709
|
-
:type size: int
|
|
710
|
-
:param type: Specifies a symbolic constant that describes the information that
|
|
711
|
-
will be returned for each vertex.
|
|
712
|
-
:type type: set[str]
|
|
713
|
-
:param buffer: Returns the feedback data.
|
|
714
|
-
:type buffer: Buffer
|
|
715
|
-
"""
|
|
716
|
-
|
|
717
|
-
def glFinish() -> None:
|
|
718
|
-
"""Block until all GL execution is complete`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFinish.xhtml>`__"""
|
|
719
|
-
|
|
720
|
-
def glFlush() -> None:
|
|
721
|
-
"""Force Execution of GL commands in finite time`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFlush.xhtml>`__"""
|
|
722
|
-
|
|
723
|
-
def glFog(pname: set[str], param: typing.Any) -> None:
|
|
724
|
-
"""B{glFogf, glFogi, glFogfv, glFogiv}Specify fog parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFog.xhtml>`__
|
|
725
|
-
|
|
726
|
-
:param pname: Specifies a single-valued fog parameter. If the function prototype
|
|
727
|
-
ends in 'v' specifies a fog parameter.
|
|
728
|
-
:type pname: set[str]
|
|
729
|
-
:param param: Specifies the value or values to be assigned to pname. GL_FOG_COLOR
|
|
730
|
-
requires an array of four values. All other parameters accept an array containing
|
|
731
|
-
only a single value.
|
|
732
|
-
:type param: typing.Any
|
|
733
|
-
"""
|
|
734
|
-
|
|
735
|
-
def glFramebufferRenderbuffer(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
736
|
-
"""
|
|
737
|
-
|
|
738
|
-
:type p0: int
|
|
739
|
-
:type p1: int
|
|
740
|
-
:type p2: int
|
|
741
|
-
:type p3: int
|
|
742
|
-
"""
|
|
743
|
-
|
|
744
|
-
def glFramebufferTexture(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
745
|
-
"""
|
|
746
|
-
|
|
747
|
-
:type p0: int
|
|
748
|
-
:type p1: int
|
|
749
|
-
:type p2: int
|
|
750
|
-
:type p3: int
|
|
751
|
-
"""
|
|
752
|
-
|
|
753
|
-
def glFrontFace(mode: set[str]) -> None:
|
|
754
|
-
"""Define front- and back-facing polygons`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glFrontFace.xhtml>`__
|
|
755
|
-
|
|
756
|
-
:param mode: Specifies the orientation of front-facing polygons.
|
|
757
|
-
:type mode: set[str]
|
|
758
|
-
"""
|
|
759
|
-
|
|
760
|
-
def glGenBuffers(p0: int, p1: int) -> None:
|
|
761
|
-
"""
|
|
762
|
-
|
|
763
|
-
:type p0: int
|
|
764
|
-
:type p1: int
|
|
765
|
-
"""
|
|
766
|
-
|
|
767
|
-
def glGenFramebuffers(p0: int, p1: int) -> None:
|
|
768
|
-
"""
|
|
769
|
-
|
|
770
|
-
:type p0: int
|
|
771
|
-
:type p1: int
|
|
772
|
-
"""
|
|
773
|
-
|
|
774
|
-
def glGenQueries(p0: int, p1: int) -> None:
|
|
775
|
-
"""
|
|
776
|
-
|
|
777
|
-
:type p0: int
|
|
778
|
-
:type p1: int
|
|
779
|
-
"""
|
|
780
|
-
|
|
781
|
-
def glGenRenderbuffers(p0: int, p1: int) -> None:
|
|
782
|
-
"""
|
|
783
|
-
|
|
784
|
-
:type p0: int
|
|
785
|
-
:type p1: int
|
|
786
|
-
"""
|
|
787
|
-
|
|
788
|
-
def glGenTextures(n: int, textures: Buffer) -> None:
|
|
789
|
-
"""Generate texture names`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGenTextures.xhtml>`__
|
|
790
|
-
|
|
791
|
-
:param n: Specifies the number of textures name to be generated.
|
|
792
|
-
:type n: int
|
|
793
|
-
:param textures: Specifies an array in which the generated textures names are stored.
|
|
794
|
-
:type textures: Buffer
|
|
795
|
-
"""
|
|
796
|
-
|
|
797
|
-
def glGenVertexArrays(p0: int, p1: int) -> None:
|
|
798
|
-
"""
|
|
799
|
-
|
|
800
|
-
:type p0: int
|
|
801
|
-
:type p1: int
|
|
802
|
-
"""
|
|
803
|
-
|
|
804
|
-
def glGet(pname: set[str], param: typing.Any) -> None:
|
|
805
|
-
"""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>`__
|
|
806
|
-
|
|
807
|
-
:param pname: Specifies the parameter value to be returned.
|
|
808
|
-
:type pname: set[str]
|
|
809
|
-
:param param: Returns the value or values of the specified parameter.
|
|
810
|
-
:type param: typing.Any
|
|
811
|
-
"""
|
|
812
|
-
|
|
813
|
-
def glGetActiveAttrib(
|
|
814
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int
|
|
815
|
-
) -> None:
|
|
816
|
-
"""
|
|
817
|
-
|
|
818
|
-
:type p0: int
|
|
819
|
-
:type p1: int
|
|
820
|
-
:type p2: int
|
|
821
|
-
:type p3: int
|
|
822
|
-
:type p4: int
|
|
823
|
-
:type p5: int
|
|
824
|
-
:type p6: int
|
|
825
|
-
"""
|
|
826
|
-
|
|
827
|
-
def glGetActiveUniform(
|
|
828
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: int
|
|
829
|
-
) -> None:
|
|
830
|
-
"""
|
|
831
|
-
|
|
832
|
-
:type p0: int
|
|
833
|
-
:type p1: int
|
|
834
|
-
:type p2: int
|
|
835
|
-
:type p3: int
|
|
836
|
-
:type p4: int
|
|
837
|
-
:type p5: int
|
|
838
|
-
:type p6: int
|
|
839
|
-
"""
|
|
840
|
-
|
|
841
|
-
def glGetActiveUniformBlockName(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
842
|
-
"""
|
|
843
|
-
|
|
844
|
-
:type p0: int
|
|
845
|
-
:type p1: int
|
|
846
|
-
:type p2: int
|
|
847
|
-
:type p3: int
|
|
848
|
-
:type p4: int
|
|
849
|
-
"""
|
|
850
|
-
|
|
851
|
-
def glGetActiveUniformBlockiv(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
852
|
-
"""
|
|
853
|
-
|
|
854
|
-
:type p0: int
|
|
855
|
-
:type p1: int
|
|
856
|
-
:type p2: int
|
|
857
|
-
:type p3: int
|
|
858
|
-
"""
|
|
859
|
-
|
|
860
|
-
def glGetActiveUniformName(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
861
|
-
"""
|
|
862
|
-
|
|
863
|
-
:type p0: int
|
|
864
|
-
:type p1: int
|
|
865
|
-
:type p2: int
|
|
866
|
-
:type p3: int
|
|
867
|
-
:type p4: int
|
|
868
|
-
"""
|
|
869
|
-
|
|
870
|
-
def glGetActiveUniformsiv(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
871
|
-
"""
|
|
872
|
-
|
|
873
|
-
:type p0: int
|
|
874
|
-
:type p1: int
|
|
875
|
-
:type p2: int
|
|
876
|
-
:type p3: int
|
|
877
|
-
:type p4: int
|
|
878
|
-
"""
|
|
879
|
-
|
|
880
|
-
def glGetAttachedShaders(
|
|
881
|
-
program: int, maxCount: int, count: Buffer, shaders: Buffer
|
|
882
|
-
) -> None:
|
|
883
|
-
"""Returns the handles of the shader objects attached to a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetAttachedShaders.xhtml>`__
|
|
884
|
-
|
|
885
|
-
:param program: Specifies the program object to be queried.
|
|
886
|
-
:type program: int
|
|
887
|
-
:param maxCount: Specifies the size of the array for storing the returned object names.
|
|
888
|
-
:type maxCount: int
|
|
889
|
-
:param count: Returns the number of names actually returned in objects.
|
|
890
|
-
:type count: Buffer
|
|
891
|
-
:param shaders: Specifies an array that is used to return the names of attached shader objects.
|
|
892
|
-
:type shaders: Buffer
|
|
893
|
-
"""
|
|
894
|
-
|
|
895
|
-
def glGetAttribLocation(p0: int, p1: str) -> int:
|
|
896
|
-
"""
|
|
897
|
-
|
|
898
|
-
:type p0: int
|
|
899
|
-
:type p1: str
|
|
900
|
-
:rtype: int
|
|
901
|
-
"""
|
|
902
|
-
|
|
903
|
-
def glGetBooleanv(p0: int, p1: bool) -> None:
|
|
904
|
-
"""
|
|
905
|
-
|
|
906
|
-
:type p0: int
|
|
907
|
-
:type p1: bool
|
|
908
|
-
"""
|
|
909
|
-
|
|
910
|
-
def glGetBufferParameteri64v(p0: int, p1: int, p2: int) -> None:
|
|
911
|
-
"""
|
|
912
|
-
|
|
913
|
-
:type p0: int
|
|
914
|
-
:type p1: int
|
|
915
|
-
:type p2: int
|
|
916
|
-
"""
|
|
917
|
-
|
|
918
|
-
def glGetBufferParameteriv(p0: int, p1: int, p2: int) -> None:
|
|
919
|
-
"""
|
|
920
|
-
|
|
921
|
-
:type p0: int
|
|
922
|
-
:type p1: int
|
|
923
|
-
:type p2: int
|
|
924
|
-
"""
|
|
925
|
-
|
|
926
|
-
def glGetBufferPointerv(p0: int, p1: int, p2: typing.Any) -> None:
|
|
927
|
-
"""
|
|
928
|
-
|
|
929
|
-
:type p0: int
|
|
930
|
-
:type p1: int
|
|
931
|
-
:type p2: typing.Any
|
|
932
|
-
"""
|
|
933
|
-
|
|
934
|
-
def glGetBufferSubData(p0: int, p1: int, p2: int, p3: typing.Any) -> None:
|
|
935
|
-
"""
|
|
936
|
-
|
|
937
|
-
:type p0: int
|
|
938
|
-
:type p1: int
|
|
939
|
-
:type p2: int
|
|
940
|
-
:type p3: typing.Any
|
|
941
|
-
"""
|
|
942
|
-
|
|
943
|
-
def glGetCompressedTexImage(p0: int, p1: int, p2: typing.Any) -> None:
|
|
944
|
-
"""
|
|
945
|
-
|
|
946
|
-
:type p0: int
|
|
947
|
-
:type p1: int
|
|
948
|
-
:type p2: typing.Any
|
|
949
|
-
"""
|
|
950
|
-
|
|
951
|
-
def glGetDoublev(p0: int, p1: float) -> None:
|
|
952
|
-
"""
|
|
953
|
-
|
|
954
|
-
:type p0: int
|
|
955
|
-
:type p1: float
|
|
956
|
-
"""
|
|
957
|
-
|
|
958
|
-
def glGetError() -> None:
|
|
959
|
-
"""Return error information`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetError.xhtml>`__"""
|
|
960
|
-
|
|
961
|
-
def glGetFloatv(p0: int, p1: float) -> None:
|
|
962
|
-
"""
|
|
963
|
-
|
|
964
|
-
:type p0: int
|
|
965
|
-
:type p1: float
|
|
966
|
-
"""
|
|
967
|
-
|
|
968
|
-
def glGetIntegerv(p0: int, p1: int) -> None:
|
|
969
|
-
"""
|
|
970
|
-
|
|
971
|
-
:type p0: int
|
|
972
|
-
:type p1: int
|
|
973
|
-
"""
|
|
974
|
-
|
|
975
|
-
def glGetLight(light: set[str], pname: set[str], params: Buffer) -> None:
|
|
976
|
-
"""B{glGetLightfv and glGetLightiv}Return light source parameter values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetLight.xhtml>`__
|
|
977
|
-
|
|
978
|
-
:param light: Specifies a light source. The number of possible lights depends on the
|
|
979
|
-
implementation, but at least eight lights are supported. They are identified by symbolic
|
|
980
|
-
names of the form GL_LIGHTi where 0 < i < GL_MAX_LIGHTS.
|
|
981
|
-
:type light: set[str]
|
|
982
|
-
:param pname: Specifies a light source parameter for light.
|
|
983
|
-
:type pname: set[str]
|
|
984
|
-
:param params: Returns the requested data.
|
|
985
|
-
:type params: Buffer
|
|
986
|
-
"""
|
|
987
|
-
|
|
988
|
-
def glGetMap(target: set[str], query: set[str], v: Buffer) -> None:
|
|
989
|
-
"""B{glGetMapdv, glGetMapfv, glGetMapiv}Return evaluator parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetMap.xhtml>`__
|
|
990
|
-
|
|
991
|
-
:param target: Specifies the symbolic name of a map.
|
|
992
|
-
:type target: set[str]
|
|
993
|
-
:param query: Specifies which parameter to return.
|
|
994
|
-
:type query: set[str]
|
|
995
|
-
:param v: Returns the requested data.
|
|
996
|
-
:type v: Buffer
|
|
997
|
-
"""
|
|
998
|
-
|
|
999
|
-
def glGetMaterial(face: set[str], pname: set[str], params: Buffer) -> None:
|
|
1000
|
-
"""B{glGetMaterialfv, glGetMaterialiv}Return material parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetMaterial.xhtml>`__
|
|
1001
|
-
|
|
1002
|
-
:param face: Specifies which of the two materials is being queried.
|
|
1003
|
-
representing the front and back materials, respectively.
|
|
1004
|
-
:type face: set[str]
|
|
1005
|
-
:param pname: Specifies the material parameter to return.
|
|
1006
|
-
:type pname: set[str]
|
|
1007
|
-
:param params: Returns the requested data.
|
|
1008
|
-
:type params: Buffer
|
|
1009
|
-
"""
|
|
1010
|
-
|
|
1011
|
-
def glGetMultisamplefv(p0: int, p1: int, p2: float) -> None:
|
|
1012
|
-
"""
|
|
1013
|
-
|
|
1014
|
-
:type p0: int
|
|
1015
|
-
:type p1: int
|
|
1016
|
-
:type p2: float
|
|
1017
|
-
"""
|
|
1018
|
-
|
|
1019
|
-
def glGetPixelMap(map: set[str], values: Buffer) -> None:
|
|
1020
|
-
"""B{glGetPixelMapfv, glGetPixelMapuiv, glGetPixelMapusv}Return the specified pixel map`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetPixelMap.xhtml>`__
|
|
1021
|
-
|
|
1022
|
-
:param map: Specifies the name of the pixel map to return.
|
|
1023
|
-
:type map: set[str]
|
|
1024
|
-
:param values: Returns the pixel map contents.
|
|
1025
|
-
:type values: Buffer
|
|
1026
|
-
"""
|
|
1027
|
-
|
|
1028
|
-
def glGetProgramInfoLog(
|
|
1029
|
-
program: int, maxLength: int, length: Buffer, infoLog: Buffer
|
|
1030
|
-
) -> None:
|
|
1031
|
-
"""Returns the information log for a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgramInfoLog.xhtml>`__
|
|
1032
|
-
|
|
1033
|
-
:param program: Specifies the program object whose information log is to be queried.
|
|
1034
|
-
:type program: int
|
|
1035
|
-
:param maxLength: Specifies the size of the character buffer for storing the returned information log.
|
|
1036
|
-
:type maxLength: int
|
|
1037
|
-
:param length: Returns the length of the string returned in infoLog (excluding the null terminator).
|
|
1038
|
-
:type length: Buffer
|
|
1039
|
-
:param infoLog: Specifies an array of characters that is used to return the information log.
|
|
1040
|
-
:type infoLog: Buffer
|
|
1041
|
-
"""
|
|
1042
|
-
|
|
1043
|
-
def glGetProgramiv(program: int, pname: int, params: Buffer) -> None:
|
|
1044
|
-
"""Returns a parameter from a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetProgram.xhtml>`__
|
|
1045
|
-
|
|
1046
|
-
:param program: Specifies the program object to be queried.
|
|
1047
|
-
:type program: int
|
|
1048
|
-
:param pname: Specifies the object parameter.
|
|
1049
|
-
:type pname: int
|
|
1050
|
-
:param params: Returns the requested object parameter.
|
|
1051
|
-
:type params: Buffer
|
|
1052
|
-
"""
|
|
1053
|
-
|
|
1054
|
-
def glGetQueryObjectiv(p0: int, p1: int, p2: int) -> None:
|
|
1055
|
-
"""
|
|
1056
|
-
|
|
1057
|
-
:type p0: int
|
|
1058
|
-
:type p1: int
|
|
1059
|
-
:type p2: int
|
|
1060
|
-
"""
|
|
1061
|
-
|
|
1062
|
-
def glGetQueryObjectuiv(p0: int, p1: int, p2: int) -> None:
|
|
1063
|
-
"""
|
|
1064
|
-
|
|
1065
|
-
:type p0: int
|
|
1066
|
-
:type p1: int
|
|
1067
|
-
:type p2: int
|
|
1068
|
-
"""
|
|
1069
|
-
|
|
1070
|
-
def glGetQueryiv(p0: int, p1: int, p2: int) -> None:
|
|
1071
|
-
"""
|
|
1072
|
-
|
|
1073
|
-
:type p0: int
|
|
1074
|
-
:type p1: int
|
|
1075
|
-
:type p2: int
|
|
1076
|
-
"""
|
|
1077
|
-
|
|
1078
|
-
def glGetShaderInfoLog(
|
|
1079
|
-
program, maxLength: int, length: Buffer, infoLog: Buffer
|
|
1080
|
-
) -> None:
|
|
1081
|
-
"""Returns the information log for a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderInfoLog.xhtml>`__
|
|
1082
|
-
|
|
1083
|
-
:param maxLength: Specifies the size of the character buffer for storing the returned information log.
|
|
1084
|
-
:type maxLength: int
|
|
1085
|
-
:param length: Returns the length of the string returned in infoLog (excluding the null terminator).
|
|
1086
|
-
:type length: Buffer
|
|
1087
|
-
:param infoLog: Specifies an array of characters that is used to return the information log.
|
|
1088
|
-
:type infoLog: Buffer
|
|
1089
|
-
"""
|
|
1090
|
-
|
|
1091
|
-
def glGetShaderSource(
|
|
1092
|
-
shader: int, bufSize: int, length: Buffer, source: Buffer
|
|
1093
|
-
) -> None:
|
|
1094
|
-
"""Returns the source code string from a shader object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetShaderSource.xhtml>`__
|
|
1095
|
-
|
|
1096
|
-
:param shader: Specifies the shader object to be queried.
|
|
1097
|
-
:type shader: int
|
|
1098
|
-
:param bufSize: Specifies the size of the character buffer for storing the returned source code string.
|
|
1099
|
-
:type bufSize: int
|
|
1100
|
-
:param length: Returns the length of the string returned in source (excluding the null terminator).
|
|
1101
|
-
:type length: Buffer
|
|
1102
|
-
:param source: Specifies an array of characters that is used to return the source code string.
|
|
1103
|
-
:type source: Buffer
|
|
1104
|
-
"""
|
|
1105
|
-
|
|
1106
|
-
def glGetShaderiv(p0: int, p1: int, p2: int) -> None:
|
|
1107
|
-
"""
|
|
1108
|
-
|
|
1109
|
-
:type p0: int
|
|
1110
|
-
:type p1: int
|
|
1111
|
-
:type p2: int
|
|
1112
|
-
"""
|
|
1113
|
-
|
|
1114
|
-
def glGetString(name: set[str]) -> None:
|
|
1115
|
-
"""Return a string describing the current GL connection`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetString.xhtml>`__
|
|
1116
|
-
|
|
1117
|
-
:param name: Specifies a symbolic constant.
|
|
1118
|
-
:type name: set[str]
|
|
1119
|
-
"""
|
|
1120
|
-
|
|
1121
|
-
def glGetStringi(p0: int, p1: int) -> str:
|
|
1122
|
-
"""
|
|
1123
|
-
|
|
1124
|
-
:type p0: int
|
|
1125
|
-
:type p1: int
|
|
1126
|
-
:rtype: str
|
|
1127
|
-
"""
|
|
1128
|
-
|
|
1129
|
-
def glGetTexEnv(target: set[str], pname: set[str], params: Buffer) -> None:
|
|
1130
|
-
"""B{glGetTexEnvfv, glGetTexEnviv}Return texture environment parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexEnv.xhtml>`__
|
|
1131
|
-
|
|
1132
|
-
:param target: Specifies a texture environment. Must be GL_TEXTURE_ENV.
|
|
1133
|
-
:type target: set[str]
|
|
1134
|
-
:param pname: Specifies the symbolic name of a texture environment parameter.
|
|
1135
|
-
:type pname: set[str]
|
|
1136
|
-
:param params: Returns the requested data.
|
|
1137
|
-
:type params: Buffer
|
|
1138
|
-
"""
|
|
1139
|
-
|
|
1140
|
-
def glGetTexGen(coord: set[str], pname: set[str], params: Buffer) -> None:
|
|
1141
|
-
"""B{glGetTexGendv, glGetTexGenfv, glGetTexGeniv}Return texture coordinate generation parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexGen.xhtml>`__
|
|
1142
|
-
|
|
1143
|
-
:param coord: Specifies a texture coordinate.
|
|
1144
|
-
:type coord: set[str]
|
|
1145
|
-
:param pname: Specifies the symbolic name of the value(s) to be returned.
|
|
1146
|
-
:type pname: set[str]
|
|
1147
|
-
:param params: Returns the requested data.
|
|
1148
|
-
:type params: Buffer
|
|
1149
|
-
"""
|
|
1150
|
-
|
|
1151
|
-
def glGetTexImage(
|
|
1152
|
-
target: set[str], level: int, format: set[str], type: set[str], pixels: Buffer
|
|
1153
|
-
) -> None:
|
|
1154
|
-
"""Return a texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexImage.xhtml>`__
|
|
1155
|
-
|
|
1156
|
-
:param target: Specifies which texture is to be obtained.
|
|
1157
|
-
:type target: set[str]
|
|
1158
|
-
:param level: Specifies the level-of-detail number of the desired image.
|
|
1159
|
-
Level 0 is the base image level. Level n is the nth mipmap reduction image.
|
|
1160
|
-
:type level: int
|
|
1161
|
-
:param format: Specifies a pixel format for the returned data.
|
|
1162
|
-
:type format: set[str]
|
|
1163
|
-
:param type: Specifies a pixel type for the returned data.
|
|
1164
|
-
:type type: set[str]
|
|
1165
|
-
:param pixels: Returns the texture image. Should be a pointer to an array of the
|
|
1166
|
-
type specified by type
|
|
1167
|
-
:type pixels: Buffer
|
|
1168
|
-
"""
|
|
1169
|
-
|
|
1170
|
-
def glGetTexLevelParameter(
|
|
1171
|
-
target: set[str], level: int, pname: set[str], params: Buffer
|
|
1172
|
-
) -> None:
|
|
1173
|
-
"""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>`__
|
|
1174
|
-
|
|
1175
|
-
:param target: Specifies the symbolic name of the target texture.
|
|
1176
|
-
:type target: set[str]
|
|
1177
|
-
:param level: Specifies the level-of-detail number of the desired image.
|
|
1178
|
-
Level 0 is the base image level. Level n is the nth mipmap reduction image.
|
|
1179
|
-
:type level: int
|
|
1180
|
-
:param pname: Specifies the symbolic name of a texture parameter.
|
|
1181
|
-
:type pname: set[str]
|
|
1182
|
-
:param params: Returns the requested data.
|
|
1183
|
-
:type params: Buffer
|
|
1184
|
-
"""
|
|
1185
|
-
|
|
1186
|
-
def glGetTexLevelParameterfv(p0: int, p1: int, p2: int, p3: float) -> None:
|
|
1187
|
-
"""
|
|
1188
|
-
|
|
1189
|
-
:type p0: int
|
|
1190
|
-
:type p1: int
|
|
1191
|
-
:type p2: int
|
|
1192
|
-
:type p3: float
|
|
1193
|
-
"""
|
|
1194
|
-
|
|
1195
|
-
def glGetTexLevelParameteriv(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
1196
|
-
"""
|
|
1197
|
-
|
|
1198
|
-
:type p0: int
|
|
1199
|
-
:type p1: int
|
|
1200
|
-
:type p2: int
|
|
1201
|
-
:type p3: int
|
|
1202
|
-
"""
|
|
1203
|
-
|
|
1204
|
-
def glGetTexParameter(target: set[str], pname: set[str], params: Buffer) -> None:
|
|
1205
|
-
"""B{glGetTexParameterfv, glGetTexParameteriv}Return texture parameter values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glGetTexParameter.xhtml>`__
|
|
1206
|
-
|
|
1207
|
-
:param target: Specifies the symbolic name of the target texture.
|
|
1208
|
-
:type target: set[str]
|
|
1209
|
-
:param pname: Specifies the symbolic name the target texture.
|
|
1210
|
-
:type pname: set[str]
|
|
1211
|
-
:param params: Returns the texture parameters.
|
|
1212
|
-
:type params: Buffer
|
|
1213
|
-
"""
|
|
1214
|
-
|
|
1215
|
-
def glGetTexParameterfv(p0: int, p1: int, p2: float) -> None:
|
|
1216
|
-
"""
|
|
1217
|
-
|
|
1218
|
-
:type p0: int
|
|
1219
|
-
:type p1: int
|
|
1220
|
-
:type p2: float
|
|
1221
|
-
"""
|
|
1222
|
-
|
|
1223
|
-
def glGetTexParameteriv(p0: int, p1: int, p2: int) -> None:
|
|
1224
|
-
"""
|
|
1225
|
-
|
|
1226
|
-
:type p0: int
|
|
1227
|
-
:type p1: int
|
|
1228
|
-
:type p2: int
|
|
1229
|
-
"""
|
|
1230
|
-
|
|
1231
|
-
def glGetUniformBlockIndex(p0: int, p1: str) -> int:
|
|
1232
|
-
"""
|
|
1233
|
-
|
|
1234
|
-
:type p0: int
|
|
1235
|
-
:type p1: str
|
|
1236
|
-
:rtype: int
|
|
1237
|
-
"""
|
|
1238
|
-
|
|
1239
|
-
def glGetUniformIndices(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
1240
|
-
"""
|
|
1241
|
-
|
|
1242
|
-
:type p0: int
|
|
1243
|
-
:type p1: int
|
|
1244
|
-
:type p2: int
|
|
1245
|
-
:type p3: int
|
|
1246
|
-
"""
|
|
1247
|
-
|
|
1248
|
-
def glGetUniformLocation(p0: int, p1: str) -> int:
|
|
1249
|
-
"""
|
|
1250
|
-
|
|
1251
|
-
:type p0: int
|
|
1252
|
-
:type p1: str
|
|
1253
|
-
:rtype: int
|
|
1254
|
-
"""
|
|
1255
|
-
|
|
1256
|
-
def glGetUniformfv(p0: int, p1: int, p2: float) -> None:
|
|
1257
|
-
"""
|
|
1258
|
-
|
|
1259
|
-
:type p0: int
|
|
1260
|
-
:type p1: int
|
|
1261
|
-
:type p2: float
|
|
1262
|
-
"""
|
|
1263
|
-
|
|
1264
|
-
def glGetUniformiv(p0: int, p1: int, p2: int) -> None:
|
|
1265
|
-
"""
|
|
1266
|
-
|
|
1267
|
-
:type p0: int
|
|
1268
|
-
:type p1: int
|
|
1269
|
-
:type p2: int
|
|
1270
|
-
"""
|
|
1271
|
-
|
|
1272
|
-
def glGetVertexAttribPointerv(p0: int, p1: int, p2: typing.Any) -> None:
|
|
1273
|
-
"""
|
|
1274
|
-
|
|
1275
|
-
:type p0: int
|
|
1276
|
-
:type p1: int
|
|
1277
|
-
:type p2: typing.Any
|
|
1278
|
-
"""
|
|
1279
|
-
|
|
1280
|
-
def glGetVertexAttribdv(p0: int, p1: int, p2: float) -> None:
|
|
1281
|
-
"""
|
|
1282
|
-
|
|
1283
|
-
:type p0: int
|
|
1284
|
-
:type p1: int
|
|
1285
|
-
:type p2: float
|
|
1286
|
-
"""
|
|
1287
|
-
|
|
1288
|
-
def glGetVertexAttribfv(p0: int, p1: int, p2: float) -> None:
|
|
1289
|
-
"""
|
|
1290
|
-
|
|
1291
|
-
:type p0: int
|
|
1292
|
-
:type p1: int
|
|
1293
|
-
:type p2: float
|
|
1294
|
-
"""
|
|
1295
|
-
|
|
1296
|
-
def glGetVertexAttribiv(p0: int, p1: int, p2: int) -> None:
|
|
1297
|
-
"""
|
|
1298
|
-
|
|
1299
|
-
:type p0: int
|
|
1300
|
-
:type p1: int
|
|
1301
|
-
:type p2: int
|
|
1302
|
-
"""
|
|
1303
|
-
|
|
1304
|
-
def glHint(target: set[str], mode: set[str]) -> None:
|
|
1305
|
-
"""Specify implementation-specific hints`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glHint.xhtml>`__
|
|
1306
|
-
|
|
1307
|
-
:param target: Specifies a symbolic constant indicating the behavior to be
|
|
1308
|
-
controlled.
|
|
1309
|
-
:type target: set[str]
|
|
1310
|
-
:param mode: Specifies a symbolic constant indicating the desired behavior.
|
|
1311
|
-
:type mode: set[str]
|
|
1312
|
-
"""
|
|
1313
|
-
|
|
1314
|
-
def glIsBuffer(p0: int) -> bool:
|
|
1315
|
-
"""
|
|
1316
|
-
|
|
1317
|
-
:type p0: int
|
|
1318
|
-
:rtype: bool
|
|
1319
|
-
"""
|
|
1320
|
-
|
|
1321
|
-
def glIsEnabled(cap: set[str]) -> None:
|
|
1322
|
-
"""Test whether a capability is enabled`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsEnabled.xhtml>`__
|
|
1323
|
-
|
|
1324
|
-
:param cap: Specifies a constant representing a GL capability.
|
|
1325
|
-
:type cap: set[str]
|
|
1326
|
-
"""
|
|
1327
|
-
|
|
1328
|
-
def glIsProgram(program: int) -> None:
|
|
1329
|
-
"""Determines if a name corresponds to a program object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsProgram.xhtml>`__
|
|
1330
|
-
|
|
1331
|
-
:param program: Specifies a potential program object.
|
|
1332
|
-
:type program: int
|
|
1333
|
-
"""
|
|
1334
|
-
|
|
1335
|
-
def glIsQuery(p0: int) -> bool:
|
|
1336
|
-
"""
|
|
1337
|
-
|
|
1338
|
-
:type p0: int
|
|
1339
|
-
:rtype: bool
|
|
1340
|
-
"""
|
|
1341
|
-
|
|
1342
|
-
def glIsShader(shader: int) -> None:
|
|
1343
|
-
"""Determines if a name corresponds to a shader object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsShader.xhtml>`__
|
|
1344
|
-
|
|
1345
|
-
:param shader: Specifies a potential shader object.
|
|
1346
|
-
:type shader: int
|
|
1347
|
-
"""
|
|
1348
|
-
|
|
1349
|
-
def glIsTexture(texture: int) -> None:
|
|
1350
|
-
"""Determine if a name corresponds to a texture`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glIsTexture.xhtml>`__
|
|
1351
|
-
|
|
1352
|
-
:param texture: Specifies a value that may be the name of a texture.
|
|
1353
|
-
:type texture: int
|
|
1354
|
-
"""
|
|
1355
|
-
|
|
1356
|
-
def glIsVertexArray(p0: int) -> bool:
|
|
1357
|
-
"""
|
|
1358
|
-
|
|
1359
|
-
:type p0: int
|
|
1360
|
-
:rtype: bool
|
|
1361
|
-
"""
|
|
1362
|
-
|
|
1363
|
-
def glLight(light: set[str], pname: set[str], param: typing.Any) -> None:
|
|
1364
|
-
"""B{glLightf,glLighti, glLightfv, glLightiv}Set the light source parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLight.xhtml>`__
|
|
1365
|
-
|
|
1366
|
-
:param light: Specifies a light. The number of lights depends on the implementation,
|
|
1367
|
-
but at least eight lights are supported. They are identified by symbolic names of the
|
|
1368
|
-
form GL_LIGHTi where 0 < i < GL_MAX_LIGHTS.
|
|
1369
|
-
:type light: set[str]
|
|
1370
|
-
:param pname: Specifies a single-valued light source parameter for light.
|
|
1371
|
-
:type pname: set[str]
|
|
1372
|
-
:param param: Specifies the value that parameter pname of light source light will be set to.
|
|
1373
|
-
If function prototype ends in 'v' specifies a pointer to the value or values that
|
|
1374
|
-
parameter pname of light source light will be set to.
|
|
1375
|
-
:type param: typing.Any
|
|
1376
|
-
"""
|
|
1377
|
-
|
|
1378
|
-
def glLightModel(pname: set[str], param: typing.Any) -> None:
|
|
1379
|
-
"""B{glLightModelf, glLightModeli, glLightModelfv, glLightModeliv}Set the lighting model parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLightModel.xhtml>`__
|
|
1380
|
-
|
|
1381
|
-
:param pname: Specifies a single-value light model parameter.
|
|
1382
|
-
:type pname: set[str]
|
|
1383
|
-
:param param: Specifies the value that param will be set to. If function prototype ends in 'v'
|
|
1384
|
-
specifies a pointer to the value or values that param will be set to.
|
|
1385
|
-
:type param: typing.Any
|
|
1386
|
-
"""
|
|
1387
|
-
|
|
1388
|
-
def glLineWidth(width: float) -> None:
|
|
1389
|
-
"""Specify the width of rasterized lines.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLineWidth.xhtml>`__
|
|
1390
|
-
|
|
1391
|
-
:param width: Specifies the width of rasterized lines. The initial value is 1.
|
|
1392
|
-
:type width: float
|
|
1393
|
-
"""
|
|
1394
|
-
|
|
1395
|
-
def glLinkProgram(program: int) -> None:
|
|
1396
|
-
"""Links a program object.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLinkProgram.xhtml>`__
|
|
1397
|
-
|
|
1398
|
-
:param program: Specifies the handle of the program object to be linked.
|
|
1399
|
-
:type program: int
|
|
1400
|
-
"""
|
|
1401
|
-
|
|
1402
|
-
def glLoadMatrix(m: Buffer) -> None:
|
|
1403
|
-
"""B{glLoadMatrixd, glLoadMatixf}Replace the current matrix with the specified matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLoadMatrix.xhtml>`__
|
|
1404
|
-
|
|
1405
|
-
:param m: Specifies a pointer to 16 consecutive values, which are used as the elements
|
|
1406
|
-
of a 4x4 column-major matrix.
|
|
1407
|
-
:type m: Buffer
|
|
1408
|
-
"""
|
|
1409
|
-
|
|
1410
|
-
def glLogicOp(opcode: set[str]) -> None:
|
|
1411
|
-
"""Specify a logical pixel operation for color index rendering`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glLogicOp.xhtml>`__
|
|
1412
|
-
|
|
1413
|
-
:param opcode: Specifies a symbolic constant that selects a logical operation.
|
|
1414
|
-
:type opcode: set[str]
|
|
1415
|
-
"""
|
|
1416
|
-
|
|
1417
|
-
def glMap1(
|
|
1418
|
-
target: set[str], u1: typing.Any, u2, stride: int, order: int, points: Buffer
|
|
1419
|
-
) -> None:
|
|
1420
|
-
"""B{glMap1d, glMap1f}Define a one-dimensional evaluator`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMap1.xhtml>`__
|
|
1421
|
-
|
|
1422
|
-
:param target: Specifies the kind of values that are generated by the evaluator.
|
|
1423
|
-
:type target: set[str]
|
|
1424
|
-
:param u1: Specify a linear mapping of u, as presented to glEvalCoord1, to ^, t
|
|
1425
|
-
he variable that is evaluated by the equations specified by this command.
|
|
1426
|
-
:type u1: typing.Any
|
|
1427
|
-
:param stride: Specifies the number of floats or float (double)s between the beginning
|
|
1428
|
-
of one control point and the beginning of the next one in the data structure
|
|
1429
|
-
referenced in points. This allows control points to be embedded in arbitrary data
|
|
1430
|
-
structures. The only constraint is that the values for a particular control point must
|
|
1431
|
-
occupy contiguous memory locations.
|
|
1432
|
-
:type stride: int
|
|
1433
|
-
:param order: Specifies the number of control points. Must be positive.
|
|
1434
|
-
:type order: int
|
|
1435
|
-
:param points: Specifies a pointer to the array of control points.
|
|
1436
|
-
:type points: Buffer
|
|
1437
|
-
"""
|
|
1438
|
-
|
|
1439
|
-
def glMap2(
|
|
1440
|
-
target: set[str],
|
|
1441
|
-
u1: typing.Any,
|
|
1442
|
-
u2,
|
|
1443
|
-
ustride: int,
|
|
1444
|
-
uorder: int,
|
|
1445
|
-
v1: typing.Any,
|
|
1446
|
-
v2,
|
|
1447
|
-
vstride: int,
|
|
1448
|
-
vorder: int,
|
|
1449
|
-
points: Buffer,
|
|
1450
|
-
) -> None:
|
|
1451
|
-
"""B{glMap2d, glMap2f}Define a two-dimensional evaluator`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMap2.xhtml>`__
|
|
1452
|
-
|
|
1453
|
-
:param target: Specifies the kind of values that are generated by the evaluator.
|
|
1454
|
-
:type target: set[str]
|
|
1455
|
-
:param u1: Specify a linear mapping of u, as presented to glEvalCoord2, to ^, t
|
|
1456
|
-
he variable that is evaluated by the equations specified by this command. Initially
|
|
1457
|
-
u1 is 0 and u2 is 1.
|
|
1458
|
-
:type u1: typing.Any
|
|
1459
|
-
:param ustride: Specifies the number of floats or float (double)s between the beginning
|
|
1460
|
-
of control point R and the beginning of control point R ij, where i and j are the u
|
|
1461
|
-
and v control point indices, respectively. This allows control points to be embedded
|
|
1462
|
-
in arbitrary data structures. The only constraint is that the values for a particular
|
|
1463
|
-
control point must occupy contiguous memory locations. The initial value of ustride is 0.
|
|
1464
|
-
:type ustride: int
|
|
1465
|
-
:param uorder: Specifies the dimension of the control point array in the u axis.
|
|
1466
|
-
Must be positive. The initial value is 1.
|
|
1467
|
-
:type uorder: int
|
|
1468
|
-
:param v1: Specify a linear mapping of v, as presented to glEvalCoord2,
|
|
1469
|
-
to ^, one of the two variables that are evaluated by the equations
|
|
1470
|
-
specified by this command. Initially, v1 is 0 and v2 is 1.
|
|
1471
|
-
:type v1: typing.Any
|
|
1472
|
-
:param vstride: Specifies the number of floats or float (double)s between the
|
|
1473
|
-
beginning of control point R and the beginning of control point R ij,
|
|
1474
|
-
where i and j are the u and v control point(indices, respectively.
|
|
1475
|
-
This allows control points to be embedded in arbitrary data structures.
|
|
1476
|
-
The only constraint is that the values for a particular control point must
|
|
1477
|
-
occupy contiguous memory locations. The initial value of vstride is 0.
|
|
1478
|
-
:type vstride: int
|
|
1479
|
-
:param vorder: Specifies the dimension of the control point array in the v axis.
|
|
1480
|
-
Must be positive. The initial value is 1.
|
|
1481
|
-
:type vorder: int
|
|
1482
|
-
:param points: Specifies a pointer to the array of control points.
|
|
1483
|
-
:type points: Buffer
|
|
1484
|
-
"""
|
|
1485
|
-
|
|
1486
|
-
def glMapBuffer(p0: int, p1: int) -> None:
|
|
1487
|
-
"""
|
|
1488
|
-
|
|
1489
|
-
:type p0: int
|
|
1490
|
-
:type p1: int
|
|
1491
|
-
"""
|
|
1492
|
-
|
|
1493
|
-
def glMapGrid(un: int, u1: typing.Any, u2, vn: int, v1: typing.Any, v2) -> None:
|
|
1494
|
-
"""B{glMapGrid1d, glMapGrid1f, glMapGrid2d, glMapGrid2f}Define a one- or two-dimensional mesh`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMapGrid.xhtml>`__
|
|
1495
|
-
|
|
1496
|
-
:param un: Specifies the number of partitions in the grid range interval
|
|
1497
|
-
[u1, u2]. Must be positive.
|
|
1498
|
-
:type un: int
|
|
1499
|
-
:param u1: Specify the mappings for integer grid domain values i=0 and i=un.
|
|
1500
|
-
:type u1: typing.Any
|
|
1501
|
-
:param vn: Specifies the number of partitions in the grid range interval
|
|
1502
|
-
[v1, v2] (glMapGrid2 only).
|
|
1503
|
-
:type vn: int
|
|
1504
|
-
:param v1: Specify the mappings for integer grid domain values j=0 and j=vn
|
|
1505
|
-
(glMapGrid2 only).
|
|
1506
|
-
:type v1: typing.Any
|
|
1507
|
-
"""
|
|
1508
|
-
|
|
1509
|
-
def glMaterial(face: set[str], pname: set[str], params: int) -> None:
|
|
1510
|
-
"""Specify material parameters for the lighting model.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMaterial.xhtml>`__
|
|
1511
|
-
|
|
1512
|
-
:param face: Specifies which face or faces are being updated. Must be one of:
|
|
1513
|
-
:type face: set[str]
|
|
1514
|
-
:param pname: Specifies the single-valued material parameter of the face
|
|
1515
|
-
or faces that is being updated. Must be GL_SHININESS.
|
|
1516
|
-
:type pname: set[str]
|
|
1517
|
-
:param params: Specifies the value that parameter GL_SHININESS will be set to.
|
|
1518
|
-
If function prototype ends in 'v' specifies a pointer to the value or values that
|
|
1519
|
-
pname will be set to.
|
|
1520
|
-
:type params: int
|
|
1521
|
-
"""
|
|
1522
|
-
|
|
1523
|
-
def glMultMatrix(m: Buffer) -> None:
|
|
1524
|
-
"""B{glMultMatrixd, glMultMatrixf}Multiply the current matrix with the specified matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glMultMatrix.xhtml>`__
|
|
1525
|
-
|
|
1526
|
-
:param m: Points to 16 consecutive values that are used as the elements of a 4x4 column
|
|
1527
|
-
major matrix.
|
|
1528
|
-
:type m: Buffer
|
|
1529
|
-
"""
|
|
1530
|
-
|
|
1531
|
-
def glNormal3(nx: typing.Any, ny, nz, v: Buffer) -> None:
|
|
1532
|
-
"""B{Normal3b, Normal3bv, Normal3d, Normal3dv, Normal3f, Normal3fv, Normal3i, Normal3iv,
|
|
1533
|
-
Normal3s, Normal3sv}Set the current normal vector`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glNormal.xhtml>`__
|
|
1534
|
-
|
|
1535
|
-
:param nx: Specify the x, y, and z coordinates of the new current normal.
|
|
1536
|
-
The initial value of the current normal is the unit vector, (0, 0, 1).
|
|
1537
|
-
:type nx: typing.Any
|
|
1538
|
-
:param v: Specifies a pointer to an array of three elements: the x, y, and z coordinates
|
|
1539
|
-
of the new current normal.
|
|
1540
|
-
:type v: Buffer
|
|
1541
|
-
"""
|
|
1542
|
-
|
|
1543
|
-
def glPixelMap(map: set[str], mapsize: int, values: Buffer) -> None:
|
|
1544
|
-
"""B{glPixelMapfv, glPixelMapuiv, glPixelMapusv}Set up pixel transfer maps`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelMap.xhtml>`__
|
|
1545
|
-
|
|
1546
|
-
:param map: Specifies a symbolic map name.
|
|
1547
|
-
:type map: set[str]
|
|
1548
|
-
:param mapsize: Specifies the size of the map being defined.
|
|
1549
|
-
:type mapsize: int
|
|
1550
|
-
:param values: Specifies an array of mapsize values.
|
|
1551
|
-
:type values: Buffer
|
|
1552
|
-
"""
|
|
1553
|
-
|
|
1554
|
-
def glPixelStore(pname: set[str], param: typing.Any) -> None:
|
|
1555
|
-
"""B{glPixelStoref, glPixelStorei}Set pixel storage modes`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelStore.xhtml>`__
|
|
1556
|
-
|
|
1557
|
-
:param pname: Specifies the symbolic name of the parameter to be set.
|
|
1558
|
-
Six values affect the packing of pixel data into memory.
|
|
1559
|
-
Six more affect the unpacking of pixel data from memory.
|
|
1560
|
-
:type pname: set[str]
|
|
1561
|
-
:param param: Specifies the value that pname is set to.
|
|
1562
|
-
:type param: typing.Any
|
|
1563
|
-
"""
|
|
1564
|
-
|
|
1565
|
-
def glPixelStoref(p0: int, p1: float) -> None:
|
|
1566
|
-
"""
|
|
1567
|
-
|
|
1568
|
-
:type p0: int
|
|
1569
|
-
:type p1: float
|
|
1570
|
-
"""
|
|
1571
|
-
|
|
1572
|
-
def glPixelStorei(p0: int, p1: int) -> None:
|
|
1573
|
-
"""
|
|
1574
|
-
|
|
1575
|
-
:type p0: int
|
|
1576
|
-
:type p1: int
|
|
1577
|
-
"""
|
|
1578
|
-
|
|
1579
|
-
def glPixelTransfer(pname: set[str], param: typing.Any) -> None:
|
|
1580
|
-
"""B{glPixelTransferf, glPixelTransferi}Set pixel transfer modes`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPixelTransfer.xhtml>`__
|
|
1581
|
-
|
|
1582
|
-
:param pname: Specifies the symbolic name of the pixel transfer parameter to be set.
|
|
1583
|
-
:type pname: set[str]
|
|
1584
|
-
:param param: Specifies the value that pname is set to.
|
|
1585
|
-
:type param: typing.Any
|
|
1586
|
-
"""
|
|
1587
|
-
|
|
1588
|
-
def glPointSize(size: float) -> None:
|
|
1589
|
-
"""Specify the diameter of rasterized points`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPointSize.xhtml>`__
|
|
1590
|
-
|
|
1591
|
-
:param size: Specifies the diameter of rasterized points. The initial value is 1.
|
|
1592
|
-
:type size: float
|
|
1593
|
-
"""
|
|
1594
|
-
|
|
1595
|
-
def glPolygonMode(face: set[str], mode: set[str]) -> None:
|
|
1596
|
-
"""Select a polygon rasterization mode`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonMode.xhtml>`__
|
|
1597
|
-
|
|
1598
|
-
:param face: Specifies the polygons that mode applies to.
|
|
1599
|
-
Must be GL_FRONT for front-facing polygons, GL_BACK for back- facing
|
|
1600
|
-
polygons, or GL_FRONT_AND_BACK for front- and back-facing polygons.
|
|
1601
|
-
:type face: set[str]
|
|
1602
|
-
:param mode: Specifies how polygons will be rasterized.
|
|
1603
|
-
The initial value is GL_FILL for both front- and back- facing polygons.
|
|
1604
|
-
:type mode: set[str]
|
|
1605
|
-
"""
|
|
1606
|
-
|
|
1607
|
-
def glPolygonOffset(factor: float, units: float) -> None:
|
|
1608
|
-
"""Set the scale and units used to calculate depth values`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glPolygonOffset.xhtml>`__
|
|
1609
|
-
|
|
1610
|
-
:param factor: Specifies a scale factor that is used to create a variable depth
|
|
1611
|
-
offset for each polygon. The initial value is 0.
|
|
1612
|
-
:type factor: float
|
|
1613
|
-
:param units: Is multiplied by an implementation-specific value to create a
|
|
1614
|
-
constant depth offset. The initial value is 0.
|
|
1615
|
-
:type units: float
|
|
1616
|
-
"""
|
|
1617
|
-
|
|
1618
|
-
def glRasterPos(x: typing.Any, y, z, w) -> None:
|
|
1619
|
-
"""B{glRasterPos2d, glRasterPos2f, glRasterPos2i, glRasterPos2s, glRasterPos3d,
|
|
1620
|
-
glRasterPos3f, glRasterPos3i, glRasterPos3s, glRasterPos4d, glRasterPos4f,
|
|
1621
|
-
glRasterPos4i, glRasterPos4s, glRasterPos2dv, glRasterPos2fv, glRasterPos2iv,
|
|
1622
|
-
glRasterPos2sv, glRasterPos3dv, glRasterPos3fv, glRasterPos3iv, glRasterPos3sv,
|
|
1623
|
-
glRasterPos4dv, glRasterPos4fv, glRasterPos4iv, glRasterPos4sv}Specify the raster position for pixel operations`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glRasterPos.xhtml>`__
|
|
1624
|
-
|
|
1625
|
-
:param x: Specify the x,y,z, and w object coordinates (if present) for the
|
|
1626
|
-
raster position. If function prototype ends in 'v' specifies a pointer to an array of two,
|
|
1627
|
-
three, or four elements, specifying x, y, z, and w coordinates, respectively.
|
|
1628
|
-
:type x: typing.Any
|
|
1629
|
-
"""
|
|
1630
|
-
|
|
1631
|
-
def glReadBuffer(mode: set[str]) -> None:
|
|
1632
|
-
"""Select a color buffer source for pixels.`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glReadBuffer.xhtml>`__
|
|
1633
|
-
|
|
1634
|
-
:param mode: Specifies a color buffer.
|
|
1635
|
-
:type mode: set[str]
|
|
1636
|
-
"""
|
|
1637
|
-
|
|
1638
|
-
def glReadPixels(
|
|
1639
|
-
x: int, y, width: int, height, format: set[str], type: set[str], pixels: Buffer
|
|
1640
|
-
) -> None:
|
|
1641
|
-
"""Read a block of pixels from the frame buffer`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glReadPixels.xhtml>`__
|
|
1642
|
-
|
|
1643
|
-
:param x: Specify the window coordinates of the first pixel that is read
|
|
1644
|
-
from the frame buffer. This location is the lower left corner of a rectangular
|
|
1645
|
-
block of pixels.
|
|
1646
|
-
:type x: int
|
|
1647
|
-
:param width: Specify the dimensions of the pixel rectangle. width and
|
|
1648
|
-
height of one correspond to a single pixel.
|
|
1649
|
-
:type width: int
|
|
1650
|
-
:param format: Specifies the format of the pixel data.
|
|
1651
|
-
:type format: set[str]
|
|
1652
|
-
:param type: Specifies the data type of the pixel data.
|
|
1653
|
-
:type type: set[str]
|
|
1654
|
-
:param pixels: Returns the pixel data.
|
|
1655
|
-
:type pixels: Buffer
|
|
1656
|
-
"""
|
|
1657
|
-
|
|
1658
|
-
def glRect(x1: typing.Any, y1, x2: typing.Any, y2, v1: typing.Any, v2) -> None:
|
|
1659
|
-
"""B{glRectd, glRectf, glRecti, glRects, glRectdv, glRectfv, glRectiv, glRectsv}Draw a rectangle`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glRect.xhtml>`__
|
|
1660
|
-
|
|
1661
|
-
:param x1: Specify one vertex of a rectangle
|
|
1662
|
-
:type x1: typing.Any
|
|
1663
|
-
:param x2: Specify the opposite vertex of the rectangle
|
|
1664
|
-
:type x2: typing.Any
|
|
1665
|
-
:param v1: Specifies a pointer to one vertex of a rectangle and the pointer
|
|
1666
|
-
to the opposite vertex of the rectangle
|
|
1667
|
-
:type v1: typing.Any
|
|
1668
|
-
"""
|
|
1669
|
-
|
|
1670
|
-
def glRenderbufferStorage(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
1671
|
-
"""
|
|
1672
|
-
|
|
1673
|
-
:type p0: int
|
|
1674
|
-
:type p1: int
|
|
1675
|
-
:type p2: int
|
|
1676
|
-
:type p3: int
|
|
1677
|
-
"""
|
|
1678
|
-
|
|
1679
|
-
def glRotate(angle: typing.Any, x: typing.Any, y, z) -> None:
|
|
1680
|
-
"""B{glRotated, glRotatef}Multiply the current matrix by a rotation matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glRotate.xhtml>`__
|
|
1681
|
-
|
|
1682
|
-
:param angle: Specifies the angle of rotation in degrees.
|
|
1683
|
-
:type angle: typing.Any
|
|
1684
|
-
:param x: Specify the x, y, and z coordinates of a vector respectively.
|
|
1685
|
-
:type x: typing.Any
|
|
1686
|
-
"""
|
|
1687
|
-
|
|
1688
|
-
def glSampleCoverage(p0: float, p1: bool) -> None:
|
|
1689
|
-
"""
|
|
1690
|
-
|
|
1691
|
-
:type p0: float
|
|
1692
|
-
:type p1: bool
|
|
1693
|
-
"""
|
|
1694
|
-
|
|
1695
|
-
def glSampleMaski(p0: int, p1: int) -> None:
|
|
1696
|
-
"""
|
|
1697
|
-
|
|
1698
|
-
:type p0: int
|
|
1699
|
-
:type p1: int
|
|
1700
|
-
"""
|
|
1701
|
-
|
|
1702
|
-
def glScale(x: typing.Any, y, z) -> None:
|
|
1703
|
-
"""B{glScaled, glScalef}Multiply the current matrix by a general scaling matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glScale.xhtml>`__
|
|
1704
|
-
|
|
1705
|
-
:param x: Specify scale factors along the x, y, and z axes, respectively.
|
|
1706
|
-
:type x: typing.Any
|
|
1707
|
-
"""
|
|
1708
|
-
|
|
1709
|
-
def glScissor(x: int, y, width: int, height) -> None:
|
|
1710
|
-
"""Define the scissor box`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glScissor.xhtml>`__
|
|
1711
|
-
|
|
1712
|
-
:param x: Specify the lower left corner of the scissor box. Initially (0, 0).
|
|
1713
|
-
:type x: int
|
|
1714
|
-
:param width: Specify the width and height of the scissor box. When a
|
|
1715
|
-
GL context is first attached to a window, width and height are set to the
|
|
1716
|
-
dimensions of that window.
|
|
1717
|
-
:type width: int
|
|
1718
|
-
"""
|
|
1719
|
-
|
|
1720
|
-
def glShaderSource(shader: int, shader_string: str) -> None:
|
|
1721
|
-
"""Replaces the source code in a shader object.`OpenGL Docs <https://www.opengl.org/sdk/docs/man/html/glShaderSource.xhtml>`__
|
|
1722
|
-
|
|
1723
|
-
:param shader: Specifies the handle of the shader object whose source code is to be replaced.
|
|
1724
|
-
:type shader: int
|
|
1725
|
-
:param shader_string: The shader string.
|
|
1726
|
-
:type shader_string: str
|
|
1727
|
-
"""
|
|
1728
|
-
|
|
1729
|
-
def glStencilFunc(func: set[str], ref: int, mask: int) -> None:
|
|
1730
|
-
"""Set function and reference value for stencil testing`OpenGL Docs <https://www.opengl.org/sdk/docs/man/docbook4/xhtml/glStencilFunc.xhtml>`__
|
|
1731
|
-
|
|
1732
|
-
:param func: Specifies the test function.
|
|
1733
|
-
:type func: set[str]
|
|
1734
|
-
:param ref: Specifies the reference value for the stencil test. ref is clamped
|
|
1735
|
-
to the range [0,2n-1], where n is the number of bitplanes in the stencil
|
|
1736
|
-
buffer. The initial value is 0.
|
|
1737
|
-
:type ref: int
|
|
1738
|
-
:param mask: Specifies a mask that is ANDed with both the reference value and
|
|
1739
|
-
the stored stencil value when the test is done. The initial value is all 1's.
|
|
1740
|
-
:type mask: int
|
|
1741
|
-
"""
|
|
1742
|
-
|
|
1743
|
-
def glStencilFuncSeparate(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
1744
|
-
"""
|
|
1745
|
-
|
|
1746
|
-
:type p0: int
|
|
1747
|
-
:type p1: int
|
|
1748
|
-
:type p2: int
|
|
1749
|
-
:type p3: int
|
|
1750
|
-
"""
|
|
1751
|
-
|
|
1752
|
-
def glStencilMask(mask: int) -> None:
|
|
1753
|
-
"""Control the writing of individual bits in the stencil planes`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilMask.xhtml>`__
|
|
1754
|
-
|
|
1755
|
-
:param mask: Specifies a bit mask to enable and disable writing of individual bits
|
|
1756
|
-
in the stencil planes. Initially, the mask is all 1's.
|
|
1757
|
-
:type mask: int
|
|
1758
|
-
"""
|
|
1759
|
-
|
|
1760
|
-
def glStencilMaskSeparate(p0: int, p1: int) -> None:
|
|
1761
|
-
"""
|
|
1762
|
-
|
|
1763
|
-
:type p0: int
|
|
1764
|
-
:type p1: int
|
|
1765
|
-
"""
|
|
1766
|
-
|
|
1767
|
-
def glStencilOp(fail: set[str], zfail: set[str], zpass: set[str]) -> None:
|
|
1768
|
-
"""Set stencil test actions`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glStencilOp.xhtml>`__
|
|
1769
|
-
|
|
1770
|
-
:param fail: Specifies the action to take when the stencil test fails.
|
|
1771
|
-
The initial value is GL_KEEP.
|
|
1772
|
-
:type fail: set[str]
|
|
1773
|
-
:param zfail: Specifies the stencil action when the stencil test passes, but the
|
|
1774
|
-
depth test fails. zfail accepts the same symbolic constants as fail.
|
|
1775
|
-
The initial value is GL_KEEP.
|
|
1776
|
-
:type zfail: set[str]
|
|
1777
|
-
:param zpass: Specifies the stencil action when both the stencil test and the
|
|
1778
|
-
depth test pass, or when the stencil test passes and either there is no
|
|
1779
|
-
depth buffer or depth testing is not enabled. zpass accepts the same
|
|
1780
|
-
symbolic constants
|
|
1781
|
-
as fail. The initial value is GL_KEEP.
|
|
1782
|
-
:type zpass: set[str]
|
|
1783
|
-
"""
|
|
1784
|
-
|
|
1785
|
-
def glStencilOpSeparate(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
1786
|
-
"""
|
|
1787
|
-
|
|
1788
|
-
:type p0: int
|
|
1789
|
-
:type p1: int
|
|
1790
|
-
:type p2: int
|
|
1791
|
-
:type p3: int
|
|
1792
|
-
"""
|
|
1793
|
-
|
|
1794
|
-
def glTexCoord(s: typing.Any, t, r, q, v: Buffer) -> None:
|
|
1795
|
-
"""B{glTexCoord1d, glTexCoord1f, glTexCoord1i, glTexCoord1s, glTexCoord2d, glTexCoord2f,
|
|
1796
|
-
glTexCoord2i, glTexCoord2s, glTexCoord3d, glTexCoord3f, glTexCoord3i, glTexCoord3s,
|
|
1797
|
-
glTexCoord4d, glTexCoord4f, glTexCoord4i, glTexCoord4s, glTexCoord1dv, glTexCoord1fv,
|
|
1798
|
-
glTexCoord1iv, glTexCoord1sv, glTexCoord2dv, glTexCoord2fv, glTexCoord2iv,
|
|
1799
|
-
glTexCoord2sv, glTexCoord3dv, glTexCoord3fv, glTexCoord3iv, glTexCoord3sv,
|
|
1800
|
-
glTexCoord4dv, glTexCoord4fv, glTexCoord4iv, glTexCoord4sv}Set the current texture coordinates`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexCoord.xhtml>`__
|
|
1801
|
-
|
|
1802
|
-
:param s: Specify s, t, r, and q texture coordinates. Not all parameters are
|
|
1803
|
-
present in all forms of the command.
|
|
1804
|
-
:type s: typing.Any
|
|
1805
|
-
:param v: Specifies a pointer to an array of one, two, three, or four elements,
|
|
1806
|
-
which in turn specify the s, t, r, and q texture coordinates.
|
|
1807
|
-
:type v: Buffer
|
|
1808
|
-
"""
|
|
1809
|
-
|
|
1810
|
-
def glTexEnv(target: set[str], pname: set[str], param: typing.Any) -> None:
|
|
1811
|
-
"""B{glTextEnvf, glTextEnvi, glTextEnvfv, glTextEnviv}Set texture environment parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexEnv.xhtml>`__
|
|
1812
|
-
|
|
1813
|
-
:param target: Specifies a texture environment. Must be GL_TEXTURE_ENV.
|
|
1814
|
-
:type target: set[str]
|
|
1815
|
-
:param pname: Specifies the symbolic name of a single-valued texture environment
|
|
1816
|
-
parameter. Must be GL_TEXTURE_ENV_MODE.
|
|
1817
|
-
:type pname: set[str]
|
|
1818
|
-
:param param: Specifies a single symbolic constant. If function prototype ends in 'v'
|
|
1819
|
-
specifies a pointer to a parameter array that contains either a single
|
|
1820
|
-
symbolic constant or an RGBA color
|
|
1821
|
-
:type param: typing.Any
|
|
1822
|
-
"""
|
|
1823
|
-
|
|
1824
|
-
def glTexGen(coord: set[str], pname: set[str], param: typing.Any) -> None:
|
|
1825
|
-
"""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>`__
|
|
1826
|
-
|
|
1827
|
-
:param coord: Specifies a texture coordinate.
|
|
1828
|
-
:type coord: set[str]
|
|
1829
|
-
:param pname: Specifies the symbolic name of the texture- coordinate generation function.
|
|
1830
|
-
:type pname: set[str]
|
|
1831
|
-
:param param: Specifies a single-valued texture generation parameter.
|
|
1832
|
-
If function prototype ends in 'v' specifies a pointer to an array of texture
|
|
1833
|
-
generation parameters. If pname is GL_TEXTURE_GEN_MODE, then the array must
|
|
1834
|
-
contain a single symbolic constant. Otherwise, params holds the coefficients
|
|
1835
|
-
for the texture-coordinate generation function specified by pname.
|
|
1836
|
-
:type param: typing.Any
|
|
1837
|
-
"""
|
|
1838
|
-
|
|
1839
|
-
def glTexImage1D(
|
|
1840
|
-
target: set[str],
|
|
1841
|
-
level: int,
|
|
1842
|
-
internalformat: int,
|
|
1843
|
-
width: int,
|
|
1844
|
-
border: int,
|
|
1845
|
-
format: set[str],
|
|
1846
|
-
type: set[str],
|
|
1847
|
-
pixels: Buffer,
|
|
1848
|
-
) -> None:
|
|
1849
|
-
"""Specify a one-dimensional texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage1D.xhtml>`__
|
|
1850
|
-
|
|
1851
|
-
:param target: Specifies the target texture.
|
|
1852
|
-
:type target: set[str]
|
|
1853
|
-
:param level: Specifies the level-of-detail number. Level 0 is the base image level.
|
|
1854
|
-
Level n is the nth mipmap reduction image.
|
|
1855
|
-
:type level: int
|
|
1856
|
-
:param internalformat: Specifies the number of color components in the texture.
|
|
1857
|
-
:type internalformat: int
|
|
1858
|
-
:param width: Specifies the width of the texture image. Must be 2n+2(border)
|
|
1859
|
-
for some integer n. All implementations support texture images that are
|
|
1860
|
-
at least 64 texels wide. The height of the 1D texture image is 1.
|
|
1861
|
-
:type width: int
|
|
1862
|
-
:param border: Specifies the width of the border. Must be either 0 or 1.
|
|
1863
|
-
:type border: int
|
|
1864
|
-
:param format: Specifies the format of the pixel data.
|
|
1865
|
-
:type format: set[str]
|
|
1866
|
-
:param type: Specifies the data type of the pixel data.
|
|
1867
|
-
:type type: set[str]
|
|
1868
|
-
:param pixels: Specifies a pointer to the image data in memory.
|
|
1869
|
-
:type pixels: Buffer
|
|
1870
|
-
"""
|
|
1871
|
-
|
|
1872
|
-
def glTexImage2D(
|
|
1873
|
-
target: set[str],
|
|
1874
|
-
level: int,
|
|
1875
|
-
internalformat: int,
|
|
1876
|
-
width: int,
|
|
1877
|
-
height: int,
|
|
1878
|
-
border: int,
|
|
1879
|
-
format: set[str],
|
|
1880
|
-
type: set[str],
|
|
1881
|
-
pixels: Buffer,
|
|
1882
|
-
) -> None:
|
|
1883
|
-
"""Specify a two-dimensional texture image`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage2D.xhtml>`__
|
|
1884
|
-
|
|
1885
|
-
:param target: Specifies the target texture.
|
|
1886
|
-
:type target: set[str]
|
|
1887
|
-
:param level: Specifies the level-of-detail number. Level 0 is the base image level.
|
|
1888
|
-
Level n is the nth mipmap reduction image.
|
|
1889
|
-
:type level: int
|
|
1890
|
-
:param internalformat: Specifies the number of color components in the texture.
|
|
1891
|
-
:type internalformat: int
|
|
1892
|
-
:param width: Specifies the width of the texture image. Must be 2n+2(border)
|
|
1893
|
-
for some integer n. All implementations support texture images that are at
|
|
1894
|
-
least 64 texels wide.
|
|
1895
|
-
:type width: int
|
|
1896
|
-
:param height: Specifies the height of the texture image. Must be 2m+2(border) for
|
|
1897
|
-
some integer m. All implementations support texture images that are at
|
|
1898
|
-
least 64 texels high.
|
|
1899
|
-
:type height: int
|
|
1900
|
-
:param border: Specifies the width of the border. Must be either 0 or 1.
|
|
1901
|
-
:type border: int
|
|
1902
|
-
:param format: Specifies the format of the pixel data.
|
|
1903
|
-
:type format: set[str]
|
|
1904
|
-
:param type: Specifies the data type of the pixel data.
|
|
1905
|
-
:type type: set[str]
|
|
1906
|
-
:param pixels: Specifies a pointer to the image data in memory.
|
|
1907
|
-
:type pixels: Buffer
|
|
1908
|
-
"""
|
|
1909
|
-
|
|
1910
|
-
def glTexImage2DMultisample(
|
|
1911
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: bool
|
|
1912
|
-
) -> None:
|
|
1913
|
-
"""
|
|
1914
|
-
|
|
1915
|
-
:type p0: int
|
|
1916
|
-
:type p1: int
|
|
1917
|
-
:type p2: int
|
|
1918
|
-
:type p3: int
|
|
1919
|
-
:type p4: int
|
|
1920
|
-
:type p5: bool
|
|
1921
|
-
"""
|
|
1922
|
-
|
|
1923
|
-
def glTexImage3D(
|
|
1924
|
-
p0: int,
|
|
1925
|
-
p1: int,
|
|
1926
|
-
p2: int,
|
|
1927
|
-
p3: int,
|
|
1928
|
-
p4: int,
|
|
1929
|
-
p5: int,
|
|
1930
|
-
p6: int,
|
|
1931
|
-
p7: int,
|
|
1932
|
-
p8: int,
|
|
1933
|
-
p9: typing.Any,
|
|
1934
|
-
) -> None:
|
|
1935
|
-
"""
|
|
1936
|
-
|
|
1937
|
-
:type p0: int
|
|
1938
|
-
:type p1: int
|
|
1939
|
-
:type p2: int
|
|
1940
|
-
:type p3: int
|
|
1941
|
-
:type p4: int
|
|
1942
|
-
:type p5: int
|
|
1943
|
-
:type p6: int
|
|
1944
|
-
:type p7: int
|
|
1945
|
-
:type p8: int
|
|
1946
|
-
:type p9: typing.Any
|
|
1947
|
-
"""
|
|
1948
|
-
|
|
1949
|
-
def glTexImage3DMultisample(
|
|
1950
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: bool
|
|
1951
|
-
) -> None:
|
|
1952
|
-
"""
|
|
1953
|
-
|
|
1954
|
-
:type p0: int
|
|
1955
|
-
:type p1: int
|
|
1956
|
-
:type p2: int
|
|
1957
|
-
:type p3: int
|
|
1958
|
-
:type p4: int
|
|
1959
|
-
:type p5: int
|
|
1960
|
-
:type p6: bool
|
|
1961
|
-
"""
|
|
1962
|
-
|
|
1963
|
-
def glTexParameter(target: set[str], pname: set[str], param: typing.Any) -> None:
|
|
1964
|
-
"""B{glTexParameterf, glTexParameteri, glTexParameterfv, glTexParameteriv}Set texture parameters`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTexParameter.xhtml>`__
|
|
1965
|
-
|
|
1966
|
-
:param target: Specifies the target texture.
|
|
1967
|
-
:type target: set[str]
|
|
1968
|
-
:param pname: Specifies the symbolic name of a single-valued texture parameter.
|
|
1969
|
-
:type pname: set[str]
|
|
1970
|
-
:param param: Specifies the value of pname. If function prototype ends in 'v' specifies
|
|
1971
|
-
a pointer to an array where the value or values of pname are stored.
|
|
1972
|
-
:type param: typing.Any
|
|
1973
|
-
"""
|
|
1974
|
-
|
|
1975
|
-
def glTexParameterf(p0: int, p1: int, p2: float) -> None:
|
|
1976
|
-
"""
|
|
1977
|
-
|
|
1978
|
-
:type p0: int
|
|
1979
|
-
:type p1: int
|
|
1980
|
-
:type p2: float
|
|
1981
|
-
"""
|
|
1982
|
-
|
|
1983
|
-
def glTexParameterfv(p0: int, p1: int, p2: float) -> None:
|
|
1984
|
-
"""
|
|
1985
|
-
|
|
1986
|
-
:type p0: int
|
|
1987
|
-
:type p1: int
|
|
1988
|
-
:type p2: float
|
|
1989
|
-
"""
|
|
1990
|
-
|
|
1991
|
-
def glTexParameteri(p0: int, p1: int, p2: int) -> None:
|
|
1992
|
-
"""
|
|
1993
|
-
|
|
1994
|
-
:type p0: int
|
|
1995
|
-
:type p1: int
|
|
1996
|
-
:type p2: int
|
|
1997
|
-
"""
|
|
1998
|
-
|
|
1999
|
-
def glTexParameteriv(p0: int, p1: int, p2: int) -> None:
|
|
2000
|
-
"""
|
|
2001
|
-
|
|
2002
|
-
:type p0: int
|
|
2003
|
-
:type p1: int
|
|
2004
|
-
:type p2: int
|
|
2005
|
-
"""
|
|
2006
|
-
|
|
2007
|
-
def glTexSubImage1D(
|
|
2008
|
-
p0: int, p1: int, p2: int, p3: int, p4: int, p5: int, p6: typing.Any
|
|
2009
|
-
) -> None:
|
|
2010
|
-
"""
|
|
2011
|
-
|
|
2012
|
-
:type p0: int
|
|
2013
|
-
:type p1: int
|
|
2014
|
-
:type p2: int
|
|
2015
|
-
:type p3: int
|
|
2016
|
-
:type p4: int
|
|
2017
|
-
:type p5: int
|
|
2018
|
-
:type p6: typing.Any
|
|
2019
|
-
"""
|
|
2020
|
-
|
|
2021
|
-
def glTexSubImage2D(
|
|
2022
|
-
p0: int,
|
|
2023
|
-
p1: int,
|
|
2024
|
-
p2: int,
|
|
2025
|
-
p3: int,
|
|
2026
|
-
p4: int,
|
|
2027
|
-
p5: int,
|
|
2028
|
-
p6: int,
|
|
2029
|
-
p7: int,
|
|
2030
|
-
p8: typing.Any,
|
|
2031
|
-
) -> None:
|
|
2032
|
-
"""
|
|
2033
|
-
|
|
2034
|
-
:type p0: int
|
|
2035
|
-
:type p1: int
|
|
2036
|
-
:type p2: int
|
|
2037
|
-
:type p3: int
|
|
2038
|
-
:type p4: int
|
|
2039
|
-
:type p5: int
|
|
2040
|
-
:type p6: int
|
|
2041
|
-
:type p7: int
|
|
2042
|
-
:type p8: typing.Any
|
|
2043
|
-
"""
|
|
2044
|
-
|
|
2045
|
-
def glTexSubImage3D(
|
|
2046
|
-
p0: int,
|
|
2047
|
-
p1: int,
|
|
2048
|
-
p2: int,
|
|
2049
|
-
p3: int,
|
|
2050
|
-
p4: int,
|
|
2051
|
-
p5: int,
|
|
2052
|
-
p6: int,
|
|
2053
|
-
p7: int,
|
|
2054
|
-
p8: int,
|
|
2055
|
-
p9: int,
|
|
2056
|
-
p10: typing.Any,
|
|
2057
|
-
) -> None:
|
|
2058
|
-
"""
|
|
2059
|
-
|
|
2060
|
-
:type p0: int
|
|
2061
|
-
:type p1: int
|
|
2062
|
-
:type p2: int
|
|
2063
|
-
:type p3: int
|
|
2064
|
-
:type p4: int
|
|
2065
|
-
:type p5: int
|
|
2066
|
-
:type p6: int
|
|
2067
|
-
:type p7: int
|
|
2068
|
-
:type p8: int
|
|
2069
|
-
:type p9: int
|
|
2070
|
-
:type p10: typing.Any
|
|
2071
|
-
"""
|
|
2072
|
-
|
|
2073
|
-
def glTranslate(x: typing.Any, y, z) -> None:
|
|
2074
|
-
"""B{glTranslatef, glTranslated}Multiply the current matrix by a translation matrix`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glTranslate.xhtml>`__
|
|
2075
|
-
|
|
2076
|
-
:param x: Specify the x, y, and z coordinates of a translation vector.
|
|
2077
|
-
:type x: typing.Any
|
|
2078
|
-
"""
|
|
2079
|
-
|
|
2080
|
-
def glUniform1f(p0: int, p1: float) -> None:
|
|
2081
|
-
"""
|
|
2082
|
-
|
|
2083
|
-
:type p0: int
|
|
2084
|
-
:type p1: float
|
|
2085
|
-
"""
|
|
2086
|
-
|
|
2087
|
-
def glUniform1fv(p0: int, p1: int, p2: float) -> None:
|
|
2088
|
-
"""
|
|
2089
|
-
|
|
2090
|
-
:type p0: int
|
|
2091
|
-
:type p1: int
|
|
2092
|
-
:type p2: float
|
|
2093
|
-
"""
|
|
2094
|
-
|
|
2095
|
-
def glUniform1i(p0: int, p1: int) -> None:
|
|
2096
|
-
"""
|
|
2097
|
-
|
|
2098
|
-
:type p0: int
|
|
2099
|
-
:type p1: int
|
|
2100
|
-
"""
|
|
2101
|
-
|
|
2102
|
-
def glUniform1iv(p0: int, p1: int, p2: int) -> None:
|
|
2103
|
-
"""
|
|
2104
|
-
|
|
2105
|
-
:type p0: int
|
|
2106
|
-
:type p1: int
|
|
2107
|
-
:type p2: int
|
|
2108
|
-
"""
|
|
2109
|
-
|
|
2110
|
-
def glUniform2f(p0: int, p1: float, p2: float) -> None:
|
|
2111
|
-
"""
|
|
2112
|
-
|
|
2113
|
-
:type p0: int
|
|
2114
|
-
:type p1: float
|
|
2115
|
-
:type p2: float
|
|
2116
|
-
"""
|
|
2117
|
-
|
|
2118
|
-
def glUniform2fv(p0: int, p1: int, p2: float) -> None:
|
|
2119
|
-
"""
|
|
2120
|
-
|
|
2121
|
-
:type p0: int
|
|
2122
|
-
:type p1: int
|
|
2123
|
-
:type p2: float
|
|
2124
|
-
"""
|
|
2125
|
-
|
|
2126
|
-
def glUniform2i(p0: int, p1: int, p2: int) -> None:
|
|
2127
|
-
"""
|
|
2128
|
-
|
|
2129
|
-
:type p0: int
|
|
2130
|
-
:type p1: int
|
|
2131
|
-
:type p2: int
|
|
2132
|
-
"""
|
|
2133
|
-
|
|
2134
|
-
def glUniform2iv(p0: int, p1: int, p2: int) -> None:
|
|
2135
|
-
"""
|
|
2136
|
-
|
|
2137
|
-
:type p0: int
|
|
2138
|
-
:type p1: int
|
|
2139
|
-
:type p2: int
|
|
2140
|
-
"""
|
|
2141
|
-
|
|
2142
|
-
def glUniform3f(p0: int, p1: float, p2: float, p3: float) -> None:
|
|
2143
|
-
"""
|
|
2144
|
-
|
|
2145
|
-
:type p0: int
|
|
2146
|
-
:type p1: float
|
|
2147
|
-
:type p2: float
|
|
2148
|
-
:type p3: float
|
|
2149
|
-
"""
|
|
2150
|
-
|
|
2151
|
-
def glUniform3fv(p0: int, p1: int, p2: float) -> None:
|
|
2152
|
-
"""
|
|
2153
|
-
|
|
2154
|
-
:type p0: int
|
|
2155
|
-
:type p1: int
|
|
2156
|
-
:type p2: float
|
|
2157
|
-
"""
|
|
2158
|
-
|
|
2159
|
-
def glUniform3i(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
2160
|
-
"""
|
|
2161
|
-
|
|
2162
|
-
:type p0: int
|
|
2163
|
-
:type p1: int
|
|
2164
|
-
:type p2: int
|
|
2165
|
-
:type p3: int
|
|
2166
|
-
"""
|
|
2167
|
-
|
|
2168
|
-
def glUniform3iv(p0: int, p1: int, p2: int) -> None:
|
|
2169
|
-
"""
|
|
2170
|
-
|
|
2171
|
-
:type p0: int
|
|
2172
|
-
:type p1: int
|
|
2173
|
-
:type p2: int
|
|
2174
|
-
"""
|
|
2175
|
-
|
|
2176
|
-
def glUniform4f(p0: int, p1: float, p2: float, p3: float, p4: float) -> None:
|
|
2177
|
-
"""
|
|
2178
|
-
|
|
2179
|
-
:type p0: int
|
|
2180
|
-
:type p1: float
|
|
2181
|
-
:type p2: float
|
|
2182
|
-
:type p3: float
|
|
2183
|
-
:type p4: float
|
|
2184
|
-
"""
|
|
2185
|
-
|
|
2186
|
-
def glUniform4fv(p0: int, p1: int, p2: float) -> None:
|
|
2187
|
-
"""
|
|
2188
|
-
|
|
2189
|
-
:type p0: int
|
|
2190
|
-
:type p1: int
|
|
2191
|
-
:type p2: float
|
|
2192
|
-
"""
|
|
2193
|
-
|
|
2194
|
-
def glUniform4i(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
2195
|
-
"""
|
|
2196
|
-
|
|
2197
|
-
:type p0: int
|
|
2198
|
-
:type p1: int
|
|
2199
|
-
:type p2: int
|
|
2200
|
-
:type p3: int
|
|
2201
|
-
:type p4: int
|
|
2202
|
-
"""
|
|
2203
|
-
|
|
2204
|
-
def glUniform4iv(p0: int, p1: int, p2: int) -> None:
|
|
2205
|
-
"""
|
|
2206
|
-
|
|
2207
|
-
:type p0: int
|
|
2208
|
-
:type p1: int
|
|
2209
|
-
:type p2: int
|
|
2210
|
-
"""
|
|
2211
|
-
|
|
2212
|
-
def glUniformBlockBinding(p0: int, p1: int, p2: int) -> None:
|
|
2213
|
-
"""
|
|
2214
|
-
|
|
2215
|
-
:type p0: int
|
|
2216
|
-
:type p1: int
|
|
2217
|
-
:type p2: int
|
|
2218
|
-
"""
|
|
2219
|
-
|
|
2220
|
-
def glUniformMatrix2fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2221
|
-
"""
|
|
2222
|
-
|
|
2223
|
-
:type p0: int
|
|
2224
|
-
:type p1: int
|
|
2225
|
-
:type p2: bool
|
|
2226
|
-
:type p3: float
|
|
2227
|
-
"""
|
|
2228
|
-
|
|
2229
|
-
def glUniformMatrix2x3fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2230
|
-
"""
|
|
2231
|
-
|
|
2232
|
-
:type p0: int
|
|
2233
|
-
:type p1: int
|
|
2234
|
-
:type p2: bool
|
|
2235
|
-
:type p3: float
|
|
2236
|
-
"""
|
|
2237
|
-
|
|
2238
|
-
def glUniformMatrix2x4fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2239
|
-
"""
|
|
2240
|
-
|
|
2241
|
-
:type p0: int
|
|
2242
|
-
:type p1: int
|
|
2243
|
-
:type p2: bool
|
|
2244
|
-
:type p3: float
|
|
2245
|
-
"""
|
|
2246
|
-
|
|
2247
|
-
def glUniformMatrix3fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2248
|
-
"""
|
|
2249
|
-
|
|
2250
|
-
:type p0: int
|
|
2251
|
-
:type p1: int
|
|
2252
|
-
:type p2: bool
|
|
2253
|
-
:type p3: float
|
|
2254
|
-
"""
|
|
2255
|
-
|
|
2256
|
-
def glUniformMatrix3x2fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2257
|
-
"""
|
|
2258
|
-
|
|
2259
|
-
:type p0: int
|
|
2260
|
-
:type p1: int
|
|
2261
|
-
:type p2: bool
|
|
2262
|
-
:type p3: float
|
|
2263
|
-
"""
|
|
2264
|
-
|
|
2265
|
-
def glUniformMatrix3x4fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2266
|
-
"""
|
|
2267
|
-
|
|
2268
|
-
:type p0: int
|
|
2269
|
-
:type p1: int
|
|
2270
|
-
:type p2: bool
|
|
2271
|
-
:type p3: float
|
|
2272
|
-
"""
|
|
2273
|
-
|
|
2274
|
-
def glUniformMatrix4fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2275
|
-
"""
|
|
2276
|
-
|
|
2277
|
-
:type p0: int
|
|
2278
|
-
:type p1: int
|
|
2279
|
-
:type p2: bool
|
|
2280
|
-
:type p3: float
|
|
2281
|
-
"""
|
|
2282
|
-
|
|
2283
|
-
def glUniformMatrix4x2fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2284
|
-
"""
|
|
2285
|
-
|
|
2286
|
-
:type p0: int
|
|
2287
|
-
:type p1: int
|
|
2288
|
-
:type p2: bool
|
|
2289
|
-
:type p3: float
|
|
2290
|
-
"""
|
|
2291
|
-
|
|
2292
|
-
def glUniformMatrix4x3fv(p0: int, p1: int, p2: bool, p3: float) -> None:
|
|
2293
|
-
"""
|
|
2294
|
-
|
|
2295
|
-
:type p0: int
|
|
2296
|
-
:type p1: int
|
|
2297
|
-
:type p2: bool
|
|
2298
|
-
:type p3: float
|
|
2299
|
-
"""
|
|
2300
|
-
|
|
2301
|
-
def glUnmapBuffer(p0: int) -> bool:
|
|
2302
|
-
"""
|
|
2303
|
-
|
|
2304
|
-
:type p0: int
|
|
2305
|
-
:rtype: bool
|
|
2306
|
-
"""
|
|
2307
|
-
|
|
2308
|
-
def glUseProgram(program: int) -> None:
|
|
2309
|
-
"""Installs a program object as part of current rendering state`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glUseProgram.xhtml>`__
|
|
2310
|
-
|
|
2311
|
-
:param program: Specifies the handle of the program object whose executables are to be used as part of current rendering state.
|
|
2312
|
-
:type program: int
|
|
2313
|
-
"""
|
|
2314
|
-
|
|
2315
|
-
def glValidateProgram(program: int) -> None:
|
|
2316
|
-
"""Validates a program object`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glValidateProgram.xhtml>`__
|
|
2317
|
-
|
|
2318
|
-
:param program: Specifies the handle of the program object to be validated.
|
|
2319
|
-
:type program: int
|
|
2320
|
-
"""
|
|
2321
|
-
|
|
2322
|
-
def glVertexAttrib1d(p0: int, p1: float) -> None:
|
|
2323
|
-
"""
|
|
2324
|
-
|
|
2325
|
-
:type p0: int
|
|
2326
|
-
:type p1: float
|
|
2327
|
-
"""
|
|
2328
|
-
|
|
2329
|
-
def glVertexAttrib1dv(p0: int, p1: float) -> None:
|
|
2330
|
-
"""
|
|
2331
|
-
|
|
2332
|
-
:type p0: int
|
|
2333
|
-
:type p1: float
|
|
2334
|
-
"""
|
|
2335
|
-
|
|
2336
|
-
def glVertexAttrib1f(p0: int, p1: float) -> None:
|
|
2337
|
-
"""
|
|
2338
|
-
|
|
2339
|
-
:type p0: int
|
|
2340
|
-
:type p1: float
|
|
2341
|
-
"""
|
|
2342
|
-
|
|
2343
|
-
def glVertexAttrib1fv(p0: int, p1: float) -> None:
|
|
2344
|
-
"""
|
|
2345
|
-
|
|
2346
|
-
:type p0: int
|
|
2347
|
-
:type p1: float
|
|
2348
|
-
"""
|
|
2349
|
-
|
|
2350
|
-
def glVertexAttrib1s(p0: int, p1: int) -> None:
|
|
2351
|
-
"""
|
|
2352
|
-
|
|
2353
|
-
:type p0: int
|
|
2354
|
-
:type p1: int
|
|
2355
|
-
"""
|
|
2356
|
-
|
|
2357
|
-
def glVertexAttrib1sv(p0: int, p1: int) -> None:
|
|
2358
|
-
"""
|
|
2359
|
-
|
|
2360
|
-
:type p0: int
|
|
2361
|
-
:type p1: int
|
|
2362
|
-
"""
|
|
2363
|
-
|
|
2364
|
-
def glVertexAttrib2d(p0: int, p1: float, p2: float) -> None:
|
|
2365
|
-
"""
|
|
2366
|
-
|
|
2367
|
-
:type p0: int
|
|
2368
|
-
:type p1: float
|
|
2369
|
-
:type p2: float
|
|
2370
|
-
"""
|
|
2371
|
-
|
|
2372
|
-
def glVertexAttrib2dv(p0: int, p1: float) -> None:
|
|
2373
|
-
"""
|
|
2374
|
-
|
|
2375
|
-
:type p0: int
|
|
2376
|
-
:type p1: float
|
|
2377
|
-
"""
|
|
2378
|
-
|
|
2379
|
-
def glVertexAttrib2f(p0: int, p1: float, p2: float) -> None:
|
|
2380
|
-
"""
|
|
2381
|
-
|
|
2382
|
-
:type p0: int
|
|
2383
|
-
:type p1: float
|
|
2384
|
-
:type p2: float
|
|
2385
|
-
"""
|
|
2386
|
-
|
|
2387
|
-
def glVertexAttrib2fv(p0: int, p1: float) -> None:
|
|
2388
|
-
"""
|
|
2389
|
-
|
|
2390
|
-
:type p0: int
|
|
2391
|
-
:type p1: float
|
|
2392
|
-
"""
|
|
2393
|
-
|
|
2394
|
-
def glVertexAttrib2s(p0: int, p1: int, p2: int) -> None:
|
|
2395
|
-
"""
|
|
2396
|
-
|
|
2397
|
-
:type p0: int
|
|
2398
|
-
:type p1: int
|
|
2399
|
-
:type p2: int
|
|
2400
|
-
"""
|
|
2401
|
-
|
|
2402
|
-
def glVertexAttrib2sv(p0: int, p1: int) -> None:
|
|
2403
|
-
"""
|
|
2404
|
-
|
|
2405
|
-
:type p0: int
|
|
2406
|
-
:type p1: int
|
|
2407
|
-
"""
|
|
2408
|
-
|
|
2409
|
-
def glVertexAttrib3d(p0: int, p1: float, p2: float, p3: float) -> None:
|
|
2410
|
-
"""
|
|
2411
|
-
|
|
2412
|
-
:type p0: int
|
|
2413
|
-
:type p1: float
|
|
2414
|
-
:type p2: float
|
|
2415
|
-
:type p3: float
|
|
2416
|
-
"""
|
|
2417
|
-
|
|
2418
|
-
def glVertexAttrib3dv(p0: int, p1: float) -> None:
|
|
2419
|
-
"""
|
|
2420
|
-
|
|
2421
|
-
:type p0: int
|
|
2422
|
-
:type p1: float
|
|
2423
|
-
"""
|
|
2424
|
-
|
|
2425
|
-
def glVertexAttrib3f(p0: int, p1: float, p2: float, p3: float) -> None:
|
|
2426
|
-
"""
|
|
2427
|
-
|
|
2428
|
-
:type p0: int
|
|
2429
|
-
:type p1: float
|
|
2430
|
-
:type p2: float
|
|
2431
|
-
:type p3: float
|
|
2432
|
-
"""
|
|
2433
|
-
|
|
2434
|
-
def glVertexAttrib3fv(p0: int, p1: float) -> None:
|
|
2435
|
-
"""
|
|
2436
|
-
|
|
2437
|
-
:type p0: int
|
|
2438
|
-
:type p1: float
|
|
2439
|
-
"""
|
|
2440
|
-
|
|
2441
|
-
def glVertexAttrib3s(p0: int, p1: int, p2: int, p3: int) -> None:
|
|
2442
|
-
"""
|
|
2443
|
-
|
|
2444
|
-
:type p0: int
|
|
2445
|
-
:type p1: int
|
|
2446
|
-
:type p2: int
|
|
2447
|
-
:type p3: int
|
|
2448
|
-
"""
|
|
2449
|
-
|
|
2450
|
-
def glVertexAttrib3sv(p0: int, p1: int) -> None:
|
|
2451
|
-
"""
|
|
2452
|
-
|
|
2453
|
-
:type p0: int
|
|
2454
|
-
:type p1: int
|
|
2455
|
-
"""
|
|
2456
|
-
|
|
2457
|
-
def glVertexAttrib4Nbv(p0: int, p1: int) -> None:
|
|
2458
|
-
"""
|
|
2459
|
-
|
|
2460
|
-
:type p0: int
|
|
2461
|
-
:type p1: int
|
|
2462
|
-
"""
|
|
2463
|
-
|
|
2464
|
-
def glVertexAttrib4Niv(p0: int, p1: int) -> None:
|
|
2465
|
-
"""
|
|
2466
|
-
|
|
2467
|
-
:type p0: int
|
|
2468
|
-
:type p1: int
|
|
2469
|
-
"""
|
|
2470
|
-
|
|
2471
|
-
def glVertexAttrib4Nsv(p0: int, p1: int) -> None:
|
|
2472
|
-
"""
|
|
2473
|
-
|
|
2474
|
-
:type p0: int
|
|
2475
|
-
:type p1: int
|
|
2476
|
-
"""
|
|
2477
|
-
|
|
2478
|
-
def glVertexAttrib4Nub(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
2479
|
-
"""
|
|
2480
|
-
|
|
2481
|
-
:type p0: int
|
|
2482
|
-
:type p1: int
|
|
2483
|
-
:type p2: int
|
|
2484
|
-
:type p3: int
|
|
2485
|
-
:type p4: int
|
|
2486
|
-
"""
|
|
2487
|
-
|
|
2488
|
-
def glVertexAttrib4Nubv(p0: int, p1: int) -> None:
|
|
2489
|
-
"""
|
|
2490
|
-
|
|
2491
|
-
:type p0: int
|
|
2492
|
-
:type p1: int
|
|
2493
|
-
"""
|
|
2494
|
-
|
|
2495
|
-
def glVertexAttrib4Nuiv(p0: int, p1: int) -> None:
|
|
2496
|
-
"""
|
|
2497
|
-
|
|
2498
|
-
:type p0: int
|
|
2499
|
-
:type p1: int
|
|
2500
|
-
"""
|
|
2501
|
-
|
|
2502
|
-
def glVertexAttrib4Nusv(p0: int, p1: int) -> None:
|
|
2503
|
-
"""
|
|
2504
|
-
|
|
2505
|
-
:type p0: int
|
|
2506
|
-
:type p1: int
|
|
2507
|
-
"""
|
|
2508
|
-
|
|
2509
|
-
def glVertexAttrib4bv(p0: int, p1: int) -> None:
|
|
2510
|
-
"""
|
|
2511
|
-
|
|
2512
|
-
:type p0: int
|
|
2513
|
-
:type p1: int
|
|
2514
|
-
"""
|
|
2515
|
-
|
|
2516
|
-
def glVertexAttrib4d(p0: int, p1: float, p2: float, p3: float, p4: float) -> None:
|
|
2517
|
-
"""
|
|
2518
|
-
|
|
2519
|
-
:type p0: int
|
|
2520
|
-
:type p1: float
|
|
2521
|
-
:type p2: float
|
|
2522
|
-
:type p3: float
|
|
2523
|
-
:type p4: float
|
|
2524
|
-
"""
|
|
2525
|
-
|
|
2526
|
-
def glVertexAttrib4dv(p0: int, p1: float) -> None:
|
|
2527
|
-
"""
|
|
2528
|
-
|
|
2529
|
-
:type p0: int
|
|
2530
|
-
:type p1: float
|
|
2531
|
-
"""
|
|
2532
|
-
|
|
2533
|
-
def glVertexAttrib4f(p0: int, p1: float, p2: float, p3: float, p4: float) -> None:
|
|
2534
|
-
"""
|
|
2535
|
-
|
|
2536
|
-
:type p0: int
|
|
2537
|
-
:type p1: float
|
|
2538
|
-
:type p2: float
|
|
2539
|
-
:type p3: float
|
|
2540
|
-
:type p4: float
|
|
2541
|
-
"""
|
|
2542
|
-
|
|
2543
|
-
def glVertexAttrib4fv(p0: int, p1: float) -> None:
|
|
2544
|
-
"""
|
|
2545
|
-
|
|
2546
|
-
:type p0: int
|
|
2547
|
-
:type p1: float
|
|
2548
|
-
"""
|
|
2549
|
-
|
|
2550
|
-
def glVertexAttrib4iv(p0: int, p1: int) -> None:
|
|
2551
|
-
"""
|
|
2552
|
-
|
|
2553
|
-
:type p0: int
|
|
2554
|
-
:type p1: int
|
|
2555
|
-
"""
|
|
2556
|
-
|
|
2557
|
-
def glVertexAttrib4s(p0: int, p1: int, p2: int, p3: int, p4: int) -> None:
|
|
2558
|
-
"""
|
|
2559
|
-
|
|
2560
|
-
:type p0: int
|
|
2561
|
-
:type p1: int
|
|
2562
|
-
:type p2: int
|
|
2563
|
-
:type p3: int
|
|
2564
|
-
:type p4: int
|
|
2565
|
-
"""
|
|
2566
|
-
|
|
2567
|
-
def glVertexAttrib4sv(p0: int, p1: int) -> None:
|
|
2568
|
-
"""
|
|
2569
|
-
|
|
2570
|
-
:type p0: int
|
|
2571
|
-
:type p1: int
|
|
2572
|
-
"""
|
|
2573
|
-
|
|
2574
|
-
def glVertexAttrib4ubv(p0: int, p1: int) -> None:
|
|
2575
|
-
"""
|
|
2576
|
-
|
|
2577
|
-
:type p0: int
|
|
2578
|
-
:type p1: int
|
|
2579
|
-
"""
|
|
2580
|
-
|
|
2581
|
-
def glVertexAttrib4uiv(p0: int, p1: int) -> None:
|
|
2582
|
-
"""
|
|
2583
|
-
|
|
2584
|
-
:type p0: int
|
|
2585
|
-
:type p1: int
|
|
2586
|
-
"""
|
|
2587
|
-
|
|
2588
|
-
def glVertexAttrib4usv(p0: int, p1: int) -> None:
|
|
2589
|
-
"""
|
|
2590
|
-
|
|
2591
|
-
:type p0: int
|
|
2592
|
-
:type p1: int
|
|
2593
|
-
"""
|
|
2594
|
-
|
|
2595
|
-
def glVertexAttribIPointer(p0: int, p1: int, p2: int, p3: int, p4: typing.Any) -> None:
|
|
2596
|
-
"""
|
|
2597
|
-
|
|
2598
|
-
:type p0: int
|
|
2599
|
-
:type p1: int
|
|
2600
|
-
:type p2: int
|
|
2601
|
-
:type p3: int
|
|
2602
|
-
:type p4: typing.Any
|
|
2603
|
-
"""
|
|
2604
|
-
|
|
2605
|
-
def glVertexAttribPointer(
|
|
2606
|
-
p0: int, p1: int, p2: int, p3: bool, p4: int, p5: typing.Any
|
|
2607
|
-
) -> None:
|
|
2608
|
-
"""
|
|
2609
|
-
|
|
2610
|
-
:type p0: int
|
|
2611
|
-
:type p1: int
|
|
2612
|
-
:type p2: int
|
|
2613
|
-
:type p3: bool
|
|
2614
|
-
:type p4: int
|
|
2615
|
-
:type p5: typing.Any
|
|
2616
|
-
"""
|
|
2617
|
-
|
|
2618
|
-
def glViewport(x: int, y, width: int, height) -> None:
|
|
2619
|
-
"""Set the viewport`OpenGL Docs <https://khronos.org/registry/OpenGL-Refpages/gl4/html/glViewport.xhtml>`__
|
|
2620
|
-
|
|
2621
|
-
:param x: Specify the lower left corner of the viewport rectangle,
|
|
2622
|
-
in pixels. The initial value is (0,0).
|
|
2623
|
-
:type x: int
|
|
2624
|
-
:param width: Specify the width and height of the viewport. When a GL
|
|
2625
|
-
context is first attached to a window, width and height are set to the
|
|
2626
|
-
dimensions of that window.
|
|
2627
|
-
:type width: int
|
|
2628
|
-
"""
|
|
2629
|
-
|
|
2630
|
-
GL_ACTIVE_ATTRIBUTES: float
|
|
2631
|
-
|
|
2632
|
-
GL_ACTIVE_ATTRIBUTE_MAX_LENGTH: float
|
|
2633
|
-
|
|
2634
|
-
GL_ACTIVE_TEXTURE: float
|
|
2635
|
-
|
|
2636
|
-
GL_ACTIVE_UNIFORMS: float
|
|
2637
|
-
|
|
2638
|
-
GL_ACTIVE_UNIFORM_BLOCKS: float
|
|
2639
|
-
|
|
2640
|
-
GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH: float
|
|
2641
|
-
|
|
2642
|
-
GL_ACTIVE_UNIFORM_MAX_LENGTH: float
|
|
2643
|
-
|
|
2644
|
-
GL_ALIASED_LINE_WIDTH_RANGE: float
|
|
2645
|
-
|
|
2646
|
-
GL_ALPHA: float
|
|
2647
|
-
|
|
2648
|
-
GL_ALREADY_SIGNALED: float
|
|
2649
|
-
|
|
2650
|
-
GL_ALWAYS: float
|
|
2651
|
-
|
|
2652
|
-
GL_AND: float
|
|
2653
|
-
|
|
2654
|
-
GL_AND_INVERTED: float
|
|
2655
|
-
|
|
2656
|
-
GL_AND_REVERSE: float
|
|
2657
|
-
|
|
2658
|
-
GL_ANY_SAMPLES_PASSED: float
|
|
2659
|
-
|
|
2660
|
-
GL_ARRAY_BUFFER: float
|
|
2661
|
-
|
|
2662
|
-
GL_ARRAY_BUFFER_BINDING: float
|
|
2663
|
-
|
|
2664
|
-
GL_ATTACHED_SHADERS: float
|
|
2665
|
-
|
|
2666
|
-
GL_BACK: float
|
|
2667
|
-
|
|
2668
|
-
GL_BACK_LEFT: float
|
|
2669
|
-
|
|
2670
|
-
GL_BACK_RIGHT: float
|
|
2671
|
-
|
|
2672
|
-
GL_BGR: float
|
|
2673
|
-
|
|
2674
|
-
GL_BGRA: float
|
|
2675
|
-
|
|
2676
|
-
GL_BGRA_INTEGER: float
|
|
2677
|
-
|
|
2678
|
-
GL_BGR_INTEGER: float
|
|
2679
|
-
|
|
2680
|
-
GL_BLEND: float
|
|
2681
|
-
|
|
2682
|
-
GL_BLEND_DST: float
|
|
2683
|
-
|
|
2684
|
-
GL_BLEND_DST_ALPHA: float
|
|
2685
|
-
|
|
2686
|
-
GL_BLEND_DST_RGB: float
|
|
2687
|
-
|
|
2688
|
-
GL_BLEND_EQUATION_ALPHA: float
|
|
2689
|
-
|
|
2690
|
-
GL_BLEND_EQUATION_RGB: float
|
|
2691
|
-
|
|
2692
|
-
GL_BLEND_SRC: float
|
|
2693
|
-
|
|
2694
|
-
GL_BLEND_SRC_ALPHA: float
|
|
2695
|
-
|
|
2696
|
-
GL_BLEND_SRC_RGB: float
|
|
2697
|
-
|
|
2698
|
-
GL_BLUE: float
|
|
2699
|
-
|
|
2700
|
-
GL_BLUE_INTEGER: float
|
|
2701
|
-
|
|
2702
|
-
GL_BOOL: float
|
|
2703
|
-
|
|
2704
|
-
GL_BOOL_VEC2: float
|
|
2705
|
-
|
|
2706
|
-
GL_BOOL_VEC3: float
|
|
2707
|
-
|
|
2708
|
-
GL_BOOL_VEC4: float
|
|
2709
|
-
|
|
2710
|
-
GL_BUFFER_ACCESS: float
|
|
2711
|
-
|
|
2712
|
-
GL_BUFFER_ACCESS_FLAGS: float
|
|
2713
|
-
|
|
2714
|
-
GL_BUFFER_MAPPED: float
|
|
2715
|
-
|
|
2716
|
-
GL_BUFFER_MAP_LENGTH: float
|
|
2717
|
-
|
|
2718
|
-
GL_BUFFER_MAP_OFFSET: float
|
|
2719
|
-
|
|
2720
|
-
GL_BUFFER_MAP_POINTER: float
|
|
2721
|
-
|
|
2722
|
-
GL_BUFFER_SIZE: float
|
|
2723
|
-
|
|
2724
|
-
GL_BUFFER_USAGE: float
|
|
2725
|
-
|
|
2726
|
-
GL_BYTE: float
|
|
2727
|
-
|
|
2728
|
-
GL_CCW: float
|
|
2729
|
-
|
|
2730
|
-
GL_CLAMP_READ_COLOR: float
|
|
2731
|
-
|
|
2732
|
-
GL_CLAMP_TO_BORDER: float
|
|
2733
|
-
|
|
2734
|
-
GL_CLAMP_TO_EDGE: float
|
|
2735
|
-
|
|
2736
|
-
GL_CLEAR: float
|
|
2737
|
-
|
|
2738
|
-
GL_CLIP_DISTANCE0: float
|
|
2739
|
-
|
|
2740
|
-
GL_CLIP_DISTANCE1: float
|
|
2741
|
-
|
|
2742
|
-
GL_CLIP_DISTANCE2: float
|
|
2743
|
-
|
|
2744
|
-
GL_CLIP_DISTANCE3: float
|
|
2745
|
-
|
|
2746
|
-
GL_CLIP_DISTANCE4: float
|
|
2747
|
-
|
|
2748
|
-
GL_CLIP_DISTANCE5: float
|
|
2749
|
-
|
|
2750
|
-
GL_CLIP_DISTANCE6: float
|
|
2751
|
-
|
|
2752
|
-
GL_CLIP_DISTANCE7: float
|
|
2753
|
-
|
|
2754
|
-
GL_COLOR: float
|
|
2755
|
-
|
|
2756
|
-
GL_COLOR_ATTACHMENT0: float
|
|
2757
|
-
|
|
2758
|
-
GL_COLOR_ATTACHMENT1: float
|
|
2759
|
-
|
|
2760
|
-
GL_COLOR_ATTACHMENT10: float
|
|
2761
|
-
|
|
2762
|
-
GL_COLOR_ATTACHMENT11: float
|
|
2763
|
-
|
|
2764
|
-
GL_COLOR_ATTACHMENT12: float
|
|
2765
|
-
|
|
2766
|
-
GL_COLOR_ATTACHMENT13: float
|
|
2767
|
-
|
|
2768
|
-
GL_COLOR_ATTACHMENT14: float
|
|
2769
|
-
|
|
2770
|
-
GL_COLOR_ATTACHMENT15: float
|
|
2771
|
-
|
|
2772
|
-
GL_COLOR_ATTACHMENT16: float
|
|
2773
|
-
|
|
2774
|
-
GL_COLOR_ATTACHMENT17: float
|
|
2775
|
-
|
|
2776
|
-
GL_COLOR_ATTACHMENT18: float
|
|
2777
|
-
|
|
2778
|
-
GL_COLOR_ATTACHMENT19: float
|
|
2779
|
-
|
|
2780
|
-
GL_COLOR_ATTACHMENT2: float
|
|
2781
|
-
|
|
2782
|
-
GL_COLOR_ATTACHMENT20: float
|
|
2783
|
-
|
|
2784
|
-
GL_COLOR_ATTACHMENT21: float
|
|
2785
|
-
|
|
2786
|
-
GL_COLOR_ATTACHMENT22: float
|
|
2787
|
-
|
|
2788
|
-
GL_COLOR_ATTACHMENT23: float
|
|
2789
|
-
|
|
2790
|
-
GL_COLOR_ATTACHMENT24: float
|
|
2791
|
-
|
|
2792
|
-
GL_COLOR_ATTACHMENT25: float
|
|
2793
|
-
|
|
2794
|
-
GL_COLOR_ATTACHMENT26: float
|
|
2795
|
-
|
|
2796
|
-
GL_COLOR_ATTACHMENT27: float
|
|
2797
|
-
|
|
2798
|
-
GL_COLOR_ATTACHMENT28: float
|
|
2799
|
-
|
|
2800
|
-
GL_COLOR_ATTACHMENT29: float
|
|
2801
|
-
|
|
2802
|
-
GL_COLOR_ATTACHMENT3: float
|
|
2803
|
-
|
|
2804
|
-
GL_COLOR_ATTACHMENT30: float
|
|
2805
|
-
|
|
2806
|
-
GL_COLOR_ATTACHMENT31: float
|
|
2807
|
-
|
|
2808
|
-
GL_COLOR_ATTACHMENT4: float
|
|
2809
|
-
|
|
2810
|
-
GL_COLOR_ATTACHMENT5: float
|
|
2811
|
-
|
|
2812
|
-
GL_COLOR_ATTACHMENT6: float
|
|
2813
|
-
|
|
2814
|
-
GL_COLOR_ATTACHMENT7: float
|
|
2815
|
-
|
|
2816
|
-
GL_COLOR_ATTACHMENT8: float
|
|
2817
|
-
|
|
2818
|
-
GL_COLOR_ATTACHMENT9: float
|
|
2819
|
-
|
|
2820
|
-
GL_COLOR_BUFFER_BIT: float
|
|
2821
|
-
|
|
2822
|
-
GL_COLOR_CLEAR_VALUE: float
|
|
2823
|
-
|
|
2824
|
-
GL_COLOR_LOGIC_OP: float
|
|
2825
|
-
|
|
2826
|
-
GL_COLOR_WRITEMASK: float
|
|
2827
|
-
|
|
2828
|
-
GL_COMPARE_REF_TO_TEXTURE: float
|
|
2829
|
-
|
|
2830
|
-
GL_COMPILE_STATUS: float
|
|
2831
|
-
|
|
2832
|
-
GL_COMPRESSED_RED: float
|
|
2833
|
-
|
|
2834
|
-
GL_COMPRESSED_RED_RGTC1: float
|
|
2835
|
-
|
|
2836
|
-
GL_COMPRESSED_RG: float
|
|
2837
|
-
|
|
2838
|
-
GL_COMPRESSED_RGB: float
|
|
2839
|
-
|
|
2840
|
-
GL_COMPRESSED_RGBA: float
|
|
2841
|
-
|
|
2842
|
-
GL_COMPRESSED_RG_RGTC2: float
|
|
2843
|
-
|
|
2844
|
-
GL_COMPRESSED_SIGNED_RED_RGTC1: float
|
|
2845
|
-
|
|
2846
|
-
GL_COMPRESSED_SIGNED_RG_RGTC2: float
|
|
2847
|
-
|
|
2848
|
-
GL_COMPRESSED_SRGB: float
|
|
2849
|
-
|
|
2850
|
-
GL_COMPRESSED_SRGB_ALPHA: float
|
|
2851
|
-
|
|
2852
|
-
GL_COMPRESSED_TEXTURE_FORMATS: float
|
|
2853
|
-
|
|
2854
|
-
GL_CONDITION_SATISFIED: float
|
|
2855
|
-
|
|
2856
|
-
GL_CONSTANT_ALPHA: float
|
|
2857
|
-
|
|
2858
|
-
GL_CONSTANT_COLOR: float
|
|
2859
|
-
|
|
2860
|
-
GL_CONTEXT_COMPATIBILITY_PROFILE_BIT: float
|
|
2861
|
-
|
|
2862
|
-
GL_CONTEXT_CORE_PROFILE_BIT: float
|
|
2863
|
-
|
|
2864
|
-
GL_CONTEXT_FLAGS: float
|
|
2865
|
-
|
|
2866
|
-
GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT: float
|
|
2867
|
-
|
|
2868
|
-
GL_CONTEXT_PROFILE_MASK: float
|
|
2869
|
-
|
|
2870
|
-
GL_COPY: float
|
|
2871
|
-
|
|
2872
|
-
GL_COPY_INVERTED: float
|
|
2873
|
-
|
|
2874
|
-
GL_COPY_READ_BUFFER: float
|
|
2875
|
-
|
|
2876
|
-
GL_COPY_WRITE_BUFFER: float
|
|
2877
|
-
|
|
2878
|
-
GL_CULL_FACE: float
|
|
2879
|
-
|
|
2880
|
-
GL_CULL_FACE_MODE: float
|
|
2881
|
-
|
|
2882
|
-
GL_CURRENT_PROGRAM: float
|
|
2883
|
-
|
|
2884
|
-
GL_CURRENT_QUERY: float
|
|
2885
|
-
|
|
2886
|
-
GL_CURRENT_VERTEX_ATTRIB: float
|
|
2887
|
-
|
|
2888
|
-
GL_CW: float
|
|
2889
|
-
|
|
2890
|
-
GL_DECR: float
|
|
2891
|
-
|
|
2892
|
-
GL_DECR_WRAP: float
|
|
2893
|
-
|
|
2894
|
-
GL_DELETE_STATUS: float
|
|
2895
|
-
|
|
2896
|
-
GL_DEPTH: float
|
|
2897
|
-
|
|
2898
|
-
GL_DEPTH24_STENCIL8: float
|
|
2899
|
-
|
|
2900
|
-
GL_DEPTH32F_STENCIL8: float
|
|
2901
|
-
|
|
2902
|
-
GL_DEPTH_ATTACHMENT: float
|
|
2903
|
-
|
|
2904
|
-
GL_DEPTH_BUFFER_BIT: float
|
|
2905
|
-
|
|
2906
|
-
GL_DEPTH_CLAMP: float
|
|
2907
|
-
|
|
2908
|
-
GL_DEPTH_CLEAR_VALUE: float
|
|
2909
|
-
|
|
2910
|
-
GL_DEPTH_COMPONENT: float
|
|
2911
|
-
|
|
2912
|
-
GL_DEPTH_COMPONENT16: float
|
|
2913
|
-
|
|
2914
|
-
GL_DEPTH_COMPONENT24: float
|
|
2915
|
-
|
|
2916
|
-
GL_DEPTH_COMPONENT32: float
|
|
2917
|
-
|
|
2918
|
-
GL_DEPTH_COMPONENT32F: float
|
|
2919
|
-
|
|
2920
|
-
GL_DEPTH_FUNC: float
|
|
2921
|
-
|
|
2922
|
-
GL_DEPTH_RANGE: float
|
|
2923
|
-
|
|
2924
|
-
GL_DEPTH_STENCIL: float
|
|
2925
|
-
|
|
2926
|
-
GL_DEPTH_STENCIL_ATTACHMENT: float
|
|
2927
|
-
|
|
2928
|
-
GL_DEPTH_TEST: float
|
|
2929
|
-
|
|
2930
|
-
GL_DEPTH_WRITEMASK: float
|
|
2931
|
-
|
|
2932
|
-
GL_DITHER: float
|
|
2933
|
-
|
|
2934
|
-
GL_DONT_CARE: float
|
|
2935
|
-
|
|
2936
|
-
GL_DOUBLE: float
|
|
2937
|
-
|
|
2938
|
-
GL_DOUBLEBUFFER: float
|
|
2939
|
-
|
|
2940
|
-
GL_DRAW_BUFFER: float
|
|
2941
|
-
|
|
2942
|
-
GL_DRAW_BUFFER0: float
|
|
2943
|
-
|
|
2944
|
-
GL_DRAW_BUFFER1: float
|
|
2945
|
-
|
|
2946
|
-
GL_DRAW_BUFFER10: float
|
|
2947
|
-
|
|
2948
|
-
GL_DRAW_BUFFER11: float
|
|
2949
|
-
|
|
2950
|
-
GL_DRAW_BUFFER12: float
|
|
2951
|
-
|
|
2952
|
-
GL_DRAW_BUFFER13: float
|
|
2953
|
-
|
|
2954
|
-
GL_DRAW_BUFFER14: float
|
|
2955
|
-
|
|
2956
|
-
GL_DRAW_BUFFER15: float
|
|
2957
|
-
|
|
2958
|
-
GL_DRAW_BUFFER2: float
|
|
2959
|
-
|
|
2960
|
-
GL_DRAW_BUFFER3: float
|
|
2961
|
-
|
|
2962
|
-
GL_DRAW_BUFFER4: float
|
|
2963
|
-
|
|
2964
|
-
GL_DRAW_BUFFER5: float
|
|
2965
|
-
|
|
2966
|
-
GL_DRAW_BUFFER6: float
|
|
2967
|
-
|
|
2968
|
-
GL_DRAW_BUFFER7: float
|
|
2969
|
-
|
|
2970
|
-
GL_DRAW_BUFFER8: float
|
|
2971
|
-
|
|
2972
|
-
GL_DRAW_BUFFER9: float
|
|
2973
|
-
|
|
2974
|
-
GL_DRAW_FRAMEBUFFER: float
|
|
2975
|
-
|
|
2976
|
-
GL_DRAW_FRAMEBUFFER_BINDING: float
|
|
2977
|
-
|
|
2978
|
-
GL_DST_ALPHA: float
|
|
2979
|
-
|
|
2980
|
-
GL_DST_COLOR: float
|
|
2981
|
-
|
|
2982
|
-
GL_DYNAMIC_COPY: float
|
|
2983
|
-
|
|
2984
|
-
GL_DYNAMIC_DRAW: float
|
|
2985
|
-
|
|
2986
|
-
GL_DYNAMIC_READ: float
|
|
2987
|
-
|
|
2988
|
-
GL_ELEMENT_ARRAY_BUFFER: float
|
|
2989
|
-
|
|
2990
|
-
GL_ELEMENT_ARRAY_BUFFER_BINDING: float
|
|
2991
|
-
|
|
2992
|
-
GL_EQUAL: float
|
|
2993
|
-
|
|
2994
|
-
GL_EQUIV: float
|
|
2995
|
-
|
|
2996
|
-
GL_EXTENSIONS: float
|
|
2997
|
-
|
|
2998
|
-
GL_FALSE: float
|
|
2999
|
-
|
|
3000
|
-
GL_FASTEST: float
|
|
3001
|
-
|
|
3002
|
-
GL_FILL: float
|
|
3003
|
-
|
|
3004
|
-
GL_FIRST_VERTEX_CONVENTION: float
|
|
3005
|
-
|
|
3006
|
-
GL_FIXED_ONLY: float
|
|
3007
|
-
|
|
3008
|
-
GL_FLOAT: float
|
|
3009
|
-
|
|
3010
|
-
GL_FLOAT_32_UNSIGNED_INT_24_8_REV: float
|
|
3011
|
-
|
|
3012
|
-
GL_FLOAT_MAT2: float
|
|
3013
|
-
|
|
3014
|
-
GL_FLOAT_MAT2x3: float
|
|
3015
|
-
|
|
3016
|
-
GL_FLOAT_MAT2x4: float
|
|
3017
|
-
|
|
3018
|
-
GL_FLOAT_MAT3: float
|
|
3019
|
-
|
|
3020
|
-
GL_FLOAT_MAT3x2: float
|
|
3021
|
-
|
|
3022
|
-
GL_FLOAT_MAT3x4: float
|
|
3023
|
-
|
|
3024
|
-
GL_FLOAT_MAT4: float
|
|
3025
|
-
|
|
3026
|
-
GL_FLOAT_MAT4x2: float
|
|
3027
|
-
|
|
3028
|
-
GL_FLOAT_MAT4x3: float
|
|
3029
|
-
|
|
3030
|
-
GL_FLOAT_VEC2: float
|
|
3031
|
-
|
|
3032
|
-
GL_FLOAT_VEC3: float
|
|
3033
|
-
|
|
3034
|
-
GL_FLOAT_VEC4: float
|
|
3035
|
-
|
|
3036
|
-
GL_FRAGMENT_SHADER: float
|
|
3037
|
-
|
|
3038
|
-
GL_FRAGMENT_SHADER_DERIVATIVE_HINT: float
|
|
3039
|
-
|
|
3040
|
-
GL_FRAMEBUFFER: float
|
|
3041
|
-
|
|
3042
|
-
GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE: float
|
|
3043
|
-
|
|
3044
|
-
GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE: float
|
|
3045
|
-
|
|
3046
|
-
GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING: float
|
|
3047
|
-
|
|
3048
|
-
GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE: float
|
|
3049
|
-
|
|
3050
|
-
GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE: float
|
|
3051
|
-
|
|
3052
|
-
GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE: float
|
|
3053
|
-
|
|
3054
|
-
GL_FRAMEBUFFER_ATTACHMENT_LAYERED: float
|
|
3055
|
-
|
|
3056
|
-
GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: float
|
|
3057
|
-
|
|
3058
|
-
GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE: float
|
|
3059
|
-
|
|
3060
|
-
GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE: float
|
|
3061
|
-
|
|
3062
|
-
GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE: float
|
|
3063
|
-
|
|
3064
|
-
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: float
|
|
3065
|
-
|
|
3066
|
-
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER: float
|
|
3067
|
-
|
|
3068
|
-
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL: float
|
|
3069
|
-
|
|
3070
|
-
GL_FRAMEBUFFER_BINDING: float
|
|
3071
|
-
|
|
3072
|
-
GL_FRAMEBUFFER_COMPLETE: float
|
|
3073
|
-
|
|
3074
|
-
GL_FRAMEBUFFER_DEFAULT: float
|
|
3075
|
-
|
|
3076
|
-
GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT: float
|
|
3077
|
-
|
|
3078
|
-
GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER: float
|
|
3079
|
-
|
|
3080
|
-
GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS: float
|
|
3081
|
-
|
|
3082
|
-
GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT: float
|
|
3083
|
-
|
|
3084
|
-
GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE: float
|
|
3085
|
-
|
|
3086
|
-
GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER: float
|
|
3087
|
-
|
|
3088
|
-
GL_FRAMEBUFFER_SRGB: float
|
|
3089
|
-
|
|
3090
|
-
GL_FRAMEBUFFER_UNDEFINED: float
|
|
3091
|
-
|
|
3092
|
-
GL_FRAMEBUFFER_UNSUPPORTED: float
|
|
3093
|
-
|
|
3094
|
-
GL_FRONT: float
|
|
3095
|
-
|
|
3096
|
-
GL_FRONT_AND_BACK: float
|
|
3097
|
-
|
|
3098
|
-
GL_FRONT_FACE: float
|
|
3099
|
-
|
|
3100
|
-
GL_FRONT_LEFT: float
|
|
3101
|
-
|
|
3102
|
-
GL_FRONT_RIGHT: float
|
|
3103
|
-
|
|
3104
|
-
GL_FUNC_ADD: float
|
|
3105
|
-
|
|
3106
|
-
GL_FUNC_REVERSE_SUBTRACT: float
|
|
3107
|
-
|
|
3108
|
-
GL_FUNC_SUBTRACT: float
|
|
3109
|
-
|
|
3110
|
-
GL_GEOMETRY_INPUT_TYPE: float
|
|
3111
|
-
|
|
3112
|
-
GL_GEOMETRY_OUTPUT_TYPE: float
|
|
3113
|
-
|
|
3114
|
-
GL_GEOMETRY_SHADER: float
|
|
3115
|
-
|
|
3116
|
-
GL_GEOMETRY_VERTICES_OUT: float
|
|
3117
|
-
|
|
3118
|
-
GL_GEQUAL: float
|
|
3119
|
-
|
|
3120
|
-
GL_GREATER: float
|
|
3121
|
-
|
|
3122
|
-
GL_GREEN: float
|
|
3123
|
-
|
|
3124
|
-
GL_GREEN_INTEGER: float
|
|
3125
|
-
|
|
3126
|
-
GL_HALF_FLOAT: float
|
|
3127
|
-
|
|
3128
|
-
GL_INCR: float
|
|
3129
|
-
|
|
3130
|
-
GL_INCR_WRAP: float
|
|
3131
|
-
|
|
3132
|
-
GL_INDEX: float
|
|
3133
|
-
|
|
3134
|
-
GL_INFO_LOG_LENGTH: float
|
|
3135
|
-
|
|
3136
|
-
GL_INT: float
|
|
3137
|
-
|
|
3138
|
-
GL_INTERLEAVED_ATTRIBS: float
|
|
3139
|
-
|
|
3140
|
-
GL_INT_2_10_10_10_REV: float
|
|
3141
|
-
|
|
3142
|
-
GL_INT_SAMPLER_1D: float
|
|
3143
|
-
|
|
3144
|
-
GL_INT_SAMPLER_1D_ARRAY: float
|
|
3145
|
-
|
|
3146
|
-
GL_INT_SAMPLER_2D: float
|
|
3147
|
-
|
|
3148
|
-
GL_INT_SAMPLER_2D_ARRAY: float
|
|
3149
|
-
|
|
3150
|
-
GL_INT_SAMPLER_2D_MULTISAMPLE: float
|
|
3151
|
-
|
|
3152
|
-
GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY: float
|
|
3153
|
-
|
|
3154
|
-
GL_INT_SAMPLER_2D_RECT: float
|
|
3155
|
-
|
|
3156
|
-
GL_INT_SAMPLER_3D: float
|
|
3157
|
-
|
|
3158
|
-
GL_INT_SAMPLER_BUFFER: float
|
|
3159
|
-
|
|
3160
|
-
GL_INT_SAMPLER_CUBE: float
|
|
3161
|
-
|
|
3162
|
-
GL_INT_VEC2: float
|
|
3163
|
-
|
|
3164
|
-
GL_INT_VEC3: float
|
|
3165
|
-
|
|
3166
|
-
GL_INT_VEC4: float
|
|
3167
|
-
|
|
3168
|
-
GL_INVALID_ENUM: float
|
|
3169
|
-
|
|
3170
|
-
GL_INVALID_FRAMEBUFFER_OPERATION: float
|
|
3171
|
-
|
|
3172
|
-
GL_INVALID_INDEX: float
|
|
3173
|
-
|
|
3174
|
-
GL_INVALID_OPERATION: float
|
|
3175
|
-
|
|
3176
|
-
GL_INVALID_VALUE: float
|
|
3177
|
-
|
|
3178
|
-
GL_INVERT: float
|
|
3179
|
-
|
|
3180
|
-
GL_KEEP: float
|
|
3181
|
-
|
|
3182
|
-
GL_LAST_VERTEX_CONVENTION: float
|
|
3183
|
-
|
|
3184
|
-
GL_LEFT: float
|
|
3185
|
-
|
|
3186
|
-
GL_LEQUAL: float
|
|
3187
|
-
|
|
3188
|
-
GL_LESS: float
|
|
3189
|
-
|
|
3190
|
-
GL_LINE: float
|
|
3191
|
-
|
|
3192
|
-
GL_LINEAR: float
|
|
3193
|
-
|
|
3194
|
-
GL_LINEAR_MIPMAP_LINEAR: float
|
|
3195
|
-
|
|
3196
|
-
GL_LINEAR_MIPMAP_NEAREST: float
|
|
3197
|
-
|
|
3198
|
-
GL_LINES: float
|
|
3199
|
-
|
|
3200
|
-
GL_LINES_ADJACENCY: float
|
|
3201
|
-
|
|
3202
|
-
GL_LINE_LOOP: float
|
|
3203
|
-
|
|
3204
|
-
GL_LINE_SMOOTH: float
|
|
3205
|
-
|
|
3206
|
-
GL_LINE_SMOOTH_HINT: float
|
|
3207
|
-
|
|
3208
|
-
GL_LINE_STRIP: float
|
|
3209
|
-
|
|
3210
|
-
GL_LINE_STRIP_ADJACENCY: float
|
|
3211
|
-
|
|
3212
|
-
GL_LINE_WIDTH: float
|
|
3213
|
-
|
|
3214
|
-
GL_LINE_WIDTH_GRANULARITY: float
|
|
3215
|
-
|
|
3216
|
-
GL_LINE_WIDTH_RANGE: float
|
|
3217
|
-
|
|
3218
|
-
GL_LINK_STATUS: float
|
|
3219
|
-
|
|
3220
|
-
GL_LOGIC_OP_MODE: float
|
|
3221
|
-
|
|
3222
|
-
GL_LOWER_LEFT: float
|
|
3223
|
-
|
|
3224
|
-
GL_MAJOR_VERSION: float
|
|
3225
|
-
|
|
3226
|
-
GL_MAP_FLUSH_EXPLICIT_BIT: float
|
|
3227
|
-
|
|
3228
|
-
GL_MAP_INVALIDATE_BUFFER_BIT: float
|
|
3229
|
-
|
|
3230
|
-
GL_MAP_INVALIDATE_RANGE_BIT: float
|
|
3231
|
-
|
|
3232
|
-
GL_MAP_READ_BIT: float
|
|
3233
|
-
|
|
3234
|
-
GL_MAP_UNSYNCHRONIZED_BIT: float
|
|
3235
|
-
|
|
3236
|
-
GL_MAP_WRITE_BIT: float
|
|
3237
|
-
|
|
3238
|
-
GL_MAX: float
|
|
3239
|
-
|
|
3240
|
-
GL_MAX_3D_TEXTURE_SIZE: float
|
|
3241
|
-
|
|
3242
|
-
GL_MAX_ARRAY_TEXTURE_LAYERS: float
|
|
3243
|
-
|
|
3244
|
-
GL_MAX_CLIP_DISTANCES: float
|
|
3245
|
-
|
|
3246
|
-
GL_MAX_COLOR_ATTACHMENTS: float
|
|
3247
|
-
|
|
3248
|
-
GL_MAX_COLOR_TEXTURE_SAMPLES: float
|
|
3249
|
-
|
|
3250
|
-
GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS: float
|
|
3251
|
-
|
|
3252
|
-
GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS: float
|
|
3253
|
-
|
|
3254
|
-
GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS: float
|
|
3255
|
-
|
|
3256
|
-
GL_MAX_COMBINED_UNIFORM_BLOCKS: float
|
|
3257
|
-
|
|
3258
|
-
GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS: float
|
|
3259
|
-
|
|
3260
|
-
GL_MAX_CUBE_MAP_TEXTURE_SIZE: float
|
|
3261
|
-
|
|
3262
|
-
GL_MAX_DEPTH_TEXTURE_SAMPLES: float
|
|
3263
|
-
|
|
3264
|
-
GL_MAX_DRAW_BUFFERS: float
|
|
3265
|
-
|
|
3266
|
-
GL_MAX_DUAL_SOURCE_DRAW_BUFFERS: float
|
|
3267
|
-
|
|
3268
|
-
GL_MAX_ELEMENTS_INDICES: float
|
|
3269
|
-
|
|
3270
|
-
GL_MAX_ELEMENTS_VERTICES: float
|
|
3271
|
-
|
|
3272
|
-
GL_MAX_FRAGMENT_INPUT_COMPONENTS: float
|
|
3273
|
-
|
|
3274
|
-
GL_MAX_FRAGMENT_UNIFORM_BLOCKS: float
|
|
3275
|
-
|
|
3276
|
-
GL_MAX_FRAGMENT_UNIFORM_COMPONENTS: float
|
|
3277
|
-
|
|
3278
|
-
GL_MAX_GEOMETRY_INPUT_COMPONENTS: float
|
|
3279
|
-
|
|
3280
|
-
GL_MAX_GEOMETRY_OUTPUT_COMPONENTS: float
|
|
3281
|
-
|
|
3282
|
-
GL_MAX_GEOMETRY_OUTPUT_VERTICES: float
|
|
3283
|
-
|
|
3284
|
-
GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS: float
|
|
3285
|
-
|
|
3286
|
-
GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS: float
|
|
3287
|
-
|
|
3288
|
-
GL_MAX_GEOMETRY_UNIFORM_BLOCKS: float
|
|
3289
|
-
|
|
3290
|
-
GL_MAX_GEOMETRY_UNIFORM_COMPONENTS: float
|
|
3291
|
-
|
|
3292
|
-
GL_MAX_INTEGER_SAMPLES: float
|
|
3293
|
-
|
|
3294
|
-
GL_MAX_PROGRAM_TEXEL_OFFSET: float
|
|
3295
|
-
|
|
3296
|
-
GL_MAX_RECTANGLE_TEXTURE_SIZE: float
|
|
3297
|
-
|
|
3298
|
-
GL_MAX_RENDERBUFFER_SIZE: float
|
|
3299
|
-
|
|
3300
|
-
GL_MAX_SAMPLES: float
|
|
3301
|
-
|
|
3302
|
-
GL_MAX_SAMPLE_MASK_WORDS: float
|
|
3303
|
-
|
|
3304
|
-
GL_MAX_SERVER_WAIT_TIMEOUT: float
|
|
3305
|
-
|
|
3306
|
-
GL_MAX_TEXTURE_BUFFER_SIZE: float
|
|
3307
|
-
|
|
3308
|
-
GL_MAX_TEXTURE_IMAGE_UNITS: float
|
|
3309
|
-
|
|
3310
|
-
GL_MAX_TEXTURE_LOD_BIAS: float
|
|
3311
|
-
|
|
3312
|
-
GL_MAX_TEXTURE_SIZE: float
|
|
3313
|
-
|
|
3314
|
-
GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS: float
|
|
3315
|
-
|
|
3316
|
-
GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS: float
|
|
3317
|
-
|
|
3318
|
-
GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS: float
|
|
3319
|
-
|
|
3320
|
-
GL_MAX_UNIFORM_BLOCK_SIZE: float
|
|
3321
|
-
|
|
3322
|
-
GL_MAX_UNIFORM_BUFFER_BINDINGS: float
|
|
3323
|
-
|
|
3324
|
-
GL_MAX_VARYING_COMPONENTS: float
|
|
3325
|
-
|
|
3326
|
-
GL_MAX_VARYING_FLOATS: float
|
|
3327
|
-
|
|
3328
|
-
GL_MAX_VERTEX_ATTRIBS: float
|
|
3329
|
-
|
|
3330
|
-
GL_MAX_VERTEX_OUTPUT_COMPONENTS: float
|
|
3331
|
-
|
|
3332
|
-
GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS: float
|
|
3333
|
-
|
|
3334
|
-
GL_MAX_VERTEX_UNIFORM_BLOCKS: float
|
|
3335
|
-
|
|
3336
|
-
GL_MAX_VERTEX_UNIFORM_COMPONENTS: float
|
|
3337
|
-
|
|
3338
|
-
GL_MAX_VIEWPORT_DIMS: float
|
|
3339
|
-
|
|
3340
|
-
GL_MIN: float
|
|
3341
|
-
|
|
3342
|
-
GL_MINOR_VERSION: float
|
|
3343
|
-
|
|
3344
|
-
GL_MIN_PROGRAM_TEXEL_OFFSET: float
|
|
3345
|
-
|
|
3346
|
-
GL_MIRRORED_REPEAT: float
|
|
3347
|
-
|
|
3348
|
-
GL_MULTISAMPLE: float
|
|
3349
|
-
|
|
3350
|
-
GL_NAND: float
|
|
3351
|
-
|
|
3352
|
-
GL_NEAREST: float
|
|
3353
|
-
|
|
3354
|
-
GL_NEAREST_MIPMAP_LINEAR: float
|
|
3355
|
-
|
|
3356
|
-
GL_NEAREST_MIPMAP_NEAREST: float
|
|
3357
|
-
|
|
3358
|
-
GL_NEVER: float
|
|
3359
|
-
|
|
3360
|
-
GL_NICEST: float
|
|
3361
|
-
|
|
3362
|
-
GL_NONE: float
|
|
3363
|
-
|
|
3364
|
-
GL_NOOP: float
|
|
3365
|
-
|
|
3366
|
-
GL_NOR: float
|
|
3367
|
-
|
|
3368
|
-
GL_NOTEQUAL: float
|
|
3369
|
-
|
|
3370
|
-
GL_NO_ERROR: float
|
|
3371
|
-
|
|
3372
|
-
GL_NUM_COMPRESSED_TEXTURE_FORMATS: float
|
|
3373
|
-
|
|
3374
|
-
GL_NUM_EXTENSIONS: float
|
|
3375
|
-
|
|
3376
|
-
GL_OBJECT_TYPE: float
|
|
3377
|
-
|
|
3378
|
-
GL_ONE: float
|
|
3379
|
-
|
|
3380
|
-
GL_ONE_MINUS_CONSTANT_ALPHA: float
|
|
3381
|
-
|
|
3382
|
-
GL_ONE_MINUS_CONSTANT_COLOR: float
|
|
3383
|
-
|
|
3384
|
-
GL_ONE_MINUS_DST_ALPHA: float
|
|
3385
|
-
|
|
3386
|
-
GL_ONE_MINUS_DST_COLOR: float
|
|
3387
|
-
|
|
3388
|
-
GL_ONE_MINUS_SRC1_ALPHA: float
|
|
3389
|
-
|
|
3390
|
-
GL_ONE_MINUS_SRC1_COLOR: float
|
|
3391
|
-
|
|
3392
|
-
GL_ONE_MINUS_SRC_ALPHA: float
|
|
3393
|
-
|
|
3394
|
-
GL_ONE_MINUS_SRC_COLOR: float
|
|
3395
|
-
|
|
3396
|
-
GL_OR: float
|
|
3397
|
-
|
|
3398
|
-
GL_OR_INVERTED: float
|
|
3399
|
-
|
|
3400
|
-
GL_OR_REVERSE: float
|
|
3401
|
-
|
|
3402
|
-
GL_OUT_OF_MEMORY: float
|
|
3403
|
-
|
|
3404
|
-
GL_PACK_ALIGNMENT: float
|
|
3405
|
-
|
|
3406
|
-
GL_PACK_IMAGE_HEIGHT: float
|
|
3407
|
-
|
|
3408
|
-
GL_PACK_LSB_FIRST: float
|
|
3409
|
-
|
|
3410
|
-
GL_PACK_ROW_LENGTH: float
|
|
3411
|
-
|
|
3412
|
-
GL_PACK_SKIP_IMAGES: float
|
|
3413
|
-
|
|
3414
|
-
GL_PACK_SKIP_PIXELS: float
|
|
3415
|
-
|
|
3416
|
-
GL_PACK_SKIP_ROWS: float
|
|
3417
|
-
|
|
3418
|
-
GL_PACK_SWAP_BYTES: float
|
|
3419
|
-
|
|
3420
|
-
GL_PIXEL_PACK_BUFFER: float
|
|
3421
|
-
|
|
3422
|
-
GL_PIXEL_PACK_BUFFER_BINDING: float
|
|
3423
|
-
|
|
3424
|
-
GL_PIXEL_UNPACK_BUFFER: float
|
|
3425
|
-
|
|
3426
|
-
GL_PIXEL_UNPACK_BUFFER_BINDING: float
|
|
3427
|
-
|
|
3428
|
-
GL_POINT: float
|
|
3429
|
-
|
|
3430
|
-
GL_POINTS: float
|
|
3431
|
-
|
|
3432
|
-
GL_POINT_FADE_THRESHOLD_SIZE: float
|
|
3433
|
-
|
|
3434
|
-
GL_POINT_SIZE: float
|
|
3435
|
-
|
|
3436
|
-
GL_POINT_SPRITE_COORD_ORIGIN: float
|
|
3437
|
-
|
|
3438
|
-
GL_POLYGON_MODE: float
|
|
3439
|
-
|
|
3440
|
-
GL_POLYGON_OFFSET_FACTOR: float
|
|
3441
|
-
|
|
3442
|
-
GL_POLYGON_OFFSET_FILL: float
|
|
3443
|
-
|
|
3444
|
-
GL_POLYGON_OFFSET_LINE: float
|
|
3445
|
-
|
|
3446
|
-
GL_POLYGON_OFFSET_POINT: float
|
|
3447
|
-
|
|
3448
|
-
GL_POLYGON_OFFSET_UNITS: float
|
|
3449
|
-
|
|
3450
|
-
GL_POLYGON_SMOOTH: float
|
|
3451
|
-
|
|
3452
|
-
GL_POLYGON_SMOOTH_HINT: float
|
|
3453
|
-
|
|
3454
|
-
GL_PRIMITIVES_GENERATED: float
|
|
3455
|
-
|
|
3456
|
-
GL_PRIMITIVE_RESTART: float
|
|
3457
|
-
|
|
3458
|
-
GL_PRIMITIVE_RESTART_INDEX: float
|
|
3459
|
-
|
|
3460
|
-
GL_PROGRAM_POINT_SIZE: float
|
|
3461
|
-
|
|
3462
|
-
GL_PROVOKING_VERTEX: float
|
|
3463
|
-
|
|
3464
|
-
GL_PROXY_TEXTURE_1D: float
|
|
3465
|
-
|
|
3466
|
-
GL_PROXY_TEXTURE_1D_ARRAY: float
|
|
3467
|
-
|
|
3468
|
-
GL_PROXY_TEXTURE_2D: float
|
|
3469
|
-
|
|
3470
|
-
GL_PROXY_TEXTURE_2D_ARRAY: float
|
|
3471
|
-
|
|
3472
|
-
GL_PROXY_TEXTURE_2D_MULTISAMPLE: float
|
|
3473
|
-
|
|
3474
|
-
GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY: float
|
|
3475
|
-
|
|
3476
|
-
GL_PROXY_TEXTURE_3D: float
|
|
3477
|
-
|
|
3478
|
-
GL_PROXY_TEXTURE_CUBE_MAP: float
|
|
3479
|
-
|
|
3480
|
-
GL_PROXY_TEXTURE_RECTANGLE: float
|
|
3481
|
-
|
|
3482
|
-
GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION: float
|
|
3483
|
-
|
|
3484
|
-
GL_QUERY_BY_REGION_NO_WAIT: float
|
|
3485
|
-
|
|
3486
|
-
GL_QUERY_BY_REGION_WAIT: float
|
|
3487
|
-
|
|
3488
|
-
GL_QUERY_COUNTER_BITS: float
|
|
3489
|
-
|
|
3490
|
-
GL_QUERY_NO_WAIT: float
|
|
3491
|
-
|
|
3492
|
-
GL_QUERY_RESULT: float
|
|
3493
|
-
|
|
3494
|
-
GL_QUERY_RESULT_AVAILABLE: float
|
|
3495
|
-
|
|
3496
|
-
GL_QUERY_WAIT: float
|
|
3497
|
-
|
|
3498
|
-
GL_R11F_G11F_B10F: float
|
|
3499
|
-
|
|
3500
|
-
GL_R16: float
|
|
3501
|
-
|
|
3502
|
-
GL_R16F: float
|
|
3503
|
-
|
|
3504
|
-
GL_R16I: float
|
|
3505
|
-
|
|
3506
|
-
GL_R16UI: float
|
|
3507
|
-
|
|
3508
|
-
GL_R16_SNORM: float
|
|
3509
|
-
|
|
3510
|
-
GL_R32F: float
|
|
3511
|
-
|
|
3512
|
-
GL_R32I: float
|
|
3513
|
-
|
|
3514
|
-
GL_R32UI: float
|
|
3515
|
-
|
|
3516
|
-
GL_R3_G3_B2: float
|
|
3517
|
-
|
|
3518
|
-
GL_R8: float
|
|
3519
|
-
|
|
3520
|
-
GL_R8I: float
|
|
3521
|
-
|
|
3522
|
-
GL_R8UI: float
|
|
3523
|
-
|
|
3524
|
-
GL_R8_SNORM: float
|
|
3525
|
-
|
|
3526
|
-
GL_RASTERIZER_DISCARD: float
|
|
3527
|
-
|
|
3528
|
-
GL_READ_BUFFER: float
|
|
3529
|
-
|
|
3530
|
-
GL_READ_FRAMEBUFFER: float
|
|
3531
|
-
|
|
3532
|
-
GL_READ_FRAMEBUFFER_BINDING: float
|
|
3533
|
-
|
|
3534
|
-
GL_READ_ONLY: float
|
|
3535
|
-
|
|
3536
|
-
GL_READ_WRITE: float
|
|
3537
|
-
|
|
3538
|
-
GL_RED: float
|
|
3539
|
-
|
|
3540
|
-
GL_RED_INTEGER: float
|
|
3541
|
-
|
|
3542
|
-
GL_RENDERBUFFER: float
|
|
3543
|
-
|
|
3544
|
-
GL_RENDERBUFFER_ALPHA_SIZE: float
|
|
3545
|
-
|
|
3546
|
-
GL_RENDERBUFFER_BINDING: float
|
|
3547
|
-
|
|
3548
|
-
GL_RENDERBUFFER_BLUE_SIZE: float
|
|
3549
|
-
|
|
3550
|
-
GL_RENDERBUFFER_DEPTH_SIZE: float
|
|
3551
|
-
|
|
3552
|
-
GL_RENDERBUFFER_GREEN_SIZE: float
|
|
3553
|
-
|
|
3554
|
-
GL_RENDERBUFFER_HEIGHT: float
|
|
3555
|
-
|
|
3556
|
-
GL_RENDERBUFFER_INTERNAL_FORMAT: float
|
|
3557
|
-
|
|
3558
|
-
GL_RENDERBUFFER_RED_SIZE: float
|
|
3559
|
-
|
|
3560
|
-
GL_RENDERBUFFER_SAMPLES: float
|
|
3561
|
-
|
|
3562
|
-
GL_RENDERBUFFER_STENCIL_SIZE: float
|
|
3563
|
-
|
|
3564
|
-
GL_RENDERBUFFER_WIDTH: float
|
|
3565
|
-
|
|
3566
|
-
GL_RENDERER: float
|
|
3567
|
-
|
|
3568
|
-
GL_REPEAT: float
|
|
3569
|
-
|
|
3570
|
-
GL_REPLACE: float
|
|
3571
|
-
|
|
3572
|
-
GL_RG: float
|
|
3573
|
-
|
|
3574
|
-
GL_RG16: float
|
|
3575
|
-
|
|
3576
|
-
GL_RG16F: float
|
|
3577
|
-
|
|
3578
|
-
GL_RG16I: float
|
|
3579
|
-
|
|
3580
|
-
GL_RG16UI: float
|
|
3581
|
-
|
|
3582
|
-
GL_RG16_SNORM: float
|
|
3583
|
-
|
|
3584
|
-
GL_RG32F: float
|
|
3585
|
-
|
|
3586
|
-
GL_RG32I: float
|
|
3587
|
-
|
|
3588
|
-
GL_RG32UI: float
|
|
3589
|
-
|
|
3590
|
-
GL_RG8: float
|
|
3591
|
-
|
|
3592
|
-
GL_RG8I: float
|
|
3593
|
-
|
|
3594
|
-
GL_RG8UI: float
|
|
3595
|
-
|
|
3596
|
-
GL_RG8_SNORM: float
|
|
3597
|
-
|
|
3598
|
-
GL_RGB: float
|
|
3599
|
-
|
|
3600
|
-
GL_RGB10: float
|
|
3601
|
-
|
|
3602
|
-
GL_RGB10_A2: float
|
|
3603
|
-
|
|
3604
|
-
GL_RGB10_A2UI: float
|
|
3605
|
-
|
|
3606
|
-
GL_RGB12: float
|
|
3607
|
-
|
|
3608
|
-
GL_RGB16: float
|
|
3609
|
-
|
|
3610
|
-
GL_RGB16F: float
|
|
3611
|
-
|
|
3612
|
-
GL_RGB16I: float
|
|
3613
|
-
|
|
3614
|
-
GL_RGB16UI: float
|
|
3615
|
-
|
|
3616
|
-
GL_RGB16_SNORM: float
|
|
3617
|
-
|
|
3618
|
-
GL_RGB32F: float
|
|
3619
|
-
|
|
3620
|
-
GL_RGB32I: float
|
|
3621
|
-
|
|
3622
|
-
GL_RGB32UI: float
|
|
3623
|
-
|
|
3624
|
-
GL_RGB4: float
|
|
3625
|
-
|
|
3626
|
-
GL_RGB5: float
|
|
3627
|
-
|
|
3628
|
-
GL_RGB5_A1: float
|
|
3629
|
-
|
|
3630
|
-
GL_RGB8: float
|
|
3631
|
-
|
|
3632
|
-
GL_RGB8I: float
|
|
3633
|
-
|
|
3634
|
-
GL_RGB8UI: float
|
|
3635
|
-
|
|
3636
|
-
GL_RGB8_SNORM: float
|
|
3637
|
-
|
|
3638
|
-
GL_RGB9_E5: float
|
|
3639
|
-
|
|
3640
|
-
GL_RGBA: float
|
|
3641
|
-
|
|
3642
|
-
GL_RGBA12: float
|
|
3643
|
-
|
|
3644
|
-
GL_RGBA16: float
|
|
3645
|
-
|
|
3646
|
-
GL_RGBA16F: float
|
|
3647
|
-
|
|
3648
|
-
GL_RGBA16I: float
|
|
3649
|
-
|
|
3650
|
-
GL_RGBA16UI: float
|
|
3651
|
-
|
|
3652
|
-
GL_RGBA16_SNORM: float
|
|
3653
|
-
|
|
3654
|
-
GL_RGBA2: float
|
|
3655
|
-
|
|
3656
|
-
GL_RGBA32F: float
|
|
3657
|
-
|
|
3658
|
-
GL_RGBA32I: float
|
|
3659
|
-
|
|
3660
|
-
GL_RGBA32UI: float
|
|
3661
|
-
|
|
3662
|
-
GL_RGBA4: float
|
|
3663
|
-
|
|
3664
|
-
GL_RGBA8: float
|
|
3665
|
-
|
|
3666
|
-
GL_RGBA8I: float
|
|
3667
|
-
|
|
3668
|
-
GL_RGBA8UI: float
|
|
3669
|
-
|
|
3670
|
-
GL_RGBA8_SNORM: float
|
|
3671
|
-
|
|
3672
|
-
GL_RGBA_INTEGER: float
|
|
3673
|
-
|
|
3674
|
-
GL_RGB_INTEGER: float
|
|
3675
|
-
|
|
3676
|
-
GL_RG_INTEGER: float
|
|
3677
|
-
|
|
3678
|
-
GL_RIGHT: float
|
|
3679
|
-
|
|
3680
|
-
GL_SAMPLER_1D: float
|
|
3681
|
-
|
|
3682
|
-
GL_SAMPLER_1D_ARRAY: float
|
|
3683
|
-
|
|
3684
|
-
GL_SAMPLER_1D_ARRAY_SHADOW: float
|
|
3685
|
-
|
|
3686
|
-
GL_SAMPLER_1D_SHADOW: float
|
|
3687
|
-
|
|
3688
|
-
GL_SAMPLER_2D: float
|
|
3689
|
-
|
|
3690
|
-
GL_SAMPLER_2D_ARRAY: float
|
|
3691
|
-
|
|
3692
|
-
GL_SAMPLER_2D_ARRAY_SHADOW: float
|
|
3693
|
-
|
|
3694
|
-
GL_SAMPLER_2D_MULTISAMPLE: float
|
|
3695
|
-
|
|
3696
|
-
GL_SAMPLER_2D_MULTISAMPLE_ARRAY: float
|
|
3697
|
-
|
|
3698
|
-
GL_SAMPLER_2D_RECT: float
|
|
3699
|
-
|
|
3700
|
-
GL_SAMPLER_2D_RECT_SHADOW: float
|
|
3701
|
-
|
|
3702
|
-
GL_SAMPLER_2D_SHADOW: float
|
|
3703
|
-
|
|
3704
|
-
GL_SAMPLER_3D: float
|
|
3705
|
-
|
|
3706
|
-
GL_SAMPLER_BINDING: float
|
|
3707
|
-
|
|
3708
|
-
GL_SAMPLER_BUFFER: float
|
|
3709
|
-
|
|
3710
|
-
GL_SAMPLER_CUBE: float
|
|
3711
|
-
|
|
3712
|
-
GL_SAMPLER_CUBE_SHADOW: float
|
|
3713
|
-
|
|
3714
|
-
GL_SAMPLES: float
|
|
3715
|
-
|
|
3716
|
-
GL_SAMPLES_PASSED: float
|
|
3717
|
-
|
|
3718
|
-
GL_SAMPLE_ALPHA_TO_COVERAGE: float
|
|
3719
|
-
|
|
3720
|
-
GL_SAMPLE_ALPHA_TO_ONE: float
|
|
3721
|
-
|
|
3722
|
-
GL_SAMPLE_BUFFERS: float
|
|
3723
|
-
|
|
3724
|
-
GL_SAMPLE_COVERAGE: float
|
|
3725
|
-
|
|
3726
|
-
GL_SAMPLE_COVERAGE_INVERT: float
|
|
3727
|
-
|
|
3728
|
-
GL_SAMPLE_COVERAGE_VALUE: float
|
|
3729
|
-
|
|
3730
|
-
GL_SAMPLE_MASK: float
|
|
3731
|
-
|
|
3732
|
-
GL_SAMPLE_MASK_VALUE: float
|
|
3733
|
-
|
|
3734
|
-
GL_SAMPLE_POSITION: float
|
|
3735
|
-
|
|
3736
|
-
GL_SCISSOR_BOX: float
|
|
3737
|
-
|
|
3738
|
-
GL_SCISSOR_TEST: float
|
|
3739
|
-
|
|
3740
|
-
GL_SEPARATE_ATTRIBS: float
|
|
3741
|
-
|
|
3742
|
-
GL_SET: float
|
|
3743
|
-
|
|
3744
|
-
GL_SHADER_SOURCE_LENGTH: float
|
|
3745
|
-
|
|
3746
|
-
GL_SHADER_TYPE: float
|
|
3747
|
-
|
|
3748
|
-
GL_SHADING_LANGUAGE_VERSION: float
|
|
3749
|
-
|
|
3750
|
-
GL_SHORT: float
|
|
3751
|
-
|
|
3752
|
-
GL_SIGNALED: float
|
|
3753
|
-
|
|
3754
|
-
GL_SIGNED_NORMALIZED: float
|
|
3755
|
-
|
|
3756
|
-
GL_SMOOTH_LINE_WIDTH_GRANULARITY: float
|
|
3757
|
-
|
|
3758
|
-
GL_SMOOTH_LINE_WIDTH_RANGE: float
|
|
3759
|
-
|
|
3760
|
-
GL_SMOOTH_POINT_SIZE_GRANULARITY: float
|
|
3761
|
-
|
|
3762
|
-
GL_SMOOTH_POINT_SIZE_RANGE: float
|
|
3763
|
-
|
|
3764
|
-
GL_SRC1_COLOR: float
|
|
3765
|
-
|
|
3766
|
-
GL_SRC_ALPHA: float
|
|
3767
|
-
|
|
3768
|
-
GL_SRC_ALPHA_SATURATE: float
|
|
3769
|
-
|
|
3770
|
-
GL_SRC_COLOR: float
|
|
3771
|
-
|
|
3772
|
-
GL_SRGB: float
|
|
3773
|
-
|
|
3774
|
-
GL_SRGB8: float
|
|
3775
|
-
|
|
3776
|
-
GL_SRGB8_ALPHA8: float
|
|
3777
|
-
|
|
3778
|
-
GL_SRGB_ALPHA: float
|
|
3779
|
-
|
|
3780
|
-
GL_STATIC_COPY: float
|
|
3781
|
-
|
|
3782
|
-
GL_STATIC_DRAW: float
|
|
3783
|
-
|
|
3784
|
-
GL_STATIC_READ: float
|
|
3785
|
-
|
|
3786
|
-
GL_STENCIL: float
|
|
3787
|
-
|
|
3788
|
-
GL_STENCIL_ATTACHMENT: float
|
|
3789
|
-
|
|
3790
|
-
GL_STENCIL_BACK_FAIL: float
|
|
3791
|
-
|
|
3792
|
-
GL_STENCIL_BACK_FUNC: float
|
|
3793
|
-
|
|
3794
|
-
GL_STENCIL_BACK_PASS_DEPTH_FAIL: float
|
|
3795
|
-
|
|
3796
|
-
GL_STENCIL_BACK_PASS_DEPTH_PASS: float
|
|
3797
|
-
|
|
3798
|
-
GL_STENCIL_BACK_REF: float
|
|
3799
|
-
|
|
3800
|
-
GL_STENCIL_BACK_VALUE_MASK: float
|
|
3801
|
-
|
|
3802
|
-
GL_STENCIL_BACK_WRITEMASK: float
|
|
3803
|
-
|
|
3804
|
-
GL_STENCIL_BUFFER_BIT: float
|
|
3805
|
-
|
|
3806
|
-
GL_STENCIL_CLEAR_VALUE: float
|
|
3807
|
-
|
|
3808
|
-
GL_STENCIL_FAIL: float
|
|
3809
|
-
|
|
3810
|
-
GL_STENCIL_FUNC: float
|
|
3811
|
-
|
|
3812
|
-
GL_STENCIL_INDEX: float
|
|
3813
|
-
|
|
3814
|
-
GL_STENCIL_INDEX1: float
|
|
3815
|
-
|
|
3816
|
-
GL_STENCIL_INDEX16: float
|
|
3817
|
-
|
|
3818
|
-
GL_STENCIL_INDEX4: float
|
|
3819
|
-
|
|
3820
|
-
GL_STENCIL_INDEX8: float
|
|
3821
|
-
|
|
3822
|
-
GL_STENCIL_PASS_DEPTH_FAIL: float
|
|
3823
|
-
|
|
3824
|
-
GL_STENCIL_PASS_DEPTH_PASS: float
|
|
3825
|
-
|
|
3826
|
-
GL_STENCIL_REF: float
|
|
3827
|
-
|
|
3828
|
-
GL_STENCIL_TEST: float
|
|
3829
|
-
|
|
3830
|
-
GL_STENCIL_VALUE_MASK: float
|
|
3831
|
-
|
|
3832
|
-
GL_STENCIL_WRITEMASK: float
|
|
3833
|
-
|
|
3834
|
-
GL_STEREO: float
|
|
3835
|
-
|
|
3836
|
-
GL_STREAM_COPY: float
|
|
3837
|
-
|
|
3838
|
-
GL_STREAM_DRAW: float
|
|
3839
|
-
|
|
3840
|
-
GL_STREAM_READ: float
|
|
3841
|
-
|
|
3842
|
-
GL_SUBPIXEL_BITS: float
|
|
3843
|
-
|
|
3844
|
-
GL_SYNC_CONDITION: float
|
|
3845
|
-
|
|
3846
|
-
GL_SYNC_FENCE: float
|
|
3847
|
-
|
|
3848
|
-
GL_SYNC_FLAGS: float
|
|
3849
|
-
|
|
3850
|
-
GL_SYNC_FLUSH_COMMANDS_BIT: float
|
|
3851
|
-
|
|
3852
|
-
GL_SYNC_GPU_COMMANDS_COMPLETE: float
|
|
3853
|
-
|
|
3854
|
-
GL_SYNC_STATUS: float
|
|
3855
|
-
|
|
3856
|
-
GL_TEXTURE: float
|
|
3857
|
-
|
|
3858
|
-
GL_TEXTURE0: float
|
|
3859
|
-
|
|
3860
|
-
GL_TEXTURE1: float
|
|
3861
|
-
|
|
3862
|
-
GL_TEXTURE10: float
|
|
3863
|
-
|
|
3864
|
-
GL_TEXTURE11: float
|
|
3865
|
-
|
|
3866
|
-
GL_TEXTURE12: float
|
|
3867
|
-
|
|
3868
|
-
GL_TEXTURE13: float
|
|
3869
|
-
|
|
3870
|
-
GL_TEXTURE14: float
|
|
3871
|
-
|
|
3872
|
-
GL_TEXTURE15: float
|
|
3873
|
-
|
|
3874
|
-
GL_TEXTURE16: float
|
|
3875
|
-
|
|
3876
|
-
GL_TEXTURE17: float
|
|
3877
|
-
|
|
3878
|
-
GL_TEXTURE18: float
|
|
3879
|
-
|
|
3880
|
-
GL_TEXTURE19: float
|
|
3881
|
-
|
|
3882
|
-
GL_TEXTURE2: float
|
|
3883
|
-
|
|
3884
|
-
GL_TEXTURE20: float
|
|
3885
|
-
|
|
3886
|
-
GL_TEXTURE21: float
|
|
3887
|
-
|
|
3888
|
-
GL_TEXTURE22: float
|
|
3889
|
-
|
|
3890
|
-
GL_TEXTURE23: float
|
|
3891
|
-
|
|
3892
|
-
GL_TEXTURE24: float
|
|
3893
|
-
|
|
3894
|
-
GL_TEXTURE25: float
|
|
3895
|
-
|
|
3896
|
-
GL_TEXTURE26: float
|
|
3897
|
-
|
|
3898
|
-
GL_TEXTURE27: float
|
|
3899
|
-
|
|
3900
|
-
GL_TEXTURE28: float
|
|
3901
|
-
|
|
3902
|
-
GL_TEXTURE29: float
|
|
3903
|
-
|
|
3904
|
-
GL_TEXTURE3: float
|
|
3905
|
-
|
|
3906
|
-
GL_TEXTURE30: float
|
|
3907
|
-
|
|
3908
|
-
GL_TEXTURE31: float
|
|
3909
|
-
|
|
3910
|
-
GL_TEXTURE4: float
|
|
3911
|
-
|
|
3912
|
-
GL_TEXTURE5: float
|
|
3913
|
-
|
|
3914
|
-
GL_TEXTURE6: float
|
|
3915
|
-
|
|
3916
|
-
GL_TEXTURE7: float
|
|
3917
|
-
|
|
3918
|
-
GL_TEXTURE8: float
|
|
3919
|
-
|
|
3920
|
-
GL_TEXTURE9: float
|
|
3921
|
-
|
|
3922
|
-
GL_TEXTURE_1D: float
|
|
3923
|
-
|
|
3924
|
-
GL_TEXTURE_1D_ARRAY: float
|
|
3925
|
-
|
|
3926
|
-
GL_TEXTURE_2D: float
|
|
3927
|
-
|
|
3928
|
-
GL_TEXTURE_2D_ARRAY: float
|
|
3929
|
-
|
|
3930
|
-
GL_TEXTURE_2D_MULTISAMPLE: float
|
|
3931
|
-
|
|
3932
|
-
GL_TEXTURE_2D_MULTISAMPLE_ARRAY: float
|
|
3933
|
-
|
|
3934
|
-
GL_TEXTURE_3D: float
|
|
3935
|
-
|
|
3936
|
-
GL_TEXTURE_ALPHA_SIZE: float
|
|
3937
|
-
|
|
3938
|
-
GL_TEXTURE_ALPHA_TYPE: float
|
|
3939
|
-
|
|
3940
|
-
GL_TEXTURE_BASE_LEVEL: float
|
|
3941
|
-
|
|
3942
|
-
GL_TEXTURE_BINDING_1D: float
|
|
3943
|
-
|
|
3944
|
-
GL_TEXTURE_BINDING_1D_ARRAY: float
|
|
3945
|
-
|
|
3946
|
-
GL_TEXTURE_BINDING_2D: float
|
|
3947
|
-
|
|
3948
|
-
GL_TEXTURE_BINDING_2D_ARRAY: float
|
|
3949
|
-
|
|
3950
|
-
GL_TEXTURE_BINDING_2D_MULTISAMPLE: float
|
|
3951
|
-
|
|
3952
|
-
GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY: float
|
|
3953
|
-
|
|
3954
|
-
GL_TEXTURE_BINDING_3D: float
|
|
3955
|
-
|
|
3956
|
-
GL_TEXTURE_BINDING_BUFFER: float
|
|
3957
|
-
|
|
3958
|
-
GL_TEXTURE_BINDING_CUBE_MAP: float
|
|
3959
|
-
|
|
3960
|
-
GL_TEXTURE_BINDING_RECTANGLE: float
|
|
3961
|
-
|
|
3962
|
-
GL_TEXTURE_BLUE_SIZE: float
|
|
3963
|
-
|
|
3964
|
-
GL_TEXTURE_BLUE_TYPE: float
|
|
3965
|
-
|
|
3966
|
-
GL_TEXTURE_BORDER_COLOR: float
|
|
3967
|
-
|
|
3968
|
-
GL_TEXTURE_BUFFER: float
|
|
3969
|
-
|
|
3970
|
-
GL_TEXTURE_BUFFER_DATA_STORE_BINDING: float
|
|
3971
|
-
|
|
3972
|
-
GL_TEXTURE_COMPARE_FUNC: float
|
|
3973
|
-
|
|
3974
|
-
GL_TEXTURE_COMPARE_MODE: float
|
|
3975
|
-
|
|
3976
|
-
GL_TEXTURE_COMPRESSED: float
|
|
3977
|
-
|
|
3978
|
-
GL_TEXTURE_COMPRESSED_IMAGE_SIZE: float
|
|
3979
|
-
|
|
3980
|
-
GL_TEXTURE_COMPRESSION_HINT: float
|
|
3981
|
-
|
|
3982
|
-
GL_TEXTURE_CUBE_MAP: float
|
|
3983
|
-
|
|
3984
|
-
GL_TEXTURE_CUBE_MAP_NEGATIVE_X: float
|
|
3985
|
-
|
|
3986
|
-
GL_TEXTURE_CUBE_MAP_NEGATIVE_Y: float
|
|
3987
|
-
|
|
3988
|
-
GL_TEXTURE_CUBE_MAP_NEGATIVE_Z: float
|
|
3989
|
-
|
|
3990
|
-
GL_TEXTURE_CUBE_MAP_POSITIVE_X: float
|
|
3991
|
-
|
|
3992
|
-
GL_TEXTURE_CUBE_MAP_POSITIVE_Y: float
|
|
3993
|
-
|
|
3994
|
-
GL_TEXTURE_CUBE_MAP_POSITIVE_Z: float
|
|
3995
|
-
|
|
3996
|
-
GL_TEXTURE_CUBE_MAP_SEAMLESS: float
|
|
3997
|
-
|
|
3998
|
-
GL_TEXTURE_DEPTH: float
|
|
3999
|
-
|
|
4000
|
-
GL_TEXTURE_DEPTH_SIZE: float
|
|
4001
|
-
|
|
4002
|
-
GL_TEXTURE_DEPTH_TYPE: float
|
|
4003
|
-
|
|
4004
|
-
GL_TEXTURE_FIXED_SAMPLE_LOCATIONS: float
|
|
4005
|
-
|
|
4006
|
-
GL_TEXTURE_GREEN_SIZE: float
|
|
4007
|
-
|
|
4008
|
-
GL_TEXTURE_GREEN_TYPE: float
|
|
4009
|
-
|
|
4010
|
-
GL_TEXTURE_HEIGHT: float
|
|
4011
|
-
|
|
4012
|
-
GL_TEXTURE_INTERNAL_FORMAT: float
|
|
4013
|
-
|
|
4014
|
-
GL_TEXTURE_LOD_BIAS: float
|
|
4015
|
-
|
|
4016
|
-
GL_TEXTURE_MAG_FILTER: float
|
|
4017
|
-
|
|
4018
|
-
GL_TEXTURE_MAX_LEVEL: float
|
|
4019
|
-
|
|
4020
|
-
GL_TEXTURE_MAX_LOD: float
|
|
4021
|
-
|
|
4022
|
-
GL_TEXTURE_MIN_FILTER: float
|
|
4023
|
-
|
|
4024
|
-
GL_TEXTURE_MIN_LOD: float
|
|
4025
|
-
|
|
4026
|
-
GL_TEXTURE_RECTANGLE: float
|
|
4027
|
-
|
|
4028
|
-
GL_TEXTURE_RED_SIZE: float
|
|
4029
|
-
|
|
4030
|
-
GL_TEXTURE_RED_TYPE: float
|
|
4031
|
-
|
|
4032
|
-
GL_TEXTURE_SAMPLES: float
|
|
4033
|
-
|
|
4034
|
-
GL_TEXTURE_SHARED_SIZE: float
|
|
4035
|
-
|
|
4036
|
-
GL_TEXTURE_STENCIL_SIZE: float
|
|
4037
|
-
|
|
4038
|
-
GL_TEXTURE_SWIZZLE_A: float
|
|
4039
|
-
|
|
4040
|
-
GL_TEXTURE_SWIZZLE_B: float
|
|
4041
|
-
|
|
4042
|
-
GL_TEXTURE_SWIZZLE_G: float
|
|
4043
|
-
|
|
4044
|
-
GL_TEXTURE_SWIZZLE_R: float
|
|
4045
|
-
|
|
4046
|
-
GL_TEXTURE_SWIZZLE_RGBA: float
|
|
4047
|
-
|
|
4048
|
-
GL_TEXTURE_WIDTH: float
|
|
4049
|
-
|
|
4050
|
-
GL_TEXTURE_WRAP_R: float
|
|
4051
|
-
|
|
4052
|
-
GL_TEXTURE_WRAP_S: float
|
|
4053
|
-
|
|
4054
|
-
GL_TEXTURE_WRAP_T: float
|
|
4055
|
-
|
|
4056
|
-
GL_TIMEOUT_EXPIRED: float
|
|
4057
|
-
|
|
4058
|
-
GL_TIMEOUT_IGNORED: float
|
|
4059
|
-
|
|
4060
|
-
GL_TIMESTAMP: float
|
|
4061
|
-
|
|
4062
|
-
GL_TIME_ELAPSED: float
|
|
4063
|
-
|
|
4064
|
-
GL_TRANSFORM_FEEDBACK_BUFFER: float
|
|
4065
|
-
|
|
4066
|
-
GL_TRANSFORM_FEEDBACK_BUFFER_BINDING: float
|
|
4067
|
-
|
|
4068
|
-
GL_TRANSFORM_FEEDBACK_BUFFER_MODE: float
|
|
4069
|
-
|
|
4070
|
-
GL_TRANSFORM_FEEDBACK_BUFFER_SIZE: float
|
|
4071
|
-
|
|
4072
|
-
GL_TRANSFORM_FEEDBACK_BUFFER_START: float
|
|
4073
|
-
|
|
4074
|
-
GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN: float
|
|
4075
|
-
|
|
4076
|
-
GL_TRANSFORM_FEEDBACK_VARYINGS: float
|
|
4077
|
-
|
|
4078
|
-
GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH: float
|
|
4079
|
-
|
|
4080
|
-
GL_TRIANGLES: float
|
|
4081
|
-
|
|
4082
|
-
GL_TRIANGLES_ADJACENCY: float
|
|
4083
|
-
|
|
4084
|
-
GL_TRIANGLE_FAN: float
|
|
4085
|
-
|
|
4086
|
-
GL_TRIANGLE_STRIP: float
|
|
4087
|
-
|
|
4088
|
-
GL_TRIANGLE_STRIP_ADJACENCY: float
|
|
4089
|
-
|
|
4090
|
-
GL_TRUE: float
|
|
4091
|
-
|
|
4092
|
-
GL_UNIFORM_ARRAY_STRIDE: float
|
|
4093
|
-
|
|
4094
|
-
GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS: float
|
|
4095
|
-
|
|
4096
|
-
GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES: float
|
|
4097
|
-
|
|
4098
|
-
GL_UNIFORM_BLOCK_BINDING: float
|
|
4099
|
-
|
|
4100
|
-
GL_UNIFORM_BLOCK_DATA_SIZE: float
|
|
4101
|
-
|
|
4102
|
-
GL_UNIFORM_BLOCK_INDEX: float
|
|
4103
|
-
|
|
4104
|
-
GL_UNIFORM_BLOCK_NAME_LENGTH: float
|
|
4105
|
-
|
|
4106
|
-
GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER: float
|
|
4107
|
-
|
|
4108
|
-
GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER: float
|
|
4109
|
-
|
|
4110
|
-
GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER: float
|
|
4111
|
-
|
|
4112
|
-
GL_UNIFORM_BUFFER: float
|
|
4113
|
-
|
|
4114
|
-
GL_UNIFORM_BUFFER_BINDING: float
|
|
4115
|
-
|
|
4116
|
-
GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT: float
|
|
4117
|
-
|
|
4118
|
-
GL_UNIFORM_BUFFER_SIZE: float
|
|
4119
|
-
|
|
4120
|
-
GL_UNIFORM_BUFFER_START: float
|
|
4121
|
-
|
|
4122
|
-
GL_UNIFORM_IS_ROW_MAJOR: float
|
|
4123
|
-
|
|
4124
|
-
GL_UNIFORM_MATRIX_STRIDE: float
|
|
4125
|
-
|
|
4126
|
-
GL_UNIFORM_NAME_LENGTH: float
|
|
4127
|
-
|
|
4128
|
-
GL_UNIFORM_OFFSET: float
|
|
4129
|
-
|
|
4130
|
-
GL_UNIFORM_SIZE: float
|
|
4131
|
-
|
|
4132
|
-
GL_UNIFORM_TYPE: float
|
|
4133
|
-
|
|
4134
|
-
GL_UNPACK_ALIGNMENT: float
|
|
4135
|
-
|
|
4136
|
-
GL_UNPACK_IMAGE_HEIGHT: float
|
|
4137
|
-
|
|
4138
|
-
GL_UNPACK_LSB_FIRST: float
|
|
4139
|
-
|
|
4140
|
-
GL_UNPACK_ROW_LENGTH: float
|
|
4141
|
-
|
|
4142
|
-
GL_UNPACK_SKIP_IMAGES: float
|
|
4143
|
-
|
|
4144
|
-
GL_UNPACK_SKIP_PIXELS: float
|
|
4145
|
-
|
|
4146
|
-
GL_UNPACK_SKIP_ROWS: float
|
|
4147
|
-
|
|
4148
|
-
GL_UNPACK_SWAP_BYTES: float
|
|
4149
|
-
|
|
4150
|
-
GL_UNSIGNALED: float
|
|
4151
|
-
|
|
4152
|
-
GL_UNSIGNED_BYTE: float
|
|
4153
|
-
|
|
4154
|
-
GL_UNSIGNED_BYTE_2_3_3_REV: float
|
|
4155
|
-
|
|
4156
|
-
GL_UNSIGNED_BYTE_3_3_2: float
|
|
4157
|
-
|
|
4158
|
-
GL_UNSIGNED_INT: float
|
|
4159
|
-
|
|
4160
|
-
GL_UNSIGNED_INT_10F_11F_11F_REV: float
|
|
4161
|
-
|
|
4162
|
-
GL_UNSIGNED_INT_10_10_10_2: float
|
|
4163
|
-
|
|
4164
|
-
GL_UNSIGNED_INT_24_8: float
|
|
4165
|
-
|
|
4166
|
-
GL_UNSIGNED_INT_2_10_10_10_REV: float
|
|
4167
|
-
|
|
4168
|
-
GL_UNSIGNED_INT_5_9_9_9_REV: float
|
|
4169
|
-
|
|
4170
|
-
GL_UNSIGNED_INT_8_8_8_8: float
|
|
4171
|
-
|
|
4172
|
-
GL_UNSIGNED_INT_8_8_8_8_REV: float
|
|
4173
|
-
|
|
4174
|
-
GL_UNSIGNED_INT_SAMPLER_1D: float
|
|
4175
|
-
|
|
4176
|
-
GL_UNSIGNED_INT_SAMPLER_1D_ARRAY: float
|
|
4177
|
-
|
|
4178
|
-
GL_UNSIGNED_INT_SAMPLER_2D: float
|
|
4179
|
-
|
|
4180
|
-
GL_UNSIGNED_INT_SAMPLER_2D_ARRAY: float
|
|
4181
|
-
|
|
4182
|
-
GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE: float
|
|
4183
|
-
|
|
4184
|
-
GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY: float
|
|
4185
|
-
|
|
4186
|
-
GL_UNSIGNED_INT_SAMPLER_2D_RECT: float
|
|
4187
|
-
|
|
4188
|
-
GL_UNSIGNED_INT_SAMPLER_3D: float
|
|
4189
|
-
|
|
4190
|
-
GL_UNSIGNED_INT_SAMPLER_BUFFER: float
|
|
4191
|
-
|
|
4192
|
-
GL_UNSIGNED_INT_SAMPLER_CUBE: float
|
|
4193
|
-
|
|
4194
|
-
GL_UNSIGNED_INT_VEC2: float
|
|
4195
|
-
|
|
4196
|
-
GL_UNSIGNED_INT_VEC3: float
|
|
4197
|
-
|
|
4198
|
-
GL_UNSIGNED_INT_VEC4: float
|
|
4199
|
-
|
|
4200
|
-
GL_UNSIGNED_NORMALIZED: float
|
|
4201
|
-
|
|
4202
|
-
GL_UNSIGNED_SHORT: float
|
|
4203
|
-
|
|
4204
|
-
GL_UNSIGNED_SHORT_1_5_5_5_REV: float
|
|
4205
|
-
|
|
4206
|
-
GL_UNSIGNED_SHORT_4_4_4_4: float
|
|
4207
|
-
|
|
4208
|
-
GL_UNSIGNED_SHORT_4_4_4_4_REV: float
|
|
4209
|
-
|
|
4210
|
-
GL_UNSIGNED_SHORT_5_5_5_1: float
|
|
4211
|
-
|
|
4212
|
-
GL_UNSIGNED_SHORT_5_6_5: float
|
|
4213
|
-
|
|
4214
|
-
GL_UNSIGNED_SHORT_5_6_5_REV: float
|
|
4215
|
-
|
|
4216
|
-
GL_UPPER_LEFT: float
|
|
4217
|
-
|
|
4218
|
-
GL_VALIDATE_STATUS: float
|
|
4219
|
-
|
|
4220
|
-
GL_VENDOR: float
|
|
4221
|
-
|
|
4222
|
-
GL_VERSION: float
|
|
4223
|
-
|
|
4224
|
-
GL_VERTEX_ARRAY_BINDING: float
|
|
4225
|
-
|
|
4226
|
-
GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING: float
|
|
4227
|
-
|
|
4228
|
-
GL_VERTEX_ATTRIB_ARRAY_DIVISOR: float
|
|
4229
|
-
|
|
4230
|
-
GL_VERTEX_ATTRIB_ARRAY_ENABLED: float
|
|
4231
|
-
|
|
4232
|
-
GL_VERTEX_ATTRIB_ARRAY_INTEGER: float
|
|
4233
|
-
|
|
4234
|
-
GL_VERTEX_ATTRIB_ARRAY_NORMALIZED: float
|
|
4235
|
-
|
|
4236
|
-
GL_VERTEX_ATTRIB_ARRAY_POINTER: float
|
|
4237
|
-
|
|
4238
|
-
GL_VERTEX_ATTRIB_ARRAY_SIZE: float
|
|
4239
|
-
|
|
4240
|
-
GL_VERTEX_ATTRIB_ARRAY_STRIDE: float
|
|
4241
|
-
|
|
4242
|
-
GL_VERTEX_ATTRIB_ARRAY_TYPE: float
|
|
4243
|
-
|
|
4244
|
-
GL_VERTEX_PROGRAM_POINT_SIZE: float
|
|
4245
|
-
|
|
4246
|
-
GL_VERTEX_SHADER: float
|
|
4247
|
-
|
|
4248
|
-
GL_VIEWPORT: float
|
|
4249
|
-
|
|
4250
|
-
GL_WAIT_FAILED: float
|
|
4251
|
-
|
|
4252
|
-
GL_WRITE_ONLY: float
|
|
4253
|
-
|
|
4254
|
-
GL_XOR: float
|
|
4255
|
-
|
|
4256
|
-
GL_ZERO: float
|