opengl-bindings 1.3.2 → 1.3.3
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.
- checksums.yaml +4 -4
- data/ChangeLog +6 -0
- data/README.md +7 -4
- data/lib/glut.rb +237 -37
- data/lib/opengl_enum.rb +29 -29
- data/lib/opengl_es_enum.rb +6 -6
- data/lib/opengl_es_ext_command.rb +264 -264
- data/lib/opengl_es_ext_enum.rb +265 -265
- data/lib/opengl_ext_command.rb +954 -954
- data/lib/opengl_ext_common.rb +13 -4
- data/lib/opengl_ext_enum.rb +967 -967
- metadata +11 -11
data/lib/opengl_ext_common.rb
CHANGED
@@ -20,10 +20,19 @@ module OpenGL
|
|
20
20
|
|
21
21
|
def self.setup_extension( ext_name )
|
22
22
|
if self.check_extension( ext_name )
|
23
|
-
|
24
|
-
|
25
|
-
self.send(
|
26
|
-
self.send(
|
23
|
+
define_ext_enum = "define_ext_enum_#{ext_name}".to_sym
|
24
|
+
define_ext_command = "define_ext_command_#{ext_name}".to_sym
|
25
|
+
self.send( define_ext_enum )
|
26
|
+
self.send( define_ext_command )
|
27
27
|
end
|
28
28
|
end
|
29
|
+
|
30
|
+
def self.setup_extension_all()
|
31
|
+
self.methods.each do |method_name|
|
32
|
+
if method_name =~ /define_ext_command_(.*)/
|
33
|
+
setup_extension( $1 )
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
29
38
|
end
|
data/lib/opengl_ext_enum.rb
CHANGED
@@ -6,30 +6,30 @@
|
|
6
6
|
|
7
7
|
module OpenGL
|
8
8
|
|
9
|
-
def
|
9
|
+
def define_ext_enum_GL_3DFX_multisample
|
10
10
|
const_set('GL_MULTISAMPLE_3DFX', 0x86B2) unless defined?(GL_MULTISAMPLE_3DFX)
|
11
11
|
const_set('GL_SAMPLE_BUFFERS_3DFX', 0x86B3) unless defined?(GL_SAMPLE_BUFFERS_3DFX)
|
12
12
|
const_set('GL_SAMPLES_3DFX', 0x86B4) unless defined?(GL_SAMPLES_3DFX)
|
13
13
|
const_set('GL_MULTISAMPLE_BIT_3DFX', 0x20000000) unless defined?(GL_MULTISAMPLE_BIT_3DFX)
|
14
|
-
end #
|
14
|
+
end # define_ext_enum_GL_3DFX_multisample
|
15
15
|
|
16
|
-
def
|
17
|
-
end #
|
16
|
+
def define_ext_enum_GL_3DFX_tbuffer
|
17
|
+
end # define_ext_enum_GL_3DFX_tbuffer
|
18
18
|
|
19
|
-
def
|
19
|
+
def define_ext_enum_GL_3DFX_texture_compression_FXT1
|
20
20
|
const_set('GL_COMPRESSED_RGB_FXT1_3DFX', 0x86B0) unless defined?(GL_COMPRESSED_RGB_FXT1_3DFX)
|
21
21
|
const_set('GL_COMPRESSED_RGBA_FXT1_3DFX', 0x86B1) unless defined?(GL_COMPRESSED_RGBA_FXT1_3DFX)
|
22
|
-
end #
|
22
|
+
end # define_ext_enum_GL_3DFX_texture_compression_FXT1
|
23
23
|
|
24
|
-
def
|
24
|
+
def define_ext_enum_GL_AMD_blend_minmax_factor
|
25
25
|
const_set('GL_FACTOR_MIN_AMD', 0x901C) unless defined?(GL_FACTOR_MIN_AMD)
|
26
26
|
const_set('GL_FACTOR_MAX_AMD', 0x901D) unless defined?(GL_FACTOR_MAX_AMD)
|
27
|
-
end #
|
27
|
+
end # define_ext_enum_GL_AMD_blend_minmax_factor
|
28
28
|
|
29
|
-
def
|
30
|
-
end #
|
29
|
+
def define_ext_enum_GL_AMD_conservative_depth
|
30
|
+
end # define_ext_enum_GL_AMD_conservative_depth
|
31
31
|
|
32
|
-
def
|
32
|
+
def define_ext_enum_GL_AMD_debug_output
|
33
33
|
const_set('GL_MAX_DEBUG_MESSAGE_LENGTH_AMD', 0x9143) unless defined?(GL_MAX_DEBUG_MESSAGE_LENGTH_AMD)
|
34
34
|
const_set('GL_MAX_DEBUG_LOGGED_MESSAGES_AMD', 0x9144) unless defined?(GL_MAX_DEBUG_LOGGED_MESSAGES_AMD)
|
35
35
|
const_set('GL_DEBUG_LOGGED_MESSAGES_AMD', 0x9145) unless defined?(GL_DEBUG_LOGGED_MESSAGES_AMD)
|
@@ -44,17 +44,17 @@ module OpenGL
|
|
44
44
|
const_set('GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD', 0x914E) unless defined?(GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD)
|
45
45
|
const_set('GL_DEBUG_CATEGORY_APPLICATION_AMD', 0x914F) unless defined?(GL_DEBUG_CATEGORY_APPLICATION_AMD)
|
46
46
|
const_set('GL_DEBUG_CATEGORY_OTHER_AMD', 0x9150) unless defined?(GL_DEBUG_CATEGORY_OTHER_AMD)
|
47
|
-
end #
|
47
|
+
end # define_ext_enum_GL_AMD_debug_output
|
48
48
|
|
49
|
-
def
|
49
|
+
def define_ext_enum_GL_AMD_depth_clamp_separate
|
50
50
|
const_set('GL_DEPTH_CLAMP_NEAR_AMD', 0x901E) unless defined?(GL_DEPTH_CLAMP_NEAR_AMD)
|
51
51
|
const_set('GL_DEPTH_CLAMP_FAR_AMD', 0x901F) unless defined?(GL_DEPTH_CLAMP_FAR_AMD)
|
52
|
-
end #
|
52
|
+
end # define_ext_enum_GL_AMD_depth_clamp_separate
|
53
53
|
|
54
|
-
def
|
55
|
-
end #
|
54
|
+
def define_ext_enum_GL_AMD_draw_buffers_blend
|
55
|
+
end # define_ext_enum_GL_AMD_draw_buffers_blend
|
56
56
|
|
57
|
-
def
|
57
|
+
def define_ext_enum_GL_AMD_interleaved_elements
|
58
58
|
const_set('GL_VERTEX_ELEMENT_SWIZZLE_AMD', 0x91A4) unless defined?(GL_VERTEX_ELEMENT_SWIZZLE_AMD)
|
59
59
|
const_set('GL_VERTEX_ID_SWIZZLE_AMD', 0x91A5) unless defined?(GL_VERTEX_ID_SWIZZLE_AMD)
|
60
60
|
const_set('GL_RED', 0x1903) unless defined?(GL_RED)
|
@@ -64,29 +64,29 @@ module OpenGL
|
|
64
64
|
const_set('GL_RG8UI', 0x8238) unless defined?(GL_RG8UI)
|
65
65
|
const_set('GL_RG16UI', 0x823A) unless defined?(GL_RG16UI)
|
66
66
|
const_set('GL_RGBA8UI', 0x8D7C) unless defined?(GL_RGBA8UI)
|
67
|
-
end #
|
67
|
+
end # define_ext_enum_GL_AMD_interleaved_elements
|
68
68
|
|
69
|
-
def
|
70
|
-
end #
|
69
|
+
def define_ext_enum_GL_AMD_multi_draw_indirect
|
70
|
+
end # define_ext_enum_GL_AMD_multi_draw_indirect
|
71
71
|
|
72
|
-
def
|
72
|
+
def define_ext_enum_GL_AMD_name_gen_delete
|
73
73
|
const_set('GL_DATA_BUFFER_AMD', 0x9151) unless defined?(GL_DATA_BUFFER_AMD)
|
74
74
|
const_set('GL_PERFORMANCE_MONITOR_AMD', 0x9152) unless defined?(GL_PERFORMANCE_MONITOR_AMD)
|
75
75
|
const_set('GL_QUERY_OBJECT_AMD', 0x9153) unless defined?(GL_QUERY_OBJECT_AMD)
|
76
76
|
const_set('GL_VERTEX_ARRAY_OBJECT_AMD', 0x9154) unless defined?(GL_VERTEX_ARRAY_OBJECT_AMD)
|
77
77
|
const_set('GL_SAMPLER_OBJECT_AMD', 0x9155) unless defined?(GL_SAMPLER_OBJECT_AMD)
|
78
|
-
end #
|
78
|
+
end # define_ext_enum_GL_AMD_name_gen_delete
|
79
79
|
|
80
|
-
def
|
80
|
+
def define_ext_enum_GL_AMD_occlusion_query_event
|
81
81
|
const_set('GL_OCCLUSION_QUERY_EVENT_MASK_AMD', 0x874F) unless defined?(GL_OCCLUSION_QUERY_EVENT_MASK_AMD)
|
82
82
|
const_set('GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD', 0x00000001) unless defined?(GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD)
|
83
83
|
const_set('GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD', 0x00000002) unless defined?(GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD)
|
84
84
|
const_set('GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD', 0x00000004) unless defined?(GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD)
|
85
85
|
const_set('GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD', 0x00000008) unless defined?(GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD)
|
86
86
|
const_set('GL_QUERY_ALL_EVENT_BITS_AMD', 0xFFFFFFFF) unless defined?(GL_QUERY_ALL_EVENT_BITS_AMD)
|
87
|
-
end #
|
87
|
+
end # define_ext_enum_GL_AMD_occlusion_query_event
|
88
88
|
|
89
|
-
def
|
89
|
+
def define_ext_enum_GL_AMD_performance_monitor
|
90
90
|
const_set('GL_COUNTER_TYPE_AMD', 0x8BC0) unless defined?(GL_COUNTER_TYPE_AMD)
|
91
91
|
const_set('GL_COUNTER_RANGE_AMD', 0x8BC1) unless defined?(GL_COUNTER_RANGE_AMD)
|
92
92
|
const_set('GL_UNSIGNED_INT64_AMD', 0x8BC2) unless defined?(GL_UNSIGNED_INT64_AMD)
|
@@ -94,36 +94,36 @@ module OpenGL
|
|
94
94
|
const_set('GL_PERFMON_RESULT_AVAILABLE_AMD', 0x8BC4) unless defined?(GL_PERFMON_RESULT_AVAILABLE_AMD)
|
95
95
|
const_set('GL_PERFMON_RESULT_SIZE_AMD', 0x8BC5) unless defined?(GL_PERFMON_RESULT_SIZE_AMD)
|
96
96
|
const_set('GL_PERFMON_RESULT_AMD', 0x8BC6) unless defined?(GL_PERFMON_RESULT_AMD)
|
97
|
-
end #
|
97
|
+
end # define_ext_enum_GL_AMD_performance_monitor
|
98
98
|
|
99
|
-
def
|
99
|
+
def define_ext_enum_GL_AMD_pinned_memory
|
100
100
|
const_set('GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD', 0x9160) unless defined?(GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD)
|
101
|
-
end #
|
101
|
+
end # define_ext_enum_GL_AMD_pinned_memory
|
102
102
|
|
103
|
-
def
|
103
|
+
def define_ext_enum_GL_AMD_query_buffer_object
|
104
104
|
const_set('GL_QUERY_BUFFER_AMD', 0x9192) unless defined?(GL_QUERY_BUFFER_AMD)
|
105
105
|
const_set('GL_QUERY_BUFFER_BINDING_AMD', 0x9193) unless defined?(GL_QUERY_BUFFER_BINDING_AMD)
|
106
106
|
const_set('GL_QUERY_RESULT_NO_WAIT_AMD', 0x9194) unless defined?(GL_QUERY_RESULT_NO_WAIT_AMD)
|
107
|
-
end #
|
107
|
+
end # define_ext_enum_GL_AMD_query_buffer_object
|
108
108
|
|
109
|
-
def
|
109
|
+
def define_ext_enum_GL_AMD_sample_positions
|
110
110
|
const_set('GL_SUBSAMPLE_DISTANCE_AMD', 0x883F) unless defined?(GL_SUBSAMPLE_DISTANCE_AMD)
|
111
|
-
end #
|
111
|
+
end # define_ext_enum_GL_AMD_sample_positions
|
112
112
|
|
113
|
-
def
|
113
|
+
def define_ext_enum_GL_AMD_seamless_cubemap_per_texture
|
114
114
|
const_set('GL_TEXTURE_CUBE_MAP_SEAMLESS', 0x884F) unless defined?(GL_TEXTURE_CUBE_MAP_SEAMLESS)
|
115
|
-
end #
|
115
|
+
end # define_ext_enum_GL_AMD_seamless_cubemap_per_texture
|
116
116
|
|
117
|
-
def
|
118
|
-
end #
|
117
|
+
def define_ext_enum_GL_AMD_shader_atomic_counter_ops
|
118
|
+
end # define_ext_enum_GL_AMD_shader_atomic_counter_ops
|
119
119
|
|
120
|
-
def
|
121
|
-
end #
|
120
|
+
def define_ext_enum_GL_AMD_shader_stencil_export
|
121
|
+
end # define_ext_enum_GL_AMD_shader_stencil_export
|
122
122
|
|
123
|
-
def
|
124
|
-
end #
|
123
|
+
def define_ext_enum_GL_AMD_shader_trinary_minmax
|
124
|
+
end # define_ext_enum_GL_AMD_shader_trinary_minmax
|
125
125
|
|
126
|
-
def
|
126
|
+
def define_ext_enum_GL_AMD_sparse_texture
|
127
127
|
const_set('GL_VIRTUAL_PAGE_SIZE_X_AMD', 0x9195) unless defined?(GL_VIRTUAL_PAGE_SIZE_X_AMD)
|
128
128
|
const_set('GL_VIRTUAL_PAGE_SIZE_Y_AMD', 0x9196) unless defined?(GL_VIRTUAL_PAGE_SIZE_Y_AMD)
|
129
129
|
const_set('GL_VIRTUAL_PAGE_SIZE_Z_AMD', 0x9197) unless defined?(GL_VIRTUAL_PAGE_SIZE_Z_AMD)
|
@@ -133,25 +133,25 @@ module OpenGL
|
|
133
133
|
const_set('GL_MIN_SPARSE_LEVEL_AMD', 0x919B) unless defined?(GL_MIN_SPARSE_LEVEL_AMD)
|
134
134
|
const_set('GL_MIN_LOD_WARNING_AMD', 0x919C) unless defined?(GL_MIN_LOD_WARNING_AMD)
|
135
135
|
const_set('GL_TEXTURE_STORAGE_SPARSE_BIT_AMD', 0x00000001) unless defined?(GL_TEXTURE_STORAGE_SPARSE_BIT_AMD)
|
136
|
-
end #
|
136
|
+
end # define_ext_enum_GL_AMD_sparse_texture
|
137
137
|
|
138
|
-
def
|
138
|
+
def define_ext_enum_GL_AMD_stencil_operation_extended
|
139
139
|
const_set('GL_SET_AMD', 0x874A) unless defined?(GL_SET_AMD)
|
140
140
|
const_set('GL_REPLACE_VALUE_AMD', 0x874B) unless defined?(GL_REPLACE_VALUE_AMD)
|
141
141
|
const_set('GL_STENCIL_OP_VALUE_AMD', 0x874C) unless defined?(GL_STENCIL_OP_VALUE_AMD)
|
142
142
|
const_set('GL_STENCIL_BACK_OP_VALUE_AMD', 0x874D) unless defined?(GL_STENCIL_BACK_OP_VALUE_AMD)
|
143
|
-
end #
|
143
|
+
end # define_ext_enum_GL_AMD_stencil_operation_extended
|
144
144
|
|
145
|
-
def
|
146
|
-
end #
|
145
|
+
def define_ext_enum_GL_AMD_texture_texture4
|
146
|
+
end # define_ext_enum_GL_AMD_texture_texture4
|
147
147
|
|
148
|
-
def
|
149
|
-
end #
|
148
|
+
def define_ext_enum_GL_AMD_transform_feedback3_lines_triangles
|
149
|
+
end # define_ext_enum_GL_AMD_transform_feedback3_lines_triangles
|
150
150
|
|
151
|
-
def
|
152
|
-
end #
|
151
|
+
def define_ext_enum_GL_AMD_vertex_shader_layer
|
152
|
+
end # define_ext_enum_GL_AMD_vertex_shader_layer
|
153
153
|
|
154
|
-
def
|
154
|
+
def define_ext_enum_GL_AMD_vertex_shader_tessellator
|
155
155
|
const_set('GL_SAMPLER_BUFFER_AMD', 0x9001) unless defined?(GL_SAMPLER_BUFFER_AMD)
|
156
156
|
const_set('GL_INT_SAMPLER_BUFFER_AMD', 0x9002) unless defined?(GL_INT_SAMPLER_BUFFER_AMD)
|
157
157
|
const_set('GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD', 0x9003) unless defined?(GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD)
|
@@ -159,31 +159,31 @@ module OpenGL
|
|
159
159
|
const_set('GL_TESSELLATION_FACTOR_AMD', 0x9005) unless defined?(GL_TESSELLATION_FACTOR_AMD)
|
160
160
|
const_set('GL_DISCRETE_AMD', 0x9006) unless defined?(GL_DISCRETE_AMD)
|
161
161
|
const_set('GL_CONTINUOUS_AMD', 0x9007) unless defined?(GL_CONTINUOUS_AMD)
|
162
|
-
end #
|
162
|
+
end # define_ext_enum_GL_AMD_vertex_shader_tessellator
|
163
163
|
|
164
|
-
def
|
165
|
-
end #
|
164
|
+
def define_ext_enum_GL_AMD_vertex_shader_viewport_index
|
165
|
+
end # define_ext_enum_GL_AMD_vertex_shader_viewport_index
|
166
166
|
|
167
|
-
def
|
167
|
+
def define_ext_enum_GL_APPLE_aux_depth_stencil
|
168
168
|
const_set('GL_AUX_DEPTH_STENCIL_APPLE', 0x8A14) unless defined?(GL_AUX_DEPTH_STENCIL_APPLE)
|
169
|
-
end #
|
169
|
+
end # define_ext_enum_GL_APPLE_aux_depth_stencil
|
170
170
|
|
171
|
-
def
|
171
|
+
def define_ext_enum_GL_APPLE_client_storage
|
172
172
|
const_set('GL_UNPACK_CLIENT_STORAGE_APPLE', 0x85B2) unless defined?(GL_UNPACK_CLIENT_STORAGE_APPLE)
|
173
|
-
end #
|
173
|
+
end # define_ext_enum_GL_APPLE_client_storage
|
174
174
|
|
175
|
-
def
|
175
|
+
def define_ext_enum_GL_APPLE_element_array
|
176
176
|
const_set('GL_ELEMENT_ARRAY_APPLE', 0x8A0C) unless defined?(GL_ELEMENT_ARRAY_APPLE)
|
177
177
|
const_set('GL_ELEMENT_ARRAY_TYPE_APPLE', 0x8A0D) unless defined?(GL_ELEMENT_ARRAY_TYPE_APPLE)
|
178
178
|
const_set('GL_ELEMENT_ARRAY_POINTER_APPLE', 0x8A0E) unless defined?(GL_ELEMENT_ARRAY_POINTER_APPLE)
|
179
|
-
end #
|
179
|
+
end # define_ext_enum_GL_APPLE_element_array
|
180
180
|
|
181
|
-
def
|
181
|
+
def define_ext_enum_GL_APPLE_fence
|
182
182
|
const_set('GL_DRAW_PIXELS_APPLE', 0x8A0A) unless defined?(GL_DRAW_PIXELS_APPLE)
|
183
183
|
const_set('GL_FENCE_APPLE', 0x8A0B) unless defined?(GL_FENCE_APPLE)
|
184
|
-
end #
|
184
|
+
end # define_ext_enum_GL_APPLE_fence
|
185
185
|
|
186
|
-
def
|
186
|
+
def define_ext_enum_GL_APPLE_float_pixels
|
187
187
|
const_set('GL_HALF_APPLE', 0x140B) unless defined?(GL_HALF_APPLE)
|
188
188
|
const_set('GL_RGBA_FLOAT32_APPLE', 0x8814) unless defined?(GL_RGBA_FLOAT32_APPLE)
|
189
189
|
const_set('GL_RGB_FLOAT32_APPLE', 0x8815) unless defined?(GL_RGB_FLOAT32_APPLE)
|
@@ -198,56 +198,56 @@ module OpenGL
|
|
198
198
|
const_set('GL_LUMINANCE_FLOAT16_APPLE', 0x881E) unless defined?(GL_LUMINANCE_FLOAT16_APPLE)
|
199
199
|
const_set('GL_LUMINANCE_ALPHA_FLOAT16_APPLE', 0x881F) unless defined?(GL_LUMINANCE_ALPHA_FLOAT16_APPLE)
|
200
200
|
const_set('GL_COLOR_FLOAT_APPLE', 0x8A0F) unless defined?(GL_COLOR_FLOAT_APPLE)
|
201
|
-
end #
|
201
|
+
end # define_ext_enum_GL_APPLE_float_pixels
|
202
202
|
|
203
|
-
def
|
203
|
+
def define_ext_enum_GL_APPLE_flush_buffer_range
|
204
204
|
const_set('GL_BUFFER_SERIALIZED_MODIFY_APPLE', 0x8A12) unless defined?(GL_BUFFER_SERIALIZED_MODIFY_APPLE)
|
205
205
|
const_set('GL_BUFFER_FLUSHING_UNMAP_APPLE', 0x8A13) unless defined?(GL_BUFFER_FLUSHING_UNMAP_APPLE)
|
206
|
-
end #
|
206
|
+
end # define_ext_enum_GL_APPLE_flush_buffer_range
|
207
207
|
|
208
|
-
def
|
208
|
+
def define_ext_enum_GL_APPLE_object_purgeable
|
209
209
|
const_set('GL_BUFFER_OBJECT_APPLE', 0x85B3) unless defined?(GL_BUFFER_OBJECT_APPLE)
|
210
210
|
const_set('GL_RELEASED_APPLE', 0x8A19) unless defined?(GL_RELEASED_APPLE)
|
211
211
|
const_set('GL_VOLATILE_APPLE', 0x8A1A) unless defined?(GL_VOLATILE_APPLE)
|
212
212
|
const_set('GL_RETAINED_APPLE', 0x8A1B) unless defined?(GL_RETAINED_APPLE)
|
213
213
|
const_set('GL_UNDEFINED_APPLE', 0x8A1C) unless defined?(GL_UNDEFINED_APPLE)
|
214
214
|
const_set('GL_PURGEABLE_APPLE', 0x8A1D) unless defined?(GL_PURGEABLE_APPLE)
|
215
|
-
end #
|
215
|
+
end # define_ext_enum_GL_APPLE_object_purgeable
|
216
216
|
|
217
|
-
def
|
217
|
+
def define_ext_enum_GL_APPLE_rgb_422
|
218
218
|
const_set('GL_RGB_422_APPLE', 0x8A1F) unless defined?(GL_RGB_422_APPLE)
|
219
219
|
const_set('GL_UNSIGNED_SHORT_8_8_APPLE', 0x85BA) unless defined?(GL_UNSIGNED_SHORT_8_8_APPLE)
|
220
220
|
const_set('GL_UNSIGNED_SHORT_8_8_REV_APPLE', 0x85BB) unless defined?(GL_UNSIGNED_SHORT_8_8_REV_APPLE)
|
221
221
|
const_set('GL_RGB_RAW_422_APPLE', 0x8A51) unless defined?(GL_RGB_RAW_422_APPLE)
|
222
|
-
end #
|
222
|
+
end # define_ext_enum_GL_APPLE_rgb_422
|
223
223
|
|
224
|
-
def
|
224
|
+
def define_ext_enum_GL_APPLE_row_bytes
|
225
225
|
const_set('GL_PACK_ROW_BYTES_APPLE', 0x8A15) unless defined?(GL_PACK_ROW_BYTES_APPLE)
|
226
226
|
const_set('GL_UNPACK_ROW_BYTES_APPLE', 0x8A16) unless defined?(GL_UNPACK_ROW_BYTES_APPLE)
|
227
|
-
end #
|
227
|
+
end # define_ext_enum_GL_APPLE_row_bytes
|
228
228
|
|
229
|
-
def
|
229
|
+
def define_ext_enum_GL_APPLE_specular_vector
|
230
230
|
const_set('GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE', 0x85B0) unless defined?(GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE)
|
231
|
-
end #
|
231
|
+
end # define_ext_enum_GL_APPLE_specular_vector
|
232
232
|
|
233
|
-
def
|
233
|
+
def define_ext_enum_GL_APPLE_texture_range
|
234
234
|
const_set('GL_TEXTURE_RANGE_LENGTH_APPLE', 0x85B7) unless defined?(GL_TEXTURE_RANGE_LENGTH_APPLE)
|
235
235
|
const_set('GL_TEXTURE_RANGE_POINTER_APPLE', 0x85B8) unless defined?(GL_TEXTURE_RANGE_POINTER_APPLE)
|
236
236
|
const_set('GL_TEXTURE_STORAGE_HINT_APPLE', 0x85BC) unless defined?(GL_TEXTURE_STORAGE_HINT_APPLE)
|
237
237
|
const_set('GL_STORAGE_PRIVATE_APPLE', 0x85BD) unless defined?(GL_STORAGE_PRIVATE_APPLE)
|
238
238
|
const_set('GL_STORAGE_CACHED_APPLE', 0x85BE) unless defined?(GL_STORAGE_CACHED_APPLE)
|
239
239
|
const_set('GL_STORAGE_SHARED_APPLE', 0x85BF) unless defined?(GL_STORAGE_SHARED_APPLE)
|
240
|
-
end #
|
240
|
+
end # define_ext_enum_GL_APPLE_texture_range
|
241
241
|
|
242
|
-
def
|
242
|
+
def define_ext_enum_GL_APPLE_transform_hint
|
243
243
|
const_set('GL_TRANSFORM_HINT_APPLE', 0x85B1) unless defined?(GL_TRANSFORM_HINT_APPLE)
|
244
|
-
end #
|
244
|
+
end # define_ext_enum_GL_APPLE_transform_hint
|
245
245
|
|
246
|
-
def
|
246
|
+
def define_ext_enum_GL_APPLE_vertex_array_object
|
247
247
|
const_set('GL_VERTEX_ARRAY_BINDING_APPLE', 0x85B5) unless defined?(GL_VERTEX_ARRAY_BINDING_APPLE)
|
248
|
-
end #
|
248
|
+
end # define_ext_enum_GL_APPLE_vertex_array_object
|
249
249
|
|
250
|
-
def
|
250
|
+
def define_ext_enum_GL_APPLE_vertex_array_range
|
251
251
|
const_set('GL_VERTEX_ARRAY_RANGE_APPLE', 0x851D) unless defined?(GL_VERTEX_ARRAY_RANGE_APPLE)
|
252
252
|
const_set('GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE', 0x851E) unless defined?(GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE)
|
253
253
|
const_set('GL_VERTEX_ARRAY_STORAGE_HINT_APPLE', 0x851F) unless defined?(GL_VERTEX_ARRAY_STORAGE_HINT_APPLE)
|
@@ -255,9 +255,9 @@ module OpenGL
|
|
255
255
|
const_set('GL_STORAGE_CLIENT_APPLE', 0x85B4) unless defined?(GL_STORAGE_CLIENT_APPLE)
|
256
256
|
const_set('GL_STORAGE_CACHED_APPLE', 0x85BE) unless defined?(GL_STORAGE_CACHED_APPLE)
|
257
257
|
const_set('GL_STORAGE_SHARED_APPLE', 0x85BF) unless defined?(GL_STORAGE_SHARED_APPLE)
|
258
|
-
end #
|
258
|
+
end # define_ext_enum_GL_APPLE_vertex_array_range
|
259
259
|
|
260
|
-
def
|
260
|
+
def define_ext_enum_GL_APPLE_vertex_program_evaluators
|
261
261
|
const_set('GL_VERTEX_ATTRIB_MAP1_APPLE', 0x8A00) unless defined?(GL_VERTEX_ATTRIB_MAP1_APPLE)
|
262
262
|
const_set('GL_VERTEX_ATTRIB_MAP2_APPLE', 0x8A01) unless defined?(GL_VERTEX_ATTRIB_MAP2_APPLE)
|
263
263
|
const_set('GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE', 0x8A02) unless defined?(GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE)
|
@@ -268,15 +268,15 @@ module OpenGL
|
|
268
268
|
const_set('GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE', 0x8A07) unless defined?(GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE)
|
269
269
|
const_set('GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE', 0x8A08) unless defined?(GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE)
|
270
270
|
const_set('GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE', 0x8A09) unless defined?(GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE)
|
271
|
-
end #
|
271
|
+
end # define_ext_enum_GL_APPLE_vertex_program_evaluators
|
272
272
|
|
273
|
-
def
|
273
|
+
def define_ext_enum_GL_APPLE_ycbcr_422
|
274
274
|
const_set('GL_YCBCR_422_APPLE', 0x85B9) unless defined?(GL_YCBCR_422_APPLE)
|
275
275
|
const_set('GL_UNSIGNED_SHORT_8_8_APPLE', 0x85BA) unless defined?(GL_UNSIGNED_SHORT_8_8_APPLE)
|
276
276
|
const_set('GL_UNSIGNED_SHORT_8_8_REV_APPLE', 0x85BB) unless defined?(GL_UNSIGNED_SHORT_8_8_REV_APPLE)
|
277
|
-
end #
|
277
|
+
end # define_ext_enum_GL_APPLE_ycbcr_422
|
278
278
|
|
279
|
-
def
|
279
|
+
def define_ext_enum_GL_ARB_ES2_compatibility
|
280
280
|
const_set('GL_FIXED', 0x140C) unless defined?(GL_FIXED)
|
281
281
|
const_set('GL_IMPLEMENTATION_COLOR_READ_TYPE', 0x8B9A) unless defined?(GL_IMPLEMENTATION_COLOR_READ_TYPE)
|
282
282
|
const_set('GL_IMPLEMENTATION_COLOR_READ_FORMAT', 0x8B9B) unless defined?(GL_IMPLEMENTATION_COLOR_READ_FORMAT)
|
@@ -293,9 +293,9 @@ module OpenGL
|
|
293
293
|
const_set('GL_MAX_VARYING_VECTORS', 0x8DFC) unless defined?(GL_MAX_VARYING_VECTORS)
|
294
294
|
const_set('GL_MAX_FRAGMENT_UNIFORM_VECTORS', 0x8DFD) unless defined?(GL_MAX_FRAGMENT_UNIFORM_VECTORS)
|
295
295
|
const_set('GL_RGB565', 0x8D62) unless defined?(GL_RGB565)
|
296
|
-
end #
|
296
|
+
end # define_ext_enum_GL_ARB_ES2_compatibility
|
297
297
|
|
298
|
-
def
|
298
|
+
def define_ext_enum_GL_ARB_ES3_compatibility
|
299
299
|
const_set('GL_COMPRESSED_RGB8_ETC2', 0x9274) unless defined?(GL_COMPRESSED_RGB8_ETC2)
|
300
300
|
const_set('GL_COMPRESSED_SRGB8_ETC2', 0x9275) unless defined?(GL_COMPRESSED_SRGB8_ETC2)
|
301
301
|
const_set('GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2', 0x9276) unless defined?(GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2)
|
@@ -309,27 +309,27 @@ module OpenGL
|
|
309
309
|
const_set('GL_PRIMITIVE_RESTART_FIXED_INDEX', 0x8D69) unless defined?(GL_PRIMITIVE_RESTART_FIXED_INDEX)
|
310
310
|
const_set('GL_ANY_SAMPLES_PASSED_CONSERVATIVE', 0x8D6A) unless defined?(GL_ANY_SAMPLES_PASSED_CONSERVATIVE)
|
311
311
|
const_set('GL_MAX_ELEMENT_INDEX', 0x8D6B) unless defined?(GL_MAX_ELEMENT_INDEX)
|
312
|
-
end #
|
312
|
+
end # define_ext_enum_GL_ARB_ES3_compatibility
|
313
313
|
|
314
|
-
def
|
315
|
-
end #
|
314
|
+
def define_ext_enum_GL_ARB_arrays_of_arrays
|
315
|
+
end # define_ext_enum_GL_ARB_arrays_of_arrays
|
316
316
|
|
317
|
-
def
|
318
|
-
end #
|
317
|
+
def define_ext_enum_GL_ARB_base_instance
|
318
|
+
end # define_ext_enum_GL_ARB_base_instance
|
319
319
|
|
320
|
-
def
|
320
|
+
def define_ext_enum_GL_ARB_bindless_texture
|
321
321
|
const_set('GL_UNSIGNED_INT64_ARB', 0x140F) unless defined?(GL_UNSIGNED_INT64_ARB)
|
322
|
-
end #
|
322
|
+
end # define_ext_enum_GL_ARB_bindless_texture
|
323
323
|
|
324
|
-
def
|
324
|
+
def define_ext_enum_GL_ARB_blend_func_extended
|
325
325
|
const_set('GL_SRC1_COLOR', 0x88F9) unless defined?(GL_SRC1_COLOR)
|
326
|
-
const_set('GL_SRC1_ALPHA', ) unless defined?(GL_SRC1_ALPHA)
|
326
|
+
const_set('GL_SRC1_ALPHA', 0x8589) unless defined?(GL_SRC1_ALPHA)
|
327
327
|
const_set('GL_ONE_MINUS_SRC1_COLOR', 0x88FA) unless defined?(GL_ONE_MINUS_SRC1_COLOR)
|
328
328
|
const_set('GL_ONE_MINUS_SRC1_ALPHA', 0x88FB) unless defined?(GL_ONE_MINUS_SRC1_ALPHA)
|
329
329
|
const_set('GL_MAX_DUAL_SOURCE_DRAW_BUFFERS', 0x88FC) unless defined?(GL_MAX_DUAL_SOURCE_DRAW_BUFFERS)
|
330
|
-
end #
|
330
|
+
end # define_ext_enum_GL_ARB_blend_func_extended
|
331
331
|
|
332
|
-
def
|
332
|
+
def define_ext_enum_GL_ARB_buffer_storage
|
333
333
|
const_set('GL_MAP_READ_BIT', 0x0001) unless defined?(GL_MAP_READ_BIT)
|
334
334
|
const_set('GL_MAP_WRITE_BIT', 0x0002) unless defined?(GL_MAP_WRITE_BIT)
|
335
335
|
const_set('GL_MAP_PERSISTENT_BIT', 0x0040) unless defined?(GL_MAP_PERSISTENT_BIT)
|
@@ -339,32 +339,32 @@ module OpenGL
|
|
339
339
|
const_set('GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT', 0x00004000) unless defined?(GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT)
|
340
340
|
const_set('GL_BUFFER_IMMUTABLE_STORAGE', 0x821F) unless defined?(GL_BUFFER_IMMUTABLE_STORAGE)
|
341
341
|
const_set('GL_BUFFER_STORAGE_FLAGS', 0x8220) unless defined?(GL_BUFFER_STORAGE_FLAGS)
|
342
|
-
end #
|
342
|
+
end # define_ext_enum_GL_ARB_buffer_storage
|
343
343
|
|
344
|
-
def
|
344
|
+
def define_ext_enum_GL_ARB_cl_event
|
345
345
|
const_set('GL_SYNC_CL_EVENT_ARB', 0x8240) unless defined?(GL_SYNC_CL_EVENT_ARB)
|
346
346
|
const_set('GL_SYNC_CL_EVENT_COMPLETE_ARB', 0x8241) unless defined?(GL_SYNC_CL_EVENT_COMPLETE_ARB)
|
347
|
-
end #
|
347
|
+
end # define_ext_enum_GL_ARB_cl_event
|
348
348
|
|
349
|
-
def
|
350
|
-
end #
|
349
|
+
def define_ext_enum_GL_ARB_clear_buffer_object
|
350
|
+
end # define_ext_enum_GL_ARB_clear_buffer_object
|
351
351
|
|
352
|
-
def
|
352
|
+
def define_ext_enum_GL_ARB_clear_texture
|
353
353
|
const_set('GL_CLEAR_TEXTURE', 0x9365) unless defined?(GL_CLEAR_TEXTURE)
|
354
|
-
end #
|
354
|
+
end # define_ext_enum_GL_ARB_clear_texture
|
355
355
|
|
356
|
-
def
|
356
|
+
def define_ext_enum_GL_ARB_color_buffer_float
|
357
357
|
const_set('GL_RGBA_FLOAT_MODE_ARB', 0x8820) unless defined?(GL_RGBA_FLOAT_MODE_ARB)
|
358
358
|
const_set('GL_CLAMP_VERTEX_COLOR_ARB', 0x891A) unless defined?(GL_CLAMP_VERTEX_COLOR_ARB)
|
359
359
|
const_set('GL_CLAMP_FRAGMENT_COLOR_ARB', 0x891B) unless defined?(GL_CLAMP_FRAGMENT_COLOR_ARB)
|
360
360
|
const_set('GL_CLAMP_READ_COLOR_ARB', 0x891C) unless defined?(GL_CLAMP_READ_COLOR_ARB)
|
361
361
|
const_set('GL_FIXED_ONLY_ARB', 0x891D) unless defined?(GL_FIXED_ONLY_ARB)
|
362
|
-
end #
|
362
|
+
end # define_ext_enum_GL_ARB_color_buffer_float
|
363
363
|
|
364
|
-
def
|
365
|
-
end #
|
364
|
+
def define_ext_enum_GL_ARB_compatibility
|
365
|
+
end # define_ext_enum_GL_ARB_compatibility
|
366
366
|
|
367
|
-
def
|
367
|
+
def define_ext_enum_GL_ARB_compressed_texture_pixel_storage
|
368
368
|
const_set('GL_UNPACK_COMPRESSED_BLOCK_WIDTH', 0x9127) unless defined?(GL_UNPACK_COMPRESSED_BLOCK_WIDTH)
|
369
369
|
const_set('GL_UNPACK_COMPRESSED_BLOCK_HEIGHT', 0x9128) unless defined?(GL_UNPACK_COMPRESSED_BLOCK_HEIGHT)
|
370
370
|
const_set('GL_UNPACK_COMPRESSED_BLOCK_DEPTH', 0x9129) unless defined?(GL_UNPACK_COMPRESSED_BLOCK_DEPTH)
|
@@ -373,9 +373,9 @@ module OpenGL
|
|
373
373
|
const_set('GL_PACK_COMPRESSED_BLOCK_HEIGHT', 0x912C) unless defined?(GL_PACK_COMPRESSED_BLOCK_HEIGHT)
|
374
374
|
const_set('GL_PACK_COMPRESSED_BLOCK_DEPTH', 0x912D) unless defined?(GL_PACK_COMPRESSED_BLOCK_DEPTH)
|
375
375
|
const_set('GL_PACK_COMPRESSED_BLOCK_SIZE', 0x912E) unless defined?(GL_PACK_COMPRESSED_BLOCK_SIZE)
|
376
|
-
end #
|
376
|
+
end # define_ext_enum_GL_ARB_compressed_texture_pixel_storage
|
377
377
|
|
378
|
-
def
|
378
|
+
def define_ext_enum_GL_ARB_compute_shader
|
379
379
|
const_set('GL_COMPUTE_SHADER', 0x91B9) unless defined?(GL_COMPUTE_SHADER)
|
380
380
|
const_set('GL_MAX_COMPUTE_UNIFORM_BLOCKS', 0x91BB) unless defined?(GL_MAX_COMPUTE_UNIFORM_BLOCKS)
|
381
381
|
const_set('GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS', 0x91BC) unless defined?(GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS)
|
@@ -394,29 +394,29 @@ module OpenGL
|
|
394
394
|
const_set('GL_DISPATCH_INDIRECT_BUFFER', 0x90EE) unless defined?(GL_DISPATCH_INDIRECT_BUFFER)
|
395
395
|
const_set('GL_DISPATCH_INDIRECT_BUFFER_BINDING', 0x90EF) unless defined?(GL_DISPATCH_INDIRECT_BUFFER_BINDING)
|
396
396
|
const_set('GL_COMPUTE_SHADER_BIT', 0x00000020) unless defined?(GL_COMPUTE_SHADER_BIT)
|
397
|
-
end #
|
397
|
+
end # define_ext_enum_GL_ARB_compute_shader
|
398
398
|
|
399
|
-
def
|
399
|
+
def define_ext_enum_GL_ARB_compute_variable_group_size
|
400
400
|
const_set('GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB', 0x9344) unless defined?(GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB)
|
401
|
-
const_set('GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB', ) unless defined?(GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB)
|
401
|
+
const_set('GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB', 0x90EB) unless defined?(GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB)
|
402
402
|
const_set('GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB', 0x9345) unless defined?(GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB)
|
403
|
-
const_set('GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB', ) unless defined?(GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB)
|
404
|
-
end #
|
403
|
+
const_set('GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB', 0x91BF) unless defined?(GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB)
|
404
|
+
end # define_ext_enum_GL_ARB_compute_variable_group_size
|
405
405
|
|
406
|
-
def
|
407
|
-
end #
|
406
|
+
def define_ext_enum_GL_ARB_conservative_depth
|
407
|
+
end # define_ext_enum_GL_ARB_conservative_depth
|
408
408
|
|
409
|
-
def
|
410
|
-
const_set('GL_COPY_READ_BUFFER_BINDING', ) unless defined?(GL_COPY_READ_BUFFER_BINDING)
|
409
|
+
def define_ext_enum_GL_ARB_copy_buffer
|
410
|
+
const_set('GL_COPY_READ_BUFFER_BINDING', 0x8F36) unless defined?(GL_COPY_READ_BUFFER_BINDING)
|
411
411
|
const_set('GL_COPY_READ_BUFFER', 0x8F36) unless defined?(GL_COPY_READ_BUFFER)
|
412
|
-
const_set('GL_COPY_WRITE_BUFFER_BINDING', ) unless defined?(GL_COPY_WRITE_BUFFER_BINDING)
|
412
|
+
const_set('GL_COPY_WRITE_BUFFER_BINDING', 0x8F37) unless defined?(GL_COPY_WRITE_BUFFER_BINDING)
|
413
413
|
const_set('GL_COPY_WRITE_BUFFER', 0x8F37) unless defined?(GL_COPY_WRITE_BUFFER)
|
414
|
-
end #
|
414
|
+
end # define_ext_enum_GL_ARB_copy_buffer
|
415
415
|
|
416
|
-
def
|
417
|
-
end #
|
416
|
+
def define_ext_enum_GL_ARB_copy_image
|
417
|
+
end # define_ext_enum_GL_ARB_copy_image
|
418
418
|
|
419
|
-
def
|
419
|
+
def define_ext_enum_GL_ARB_debug_output
|
420
420
|
const_set('GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB', 0x8242) unless defined?(GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB)
|
421
421
|
const_set('GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB', 0x8243) unless defined?(GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB)
|
422
422
|
const_set('GL_DEBUG_CALLBACK_FUNCTION_ARB', 0x8244) unless defined?(GL_DEBUG_CALLBACK_FUNCTION_ARB)
|
@@ -439,27 +439,27 @@ module OpenGL
|
|
439
439
|
const_set('GL_DEBUG_SEVERITY_HIGH_ARB', 0x9146) unless defined?(GL_DEBUG_SEVERITY_HIGH_ARB)
|
440
440
|
const_set('GL_DEBUG_SEVERITY_MEDIUM_ARB', 0x9147) unless defined?(GL_DEBUG_SEVERITY_MEDIUM_ARB)
|
441
441
|
const_set('GL_DEBUG_SEVERITY_LOW_ARB', 0x9148) unless defined?(GL_DEBUG_SEVERITY_LOW_ARB)
|
442
|
-
end #
|
442
|
+
end # define_ext_enum_GL_ARB_debug_output
|
443
443
|
|
444
|
-
def
|
444
|
+
def define_ext_enum_GL_ARB_depth_buffer_float
|
445
445
|
const_set('GL_DEPTH_COMPONENT32F', 0x8CAC) unless defined?(GL_DEPTH_COMPONENT32F)
|
446
446
|
const_set('GL_DEPTH32F_STENCIL8', 0x8CAD) unless defined?(GL_DEPTH32F_STENCIL8)
|
447
447
|
const_set('GL_FLOAT_32_UNSIGNED_INT_24_8_REV', 0x8DAD) unless defined?(GL_FLOAT_32_UNSIGNED_INT_24_8_REV)
|
448
|
-
end #
|
448
|
+
end # define_ext_enum_GL_ARB_depth_buffer_float
|
449
449
|
|
450
|
-
def
|
450
|
+
def define_ext_enum_GL_ARB_depth_clamp
|
451
451
|
const_set('GL_DEPTH_CLAMP', 0x864F) unless defined?(GL_DEPTH_CLAMP)
|
452
|
-
end #
|
452
|
+
end # define_ext_enum_GL_ARB_depth_clamp
|
453
453
|
|
454
|
-
def
|
454
|
+
def define_ext_enum_GL_ARB_depth_texture
|
455
455
|
const_set('GL_DEPTH_COMPONENT16_ARB', 0x81A5) unless defined?(GL_DEPTH_COMPONENT16_ARB)
|
456
456
|
const_set('GL_DEPTH_COMPONENT24_ARB', 0x81A6) unless defined?(GL_DEPTH_COMPONENT24_ARB)
|
457
457
|
const_set('GL_DEPTH_COMPONENT32_ARB', 0x81A7) unless defined?(GL_DEPTH_COMPONENT32_ARB)
|
458
458
|
const_set('GL_TEXTURE_DEPTH_SIZE_ARB', 0x884A) unless defined?(GL_TEXTURE_DEPTH_SIZE_ARB)
|
459
459
|
const_set('GL_DEPTH_TEXTURE_MODE_ARB', 0x884B) unless defined?(GL_DEPTH_TEXTURE_MODE_ARB)
|
460
|
-
end #
|
460
|
+
end # define_ext_enum_GL_ARB_depth_texture
|
461
461
|
|
462
|
-
def
|
462
|
+
def define_ext_enum_GL_ARB_draw_buffers
|
463
463
|
const_set('GL_MAX_DRAW_BUFFERS_ARB', 0x8824) unless defined?(GL_MAX_DRAW_BUFFERS_ARB)
|
464
464
|
const_set('GL_DRAW_BUFFER0_ARB', 0x8825) unless defined?(GL_DRAW_BUFFER0_ARB)
|
465
465
|
const_set('GL_DRAW_BUFFER1_ARB', 0x8826) unless defined?(GL_DRAW_BUFFER1_ARB)
|
@@ -477,43 +477,43 @@ module OpenGL
|
|
477
477
|
const_set('GL_DRAW_BUFFER13_ARB', 0x8832) unless defined?(GL_DRAW_BUFFER13_ARB)
|
478
478
|
const_set('GL_DRAW_BUFFER14_ARB', 0x8833) unless defined?(GL_DRAW_BUFFER14_ARB)
|
479
479
|
const_set('GL_DRAW_BUFFER15_ARB', 0x8834) unless defined?(GL_DRAW_BUFFER15_ARB)
|
480
|
-
end #
|
480
|
+
end # define_ext_enum_GL_ARB_draw_buffers
|
481
481
|
|
482
|
-
def
|
483
|
-
end #
|
482
|
+
def define_ext_enum_GL_ARB_draw_buffers_blend
|
483
|
+
end # define_ext_enum_GL_ARB_draw_buffers_blend
|
484
484
|
|
485
|
-
def
|
486
|
-
end #
|
485
|
+
def define_ext_enum_GL_ARB_draw_elements_base_vertex
|
486
|
+
end # define_ext_enum_GL_ARB_draw_elements_base_vertex
|
487
487
|
|
488
|
-
def
|
488
|
+
def define_ext_enum_GL_ARB_draw_indirect
|
489
489
|
const_set('GL_DRAW_INDIRECT_BUFFER', 0x8F3F) unless defined?(GL_DRAW_INDIRECT_BUFFER)
|
490
490
|
const_set('GL_DRAW_INDIRECT_BUFFER_BINDING', 0x8F43) unless defined?(GL_DRAW_INDIRECT_BUFFER_BINDING)
|
491
|
-
end #
|
491
|
+
end # define_ext_enum_GL_ARB_draw_indirect
|
492
492
|
|
493
|
-
def
|
494
|
-
end #
|
493
|
+
def define_ext_enum_GL_ARB_draw_instanced
|
494
|
+
end # define_ext_enum_GL_ARB_draw_instanced
|
495
495
|
|
496
|
-
def
|
496
|
+
def define_ext_enum_GL_ARB_enhanced_layouts
|
497
497
|
const_set('GL_LOCATION_COMPONENT', 0x934A) unless defined?(GL_LOCATION_COMPONENT)
|
498
498
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER', 0x8C8E) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER)
|
499
499
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_INDEX', 0x934B) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_INDEX)
|
500
500
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE', 0x934C) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE)
|
501
|
-
end #
|
501
|
+
end # define_ext_enum_GL_ARB_enhanced_layouts
|
502
502
|
|
503
|
-
def
|
504
|
-
end #
|
503
|
+
def define_ext_enum_GL_ARB_explicit_attrib_location
|
504
|
+
end # define_ext_enum_GL_ARB_explicit_attrib_location
|
505
505
|
|
506
|
-
def
|
506
|
+
def define_ext_enum_GL_ARB_explicit_uniform_location
|
507
507
|
const_set('GL_MAX_UNIFORM_LOCATIONS', 0x826E) unless defined?(GL_MAX_UNIFORM_LOCATIONS)
|
508
|
-
end #
|
508
|
+
end # define_ext_enum_GL_ARB_explicit_uniform_location
|
509
509
|
|
510
|
-
def
|
511
|
-
end #
|
510
|
+
def define_ext_enum_GL_ARB_fragment_coord_conventions
|
511
|
+
end # define_ext_enum_GL_ARB_fragment_coord_conventions
|
512
512
|
|
513
|
-
def
|
514
|
-
end #
|
513
|
+
def define_ext_enum_GL_ARB_fragment_layer_viewport
|
514
|
+
end # define_ext_enum_GL_ARB_fragment_layer_viewport
|
515
515
|
|
516
|
-
def
|
516
|
+
def define_ext_enum_GL_ARB_fragment_program
|
517
517
|
const_set('GL_FRAGMENT_PROGRAM_ARB', 0x8804) unless defined?(GL_FRAGMENT_PROGRAM_ARB)
|
518
518
|
const_set('GL_PROGRAM_FORMAT_ASCII_ARB', 0x8875) unless defined?(GL_PROGRAM_FORMAT_ASCII_ARB)
|
519
519
|
const_set('GL_PROGRAM_LENGTH_ARB', 0x8627) unless defined?(GL_PROGRAM_LENGTH_ARB)
|
@@ -592,18 +592,18 @@ module OpenGL
|
|
592
592
|
const_set('GL_MATRIX29_ARB', 0x88DD) unless defined?(GL_MATRIX29_ARB)
|
593
593
|
const_set('GL_MATRIX30_ARB', 0x88DE) unless defined?(GL_MATRIX30_ARB)
|
594
594
|
const_set('GL_MATRIX31_ARB', 0x88DF) unless defined?(GL_MATRIX31_ARB)
|
595
|
-
end #
|
595
|
+
end # define_ext_enum_GL_ARB_fragment_program
|
596
596
|
|
597
|
-
def
|
598
|
-
end #
|
597
|
+
def define_ext_enum_GL_ARB_fragment_program_shadow
|
598
|
+
end # define_ext_enum_GL_ARB_fragment_program_shadow
|
599
599
|
|
600
|
-
def
|
600
|
+
def define_ext_enum_GL_ARB_fragment_shader
|
601
601
|
const_set('GL_FRAGMENT_SHADER_ARB', 0x8B30) unless defined?(GL_FRAGMENT_SHADER_ARB)
|
602
602
|
const_set('GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB', 0x8B49) unless defined?(GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB)
|
603
603
|
const_set('GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB', 0x8B8B) unless defined?(GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB)
|
604
|
-
end #
|
604
|
+
end # define_ext_enum_GL_ARB_fragment_shader
|
605
605
|
|
606
|
-
def
|
606
|
+
def define_ext_enum_GL_ARB_framebuffer_no_attachments
|
607
607
|
const_set('GL_FRAMEBUFFER_DEFAULT_WIDTH', 0x9310) unless defined?(GL_FRAMEBUFFER_DEFAULT_WIDTH)
|
608
608
|
const_set('GL_FRAMEBUFFER_DEFAULT_HEIGHT', 0x9311) unless defined?(GL_FRAMEBUFFER_DEFAULT_HEIGHT)
|
609
609
|
const_set('GL_FRAMEBUFFER_DEFAULT_LAYERS', 0x9312) unless defined?(GL_FRAMEBUFFER_DEFAULT_LAYERS)
|
@@ -613,9 +613,9 @@ module OpenGL
|
|
613
613
|
const_set('GL_MAX_FRAMEBUFFER_HEIGHT', 0x9316) unless defined?(GL_MAX_FRAMEBUFFER_HEIGHT)
|
614
614
|
const_set('GL_MAX_FRAMEBUFFER_LAYERS', 0x9317) unless defined?(GL_MAX_FRAMEBUFFER_LAYERS)
|
615
615
|
const_set('GL_MAX_FRAMEBUFFER_SAMPLES', 0x9318) unless defined?(GL_MAX_FRAMEBUFFER_SAMPLES)
|
616
|
-
end #
|
616
|
+
end # define_ext_enum_GL_ARB_framebuffer_no_attachments
|
617
617
|
|
618
|
-
def
|
618
|
+
def define_ext_enum_GL_ARB_framebuffer_object
|
619
619
|
const_set('GL_INVALID_FRAMEBUFFER_OPERATION', 0x0506) unless defined?(GL_INVALID_FRAMEBUFFER_OPERATION)
|
620
620
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING', 0x8210) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING)
|
621
621
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE', 0x8211) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE)
|
@@ -696,13 +696,13 @@ module OpenGL
|
|
696
696
|
const_set('GL_INDEX', 0x8222) unless defined?(GL_INDEX)
|
697
697
|
const_set('GL_TEXTURE_LUMINANCE_TYPE', 0x8C14) unless defined?(GL_TEXTURE_LUMINANCE_TYPE)
|
698
698
|
const_set('GL_TEXTURE_INTENSITY_TYPE', 0x8C15) unless defined?(GL_TEXTURE_INTENSITY_TYPE)
|
699
|
-
end #
|
699
|
+
end # define_ext_enum_GL_ARB_framebuffer_object
|
700
700
|
|
701
|
-
def
|
701
|
+
def define_ext_enum_GL_ARB_framebuffer_sRGB
|
702
702
|
const_set('GL_FRAMEBUFFER_SRGB', 0x8DB9) unless defined?(GL_FRAMEBUFFER_SRGB)
|
703
|
-
end #
|
703
|
+
end # define_ext_enum_GL_ARB_framebuffer_sRGB
|
704
704
|
|
705
|
-
def
|
705
|
+
def define_ext_enum_GL_ARB_geometry_shader4
|
706
706
|
const_set('GL_LINES_ADJACENCY_ARB', 0x000A) unless defined?(GL_LINES_ADJACENCY_ARB)
|
707
707
|
const_set('GL_LINE_STRIP_ADJACENCY_ARB', 0x000B) unless defined?(GL_LINE_STRIP_ADJACENCY_ARB)
|
708
708
|
const_set('GL_TRIANGLES_ADJACENCY_ARB', 0x000C) unless defined?(GL_TRIANGLES_ADJACENCY_ARB)
|
@@ -721,27 +721,27 @@ module OpenGL
|
|
721
721
|
const_set('GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB', 0x8DDF) unless defined?(GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB)
|
722
722
|
const_set('GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB', 0x8DE0) unless defined?(GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB)
|
723
723
|
const_set('GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB', 0x8DE1) unless defined?(GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB)
|
724
|
-
const_set('GL_MAX_VARYING_COMPONENTS', ) unless defined?(GL_MAX_VARYING_COMPONENTS)
|
724
|
+
const_set('GL_MAX_VARYING_COMPONENTS', 0x8B4B) unless defined?(GL_MAX_VARYING_COMPONENTS)
|
725
725
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER', 0x8CD4) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER)
|
726
|
-
end #
|
726
|
+
end # define_ext_enum_GL_ARB_geometry_shader4
|
727
727
|
|
728
|
-
def
|
728
|
+
def define_ext_enum_GL_ARB_get_program_binary
|
729
729
|
const_set('GL_PROGRAM_BINARY_RETRIEVABLE_HINT', 0x8257) unless defined?(GL_PROGRAM_BINARY_RETRIEVABLE_HINT)
|
730
730
|
const_set('GL_PROGRAM_BINARY_LENGTH', 0x8741) unless defined?(GL_PROGRAM_BINARY_LENGTH)
|
731
731
|
const_set('GL_NUM_PROGRAM_BINARY_FORMATS', 0x87FE) unless defined?(GL_NUM_PROGRAM_BINARY_FORMATS)
|
732
732
|
const_set('GL_PROGRAM_BINARY_FORMATS', 0x87FF) unless defined?(GL_PROGRAM_BINARY_FORMATS)
|
733
|
-
end #
|
733
|
+
end # define_ext_enum_GL_ARB_get_program_binary
|
734
734
|
|
735
|
-
def
|
735
|
+
def define_ext_enum_GL_ARB_gpu_shader5
|
736
736
|
const_set('GL_GEOMETRY_SHADER_INVOCATIONS', 0x887F) unless defined?(GL_GEOMETRY_SHADER_INVOCATIONS)
|
737
737
|
const_set('GL_MAX_GEOMETRY_SHADER_INVOCATIONS', 0x8E5A) unless defined?(GL_MAX_GEOMETRY_SHADER_INVOCATIONS)
|
738
738
|
const_set('GL_MIN_FRAGMENT_INTERPOLATION_OFFSET', 0x8E5B) unless defined?(GL_MIN_FRAGMENT_INTERPOLATION_OFFSET)
|
739
739
|
const_set('GL_MAX_FRAGMENT_INTERPOLATION_OFFSET', 0x8E5C) unless defined?(GL_MAX_FRAGMENT_INTERPOLATION_OFFSET)
|
740
740
|
const_set('GL_FRAGMENT_INTERPOLATION_OFFSET_BITS', 0x8E5D) unless defined?(GL_FRAGMENT_INTERPOLATION_OFFSET_BITS)
|
741
741
|
const_set('GL_MAX_VERTEX_STREAMS', 0x8E71) unless defined?(GL_MAX_VERTEX_STREAMS)
|
742
|
-
end #
|
742
|
+
end # define_ext_enum_GL_ARB_gpu_shader5
|
743
743
|
|
744
|
-
def
|
744
|
+
def define_ext_enum_GL_ARB_gpu_shader_fp64
|
745
745
|
const_set('GL_DOUBLE', 0x140A) unless defined?(GL_DOUBLE)
|
746
746
|
const_set('GL_DOUBLE_VEC2', 0x8FFC) unless defined?(GL_DOUBLE_VEC2)
|
747
747
|
const_set('GL_DOUBLE_VEC3', 0x8FFD) unless defined?(GL_DOUBLE_VEC3)
|
@@ -755,17 +755,17 @@ module OpenGL
|
|
755
755
|
const_set('GL_DOUBLE_MAT3x4', 0x8F4C) unless defined?(GL_DOUBLE_MAT3x4)
|
756
756
|
const_set('GL_DOUBLE_MAT4x2', 0x8F4D) unless defined?(GL_DOUBLE_MAT4x2)
|
757
757
|
const_set('GL_DOUBLE_MAT4x3', 0x8F4E) unless defined?(GL_DOUBLE_MAT4x3)
|
758
|
-
end #
|
758
|
+
end # define_ext_enum_GL_ARB_gpu_shader_fp64
|
759
759
|
|
760
|
-
def
|
760
|
+
def define_ext_enum_GL_ARB_half_float_pixel
|
761
761
|
const_set('GL_HALF_FLOAT_ARB', 0x140B) unless defined?(GL_HALF_FLOAT_ARB)
|
762
|
-
end #
|
762
|
+
end # define_ext_enum_GL_ARB_half_float_pixel
|
763
763
|
|
764
|
-
def
|
764
|
+
def define_ext_enum_GL_ARB_half_float_vertex
|
765
765
|
const_set('GL_HALF_FLOAT', 0x140B) unless defined?(GL_HALF_FLOAT)
|
766
|
-
end #
|
766
|
+
end # define_ext_enum_GL_ARB_half_float_vertex
|
767
767
|
|
768
|
-
def
|
768
|
+
def define_ext_enum_GL_ARB_imaging
|
769
769
|
const_set('GL_CONSTANT_COLOR', 0x8001) unless defined?(GL_CONSTANT_COLOR)
|
770
770
|
const_set('GL_ONE_MINUS_CONSTANT_COLOR', 0x8002) unless defined?(GL_ONE_MINUS_CONSTANT_COLOR)
|
771
771
|
const_set('GL_CONSTANT_ALPHA', 0x8003) unless defined?(GL_CONSTANT_ALPHA)
|
@@ -841,22 +841,22 @@ module OpenGL
|
|
841
841
|
const_set('GL_CONSTANT_BORDER', 0x8151) unless defined?(GL_CONSTANT_BORDER)
|
842
842
|
const_set('GL_REPLICATE_BORDER', 0x8153) unless defined?(GL_REPLICATE_BORDER)
|
843
843
|
const_set('GL_CONVOLUTION_BORDER_COLOR', 0x8154) unless defined?(GL_CONVOLUTION_BORDER_COLOR)
|
844
|
-
end #
|
844
|
+
end # define_ext_enum_GL_ARB_imaging
|
845
845
|
|
846
|
-
def
|
846
|
+
def define_ext_enum_GL_ARB_indirect_parameters
|
847
847
|
const_set('GL_PARAMETER_BUFFER_ARB', 0x80EE) unless defined?(GL_PARAMETER_BUFFER_ARB)
|
848
848
|
const_set('GL_PARAMETER_BUFFER_BINDING_ARB', 0x80EF) unless defined?(GL_PARAMETER_BUFFER_BINDING_ARB)
|
849
|
-
end #
|
849
|
+
end # define_ext_enum_GL_ARB_indirect_parameters
|
850
850
|
|
851
|
-
def
|
851
|
+
def define_ext_enum_GL_ARB_instanced_arrays
|
852
852
|
const_set('GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB', 0x88FE) unless defined?(GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB)
|
853
|
-
end #
|
853
|
+
end # define_ext_enum_GL_ARB_instanced_arrays
|
854
854
|
|
855
|
-
def
|
855
|
+
def define_ext_enum_GL_ARB_internalformat_query
|
856
856
|
const_set('GL_NUM_SAMPLE_COUNTS', 0x9380) unless defined?(GL_NUM_SAMPLE_COUNTS)
|
857
|
-
end #
|
857
|
+
end # define_ext_enum_GL_ARB_internalformat_query
|
858
858
|
|
859
|
-
def
|
859
|
+
def define_ext_enum_GL_ARB_internalformat_query2
|
860
860
|
const_set('GL_IMAGE_FORMAT_COMPATIBILITY_TYPE', 0x90C7) unless defined?(GL_IMAGE_FORMAT_COMPATIBILITY_TYPE)
|
861
861
|
const_set('GL_NUM_SAMPLE_COUNTS', 0x9380) unless defined?(GL_NUM_SAMPLE_COUNTS)
|
862
862
|
const_set('GL_RENDERBUFFER', 0x8D41) unless defined?(GL_RENDERBUFFER)
|
@@ -972,25 +972,25 @@ module OpenGL
|
|
972
972
|
const_set('GL_VIEW_CLASS_RGTC2_RG', 0x82D1) unless defined?(GL_VIEW_CLASS_RGTC2_RG)
|
973
973
|
const_set('GL_VIEW_CLASS_BPTC_UNORM', 0x82D2) unless defined?(GL_VIEW_CLASS_BPTC_UNORM)
|
974
974
|
const_set('GL_VIEW_CLASS_BPTC_FLOAT', 0x82D3) unless defined?(GL_VIEW_CLASS_BPTC_FLOAT)
|
975
|
-
end #
|
975
|
+
end # define_ext_enum_GL_ARB_internalformat_query2
|
976
976
|
|
977
|
-
def
|
978
|
-
end #
|
977
|
+
def define_ext_enum_GL_ARB_invalidate_subdata
|
978
|
+
end # define_ext_enum_GL_ARB_invalidate_subdata
|
979
979
|
|
980
|
-
def
|
980
|
+
def define_ext_enum_GL_ARB_map_buffer_alignment
|
981
981
|
const_set('GL_MIN_MAP_BUFFER_ALIGNMENT', 0x90BC) unless defined?(GL_MIN_MAP_BUFFER_ALIGNMENT)
|
982
|
-
end #
|
982
|
+
end # define_ext_enum_GL_ARB_map_buffer_alignment
|
983
983
|
|
984
|
-
def
|
984
|
+
def define_ext_enum_GL_ARB_map_buffer_range
|
985
985
|
const_set('GL_MAP_READ_BIT', 0x0001) unless defined?(GL_MAP_READ_BIT)
|
986
986
|
const_set('GL_MAP_WRITE_BIT', 0x0002) unless defined?(GL_MAP_WRITE_BIT)
|
987
987
|
const_set('GL_MAP_INVALIDATE_RANGE_BIT', 0x0004) unless defined?(GL_MAP_INVALIDATE_RANGE_BIT)
|
988
988
|
const_set('GL_MAP_INVALIDATE_BUFFER_BIT', 0x0008) unless defined?(GL_MAP_INVALIDATE_BUFFER_BIT)
|
989
989
|
const_set('GL_MAP_FLUSH_EXPLICIT_BIT', 0x0010) unless defined?(GL_MAP_FLUSH_EXPLICIT_BIT)
|
990
990
|
const_set('GL_MAP_UNSYNCHRONIZED_BIT', 0x0020) unless defined?(GL_MAP_UNSYNCHRONIZED_BIT)
|
991
|
-
end #
|
991
|
+
end # define_ext_enum_GL_ARB_map_buffer_range
|
992
992
|
|
993
|
-
def
|
993
|
+
def define_ext_enum_GL_ARB_matrix_palette
|
994
994
|
const_set('GL_MATRIX_PALETTE_ARB', 0x8840) unless defined?(GL_MATRIX_PALETTE_ARB)
|
995
995
|
const_set('GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB', 0x8841) unless defined?(GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB)
|
996
996
|
const_set('GL_MAX_PALETTE_MATRICES_ARB', 0x8842) unless defined?(GL_MAX_PALETTE_MATRICES_ARB)
|
@@ -1001,15 +1001,15 @@ module OpenGL
|
|
1001
1001
|
const_set('GL_MATRIX_INDEX_ARRAY_TYPE_ARB', 0x8847) unless defined?(GL_MATRIX_INDEX_ARRAY_TYPE_ARB)
|
1002
1002
|
const_set('GL_MATRIX_INDEX_ARRAY_STRIDE_ARB', 0x8848) unless defined?(GL_MATRIX_INDEX_ARRAY_STRIDE_ARB)
|
1003
1003
|
const_set('GL_MATRIX_INDEX_ARRAY_POINTER_ARB', 0x8849) unless defined?(GL_MATRIX_INDEX_ARRAY_POINTER_ARB)
|
1004
|
-
end #
|
1004
|
+
end # define_ext_enum_GL_ARB_matrix_palette
|
1005
1005
|
|
1006
|
-
def
|
1007
|
-
end #
|
1006
|
+
def define_ext_enum_GL_ARB_multi_bind
|
1007
|
+
end # define_ext_enum_GL_ARB_multi_bind
|
1008
1008
|
|
1009
|
-
def
|
1010
|
-
end #
|
1009
|
+
def define_ext_enum_GL_ARB_multi_draw_indirect
|
1010
|
+
end # define_ext_enum_GL_ARB_multi_draw_indirect
|
1011
1011
|
|
1012
|
-
def
|
1012
|
+
def define_ext_enum_GL_ARB_multisample
|
1013
1013
|
const_set('GL_MULTISAMPLE_ARB', 0x809D) unless defined?(GL_MULTISAMPLE_ARB)
|
1014
1014
|
const_set('GL_SAMPLE_ALPHA_TO_COVERAGE_ARB', 0x809E) unless defined?(GL_SAMPLE_ALPHA_TO_COVERAGE_ARB)
|
1015
1015
|
const_set('GL_SAMPLE_ALPHA_TO_ONE_ARB', 0x809F) unless defined?(GL_SAMPLE_ALPHA_TO_ONE_ARB)
|
@@ -1019,9 +1019,9 @@ module OpenGL
|
|
1019
1019
|
const_set('GL_SAMPLE_COVERAGE_VALUE_ARB', 0x80AA) unless defined?(GL_SAMPLE_COVERAGE_VALUE_ARB)
|
1020
1020
|
const_set('GL_SAMPLE_COVERAGE_INVERT_ARB', 0x80AB) unless defined?(GL_SAMPLE_COVERAGE_INVERT_ARB)
|
1021
1021
|
const_set('GL_MULTISAMPLE_BIT_ARB', 0x20000000) unless defined?(GL_MULTISAMPLE_BIT_ARB)
|
1022
|
-
end #
|
1022
|
+
end # define_ext_enum_GL_ARB_multisample
|
1023
1023
|
|
1024
|
-
def
|
1024
|
+
def define_ext_enum_GL_ARB_multitexture
|
1025
1025
|
const_set('GL_TEXTURE0_ARB', 0x84C0) unless defined?(GL_TEXTURE0_ARB)
|
1026
1026
|
const_set('GL_TEXTURE1_ARB', 0x84C1) unless defined?(GL_TEXTURE1_ARB)
|
1027
1027
|
const_set('GL_TEXTURE2_ARB', 0x84C2) unless defined?(GL_TEXTURE2_ARB)
|
@@ -1057,40 +1057,40 @@ module OpenGL
|
|
1057
1057
|
const_set('GL_ACTIVE_TEXTURE_ARB', 0x84E0) unless defined?(GL_ACTIVE_TEXTURE_ARB)
|
1058
1058
|
const_set('GL_CLIENT_ACTIVE_TEXTURE_ARB', 0x84E1) unless defined?(GL_CLIENT_ACTIVE_TEXTURE_ARB)
|
1059
1059
|
const_set('GL_MAX_TEXTURE_UNITS_ARB', 0x84E2) unless defined?(GL_MAX_TEXTURE_UNITS_ARB)
|
1060
|
-
end #
|
1060
|
+
end # define_ext_enum_GL_ARB_multitexture
|
1061
1061
|
|
1062
|
-
def
|
1062
|
+
def define_ext_enum_GL_ARB_occlusion_query
|
1063
1063
|
const_set('GL_QUERY_COUNTER_BITS_ARB', 0x8864) unless defined?(GL_QUERY_COUNTER_BITS_ARB)
|
1064
1064
|
const_set('GL_CURRENT_QUERY_ARB', 0x8865) unless defined?(GL_CURRENT_QUERY_ARB)
|
1065
1065
|
const_set('GL_QUERY_RESULT_ARB', 0x8866) unless defined?(GL_QUERY_RESULT_ARB)
|
1066
1066
|
const_set('GL_QUERY_RESULT_AVAILABLE_ARB', 0x8867) unless defined?(GL_QUERY_RESULT_AVAILABLE_ARB)
|
1067
1067
|
const_set('GL_SAMPLES_PASSED_ARB', 0x8914) unless defined?(GL_SAMPLES_PASSED_ARB)
|
1068
|
-
end #
|
1068
|
+
end # define_ext_enum_GL_ARB_occlusion_query
|
1069
1069
|
|
1070
|
-
def
|
1070
|
+
def define_ext_enum_GL_ARB_occlusion_query2
|
1071
1071
|
const_set('GL_ANY_SAMPLES_PASSED', 0x8C2F) unless defined?(GL_ANY_SAMPLES_PASSED)
|
1072
|
-
end #
|
1072
|
+
end # define_ext_enum_GL_ARB_occlusion_query2
|
1073
1073
|
|
1074
|
-
def
|
1074
|
+
def define_ext_enum_GL_ARB_pixel_buffer_object
|
1075
1075
|
const_set('GL_PIXEL_PACK_BUFFER_ARB', 0x88EB) unless defined?(GL_PIXEL_PACK_BUFFER_ARB)
|
1076
1076
|
const_set('GL_PIXEL_UNPACK_BUFFER_ARB', 0x88EC) unless defined?(GL_PIXEL_UNPACK_BUFFER_ARB)
|
1077
1077
|
const_set('GL_PIXEL_PACK_BUFFER_BINDING_ARB', 0x88ED) unless defined?(GL_PIXEL_PACK_BUFFER_BINDING_ARB)
|
1078
1078
|
const_set('GL_PIXEL_UNPACK_BUFFER_BINDING_ARB', 0x88EF) unless defined?(GL_PIXEL_UNPACK_BUFFER_BINDING_ARB)
|
1079
|
-
end #
|
1079
|
+
end # define_ext_enum_GL_ARB_pixel_buffer_object
|
1080
1080
|
|
1081
|
-
def
|
1081
|
+
def define_ext_enum_GL_ARB_point_parameters
|
1082
1082
|
const_set('GL_POINT_SIZE_MIN_ARB', 0x8126) unless defined?(GL_POINT_SIZE_MIN_ARB)
|
1083
1083
|
const_set('GL_POINT_SIZE_MAX_ARB', 0x8127) unless defined?(GL_POINT_SIZE_MAX_ARB)
|
1084
1084
|
const_set('GL_POINT_FADE_THRESHOLD_SIZE_ARB', 0x8128) unless defined?(GL_POINT_FADE_THRESHOLD_SIZE_ARB)
|
1085
1085
|
const_set('GL_POINT_DISTANCE_ATTENUATION_ARB', 0x8129) unless defined?(GL_POINT_DISTANCE_ATTENUATION_ARB)
|
1086
|
-
end #
|
1086
|
+
end # define_ext_enum_GL_ARB_point_parameters
|
1087
1087
|
|
1088
|
-
def
|
1088
|
+
def define_ext_enum_GL_ARB_point_sprite
|
1089
1089
|
const_set('GL_POINT_SPRITE_ARB', 0x8861) unless defined?(GL_POINT_SPRITE_ARB)
|
1090
1090
|
const_set('GL_COORD_REPLACE_ARB', 0x8862) unless defined?(GL_COORD_REPLACE_ARB)
|
1091
|
-
end #
|
1091
|
+
end # define_ext_enum_GL_ARB_point_sprite
|
1092
1092
|
|
1093
|
-
def
|
1093
|
+
def define_ext_enum_GL_ARB_program_interface_query
|
1094
1094
|
const_set('GL_UNIFORM', 0x92E1) unless defined?(GL_UNIFORM)
|
1095
1095
|
const_set('GL_UNIFORM_BLOCK', 0x92E2) unless defined?(GL_UNIFORM_BLOCK)
|
1096
1096
|
const_set('GL_PROGRAM_INPUT', 0x92E3) unless defined?(GL_PROGRAM_INPUT)
|
@@ -1141,26 +1141,26 @@ module OpenGL
|
|
1141
1141
|
const_set('GL_IS_PER_PATCH', 0x92E7) unless defined?(GL_IS_PER_PATCH)
|
1142
1142
|
const_set('GL_NUM_COMPATIBLE_SUBROUTINES', 0x8E4A) unless defined?(GL_NUM_COMPATIBLE_SUBROUTINES)
|
1143
1143
|
const_set('GL_COMPATIBLE_SUBROUTINES', 0x8E4B) unless defined?(GL_COMPATIBLE_SUBROUTINES)
|
1144
|
-
end #
|
1144
|
+
end # define_ext_enum_GL_ARB_program_interface_query
|
1145
1145
|
|
1146
|
-
def
|
1146
|
+
def define_ext_enum_GL_ARB_provoking_vertex
|
1147
1147
|
const_set('GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION', 0x8E4C) unless defined?(GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION)
|
1148
1148
|
const_set('GL_FIRST_VERTEX_CONVENTION', 0x8E4D) unless defined?(GL_FIRST_VERTEX_CONVENTION)
|
1149
1149
|
const_set('GL_LAST_VERTEX_CONVENTION', 0x8E4E) unless defined?(GL_LAST_VERTEX_CONVENTION)
|
1150
1150
|
const_set('GL_PROVOKING_VERTEX', 0x8E4F) unless defined?(GL_PROVOKING_VERTEX)
|
1151
|
-
end #
|
1151
|
+
end # define_ext_enum_GL_ARB_provoking_vertex
|
1152
1152
|
|
1153
|
-
def
|
1153
|
+
def define_ext_enum_GL_ARB_query_buffer_object
|
1154
1154
|
const_set('GL_QUERY_BUFFER', 0x9192) unless defined?(GL_QUERY_BUFFER)
|
1155
1155
|
const_set('GL_QUERY_BUFFER_BARRIER_BIT', 0x00008000) unless defined?(GL_QUERY_BUFFER_BARRIER_BIT)
|
1156
1156
|
const_set('GL_QUERY_BUFFER_BINDING', 0x9193) unless defined?(GL_QUERY_BUFFER_BINDING)
|
1157
1157
|
const_set('GL_QUERY_RESULT_NO_WAIT', 0x9194) unless defined?(GL_QUERY_RESULT_NO_WAIT)
|
1158
|
-
end #
|
1158
|
+
end # define_ext_enum_GL_ARB_query_buffer_object
|
1159
1159
|
|
1160
|
-
def
|
1161
|
-
end #
|
1160
|
+
def define_ext_enum_GL_ARB_robust_buffer_access_behavior
|
1161
|
+
end # define_ext_enum_GL_ARB_robust_buffer_access_behavior
|
1162
1162
|
|
1163
|
-
def
|
1163
|
+
def define_ext_enum_GL_ARB_robustness
|
1164
1164
|
const_set('GL_NO_ERROR', 0) unless defined?(GL_NO_ERROR)
|
1165
1165
|
const_set('GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB', 0x00000004) unless defined?(GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB)
|
1166
1166
|
const_set('GL_LOSE_CONTEXT_ON_RESET_ARB', 0x8252) unless defined?(GL_LOSE_CONTEXT_ON_RESET_ARB)
|
@@ -1169,29 +1169,29 @@ module OpenGL
|
|
1169
1169
|
const_set('GL_UNKNOWN_CONTEXT_RESET_ARB', 0x8255) unless defined?(GL_UNKNOWN_CONTEXT_RESET_ARB)
|
1170
1170
|
const_set('GL_RESET_NOTIFICATION_STRATEGY_ARB', 0x8256) unless defined?(GL_RESET_NOTIFICATION_STRATEGY_ARB)
|
1171
1171
|
const_set('GL_NO_RESET_NOTIFICATION_ARB', 0x8261) unless defined?(GL_NO_RESET_NOTIFICATION_ARB)
|
1172
|
-
end #
|
1172
|
+
end # define_ext_enum_GL_ARB_robustness
|
1173
1173
|
|
1174
|
-
def
|
1175
|
-
end #
|
1174
|
+
def define_ext_enum_GL_ARB_robustness_isolation
|
1175
|
+
end # define_ext_enum_GL_ARB_robustness_isolation
|
1176
1176
|
|
1177
|
-
def
|
1177
|
+
def define_ext_enum_GL_ARB_sample_shading
|
1178
1178
|
const_set('GL_SAMPLE_SHADING_ARB', 0x8C36) unless defined?(GL_SAMPLE_SHADING_ARB)
|
1179
1179
|
const_set('GL_MIN_SAMPLE_SHADING_VALUE_ARB', 0x8C37) unless defined?(GL_MIN_SAMPLE_SHADING_VALUE_ARB)
|
1180
|
-
end #
|
1180
|
+
end # define_ext_enum_GL_ARB_sample_shading
|
1181
1181
|
|
1182
|
-
def
|
1182
|
+
def define_ext_enum_GL_ARB_sampler_objects
|
1183
1183
|
const_set('GL_SAMPLER_BINDING', 0x8919) unless defined?(GL_SAMPLER_BINDING)
|
1184
|
-
end #
|
1184
|
+
end # define_ext_enum_GL_ARB_sampler_objects
|
1185
1185
|
|
1186
|
-
def
|
1186
|
+
def define_ext_enum_GL_ARB_seamless_cube_map
|
1187
1187
|
const_set('GL_TEXTURE_CUBE_MAP_SEAMLESS', 0x884F) unless defined?(GL_TEXTURE_CUBE_MAP_SEAMLESS)
|
1188
|
-
end #
|
1188
|
+
end # define_ext_enum_GL_ARB_seamless_cube_map
|
1189
1189
|
|
1190
|
-
def
|
1190
|
+
def define_ext_enum_GL_ARB_seamless_cubemap_per_texture
|
1191
1191
|
const_set('GL_TEXTURE_CUBE_MAP_SEAMLESS', 0x884F) unless defined?(GL_TEXTURE_CUBE_MAP_SEAMLESS)
|
1192
|
-
end #
|
1192
|
+
end # define_ext_enum_GL_ARB_seamless_cubemap_per_texture
|
1193
1193
|
|
1194
|
-
def
|
1194
|
+
def define_ext_enum_GL_ARB_separate_shader_objects
|
1195
1195
|
const_set('GL_VERTEX_SHADER_BIT', 0x00000001) unless defined?(GL_VERTEX_SHADER_BIT)
|
1196
1196
|
const_set('GL_FRAGMENT_SHADER_BIT', 0x00000002) unless defined?(GL_FRAGMENT_SHADER_BIT)
|
1197
1197
|
const_set('GL_GEOMETRY_SHADER_BIT', 0x00000004) unless defined?(GL_GEOMETRY_SHADER_BIT)
|
@@ -1201,9 +1201,9 @@ module OpenGL
|
|
1201
1201
|
const_set('GL_PROGRAM_SEPARABLE', 0x8258) unless defined?(GL_PROGRAM_SEPARABLE)
|
1202
1202
|
const_set('GL_ACTIVE_PROGRAM', 0x8259) unless defined?(GL_ACTIVE_PROGRAM)
|
1203
1203
|
const_set('GL_PROGRAM_PIPELINE_BINDING', 0x825A) unless defined?(GL_PROGRAM_PIPELINE_BINDING)
|
1204
|
-
end #
|
1204
|
+
end # define_ext_enum_GL_ARB_separate_shader_objects
|
1205
1205
|
|
1206
|
-
def
|
1206
|
+
def define_ext_enum_GL_ARB_shader_atomic_counters
|
1207
1207
|
const_set('GL_ATOMIC_COUNTER_BUFFER', 0x92C0) unless defined?(GL_ATOMIC_COUNTER_BUFFER)
|
1208
1208
|
const_set('GL_ATOMIC_COUNTER_BUFFER_BINDING', 0x92C1) unless defined?(GL_ATOMIC_COUNTER_BUFFER_BINDING)
|
1209
1209
|
const_set('GL_ATOMIC_COUNTER_BUFFER_START', 0x92C2) unless defined?(GL_ATOMIC_COUNTER_BUFFER_START)
|
@@ -1233,18 +1233,18 @@ module OpenGL
|
|
1233
1233
|
const_set('GL_ACTIVE_ATOMIC_COUNTER_BUFFERS', 0x92D9) unless defined?(GL_ACTIVE_ATOMIC_COUNTER_BUFFERS)
|
1234
1234
|
const_set('GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX', 0x92DA) unless defined?(GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX)
|
1235
1235
|
const_set('GL_UNSIGNED_INT_ATOMIC_COUNTER', 0x92DB) unless defined?(GL_UNSIGNED_INT_ATOMIC_COUNTER)
|
1236
|
-
end #
|
1236
|
+
end # define_ext_enum_GL_ARB_shader_atomic_counters
|
1237
1237
|
|
1238
|
-
def
|
1239
|
-
end #
|
1238
|
+
def define_ext_enum_GL_ARB_shader_bit_encoding
|
1239
|
+
end # define_ext_enum_GL_ARB_shader_bit_encoding
|
1240
1240
|
|
1241
|
-
def
|
1242
|
-
end #
|
1241
|
+
def define_ext_enum_GL_ARB_shader_draw_parameters
|
1242
|
+
end # define_ext_enum_GL_ARB_shader_draw_parameters
|
1243
1243
|
|
1244
|
-
def
|
1245
|
-
end #
|
1244
|
+
def define_ext_enum_GL_ARB_shader_group_vote
|
1245
|
+
end # define_ext_enum_GL_ARB_shader_group_vote
|
1246
1246
|
|
1247
|
-
def
|
1247
|
+
def define_ext_enum_GL_ARB_shader_image_load_store
|
1248
1248
|
const_set('GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT', 0x00000001) unless defined?(GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT)
|
1249
1249
|
const_set('GL_ELEMENT_ARRAY_BARRIER_BIT', 0x00000002) unless defined?(GL_ELEMENT_ARRAY_BARRIER_BIT)
|
1250
1250
|
const_set('GL_UNIFORM_BARRIER_BIT', 0x00000004) unless defined?(GL_UNIFORM_BARRIER_BIT)
|
@@ -1309,12 +1309,12 @@ module OpenGL
|
|
1309
1309
|
const_set('GL_MAX_GEOMETRY_IMAGE_UNIFORMS', 0x90CD) unless defined?(GL_MAX_GEOMETRY_IMAGE_UNIFORMS)
|
1310
1310
|
const_set('GL_MAX_FRAGMENT_IMAGE_UNIFORMS', 0x90CE) unless defined?(GL_MAX_FRAGMENT_IMAGE_UNIFORMS)
|
1311
1311
|
const_set('GL_MAX_COMBINED_IMAGE_UNIFORMS', 0x90CF) unless defined?(GL_MAX_COMBINED_IMAGE_UNIFORMS)
|
1312
|
-
end #
|
1312
|
+
end # define_ext_enum_GL_ARB_shader_image_load_store
|
1313
1313
|
|
1314
|
-
def
|
1315
|
-
end #
|
1314
|
+
def define_ext_enum_GL_ARB_shader_image_size
|
1315
|
+
end # define_ext_enum_GL_ARB_shader_image_size
|
1316
1316
|
|
1317
|
-
def
|
1317
|
+
def define_ext_enum_GL_ARB_shader_objects
|
1318
1318
|
const_set('GL_PROGRAM_OBJECT_ARB', 0x8B40) unless defined?(GL_PROGRAM_OBJECT_ARB)
|
1319
1319
|
const_set('GL_SHADER_OBJECT_ARB', 0x8B48) unless defined?(GL_SHADER_OBJECT_ARB)
|
1320
1320
|
const_set('GL_OBJECT_TYPE_ARB', 0x8B4E) unless defined?(GL_OBJECT_TYPE_ARB)
|
@@ -1349,15 +1349,15 @@ module OpenGL
|
|
1349
1349
|
const_set('GL_OBJECT_ACTIVE_UNIFORMS_ARB', 0x8B86) unless defined?(GL_OBJECT_ACTIVE_UNIFORMS_ARB)
|
1350
1350
|
const_set('GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB', 0x8B87) unless defined?(GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB)
|
1351
1351
|
const_set('GL_OBJECT_SHADER_SOURCE_LENGTH_ARB', 0x8B88) unless defined?(GL_OBJECT_SHADER_SOURCE_LENGTH_ARB)
|
1352
|
-
end #
|
1352
|
+
end # define_ext_enum_GL_ARB_shader_objects
|
1353
1353
|
|
1354
|
-
def
|
1355
|
-
end #
|
1354
|
+
def define_ext_enum_GL_ARB_shader_precision
|
1355
|
+
end # define_ext_enum_GL_ARB_shader_precision
|
1356
1356
|
|
1357
|
-
def
|
1358
|
-
end #
|
1357
|
+
def define_ext_enum_GL_ARB_shader_stencil_export
|
1358
|
+
end # define_ext_enum_GL_ARB_shader_stencil_export
|
1359
1359
|
|
1360
|
-
def
|
1360
|
+
def define_ext_enum_GL_ARB_shader_storage_buffer_object
|
1361
1361
|
const_set('GL_SHADER_STORAGE_BUFFER', 0x90D2) unless defined?(GL_SHADER_STORAGE_BUFFER)
|
1362
1362
|
const_set('GL_SHADER_STORAGE_BUFFER_BINDING', 0x90D3) unless defined?(GL_SHADER_STORAGE_BUFFER_BINDING)
|
1363
1363
|
const_set('GL_SHADER_STORAGE_BUFFER_START', 0x90D4) unless defined?(GL_SHADER_STORAGE_BUFFER_START)
|
@@ -1373,11 +1373,11 @@ module OpenGL
|
|
1373
1373
|
const_set('GL_MAX_SHADER_STORAGE_BLOCK_SIZE', 0x90DE) unless defined?(GL_MAX_SHADER_STORAGE_BLOCK_SIZE)
|
1374
1374
|
const_set('GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT', 0x90DF) unless defined?(GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT)
|
1375
1375
|
const_set('GL_SHADER_STORAGE_BARRIER_BIT', 0x00002000) unless defined?(GL_SHADER_STORAGE_BARRIER_BIT)
|
1376
|
-
const_set('GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES', ) unless defined?(GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES)
|
1376
|
+
const_set('GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES', 0x8F39) unless defined?(GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES)
|
1377
1377
|
const_set('GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS', 0x8F39) unless defined?(GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS)
|
1378
|
-
end #
|
1378
|
+
end # define_ext_enum_GL_ARB_shader_storage_buffer_object
|
1379
1379
|
|
1380
|
-
def
|
1380
|
+
def define_ext_enum_GL_ARB_shader_subroutine
|
1381
1381
|
const_set('GL_ACTIVE_SUBROUTINES', 0x8DE5) unless defined?(GL_ACTIVE_SUBROUTINES)
|
1382
1382
|
const_set('GL_ACTIVE_SUBROUTINE_UNIFORMS', 0x8DE6) unless defined?(GL_ACTIVE_SUBROUTINE_UNIFORMS)
|
1383
1383
|
const_set('GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS', 0x8E47) unless defined?(GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS)
|
@@ -1389,38 +1389,38 @@ module OpenGL
|
|
1389
1389
|
const_set('GL_COMPATIBLE_SUBROUTINES', 0x8E4B) unless defined?(GL_COMPATIBLE_SUBROUTINES)
|
1390
1390
|
const_set('GL_UNIFORM_SIZE', 0x8A38) unless defined?(GL_UNIFORM_SIZE)
|
1391
1391
|
const_set('GL_UNIFORM_NAME_LENGTH', 0x8A39) unless defined?(GL_UNIFORM_NAME_LENGTH)
|
1392
|
-
end #
|
1392
|
+
end # define_ext_enum_GL_ARB_shader_subroutine
|
1393
1393
|
|
1394
|
-
def
|
1395
|
-
end #
|
1394
|
+
def define_ext_enum_GL_ARB_shader_texture_lod
|
1395
|
+
end # define_ext_enum_GL_ARB_shader_texture_lod
|
1396
1396
|
|
1397
|
-
def
|
1397
|
+
def define_ext_enum_GL_ARB_shading_language_100
|
1398
1398
|
const_set('GL_SHADING_LANGUAGE_VERSION_ARB', 0x8B8C) unless defined?(GL_SHADING_LANGUAGE_VERSION_ARB)
|
1399
|
-
end #
|
1399
|
+
end # define_ext_enum_GL_ARB_shading_language_100
|
1400
1400
|
|
1401
|
-
def
|
1402
|
-
end #
|
1401
|
+
def define_ext_enum_GL_ARB_shading_language_420pack
|
1402
|
+
end # define_ext_enum_GL_ARB_shading_language_420pack
|
1403
1403
|
|
1404
|
-
def
|
1404
|
+
def define_ext_enum_GL_ARB_shading_language_include
|
1405
1405
|
const_set('GL_SHADER_INCLUDE_ARB', 0x8DAE) unless defined?(GL_SHADER_INCLUDE_ARB)
|
1406
1406
|
const_set('GL_NAMED_STRING_LENGTH_ARB', 0x8DE9) unless defined?(GL_NAMED_STRING_LENGTH_ARB)
|
1407
1407
|
const_set('GL_NAMED_STRING_TYPE_ARB', 0x8DEA) unless defined?(GL_NAMED_STRING_TYPE_ARB)
|
1408
|
-
end #
|
1408
|
+
end # define_ext_enum_GL_ARB_shading_language_include
|
1409
1409
|
|
1410
|
-
def
|
1411
|
-
end #
|
1410
|
+
def define_ext_enum_GL_ARB_shading_language_packing
|
1411
|
+
end # define_ext_enum_GL_ARB_shading_language_packing
|
1412
1412
|
|
1413
|
-
def
|
1413
|
+
def define_ext_enum_GL_ARB_shadow
|
1414
1414
|
const_set('GL_TEXTURE_COMPARE_MODE_ARB', 0x884C) unless defined?(GL_TEXTURE_COMPARE_MODE_ARB)
|
1415
1415
|
const_set('GL_TEXTURE_COMPARE_FUNC_ARB', 0x884D) unless defined?(GL_TEXTURE_COMPARE_FUNC_ARB)
|
1416
1416
|
const_set('GL_COMPARE_R_TO_TEXTURE_ARB', 0x884E) unless defined?(GL_COMPARE_R_TO_TEXTURE_ARB)
|
1417
|
-
end #
|
1417
|
+
end # define_ext_enum_GL_ARB_shadow
|
1418
1418
|
|
1419
|
-
def
|
1419
|
+
def define_ext_enum_GL_ARB_shadow_ambient
|
1420
1420
|
const_set('GL_TEXTURE_COMPARE_FAIL_VALUE_ARB', 0x80BF) unless defined?(GL_TEXTURE_COMPARE_FAIL_VALUE_ARB)
|
1421
|
-
end #
|
1421
|
+
end # define_ext_enum_GL_ARB_shadow_ambient
|
1422
1422
|
|
1423
|
-
def
|
1423
|
+
def define_ext_enum_GL_ARB_sparse_texture
|
1424
1424
|
const_set('GL_TEXTURE_SPARSE_ARB', 0x91A6) unless defined?(GL_TEXTURE_SPARSE_ARB)
|
1425
1425
|
const_set('GL_VIRTUAL_PAGE_SIZE_INDEX_ARB', 0x91A7) unless defined?(GL_VIRTUAL_PAGE_SIZE_INDEX_ARB)
|
1426
1426
|
const_set('GL_MIN_SPARSE_LEVEL_ARB', 0x919B) unless defined?(GL_MIN_SPARSE_LEVEL_ARB)
|
@@ -1432,13 +1432,13 @@ module OpenGL
|
|
1432
1432
|
const_set('GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB', 0x9199) unless defined?(GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB)
|
1433
1433
|
const_set('GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB', 0x919A) unless defined?(GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB)
|
1434
1434
|
const_set('GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB', 0x91A9) unless defined?(GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB)
|
1435
|
-
end #
|
1435
|
+
end # define_ext_enum_GL_ARB_sparse_texture
|
1436
1436
|
|
1437
|
-
def
|
1437
|
+
def define_ext_enum_GL_ARB_stencil_texturing
|
1438
1438
|
const_set('GL_DEPTH_STENCIL_TEXTURE_MODE', 0x90EA) unless defined?(GL_DEPTH_STENCIL_TEXTURE_MODE)
|
1439
|
-
end #
|
1439
|
+
end # define_ext_enum_GL_ARB_stencil_texturing
|
1440
1440
|
|
1441
|
-
def
|
1441
|
+
def define_ext_enum_GL_ARB_sync
|
1442
1442
|
const_set('GL_MAX_SERVER_WAIT_TIMEOUT', 0x9111) unless defined?(GL_MAX_SERVER_WAIT_TIMEOUT)
|
1443
1443
|
const_set('GL_OBJECT_TYPE', 0x9112) unless defined?(GL_OBJECT_TYPE)
|
1444
1444
|
const_set('GL_SYNC_CONDITION', 0x9113) unless defined?(GL_SYNC_CONDITION)
|
@@ -1454,9 +1454,9 @@ module OpenGL
|
|
1454
1454
|
const_set('GL_WAIT_FAILED', 0x911D) unless defined?(GL_WAIT_FAILED)
|
1455
1455
|
const_set('GL_SYNC_FLUSH_COMMANDS_BIT', 0x00000001) unless defined?(GL_SYNC_FLUSH_COMMANDS_BIT)
|
1456
1456
|
const_set('GL_TIMEOUT_IGNORED', 0xFFFFFFFFFFFFFFFF) unless defined?(GL_TIMEOUT_IGNORED)
|
1457
|
-
end #
|
1457
|
+
end # define_ext_enum_GL_ARB_sync
|
1458
1458
|
|
1459
|
-
def
|
1459
|
+
def define_ext_enum_GL_ARB_tessellation_shader
|
1460
1460
|
const_set('GL_PATCHES', 0x000E) unless defined?(GL_PATCHES)
|
1461
1461
|
const_set('GL_PATCH_VERTICES', 0x8E72) unless defined?(GL_PATCH_VERTICES)
|
1462
1462
|
const_set('GL_PATCH_DEFAULT_INNER_LEVEL', 0x8E73) unless defined?(GL_PATCH_DEFAULT_INNER_LEVEL)
|
@@ -1494,33 +1494,33 @@ module OpenGL
|
|
1494
1494
|
const_set('GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER', 0x84F1) unless defined?(GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER)
|
1495
1495
|
const_set('GL_TESS_EVALUATION_SHADER', 0x8E87) unless defined?(GL_TESS_EVALUATION_SHADER)
|
1496
1496
|
const_set('GL_TESS_CONTROL_SHADER', 0x8E88) unless defined?(GL_TESS_CONTROL_SHADER)
|
1497
|
-
end #
|
1497
|
+
end # define_ext_enum_GL_ARB_tessellation_shader
|
1498
1498
|
|
1499
|
-
def
|
1499
|
+
def define_ext_enum_GL_ARB_texture_border_clamp
|
1500
1500
|
const_set('GL_CLAMP_TO_BORDER_ARB', 0x812D) unless defined?(GL_CLAMP_TO_BORDER_ARB)
|
1501
|
-
end #
|
1501
|
+
end # define_ext_enum_GL_ARB_texture_border_clamp
|
1502
1502
|
|
1503
|
-
def
|
1503
|
+
def define_ext_enum_GL_ARB_texture_buffer_object
|
1504
1504
|
const_set('GL_TEXTURE_BUFFER_ARB', 0x8C2A) unless defined?(GL_TEXTURE_BUFFER_ARB)
|
1505
1505
|
const_set('GL_MAX_TEXTURE_BUFFER_SIZE_ARB', 0x8C2B) unless defined?(GL_MAX_TEXTURE_BUFFER_SIZE_ARB)
|
1506
1506
|
const_set('GL_TEXTURE_BINDING_BUFFER_ARB', 0x8C2C) unless defined?(GL_TEXTURE_BINDING_BUFFER_ARB)
|
1507
1507
|
const_set('GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB', 0x8C2D) unless defined?(GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB)
|
1508
1508
|
const_set('GL_TEXTURE_BUFFER_FORMAT_ARB', 0x8C2E) unless defined?(GL_TEXTURE_BUFFER_FORMAT_ARB)
|
1509
|
-
end #
|
1509
|
+
end # define_ext_enum_GL_ARB_texture_buffer_object
|
1510
1510
|
|
1511
|
-
def
|
1511
|
+
def define_ext_enum_GL_ARB_texture_buffer_object_rgb32
|
1512
1512
|
const_set('GL_RGB32F', 0x8815) unless defined?(GL_RGB32F)
|
1513
1513
|
const_set('GL_RGB32UI', 0x8D71) unless defined?(GL_RGB32UI)
|
1514
1514
|
const_set('GL_RGB32I', 0x8D83) unless defined?(GL_RGB32I)
|
1515
|
-
end #
|
1515
|
+
end # define_ext_enum_GL_ARB_texture_buffer_object_rgb32
|
1516
1516
|
|
1517
|
-
def
|
1517
|
+
def define_ext_enum_GL_ARB_texture_buffer_range
|
1518
1518
|
const_set('GL_TEXTURE_BUFFER_OFFSET', 0x919D) unless defined?(GL_TEXTURE_BUFFER_OFFSET)
|
1519
1519
|
const_set('GL_TEXTURE_BUFFER_SIZE', 0x919E) unless defined?(GL_TEXTURE_BUFFER_SIZE)
|
1520
1520
|
const_set('GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT', 0x919F) unless defined?(GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT)
|
1521
|
-
end #
|
1521
|
+
end # define_ext_enum_GL_ARB_texture_buffer_range
|
1522
1522
|
|
1523
|
-
def
|
1523
|
+
def define_ext_enum_GL_ARB_texture_compression
|
1524
1524
|
const_set('GL_COMPRESSED_ALPHA_ARB', 0x84E9) unless defined?(GL_COMPRESSED_ALPHA_ARB)
|
1525
1525
|
const_set('GL_COMPRESSED_LUMINANCE_ARB', 0x84EA) unless defined?(GL_COMPRESSED_LUMINANCE_ARB)
|
1526
1526
|
const_set('GL_COMPRESSED_LUMINANCE_ALPHA_ARB', 0x84EB) unless defined?(GL_COMPRESSED_LUMINANCE_ALPHA_ARB)
|
@@ -1532,23 +1532,23 @@ module OpenGL
|
|
1532
1532
|
const_set('GL_TEXTURE_COMPRESSED_ARB', 0x86A1) unless defined?(GL_TEXTURE_COMPRESSED_ARB)
|
1533
1533
|
const_set('GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB', 0x86A2) unless defined?(GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB)
|
1534
1534
|
const_set('GL_COMPRESSED_TEXTURE_FORMATS_ARB', 0x86A3) unless defined?(GL_COMPRESSED_TEXTURE_FORMATS_ARB)
|
1535
|
-
end #
|
1535
|
+
end # define_ext_enum_GL_ARB_texture_compression
|
1536
1536
|
|
1537
|
-
def
|
1537
|
+
def define_ext_enum_GL_ARB_texture_compression_bptc
|
1538
1538
|
const_set('GL_COMPRESSED_RGBA_BPTC_UNORM_ARB', 0x8E8C) unless defined?(GL_COMPRESSED_RGBA_BPTC_UNORM_ARB)
|
1539
1539
|
const_set('GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB', 0x8E8D) unless defined?(GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB)
|
1540
1540
|
const_set('GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB', 0x8E8E) unless defined?(GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB)
|
1541
1541
|
const_set('GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB', 0x8E8F) unless defined?(GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB)
|
1542
|
-
end #
|
1542
|
+
end # define_ext_enum_GL_ARB_texture_compression_bptc
|
1543
1543
|
|
1544
|
-
def
|
1544
|
+
def define_ext_enum_GL_ARB_texture_compression_rgtc
|
1545
1545
|
const_set('GL_COMPRESSED_RED_RGTC1', 0x8DBB) unless defined?(GL_COMPRESSED_RED_RGTC1)
|
1546
1546
|
const_set('GL_COMPRESSED_SIGNED_RED_RGTC1', 0x8DBC) unless defined?(GL_COMPRESSED_SIGNED_RED_RGTC1)
|
1547
1547
|
const_set('GL_COMPRESSED_RG_RGTC2', 0x8DBD) unless defined?(GL_COMPRESSED_RG_RGTC2)
|
1548
1548
|
const_set('GL_COMPRESSED_SIGNED_RG_RGTC2', 0x8DBE) unless defined?(GL_COMPRESSED_SIGNED_RG_RGTC2)
|
1549
|
-
end #
|
1549
|
+
end # define_ext_enum_GL_ARB_texture_compression_rgtc
|
1550
1550
|
|
1551
|
-
def
|
1551
|
+
def define_ext_enum_GL_ARB_texture_cube_map
|
1552
1552
|
const_set('GL_NORMAL_MAP_ARB', 0x8511) unless defined?(GL_NORMAL_MAP_ARB)
|
1553
1553
|
const_set('GL_REFLECTION_MAP_ARB', 0x8512) unless defined?(GL_REFLECTION_MAP_ARB)
|
1554
1554
|
const_set('GL_TEXTURE_CUBE_MAP_ARB', 0x8513) unless defined?(GL_TEXTURE_CUBE_MAP_ARB)
|
@@ -1561,9 +1561,9 @@ module OpenGL
|
|
1561
1561
|
const_set('GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB', 0x851A) unless defined?(GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB)
|
1562
1562
|
const_set('GL_PROXY_TEXTURE_CUBE_MAP_ARB', 0x851B) unless defined?(GL_PROXY_TEXTURE_CUBE_MAP_ARB)
|
1563
1563
|
const_set('GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB', 0x851C) unless defined?(GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB)
|
1564
|
-
end #
|
1564
|
+
end # define_ext_enum_GL_ARB_texture_cube_map
|
1565
1565
|
|
1566
|
-
def
|
1566
|
+
def define_ext_enum_GL_ARB_texture_cube_map_array
|
1567
1567
|
const_set('GL_TEXTURE_CUBE_MAP_ARRAY_ARB', 0x9009) unless defined?(GL_TEXTURE_CUBE_MAP_ARRAY_ARB)
|
1568
1568
|
const_set('GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB', 0x900A) unless defined?(GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB)
|
1569
1569
|
const_set('GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB', 0x900B) unless defined?(GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB)
|
@@ -1571,12 +1571,12 @@ module OpenGL
|
|
1571
1571
|
const_set('GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB', 0x900D) unless defined?(GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB)
|
1572
1572
|
const_set('GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB', 0x900E) unless defined?(GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB)
|
1573
1573
|
const_set('GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB', 0x900F) unless defined?(GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB)
|
1574
|
-
end #
|
1574
|
+
end # define_ext_enum_GL_ARB_texture_cube_map_array
|
1575
1575
|
|
1576
|
-
def
|
1577
|
-
end #
|
1576
|
+
def define_ext_enum_GL_ARB_texture_env_add
|
1577
|
+
end # define_ext_enum_GL_ARB_texture_env_add
|
1578
1578
|
|
1579
|
-
def
|
1579
|
+
def define_ext_enum_GL_ARB_texture_env_combine
|
1580
1580
|
const_set('GL_COMBINE_ARB', 0x8570) unless defined?(GL_COMBINE_ARB)
|
1581
1581
|
const_set('GL_COMBINE_RGB_ARB', 0x8571) unless defined?(GL_COMBINE_RGB_ARB)
|
1582
1582
|
const_set('GL_COMBINE_ALPHA_ARB', 0x8572) unless defined?(GL_COMBINE_ALPHA_ARB)
|
@@ -1599,17 +1599,17 @@ module OpenGL
|
|
1599
1599
|
const_set('GL_CONSTANT_ARB', 0x8576) unless defined?(GL_CONSTANT_ARB)
|
1600
1600
|
const_set('GL_PRIMARY_COLOR_ARB', 0x8577) unless defined?(GL_PRIMARY_COLOR_ARB)
|
1601
1601
|
const_set('GL_PREVIOUS_ARB', 0x8578) unless defined?(GL_PREVIOUS_ARB)
|
1602
|
-
end #
|
1602
|
+
end # define_ext_enum_GL_ARB_texture_env_combine
|
1603
1603
|
|
1604
|
-
def
|
1605
|
-
end #
|
1604
|
+
def define_ext_enum_GL_ARB_texture_env_crossbar
|
1605
|
+
end # define_ext_enum_GL_ARB_texture_env_crossbar
|
1606
1606
|
|
1607
|
-
def
|
1607
|
+
def define_ext_enum_GL_ARB_texture_env_dot3
|
1608
1608
|
const_set('GL_DOT3_RGB_ARB', 0x86AE) unless defined?(GL_DOT3_RGB_ARB)
|
1609
1609
|
const_set('GL_DOT3_RGBA_ARB', 0x86AF) unless defined?(GL_DOT3_RGBA_ARB)
|
1610
|
-
end #
|
1610
|
+
end # define_ext_enum_GL_ARB_texture_env_dot3
|
1611
1611
|
|
1612
|
-
def
|
1612
|
+
def define_ext_enum_GL_ARB_texture_float
|
1613
1613
|
const_set('GL_TEXTURE_RED_TYPE_ARB', 0x8C10) unless defined?(GL_TEXTURE_RED_TYPE_ARB)
|
1614
1614
|
const_set('GL_TEXTURE_GREEN_TYPE_ARB', 0x8C11) unless defined?(GL_TEXTURE_GREEN_TYPE_ARB)
|
1615
1615
|
const_set('GL_TEXTURE_BLUE_TYPE_ARB', 0x8C12) unless defined?(GL_TEXTURE_BLUE_TYPE_ARB)
|
@@ -1630,23 +1630,23 @@ module OpenGL
|
|
1630
1630
|
const_set('GL_INTENSITY16F_ARB', 0x881D) unless defined?(GL_INTENSITY16F_ARB)
|
1631
1631
|
const_set('GL_LUMINANCE16F_ARB', 0x881E) unless defined?(GL_LUMINANCE16F_ARB)
|
1632
1632
|
const_set('GL_LUMINANCE_ALPHA16F_ARB', 0x881F) unless defined?(GL_LUMINANCE_ALPHA16F_ARB)
|
1633
|
-
end #
|
1633
|
+
end # define_ext_enum_GL_ARB_texture_float
|
1634
1634
|
|
1635
|
-
def
|
1635
|
+
def define_ext_enum_GL_ARB_texture_gather
|
1636
1636
|
const_set('GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB', 0x8E5E) unless defined?(GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB)
|
1637
1637
|
const_set('GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB', 0x8E5F) unless defined?(GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB)
|
1638
1638
|
const_set('GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB', 0x8F9F) unless defined?(GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB)
|
1639
|
-
end #
|
1639
|
+
end # define_ext_enum_GL_ARB_texture_gather
|
1640
1640
|
|
1641
|
-
def
|
1641
|
+
def define_ext_enum_GL_ARB_texture_mirror_clamp_to_edge
|
1642
1642
|
const_set('GL_MIRROR_CLAMP_TO_EDGE', 0x8743) unless defined?(GL_MIRROR_CLAMP_TO_EDGE)
|
1643
|
-
end #
|
1643
|
+
end # define_ext_enum_GL_ARB_texture_mirror_clamp_to_edge
|
1644
1644
|
|
1645
|
-
def
|
1645
|
+
def define_ext_enum_GL_ARB_texture_mirrored_repeat
|
1646
1646
|
const_set('GL_MIRRORED_REPEAT_ARB', 0x8370) unless defined?(GL_MIRRORED_REPEAT_ARB)
|
1647
|
-
end #
|
1647
|
+
end # define_ext_enum_GL_ARB_texture_mirrored_repeat
|
1648
1648
|
|
1649
|
-
def
|
1649
|
+
def define_ext_enum_GL_ARB_texture_multisample
|
1650
1650
|
const_set('GL_SAMPLE_POSITION', 0x8E50) unless defined?(GL_SAMPLE_POSITION)
|
1651
1651
|
const_set('GL_SAMPLE_MASK', 0x8E51) unless defined?(GL_SAMPLE_MASK)
|
1652
1652
|
const_set('GL_SAMPLE_MASK_VALUE', 0x8E52) unless defined?(GL_SAMPLE_MASK_VALUE)
|
@@ -1668,25 +1668,25 @@ module OpenGL
|
|
1668
1668
|
const_set('GL_MAX_COLOR_TEXTURE_SAMPLES', 0x910E) unless defined?(GL_MAX_COLOR_TEXTURE_SAMPLES)
|
1669
1669
|
const_set('GL_MAX_DEPTH_TEXTURE_SAMPLES', 0x910F) unless defined?(GL_MAX_DEPTH_TEXTURE_SAMPLES)
|
1670
1670
|
const_set('GL_MAX_INTEGER_SAMPLES', 0x9110) unless defined?(GL_MAX_INTEGER_SAMPLES)
|
1671
|
-
end #
|
1671
|
+
end # define_ext_enum_GL_ARB_texture_multisample
|
1672
1672
|
|
1673
|
-
def
|
1674
|
-
end #
|
1673
|
+
def define_ext_enum_GL_ARB_texture_non_power_of_two
|
1674
|
+
end # define_ext_enum_GL_ARB_texture_non_power_of_two
|
1675
1675
|
|
1676
|
-
def
|
1677
|
-
end #
|
1676
|
+
def define_ext_enum_GL_ARB_texture_query_levels
|
1677
|
+
end # define_ext_enum_GL_ARB_texture_query_levels
|
1678
1678
|
|
1679
|
-
def
|
1680
|
-
end #
|
1679
|
+
def define_ext_enum_GL_ARB_texture_query_lod
|
1680
|
+
end # define_ext_enum_GL_ARB_texture_query_lod
|
1681
1681
|
|
1682
|
-
def
|
1682
|
+
def define_ext_enum_GL_ARB_texture_rectangle
|
1683
1683
|
const_set('GL_TEXTURE_RECTANGLE_ARB', 0x84F5) unless defined?(GL_TEXTURE_RECTANGLE_ARB)
|
1684
1684
|
const_set('GL_TEXTURE_BINDING_RECTANGLE_ARB', 0x84F6) unless defined?(GL_TEXTURE_BINDING_RECTANGLE_ARB)
|
1685
1685
|
const_set('GL_PROXY_TEXTURE_RECTANGLE_ARB', 0x84F7) unless defined?(GL_PROXY_TEXTURE_RECTANGLE_ARB)
|
1686
1686
|
const_set('GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB', 0x84F8) unless defined?(GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB)
|
1687
|
-
end #
|
1687
|
+
end # define_ext_enum_GL_ARB_texture_rectangle
|
1688
1688
|
|
1689
|
-
def
|
1689
|
+
def define_ext_enum_GL_ARB_texture_rg
|
1690
1690
|
const_set('GL_RG', 0x8227) unless defined?(GL_RG)
|
1691
1691
|
const_set('GL_RG_INTEGER', 0x8228) unless defined?(GL_RG_INTEGER)
|
1692
1692
|
const_set('GL_R8', 0x8229) unless defined?(GL_R8)
|
@@ -1709,70 +1709,70 @@ module OpenGL
|
|
1709
1709
|
const_set('GL_RG16UI', 0x823A) unless defined?(GL_RG16UI)
|
1710
1710
|
const_set('GL_RG32I', 0x823B) unless defined?(GL_RG32I)
|
1711
1711
|
const_set('GL_RG32UI', 0x823C) unless defined?(GL_RG32UI)
|
1712
|
-
end #
|
1712
|
+
end # define_ext_enum_GL_ARB_texture_rg
|
1713
1713
|
|
1714
|
-
def
|
1714
|
+
def define_ext_enum_GL_ARB_texture_rgb10_a2ui
|
1715
1715
|
const_set('GL_RGB10_A2UI', 0x906F) unless defined?(GL_RGB10_A2UI)
|
1716
|
-
end #
|
1716
|
+
end # define_ext_enum_GL_ARB_texture_rgb10_a2ui
|
1717
1717
|
|
1718
|
-
def
|
1718
|
+
def define_ext_enum_GL_ARB_texture_stencil8
|
1719
1719
|
const_set('GL_STENCIL_INDEX', 0x1901) unless defined?(GL_STENCIL_INDEX)
|
1720
1720
|
const_set('GL_STENCIL_INDEX8', 0x8D48) unless defined?(GL_STENCIL_INDEX8)
|
1721
|
-
end #
|
1721
|
+
end # define_ext_enum_GL_ARB_texture_stencil8
|
1722
1722
|
|
1723
|
-
def
|
1723
|
+
def define_ext_enum_GL_ARB_texture_storage
|
1724
1724
|
const_set('GL_TEXTURE_IMMUTABLE_FORMAT', 0x912F) unless defined?(GL_TEXTURE_IMMUTABLE_FORMAT)
|
1725
|
-
end #
|
1725
|
+
end # define_ext_enum_GL_ARB_texture_storage
|
1726
1726
|
|
1727
|
-
def
|
1728
|
-
end #
|
1727
|
+
def define_ext_enum_GL_ARB_texture_storage_multisample
|
1728
|
+
end # define_ext_enum_GL_ARB_texture_storage_multisample
|
1729
1729
|
|
1730
|
-
def
|
1730
|
+
def define_ext_enum_GL_ARB_texture_swizzle
|
1731
1731
|
const_set('GL_TEXTURE_SWIZZLE_R', 0x8E42) unless defined?(GL_TEXTURE_SWIZZLE_R)
|
1732
1732
|
const_set('GL_TEXTURE_SWIZZLE_G', 0x8E43) unless defined?(GL_TEXTURE_SWIZZLE_G)
|
1733
1733
|
const_set('GL_TEXTURE_SWIZZLE_B', 0x8E44) unless defined?(GL_TEXTURE_SWIZZLE_B)
|
1734
1734
|
const_set('GL_TEXTURE_SWIZZLE_A', 0x8E45) unless defined?(GL_TEXTURE_SWIZZLE_A)
|
1735
1735
|
const_set('GL_TEXTURE_SWIZZLE_RGBA', 0x8E46) unless defined?(GL_TEXTURE_SWIZZLE_RGBA)
|
1736
|
-
end #
|
1736
|
+
end # define_ext_enum_GL_ARB_texture_swizzle
|
1737
1737
|
|
1738
|
-
def
|
1738
|
+
def define_ext_enum_GL_ARB_texture_view
|
1739
1739
|
const_set('GL_TEXTURE_VIEW_MIN_LEVEL', 0x82DB) unless defined?(GL_TEXTURE_VIEW_MIN_LEVEL)
|
1740
1740
|
const_set('GL_TEXTURE_VIEW_NUM_LEVELS', 0x82DC) unless defined?(GL_TEXTURE_VIEW_NUM_LEVELS)
|
1741
1741
|
const_set('GL_TEXTURE_VIEW_MIN_LAYER', 0x82DD) unless defined?(GL_TEXTURE_VIEW_MIN_LAYER)
|
1742
1742
|
const_set('GL_TEXTURE_VIEW_NUM_LAYERS', 0x82DE) unless defined?(GL_TEXTURE_VIEW_NUM_LAYERS)
|
1743
1743
|
const_set('GL_TEXTURE_IMMUTABLE_LEVELS', 0x82DF) unless defined?(GL_TEXTURE_IMMUTABLE_LEVELS)
|
1744
|
-
end #
|
1744
|
+
end # define_ext_enum_GL_ARB_texture_view
|
1745
1745
|
|
1746
|
-
def
|
1746
|
+
def define_ext_enum_GL_ARB_timer_query
|
1747
1747
|
const_set('GL_TIME_ELAPSED', 0x88BF) unless defined?(GL_TIME_ELAPSED)
|
1748
1748
|
const_set('GL_TIMESTAMP', 0x8E28) unless defined?(GL_TIMESTAMP)
|
1749
|
-
end #
|
1749
|
+
end # define_ext_enum_GL_ARB_timer_query
|
1750
1750
|
|
1751
|
-
def
|
1751
|
+
def define_ext_enum_GL_ARB_transform_feedback2
|
1752
1752
|
const_set('GL_TRANSFORM_FEEDBACK', 0x8E22) unless defined?(GL_TRANSFORM_FEEDBACK)
|
1753
|
-
const_set('GL_TRANSFORM_FEEDBACK_PAUSED', ) unless defined?(GL_TRANSFORM_FEEDBACK_PAUSED)
|
1753
|
+
const_set('GL_TRANSFORM_FEEDBACK_PAUSED', 0x8E23) unless defined?(GL_TRANSFORM_FEEDBACK_PAUSED)
|
1754
1754
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED', 0x8E23) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED)
|
1755
|
-
const_set('GL_TRANSFORM_FEEDBACK_ACTIVE', ) unless defined?(GL_TRANSFORM_FEEDBACK_ACTIVE)
|
1755
|
+
const_set('GL_TRANSFORM_FEEDBACK_ACTIVE', 0x8E24) unless defined?(GL_TRANSFORM_FEEDBACK_ACTIVE)
|
1756
1756
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE', 0x8E24) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE)
|
1757
1757
|
const_set('GL_TRANSFORM_FEEDBACK_BINDING', 0x8E25) unless defined?(GL_TRANSFORM_FEEDBACK_BINDING)
|
1758
|
-
end #
|
1758
|
+
end # define_ext_enum_GL_ARB_transform_feedback2
|
1759
1759
|
|
1760
|
-
def
|
1760
|
+
def define_ext_enum_GL_ARB_transform_feedback3
|
1761
1761
|
const_set('GL_MAX_TRANSFORM_FEEDBACK_BUFFERS', 0x8E70) unless defined?(GL_MAX_TRANSFORM_FEEDBACK_BUFFERS)
|
1762
1762
|
const_set('GL_MAX_VERTEX_STREAMS', 0x8E71) unless defined?(GL_MAX_VERTEX_STREAMS)
|
1763
|
-
end #
|
1763
|
+
end # define_ext_enum_GL_ARB_transform_feedback3
|
1764
1764
|
|
1765
|
-
def
|
1766
|
-
end #
|
1765
|
+
def define_ext_enum_GL_ARB_transform_feedback_instanced
|
1766
|
+
end # define_ext_enum_GL_ARB_transform_feedback_instanced
|
1767
1767
|
|
1768
|
-
def
|
1768
|
+
def define_ext_enum_GL_ARB_transpose_matrix
|
1769
1769
|
const_set('GL_TRANSPOSE_MODELVIEW_MATRIX_ARB', 0x84E3) unless defined?(GL_TRANSPOSE_MODELVIEW_MATRIX_ARB)
|
1770
1770
|
const_set('GL_TRANSPOSE_PROJECTION_MATRIX_ARB', 0x84E4) unless defined?(GL_TRANSPOSE_PROJECTION_MATRIX_ARB)
|
1771
1771
|
const_set('GL_TRANSPOSE_TEXTURE_MATRIX_ARB', 0x84E5) unless defined?(GL_TRANSPOSE_TEXTURE_MATRIX_ARB)
|
1772
1772
|
const_set('GL_TRANSPOSE_COLOR_MATRIX_ARB', 0x84E6) unless defined?(GL_TRANSPOSE_COLOR_MATRIX_ARB)
|
1773
|
-
end #
|
1773
|
+
end # define_ext_enum_GL_ARB_transpose_matrix
|
1774
1774
|
|
1775
|
-
def
|
1775
|
+
def define_ext_enum_GL_ARB_uniform_buffer_object
|
1776
1776
|
const_set('GL_UNIFORM_BUFFER', 0x8A11) unless defined?(GL_UNIFORM_BUFFER)
|
1777
1777
|
const_set('GL_UNIFORM_BUFFER_BINDING', 0x8A28) unless defined?(GL_UNIFORM_BUFFER_BINDING)
|
1778
1778
|
const_set('GL_UNIFORM_BUFFER_START', 0x8A29) unless defined?(GL_UNIFORM_BUFFER_START)
|
@@ -1806,17 +1806,17 @@ module OpenGL
|
|
1806
1806
|
const_set('GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER', 0x8A45) unless defined?(GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER)
|
1807
1807
|
const_set('GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER', 0x8A46) unless defined?(GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER)
|
1808
1808
|
const_set('GL_INVALID_INDEX', 0xFFFFFFFF) unless defined?(GL_INVALID_INDEX)
|
1809
|
-
end #
|
1809
|
+
end # define_ext_enum_GL_ARB_uniform_buffer_object
|
1810
1810
|
|
1811
|
-
def
|
1811
|
+
def define_ext_enum_GL_ARB_vertex_array_bgra
|
1812
1812
|
const_set('GL_BGRA', 0x80E1) unless defined?(GL_BGRA)
|
1813
|
-
end #
|
1813
|
+
end # define_ext_enum_GL_ARB_vertex_array_bgra
|
1814
1814
|
|
1815
|
-
def
|
1815
|
+
def define_ext_enum_GL_ARB_vertex_array_object
|
1816
1816
|
const_set('GL_VERTEX_ARRAY_BINDING', 0x85B5) unless defined?(GL_VERTEX_ARRAY_BINDING)
|
1817
|
-
end #
|
1817
|
+
end # define_ext_enum_GL_ARB_vertex_array_object
|
1818
1818
|
|
1819
|
-
def
|
1819
|
+
def define_ext_enum_GL_ARB_vertex_attrib_64bit
|
1820
1820
|
const_set('GL_RGB32I', 0x8D83) unless defined?(GL_RGB32I)
|
1821
1821
|
const_set('GL_DOUBLE_VEC2', 0x8FFC) unless defined?(GL_DOUBLE_VEC2)
|
1822
1822
|
const_set('GL_DOUBLE_VEC3', 0x8FFD) unless defined?(GL_DOUBLE_VEC3)
|
@@ -1830,9 +1830,9 @@ module OpenGL
|
|
1830
1830
|
const_set('GL_DOUBLE_MAT3x4', 0x8F4C) unless defined?(GL_DOUBLE_MAT3x4)
|
1831
1831
|
const_set('GL_DOUBLE_MAT4x2', 0x8F4D) unless defined?(GL_DOUBLE_MAT4x2)
|
1832
1832
|
const_set('GL_DOUBLE_MAT4x3', 0x8F4E) unless defined?(GL_DOUBLE_MAT4x3)
|
1833
|
-
end #
|
1833
|
+
end # define_ext_enum_GL_ARB_vertex_attrib_64bit
|
1834
1834
|
|
1835
|
-
def
|
1835
|
+
def define_ext_enum_GL_ARB_vertex_attrib_binding
|
1836
1836
|
const_set('GL_VERTEX_ATTRIB_BINDING', 0x82D4) unless defined?(GL_VERTEX_ATTRIB_BINDING)
|
1837
1837
|
const_set('GL_VERTEX_ATTRIB_RELATIVE_OFFSET', 0x82D5) unless defined?(GL_VERTEX_ATTRIB_RELATIVE_OFFSET)
|
1838
1838
|
const_set('GL_VERTEX_BINDING_DIVISOR', 0x82D6) unless defined?(GL_VERTEX_BINDING_DIVISOR)
|
@@ -1840,9 +1840,9 @@ module OpenGL
|
|
1840
1840
|
const_set('GL_VERTEX_BINDING_STRIDE', 0x82D8) unless defined?(GL_VERTEX_BINDING_STRIDE)
|
1841
1841
|
const_set('GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET', 0x82D9) unless defined?(GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET)
|
1842
1842
|
const_set('GL_MAX_VERTEX_ATTRIB_BINDINGS', 0x82DA) unless defined?(GL_MAX_VERTEX_ATTRIB_BINDINGS)
|
1843
|
-
end #
|
1843
|
+
end # define_ext_enum_GL_ARB_vertex_attrib_binding
|
1844
1844
|
|
1845
|
-
def
|
1845
|
+
def define_ext_enum_GL_ARB_vertex_blend
|
1846
1846
|
const_set('GL_MAX_VERTEX_UNITS_ARB', 0x86A4) unless defined?(GL_MAX_VERTEX_UNITS_ARB)
|
1847
1847
|
const_set('GL_ACTIVE_VERTEX_UNITS_ARB', 0x86A5) unless defined?(GL_ACTIVE_VERTEX_UNITS_ARB)
|
1848
1848
|
const_set('GL_WEIGHT_SUM_UNITY_ARB', 0x86A6) unless defined?(GL_WEIGHT_SUM_UNITY_ARB)
|
@@ -1885,9 +1885,9 @@ module OpenGL
|
|
1885
1885
|
const_set('GL_MODELVIEW29_ARB', 0x873D) unless defined?(GL_MODELVIEW29_ARB)
|
1886
1886
|
const_set('GL_MODELVIEW30_ARB', 0x873E) unless defined?(GL_MODELVIEW30_ARB)
|
1887
1887
|
const_set('GL_MODELVIEW31_ARB', 0x873F) unless defined?(GL_MODELVIEW31_ARB)
|
1888
|
-
end #
|
1888
|
+
end # define_ext_enum_GL_ARB_vertex_blend
|
1889
1889
|
|
1890
|
-
def
|
1890
|
+
def define_ext_enum_GL_ARB_vertex_buffer_object
|
1891
1891
|
const_set('GL_BUFFER_SIZE_ARB', 0x8764) unless defined?(GL_BUFFER_SIZE_ARB)
|
1892
1892
|
const_set('GL_BUFFER_USAGE_ARB', 0x8765) unless defined?(GL_BUFFER_USAGE_ARB)
|
1893
1893
|
const_set('GL_ARRAY_BUFFER_ARB', 0x8892) unless defined?(GL_ARRAY_BUFFER_ARB)
|
@@ -1919,9 +1919,9 @@ module OpenGL
|
|
1919
1919
|
const_set('GL_DYNAMIC_DRAW_ARB', 0x88E8) unless defined?(GL_DYNAMIC_DRAW_ARB)
|
1920
1920
|
const_set('GL_DYNAMIC_READ_ARB', 0x88E9) unless defined?(GL_DYNAMIC_READ_ARB)
|
1921
1921
|
const_set('GL_DYNAMIC_COPY_ARB', 0x88EA) unless defined?(GL_DYNAMIC_COPY_ARB)
|
1922
|
-
end #
|
1922
|
+
end # define_ext_enum_GL_ARB_vertex_buffer_object
|
1923
1923
|
|
1924
|
-
def
|
1924
|
+
def define_ext_enum_GL_ARB_vertex_program
|
1925
1925
|
const_set('GL_COLOR_SUM_ARB', 0x8458) unless defined?(GL_COLOR_SUM_ARB)
|
1926
1926
|
const_set('GL_VERTEX_PROGRAM_ARB', 0x8620) unless defined?(GL_VERTEX_PROGRAM_ARB)
|
1927
1927
|
const_set('GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB', 0x8622) unless defined?(GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB)
|
@@ -2001,9 +2001,9 @@ module OpenGL
|
|
2001
2001
|
const_set('GL_MATRIX29_ARB', 0x88DD) unless defined?(GL_MATRIX29_ARB)
|
2002
2002
|
const_set('GL_MATRIX30_ARB', 0x88DE) unless defined?(GL_MATRIX30_ARB)
|
2003
2003
|
const_set('GL_MATRIX31_ARB', 0x88DF) unless defined?(GL_MATRIX31_ARB)
|
2004
|
-
end #
|
2004
|
+
end # define_ext_enum_GL_ARB_vertex_program
|
2005
2005
|
|
2006
|
-
def
|
2006
|
+
def define_ext_enum_GL_ARB_vertex_shader
|
2007
2007
|
const_set('GL_VERTEX_SHADER_ARB', 0x8B31) unless defined?(GL_VERTEX_SHADER_ARB)
|
2008
2008
|
const_set('GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB', 0x8B4A) unless defined?(GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB)
|
2009
2009
|
const_set('GL_MAX_VARYING_FLOATS_ARB', 0x8B4B) unless defined?(GL_MAX_VARYING_FLOATS_ARB)
|
@@ -2030,18 +2030,18 @@ module OpenGL
|
|
2030
2030
|
const_set('GL_FLOAT_MAT2_ARB', 0x8B5A) unless defined?(GL_FLOAT_MAT2_ARB)
|
2031
2031
|
const_set('GL_FLOAT_MAT3_ARB', 0x8B5B) unless defined?(GL_FLOAT_MAT3_ARB)
|
2032
2032
|
const_set('GL_FLOAT_MAT4_ARB', 0x8B5C) unless defined?(GL_FLOAT_MAT4_ARB)
|
2033
|
-
end #
|
2033
|
+
end # define_ext_enum_GL_ARB_vertex_shader
|
2034
2034
|
|
2035
|
-
def
|
2035
|
+
def define_ext_enum_GL_ARB_vertex_type_10f_11f_11f_rev
|
2036
2036
|
const_set('GL_UNSIGNED_INT_10F_11F_11F_REV', 0x8C3B) unless defined?(GL_UNSIGNED_INT_10F_11F_11F_REV)
|
2037
|
-
end #
|
2037
|
+
end # define_ext_enum_GL_ARB_vertex_type_10f_11f_11f_rev
|
2038
2038
|
|
2039
|
-
def
|
2039
|
+
def define_ext_enum_GL_ARB_vertex_type_2_10_10_10_rev
|
2040
2040
|
const_set('GL_UNSIGNED_INT_2_10_10_10_REV', 0x8368) unless defined?(GL_UNSIGNED_INT_2_10_10_10_REV)
|
2041
2041
|
const_set('GL_INT_2_10_10_10_REV', 0x8D9F) unless defined?(GL_INT_2_10_10_10_REV)
|
2042
|
-
end #
|
2042
|
+
end # define_ext_enum_GL_ARB_vertex_type_2_10_10_10_rev
|
2043
2043
|
|
2044
|
-
def
|
2044
|
+
def define_ext_enum_GL_ARB_viewport_array
|
2045
2045
|
const_set('GL_SCISSOR_BOX', 0x0C10) unless defined?(GL_SCISSOR_BOX)
|
2046
2046
|
const_set('GL_VIEWPORT', 0x0BA2) unless defined?(GL_VIEWPORT)
|
2047
2047
|
const_set('GL_DEPTH_RANGE', 0x0B70) unless defined?(GL_DEPTH_RANGE)
|
@@ -2055,12 +2055,12 @@ module OpenGL
|
|
2055
2055
|
const_set('GL_FIRST_VERTEX_CONVENTION', 0x8E4D) unless defined?(GL_FIRST_VERTEX_CONVENTION)
|
2056
2056
|
const_set('GL_LAST_VERTEX_CONVENTION', 0x8E4E) unless defined?(GL_LAST_VERTEX_CONVENTION)
|
2057
2057
|
const_set('GL_PROVOKING_VERTEX', 0x8E4F) unless defined?(GL_PROVOKING_VERTEX)
|
2058
|
-
end #
|
2058
|
+
end # define_ext_enum_GL_ARB_viewport_array
|
2059
2059
|
|
2060
|
-
def
|
2061
|
-
end #
|
2060
|
+
def define_ext_enum_GL_ARB_window_pos
|
2061
|
+
end # define_ext_enum_GL_ARB_window_pos
|
2062
2062
|
|
2063
|
-
def
|
2063
|
+
def define_ext_enum_GL_ATI_draw_buffers
|
2064
2064
|
const_set('GL_MAX_DRAW_BUFFERS_ATI', 0x8824) unless defined?(GL_MAX_DRAW_BUFFERS_ATI)
|
2065
2065
|
const_set('GL_DRAW_BUFFER0_ATI', 0x8825) unless defined?(GL_DRAW_BUFFER0_ATI)
|
2066
2066
|
const_set('GL_DRAW_BUFFER1_ATI', 0x8826) unless defined?(GL_DRAW_BUFFER1_ATI)
|
@@ -2078,15 +2078,15 @@ module OpenGL
|
|
2078
2078
|
const_set('GL_DRAW_BUFFER13_ATI', 0x8832) unless defined?(GL_DRAW_BUFFER13_ATI)
|
2079
2079
|
const_set('GL_DRAW_BUFFER14_ATI', 0x8833) unless defined?(GL_DRAW_BUFFER14_ATI)
|
2080
2080
|
const_set('GL_DRAW_BUFFER15_ATI', 0x8834) unless defined?(GL_DRAW_BUFFER15_ATI)
|
2081
|
-
end #
|
2081
|
+
end # define_ext_enum_GL_ATI_draw_buffers
|
2082
2082
|
|
2083
|
-
def
|
2083
|
+
def define_ext_enum_GL_ATI_element_array
|
2084
2084
|
const_set('GL_ELEMENT_ARRAY_ATI', 0x8768) unless defined?(GL_ELEMENT_ARRAY_ATI)
|
2085
2085
|
const_set('GL_ELEMENT_ARRAY_TYPE_ATI', 0x8769) unless defined?(GL_ELEMENT_ARRAY_TYPE_ATI)
|
2086
2086
|
const_set('GL_ELEMENT_ARRAY_POINTER_ATI', 0x876A) unless defined?(GL_ELEMENT_ARRAY_POINTER_ATI)
|
2087
|
-
end #
|
2087
|
+
end # define_ext_enum_GL_ATI_element_array
|
2088
2088
|
|
2089
|
-
def
|
2089
|
+
def define_ext_enum_GL_ATI_envmap_bumpmap
|
2090
2090
|
const_set('GL_BUMP_ROT_MATRIX_ATI', 0x8775) unless defined?(GL_BUMP_ROT_MATRIX_ATI)
|
2091
2091
|
const_set('GL_BUMP_ROT_MATRIX_SIZE_ATI', 0x8776) unless defined?(GL_BUMP_ROT_MATRIX_SIZE_ATI)
|
2092
2092
|
const_set('GL_BUMP_NUM_TEX_UNITS_ATI', 0x8777) unless defined?(GL_BUMP_NUM_TEX_UNITS_ATI)
|
@@ -2095,9 +2095,9 @@ module OpenGL
|
|
2095
2095
|
const_set('GL_DU8DV8_ATI', 0x877A) unless defined?(GL_DU8DV8_ATI)
|
2096
2096
|
const_set('GL_BUMP_ENVMAP_ATI', 0x877B) unless defined?(GL_BUMP_ENVMAP_ATI)
|
2097
2097
|
const_set('GL_BUMP_TARGET_ATI', 0x877C) unless defined?(GL_BUMP_TARGET_ATI)
|
2098
|
-
end #
|
2098
|
+
end # define_ext_enum_GL_ATI_envmap_bumpmap
|
2099
2099
|
|
2100
|
-
def
|
2100
|
+
def define_ext_enum_GL_ATI_fragment_shader
|
2101
2101
|
const_set('GL_FRAGMENT_SHADER_ATI', 0x8920) unless defined?(GL_FRAGMENT_SHADER_ATI)
|
2102
2102
|
const_set('GL_REG_0_ATI', 0x8921) unless defined?(GL_REG_0_ATI)
|
2103
2103
|
const_set('GL_REG_1_ATI', 0x8922) unless defined?(GL_REG_1_ATI)
|
@@ -2202,23 +2202,23 @@ module OpenGL
|
|
2202
2202
|
const_set('GL_COMP_BIT_ATI', 0x00000002) unless defined?(GL_COMP_BIT_ATI)
|
2203
2203
|
const_set('GL_NEGATE_BIT_ATI', 0x00000004) unless defined?(GL_NEGATE_BIT_ATI)
|
2204
2204
|
const_set('GL_BIAS_BIT_ATI', 0x00000008) unless defined?(GL_BIAS_BIT_ATI)
|
2205
|
-
end #
|
2205
|
+
end # define_ext_enum_GL_ATI_fragment_shader
|
2206
2206
|
|
2207
|
-
def
|
2208
|
-
end #
|
2207
|
+
def define_ext_enum_GL_ATI_map_object_buffer
|
2208
|
+
end # define_ext_enum_GL_ATI_map_object_buffer
|
2209
2209
|
|
2210
|
-
def
|
2210
|
+
def define_ext_enum_GL_ATI_meminfo
|
2211
2211
|
const_set('GL_VBO_FREE_MEMORY_ATI', 0x87FB) unless defined?(GL_VBO_FREE_MEMORY_ATI)
|
2212
2212
|
const_set('GL_TEXTURE_FREE_MEMORY_ATI', 0x87FC) unless defined?(GL_TEXTURE_FREE_MEMORY_ATI)
|
2213
2213
|
const_set('GL_RENDERBUFFER_FREE_MEMORY_ATI', 0x87FD) unless defined?(GL_RENDERBUFFER_FREE_MEMORY_ATI)
|
2214
|
-
end #
|
2214
|
+
end # define_ext_enum_GL_ATI_meminfo
|
2215
2215
|
|
2216
|
-
def
|
2216
|
+
def define_ext_enum_GL_ATI_pixel_format_float
|
2217
2217
|
const_set('GL_RGBA_FLOAT_MODE_ATI', 0x8820) unless defined?(GL_RGBA_FLOAT_MODE_ATI)
|
2218
2218
|
const_set('GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI', 0x8835) unless defined?(GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI)
|
2219
|
-
end #
|
2219
|
+
end # define_ext_enum_GL_ATI_pixel_format_float
|
2220
2220
|
|
2221
|
-
def
|
2221
|
+
def define_ext_enum_GL_ATI_pn_triangles
|
2222
2222
|
const_set('GL_PN_TRIANGLES_ATI', 0x87F0) unless defined?(GL_PN_TRIANGLES_ATI)
|
2223
2223
|
const_set('GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI', 0x87F1) unless defined?(GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI)
|
2224
2224
|
const_set('GL_PN_TRIANGLES_POINT_MODE_ATI', 0x87F2) unless defined?(GL_PN_TRIANGLES_POINT_MODE_ATI)
|
@@ -2228,26 +2228,26 @@ module OpenGL
|
|
2228
2228
|
const_set('GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI', 0x87F6) unless defined?(GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI)
|
2229
2229
|
const_set('GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI', 0x87F7) unless defined?(GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI)
|
2230
2230
|
const_set('GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI', 0x87F8) unless defined?(GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI)
|
2231
|
-
end #
|
2231
|
+
end # define_ext_enum_GL_ATI_pn_triangles
|
2232
2232
|
|
2233
|
-
def
|
2233
|
+
def define_ext_enum_GL_ATI_separate_stencil
|
2234
2234
|
const_set('GL_STENCIL_BACK_FUNC_ATI', 0x8800) unless defined?(GL_STENCIL_BACK_FUNC_ATI)
|
2235
2235
|
const_set('GL_STENCIL_BACK_FAIL_ATI', 0x8801) unless defined?(GL_STENCIL_BACK_FAIL_ATI)
|
2236
2236
|
const_set('GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI', 0x8802) unless defined?(GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI)
|
2237
2237
|
const_set('GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI', 0x8803) unless defined?(GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI)
|
2238
|
-
end #
|
2238
|
+
end # define_ext_enum_GL_ATI_separate_stencil
|
2239
2239
|
|
2240
|
-
def
|
2240
|
+
def define_ext_enum_GL_ATI_text_fragment_shader
|
2241
2241
|
const_set('GL_TEXT_FRAGMENT_SHADER_ATI', 0x8200) unless defined?(GL_TEXT_FRAGMENT_SHADER_ATI)
|
2242
|
-
end #
|
2242
|
+
end # define_ext_enum_GL_ATI_text_fragment_shader
|
2243
2243
|
|
2244
|
-
def
|
2244
|
+
def define_ext_enum_GL_ATI_texture_env_combine3
|
2245
2245
|
const_set('GL_MODULATE_ADD_ATI', 0x8744) unless defined?(GL_MODULATE_ADD_ATI)
|
2246
2246
|
const_set('GL_MODULATE_SIGNED_ADD_ATI', 0x8745) unless defined?(GL_MODULATE_SIGNED_ADD_ATI)
|
2247
2247
|
const_set('GL_MODULATE_SUBTRACT_ATI', 0x8746) unless defined?(GL_MODULATE_SUBTRACT_ATI)
|
2248
|
-
end #
|
2248
|
+
end # define_ext_enum_GL_ATI_texture_env_combine3
|
2249
2249
|
|
2250
|
-
def
|
2250
|
+
def define_ext_enum_GL_ATI_texture_float
|
2251
2251
|
const_set('GL_RGBA_FLOAT32_ATI', 0x8814) unless defined?(GL_RGBA_FLOAT32_ATI)
|
2252
2252
|
const_set('GL_RGB_FLOAT32_ATI', 0x8815) unless defined?(GL_RGB_FLOAT32_ATI)
|
2253
2253
|
const_set('GL_ALPHA_FLOAT32_ATI', 0x8816) unless defined?(GL_ALPHA_FLOAT32_ATI)
|
@@ -2260,14 +2260,14 @@ module OpenGL
|
|
2260
2260
|
const_set('GL_INTENSITY_FLOAT16_ATI', 0x881D) unless defined?(GL_INTENSITY_FLOAT16_ATI)
|
2261
2261
|
const_set('GL_LUMINANCE_FLOAT16_ATI', 0x881E) unless defined?(GL_LUMINANCE_FLOAT16_ATI)
|
2262
2262
|
const_set('GL_LUMINANCE_ALPHA_FLOAT16_ATI', 0x881F) unless defined?(GL_LUMINANCE_ALPHA_FLOAT16_ATI)
|
2263
|
-
end #
|
2263
|
+
end # define_ext_enum_GL_ATI_texture_float
|
2264
2264
|
|
2265
|
-
def
|
2265
|
+
def define_ext_enum_GL_ATI_texture_mirror_once
|
2266
2266
|
const_set('GL_MIRROR_CLAMP_ATI', 0x8742) unless defined?(GL_MIRROR_CLAMP_ATI)
|
2267
2267
|
const_set('GL_MIRROR_CLAMP_TO_EDGE_ATI', 0x8743) unless defined?(GL_MIRROR_CLAMP_TO_EDGE_ATI)
|
2268
|
-
end #
|
2268
|
+
end # define_ext_enum_GL_ATI_texture_mirror_once
|
2269
2269
|
|
2270
|
-
def
|
2270
|
+
def define_ext_enum_GL_ATI_vertex_array_object
|
2271
2271
|
const_set('GL_STATIC_ATI', 0x8760) unless defined?(GL_STATIC_ATI)
|
2272
2272
|
const_set('GL_DYNAMIC_ATI', 0x8761) unless defined?(GL_DYNAMIC_ATI)
|
2273
2273
|
const_set('GL_PRESERVE_ATI', 0x8762) unless defined?(GL_PRESERVE_ATI)
|
@@ -2276,12 +2276,12 @@ module OpenGL
|
|
2276
2276
|
const_set('GL_OBJECT_BUFFER_USAGE_ATI', 0x8765) unless defined?(GL_OBJECT_BUFFER_USAGE_ATI)
|
2277
2277
|
const_set('GL_ARRAY_OBJECT_BUFFER_ATI', 0x8766) unless defined?(GL_ARRAY_OBJECT_BUFFER_ATI)
|
2278
2278
|
const_set('GL_ARRAY_OBJECT_OFFSET_ATI', 0x8767) unless defined?(GL_ARRAY_OBJECT_OFFSET_ATI)
|
2279
|
-
end #
|
2279
|
+
end # define_ext_enum_GL_ATI_vertex_array_object
|
2280
2280
|
|
2281
|
-
def
|
2282
|
-
end #
|
2281
|
+
def define_ext_enum_GL_ATI_vertex_attrib_array_object
|
2282
|
+
end # define_ext_enum_GL_ATI_vertex_attrib_array_object
|
2283
2283
|
|
2284
|
-
def
|
2284
|
+
def define_ext_enum_GL_ATI_vertex_streams
|
2285
2285
|
const_set('GL_MAX_VERTEX_STREAMS_ATI', 0x876B) unless defined?(GL_MAX_VERTEX_STREAMS_ATI)
|
2286
2286
|
const_set('GL_VERTEX_STREAM0_ATI', 0x876C) unless defined?(GL_VERTEX_STREAM0_ATI)
|
2287
2287
|
const_set('GL_VERTEX_STREAM1_ATI', 0x876D) unless defined?(GL_VERTEX_STREAM1_ATI)
|
@@ -2292,88 +2292,88 @@ module OpenGL
|
|
2292
2292
|
const_set('GL_VERTEX_STREAM6_ATI', 0x8772) unless defined?(GL_VERTEX_STREAM6_ATI)
|
2293
2293
|
const_set('GL_VERTEX_STREAM7_ATI', 0x8773) unless defined?(GL_VERTEX_STREAM7_ATI)
|
2294
2294
|
const_set('GL_VERTEX_SOURCE_ATI', 0x8774) unless defined?(GL_VERTEX_SOURCE_ATI)
|
2295
|
-
end #
|
2295
|
+
end # define_ext_enum_GL_ATI_vertex_streams
|
2296
2296
|
|
2297
|
-
def
|
2297
|
+
def define_ext_enum_GL_EXT_422_pixels
|
2298
2298
|
const_set('GL_422_EXT', 0x80CC) unless defined?(GL_422_EXT)
|
2299
2299
|
const_set('GL_422_REV_EXT', 0x80CD) unless defined?(GL_422_REV_EXT)
|
2300
2300
|
const_set('GL_422_AVERAGE_EXT', 0x80CE) unless defined?(GL_422_AVERAGE_EXT)
|
2301
2301
|
const_set('GL_422_REV_AVERAGE_EXT', 0x80CF) unless defined?(GL_422_REV_AVERAGE_EXT)
|
2302
|
-
end #
|
2302
|
+
end # define_ext_enum_GL_EXT_422_pixels
|
2303
2303
|
|
2304
|
-
def
|
2304
|
+
def define_ext_enum_GL_EXT_abgr
|
2305
2305
|
const_set('GL_ABGR_EXT', 0x8000) unless defined?(GL_ABGR_EXT)
|
2306
|
-
end #
|
2306
|
+
end # define_ext_enum_GL_EXT_abgr
|
2307
2307
|
|
2308
|
-
def
|
2308
|
+
def define_ext_enum_GL_EXT_bgra
|
2309
2309
|
const_set('GL_BGR_EXT', 0x80E0) unless defined?(GL_BGR_EXT)
|
2310
2310
|
const_set('GL_BGRA_EXT', 0x80E1) unless defined?(GL_BGRA_EXT)
|
2311
|
-
end #
|
2311
|
+
end # define_ext_enum_GL_EXT_bgra
|
2312
2312
|
|
2313
|
-
def
|
2313
|
+
def define_ext_enum_GL_EXT_bindable_uniform
|
2314
2314
|
const_set('GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT', 0x8DE2) unless defined?(GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT)
|
2315
2315
|
const_set('GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT', 0x8DE3) unless defined?(GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT)
|
2316
2316
|
const_set('GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT', 0x8DE4) unless defined?(GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT)
|
2317
2317
|
const_set('GL_MAX_BINDABLE_UNIFORM_SIZE_EXT', 0x8DED) unless defined?(GL_MAX_BINDABLE_UNIFORM_SIZE_EXT)
|
2318
2318
|
const_set('GL_UNIFORM_BUFFER_EXT', 0x8DEE) unless defined?(GL_UNIFORM_BUFFER_EXT)
|
2319
2319
|
const_set('GL_UNIFORM_BUFFER_BINDING_EXT', 0x8DEF) unless defined?(GL_UNIFORM_BUFFER_BINDING_EXT)
|
2320
|
-
end #
|
2320
|
+
end # define_ext_enum_GL_EXT_bindable_uniform
|
2321
2321
|
|
2322
|
-
def
|
2322
|
+
def define_ext_enum_GL_EXT_blend_color
|
2323
2323
|
const_set('GL_CONSTANT_COLOR_EXT', 0x8001) unless defined?(GL_CONSTANT_COLOR_EXT)
|
2324
2324
|
const_set('GL_ONE_MINUS_CONSTANT_COLOR_EXT', 0x8002) unless defined?(GL_ONE_MINUS_CONSTANT_COLOR_EXT)
|
2325
2325
|
const_set('GL_CONSTANT_ALPHA_EXT', 0x8003) unless defined?(GL_CONSTANT_ALPHA_EXT)
|
2326
2326
|
const_set('GL_ONE_MINUS_CONSTANT_ALPHA_EXT', 0x8004) unless defined?(GL_ONE_MINUS_CONSTANT_ALPHA_EXT)
|
2327
2327
|
const_set('GL_BLEND_COLOR_EXT', 0x8005) unless defined?(GL_BLEND_COLOR_EXT)
|
2328
|
-
end #
|
2328
|
+
end # define_ext_enum_GL_EXT_blend_color
|
2329
2329
|
|
2330
|
-
def
|
2330
|
+
def define_ext_enum_GL_EXT_blend_equation_separate
|
2331
2331
|
const_set('GL_BLEND_EQUATION_RGB_EXT', 0x8009) unless defined?(GL_BLEND_EQUATION_RGB_EXT)
|
2332
2332
|
const_set('GL_BLEND_EQUATION_ALPHA_EXT', 0x883D) unless defined?(GL_BLEND_EQUATION_ALPHA_EXT)
|
2333
|
-
end #
|
2333
|
+
end # define_ext_enum_GL_EXT_blend_equation_separate
|
2334
2334
|
|
2335
|
-
def
|
2335
|
+
def define_ext_enum_GL_EXT_blend_func_separate
|
2336
2336
|
const_set('GL_BLEND_DST_RGB_EXT', 0x80C8) unless defined?(GL_BLEND_DST_RGB_EXT)
|
2337
2337
|
const_set('GL_BLEND_SRC_RGB_EXT', 0x80C9) unless defined?(GL_BLEND_SRC_RGB_EXT)
|
2338
2338
|
const_set('GL_BLEND_DST_ALPHA_EXT', 0x80CA) unless defined?(GL_BLEND_DST_ALPHA_EXT)
|
2339
2339
|
const_set('GL_BLEND_SRC_ALPHA_EXT', 0x80CB) unless defined?(GL_BLEND_SRC_ALPHA_EXT)
|
2340
|
-
end #
|
2340
|
+
end # define_ext_enum_GL_EXT_blend_func_separate
|
2341
2341
|
|
2342
|
-
def
|
2343
|
-
end #
|
2342
|
+
def define_ext_enum_GL_EXT_blend_logic_op
|
2343
|
+
end # define_ext_enum_GL_EXT_blend_logic_op
|
2344
2344
|
|
2345
|
-
def
|
2345
|
+
def define_ext_enum_GL_EXT_blend_minmax
|
2346
2346
|
const_set('GL_MIN_EXT', 0x8007) unless defined?(GL_MIN_EXT)
|
2347
2347
|
const_set('GL_MAX_EXT', 0x8008) unless defined?(GL_MAX_EXT)
|
2348
2348
|
const_set('GL_FUNC_ADD_EXT', 0x8006) unless defined?(GL_FUNC_ADD_EXT)
|
2349
2349
|
const_set('GL_BLEND_EQUATION_EXT', 0x8009) unless defined?(GL_BLEND_EQUATION_EXT)
|
2350
|
-
end #
|
2350
|
+
end # define_ext_enum_GL_EXT_blend_minmax
|
2351
2351
|
|
2352
|
-
def
|
2352
|
+
def define_ext_enum_GL_EXT_blend_subtract
|
2353
2353
|
const_set('GL_FUNC_SUBTRACT_EXT', 0x800A) unless defined?(GL_FUNC_SUBTRACT_EXT)
|
2354
2354
|
const_set('GL_FUNC_REVERSE_SUBTRACT_EXT', 0x800B) unless defined?(GL_FUNC_REVERSE_SUBTRACT_EXT)
|
2355
|
-
end #
|
2355
|
+
end # define_ext_enum_GL_EXT_blend_subtract
|
2356
2356
|
|
2357
|
-
def
|
2357
|
+
def define_ext_enum_GL_EXT_clip_volume_hint
|
2358
2358
|
const_set('GL_CLIP_VOLUME_CLIPPING_HINT_EXT', 0x80F0) unless defined?(GL_CLIP_VOLUME_CLIPPING_HINT_EXT)
|
2359
|
-
end #
|
2359
|
+
end # define_ext_enum_GL_EXT_clip_volume_hint
|
2360
2360
|
|
2361
|
-
def
|
2361
|
+
def define_ext_enum_GL_EXT_cmyka
|
2362
2362
|
const_set('GL_CMYK_EXT', 0x800C) unless defined?(GL_CMYK_EXT)
|
2363
2363
|
const_set('GL_CMYKA_EXT', 0x800D) unless defined?(GL_CMYKA_EXT)
|
2364
2364
|
const_set('GL_PACK_CMYK_HINT_EXT', 0x800E) unless defined?(GL_PACK_CMYK_HINT_EXT)
|
2365
2365
|
const_set('GL_UNPACK_CMYK_HINT_EXT', 0x800F) unless defined?(GL_UNPACK_CMYK_HINT_EXT)
|
2366
|
-
end #
|
2366
|
+
end # define_ext_enum_GL_EXT_cmyka
|
2367
2367
|
|
2368
|
-
def
|
2369
|
-
end #
|
2368
|
+
def define_ext_enum_GL_EXT_color_subtable
|
2369
|
+
end # define_ext_enum_GL_EXT_color_subtable
|
2370
2370
|
|
2371
|
-
def
|
2371
|
+
def define_ext_enum_GL_EXT_compiled_vertex_array
|
2372
2372
|
const_set('GL_ARRAY_ELEMENT_LOCK_FIRST_EXT', 0x81A8) unless defined?(GL_ARRAY_ELEMENT_LOCK_FIRST_EXT)
|
2373
2373
|
const_set('GL_ARRAY_ELEMENT_LOCK_COUNT_EXT', 0x81A9) unless defined?(GL_ARRAY_ELEMENT_LOCK_COUNT_EXT)
|
2374
|
-
end #
|
2374
|
+
end # define_ext_enum_GL_EXT_compiled_vertex_array
|
2375
2375
|
|
2376
|
-
def
|
2376
|
+
def define_ext_enum_GL_EXT_convolution
|
2377
2377
|
const_set('GL_CONVOLUTION_1D_EXT', 0x8010) unless defined?(GL_CONVOLUTION_1D_EXT)
|
2378
2378
|
const_set('GL_CONVOLUTION_2D_EXT', 0x8011) unless defined?(GL_CONVOLUTION_2D_EXT)
|
2379
2379
|
const_set('GL_SEPARABLE_2D_EXT', 0x8012) unless defined?(GL_SEPARABLE_2D_EXT)
|
@@ -2394,9 +2394,9 @@ module OpenGL
|
|
2394
2394
|
const_set('GL_POST_CONVOLUTION_GREEN_BIAS_EXT', 0x8021) unless defined?(GL_POST_CONVOLUTION_GREEN_BIAS_EXT)
|
2395
2395
|
const_set('GL_POST_CONVOLUTION_BLUE_BIAS_EXT', 0x8022) unless defined?(GL_POST_CONVOLUTION_BLUE_BIAS_EXT)
|
2396
2396
|
const_set('GL_POST_CONVOLUTION_ALPHA_BIAS_EXT', 0x8023) unless defined?(GL_POST_CONVOLUTION_ALPHA_BIAS_EXT)
|
2397
|
-
end #
|
2397
|
+
end # define_ext_enum_GL_EXT_convolution
|
2398
2398
|
|
2399
|
-
def
|
2399
|
+
def define_ext_enum_GL_EXT_coordinate_frame
|
2400
2400
|
const_set('GL_TANGENT_ARRAY_EXT', 0x8439) unless defined?(GL_TANGENT_ARRAY_EXT)
|
2401
2401
|
const_set('GL_BINORMAL_ARRAY_EXT', 0x843A) unless defined?(GL_BINORMAL_ARRAY_EXT)
|
2402
2402
|
const_set('GL_CURRENT_TANGENT_EXT', 0x843B) unless defined?(GL_CURRENT_TANGENT_EXT)
|
@@ -2411,18 +2411,18 @@ module OpenGL
|
|
2411
2411
|
const_set('GL_MAP2_TANGENT_EXT', 0x8445) unless defined?(GL_MAP2_TANGENT_EXT)
|
2412
2412
|
const_set('GL_MAP1_BINORMAL_EXT', 0x8446) unless defined?(GL_MAP1_BINORMAL_EXT)
|
2413
2413
|
const_set('GL_MAP2_BINORMAL_EXT', 0x8447) unless defined?(GL_MAP2_BINORMAL_EXT)
|
2414
|
-
end #
|
2414
|
+
end # define_ext_enum_GL_EXT_coordinate_frame
|
2415
2415
|
|
2416
|
-
def
|
2417
|
-
end #
|
2416
|
+
def define_ext_enum_GL_EXT_copy_texture
|
2417
|
+
end # define_ext_enum_GL_EXT_copy_texture
|
2418
2418
|
|
2419
|
-
def
|
2419
|
+
def define_ext_enum_GL_EXT_cull_vertex
|
2420
2420
|
const_set('GL_CULL_VERTEX_EXT', 0x81AA) unless defined?(GL_CULL_VERTEX_EXT)
|
2421
2421
|
const_set('GL_CULL_VERTEX_EYE_POSITION_EXT', 0x81AB) unless defined?(GL_CULL_VERTEX_EYE_POSITION_EXT)
|
2422
2422
|
const_set('GL_CULL_VERTEX_OBJECT_POSITION_EXT', 0x81AC) unless defined?(GL_CULL_VERTEX_OBJECT_POSITION_EXT)
|
2423
|
-
end #
|
2423
|
+
end # define_ext_enum_GL_EXT_cull_vertex
|
2424
2424
|
|
2425
|
-
def
|
2425
|
+
def define_ext_enum_GL_EXT_debug_label
|
2426
2426
|
const_set('GL_PROGRAM_PIPELINE_OBJECT_EXT', 0x8A4F) unless defined?(GL_PROGRAM_PIPELINE_OBJECT_EXT)
|
2427
2427
|
const_set('GL_PROGRAM_OBJECT_EXT', 0x8B40) unless defined?(GL_PROGRAM_OBJECT_EXT)
|
2428
2428
|
const_set('GL_SHADER_OBJECT_EXT', 0x8B48) unless defined?(GL_SHADER_OBJECT_EXT)
|
@@ -2431,34 +2431,34 @@ module OpenGL
|
|
2431
2431
|
const_set('GL_VERTEX_ARRAY_OBJECT_EXT', 0x9154) unless defined?(GL_VERTEX_ARRAY_OBJECT_EXT)
|
2432
2432
|
const_set('GL_SAMPLER', 0x82E6) unless defined?(GL_SAMPLER)
|
2433
2433
|
const_set('GL_TRANSFORM_FEEDBACK', 0x8E22) unless defined?(GL_TRANSFORM_FEEDBACK)
|
2434
|
-
end #
|
2434
|
+
end # define_ext_enum_GL_EXT_debug_label
|
2435
2435
|
|
2436
|
-
def
|
2437
|
-
end #
|
2436
|
+
def define_ext_enum_GL_EXT_debug_marker
|
2437
|
+
end # define_ext_enum_GL_EXT_debug_marker
|
2438
2438
|
|
2439
|
-
def
|
2439
|
+
def define_ext_enum_GL_EXT_depth_bounds_test
|
2440
2440
|
const_set('GL_DEPTH_BOUNDS_TEST_EXT', 0x8890) unless defined?(GL_DEPTH_BOUNDS_TEST_EXT)
|
2441
2441
|
const_set('GL_DEPTH_BOUNDS_EXT', 0x8891) unless defined?(GL_DEPTH_BOUNDS_EXT)
|
2442
|
-
end #
|
2442
|
+
end # define_ext_enum_GL_EXT_depth_bounds_test
|
2443
2443
|
|
2444
|
-
def
|
2444
|
+
def define_ext_enum_GL_EXT_direct_state_access
|
2445
2445
|
const_set('GL_PROGRAM_MATRIX_EXT', 0x8E2D) unless defined?(GL_PROGRAM_MATRIX_EXT)
|
2446
2446
|
const_set('GL_TRANSPOSE_PROGRAM_MATRIX_EXT', 0x8E2E) unless defined?(GL_TRANSPOSE_PROGRAM_MATRIX_EXT)
|
2447
2447
|
const_set('GL_PROGRAM_MATRIX_STACK_DEPTH_EXT', 0x8E2F) unless defined?(GL_PROGRAM_MATRIX_STACK_DEPTH_EXT)
|
2448
|
-
end #
|
2448
|
+
end # define_ext_enum_GL_EXT_direct_state_access
|
2449
2449
|
|
2450
|
-
def
|
2451
|
-
end #
|
2450
|
+
def define_ext_enum_GL_EXT_draw_buffers2
|
2451
|
+
end # define_ext_enum_GL_EXT_draw_buffers2
|
2452
2452
|
|
2453
|
-
def
|
2454
|
-
end #
|
2453
|
+
def define_ext_enum_GL_EXT_draw_instanced
|
2454
|
+
end # define_ext_enum_GL_EXT_draw_instanced
|
2455
2455
|
|
2456
|
-
def
|
2456
|
+
def define_ext_enum_GL_EXT_draw_range_elements
|
2457
2457
|
const_set('GL_MAX_ELEMENTS_VERTICES_EXT', 0x80E8) unless defined?(GL_MAX_ELEMENTS_VERTICES_EXT)
|
2458
2458
|
const_set('GL_MAX_ELEMENTS_INDICES_EXT', 0x80E9) unless defined?(GL_MAX_ELEMENTS_INDICES_EXT)
|
2459
|
-
end #
|
2459
|
+
end # define_ext_enum_GL_EXT_draw_range_elements
|
2460
2460
|
|
2461
|
-
def
|
2461
|
+
def define_ext_enum_GL_EXT_fog_coord
|
2462
2462
|
const_set('GL_FOG_COORDINATE_SOURCE_EXT', 0x8450) unless defined?(GL_FOG_COORDINATE_SOURCE_EXT)
|
2463
2463
|
const_set('GL_FOG_COORDINATE_EXT', 0x8451) unless defined?(GL_FOG_COORDINATE_EXT)
|
2464
2464
|
const_set('GL_FRAGMENT_DEPTH_EXT', 0x8452) unless defined?(GL_FRAGMENT_DEPTH_EXT)
|
@@ -2467,27 +2467,27 @@ module OpenGL
|
|
2467
2467
|
const_set('GL_FOG_COORDINATE_ARRAY_STRIDE_EXT', 0x8455) unless defined?(GL_FOG_COORDINATE_ARRAY_STRIDE_EXT)
|
2468
2468
|
const_set('GL_FOG_COORDINATE_ARRAY_POINTER_EXT', 0x8456) unless defined?(GL_FOG_COORDINATE_ARRAY_POINTER_EXT)
|
2469
2469
|
const_set('GL_FOG_COORDINATE_ARRAY_EXT', 0x8457) unless defined?(GL_FOG_COORDINATE_ARRAY_EXT)
|
2470
|
-
end #
|
2470
|
+
end # define_ext_enum_GL_EXT_fog_coord
|
2471
2471
|
|
2472
|
-
def
|
2472
|
+
def define_ext_enum_GL_EXT_framebuffer_blit
|
2473
2473
|
const_set('GL_READ_FRAMEBUFFER_EXT', 0x8CA8) unless defined?(GL_READ_FRAMEBUFFER_EXT)
|
2474
2474
|
const_set('GL_DRAW_FRAMEBUFFER_EXT', 0x8CA9) unless defined?(GL_DRAW_FRAMEBUFFER_EXT)
|
2475
2475
|
const_set('GL_DRAW_FRAMEBUFFER_BINDING_EXT', 0x8CA6) unless defined?(GL_DRAW_FRAMEBUFFER_BINDING_EXT)
|
2476
2476
|
const_set('GL_READ_FRAMEBUFFER_BINDING_EXT', 0x8CAA) unless defined?(GL_READ_FRAMEBUFFER_BINDING_EXT)
|
2477
|
-
end #
|
2477
|
+
end # define_ext_enum_GL_EXT_framebuffer_blit
|
2478
2478
|
|
2479
|
-
def
|
2479
|
+
def define_ext_enum_GL_EXT_framebuffer_multisample
|
2480
2480
|
const_set('GL_RENDERBUFFER_SAMPLES_EXT', 0x8CAB) unless defined?(GL_RENDERBUFFER_SAMPLES_EXT)
|
2481
2481
|
const_set('GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT', 0x8D56) unless defined?(GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT)
|
2482
2482
|
const_set('GL_MAX_SAMPLES_EXT', 0x8D57) unless defined?(GL_MAX_SAMPLES_EXT)
|
2483
|
-
end #
|
2483
|
+
end # define_ext_enum_GL_EXT_framebuffer_multisample
|
2484
2484
|
|
2485
|
-
def
|
2485
|
+
def define_ext_enum_GL_EXT_framebuffer_multisample_blit_scaled
|
2486
2486
|
const_set('GL_SCALED_RESOLVE_FASTEST_EXT', 0x90BA) unless defined?(GL_SCALED_RESOLVE_FASTEST_EXT)
|
2487
2487
|
const_set('GL_SCALED_RESOLVE_NICEST_EXT', 0x90BB) unless defined?(GL_SCALED_RESOLVE_NICEST_EXT)
|
2488
|
-
end #
|
2488
|
+
end # define_ext_enum_GL_EXT_framebuffer_multisample_blit_scaled
|
2489
2489
|
|
2490
|
-
def
|
2490
|
+
def define_ext_enum_GL_EXT_framebuffer_object
|
2491
2491
|
const_set('GL_INVALID_FRAMEBUFFER_OPERATION_EXT', 0x0506) unless defined?(GL_INVALID_FRAMEBUFFER_OPERATION_EXT)
|
2492
2492
|
const_set('GL_MAX_RENDERBUFFER_SIZE_EXT', 0x84E8) unless defined?(GL_MAX_RENDERBUFFER_SIZE_EXT)
|
2493
2493
|
const_set('GL_FRAMEBUFFER_BINDING_EXT', 0x8CA6) unless defined?(GL_FRAMEBUFFER_BINDING_EXT)
|
@@ -2539,14 +2539,14 @@ module OpenGL
|
|
2539
2539
|
const_set('GL_RENDERBUFFER_ALPHA_SIZE_EXT', 0x8D53) unless defined?(GL_RENDERBUFFER_ALPHA_SIZE_EXT)
|
2540
2540
|
const_set('GL_RENDERBUFFER_DEPTH_SIZE_EXT', 0x8D54) unless defined?(GL_RENDERBUFFER_DEPTH_SIZE_EXT)
|
2541
2541
|
const_set('GL_RENDERBUFFER_STENCIL_SIZE_EXT', 0x8D55) unless defined?(GL_RENDERBUFFER_STENCIL_SIZE_EXT)
|
2542
|
-
end #
|
2542
|
+
end # define_ext_enum_GL_EXT_framebuffer_object
|
2543
2543
|
|
2544
|
-
def
|
2544
|
+
def define_ext_enum_GL_EXT_framebuffer_sRGB
|
2545
2545
|
const_set('GL_FRAMEBUFFER_SRGB_EXT', 0x8DB9) unless defined?(GL_FRAMEBUFFER_SRGB_EXT)
|
2546
2546
|
const_set('GL_FRAMEBUFFER_SRGB_CAPABLE_EXT', 0x8DBA) unless defined?(GL_FRAMEBUFFER_SRGB_CAPABLE_EXT)
|
2547
|
-
end #
|
2547
|
+
end # define_ext_enum_GL_EXT_framebuffer_sRGB
|
2548
2548
|
|
2549
|
-
def
|
2549
|
+
def define_ext_enum_GL_EXT_geometry_shader4
|
2550
2550
|
const_set('GL_GEOMETRY_SHADER_EXT', 0x8DD9) unless defined?(GL_GEOMETRY_SHADER_EXT)
|
2551
2551
|
const_set('GL_GEOMETRY_VERTICES_OUT_EXT', 0x8DDA) unless defined?(GL_GEOMETRY_VERTICES_OUT_EXT)
|
2552
2552
|
const_set('GL_GEOMETRY_INPUT_TYPE_EXT', 0x8DDB) unless defined?(GL_GEOMETRY_INPUT_TYPE_EXT)
|
@@ -2567,12 +2567,12 @@ module OpenGL
|
|
2567
2567
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT', 0x8DA7) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT)
|
2568
2568
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT', 0x8CD4) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT)
|
2569
2569
|
const_set('GL_PROGRAM_POINT_SIZE_EXT', 0x8642) unless defined?(GL_PROGRAM_POINT_SIZE_EXT)
|
2570
|
-
end #
|
2570
|
+
end # define_ext_enum_GL_EXT_geometry_shader4
|
2571
2571
|
|
2572
|
-
def
|
2573
|
-
end #
|
2572
|
+
def define_ext_enum_GL_EXT_gpu_program_parameters
|
2573
|
+
end # define_ext_enum_GL_EXT_gpu_program_parameters
|
2574
2574
|
|
2575
|
-
def
|
2575
|
+
def define_ext_enum_GL_EXT_gpu_shader4
|
2576
2576
|
const_set('GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT', 0x88FD) unless defined?(GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT)
|
2577
2577
|
const_set('GL_SAMPLER_1D_ARRAY_EXT', 0x8DC0) unless defined?(GL_SAMPLER_1D_ARRAY_EXT)
|
2578
2578
|
const_set('GL_SAMPLER_2D_ARRAY_EXT', 0x8DC1) unless defined?(GL_SAMPLER_2D_ARRAY_EXT)
|
@@ -2601,9 +2601,9 @@ module OpenGL
|
|
2601
2601
|
const_set('GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT', 0x8DD8) unless defined?(GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT)
|
2602
2602
|
const_set('GL_MIN_PROGRAM_TEXEL_OFFSET_EXT', 0x8904) unless defined?(GL_MIN_PROGRAM_TEXEL_OFFSET_EXT)
|
2603
2603
|
const_set('GL_MAX_PROGRAM_TEXEL_OFFSET_EXT', 0x8905) unless defined?(GL_MAX_PROGRAM_TEXEL_OFFSET_EXT)
|
2604
|
-
end #
|
2604
|
+
end # define_ext_enum_GL_EXT_gpu_shader4
|
2605
2605
|
|
2606
|
-
def
|
2606
|
+
def define_ext_enum_GL_EXT_histogram
|
2607
2607
|
const_set('GL_HISTOGRAM_EXT', 0x8024) unless defined?(GL_HISTOGRAM_EXT)
|
2608
2608
|
const_set('GL_PROXY_HISTOGRAM_EXT', 0x8025) unless defined?(GL_PROXY_HISTOGRAM_EXT)
|
2609
2609
|
const_set('GL_HISTOGRAM_WIDTH_EXT', 0x8026) unless defined?(GL_HISTOGRAM_WIDTH_EXT)
|
@@ -2618,9 +2618,9 @@ module OpenGL
|
|
2618
2618
|
const_set('GL_MINMAX_FORMAT_EXT', 0x802F) unless defined?(GL_MINMAX_FORMAT_EXT)
|
2619
2619
|
const_set('GL_MINMAX_SINK_EXT', 0x8030) unless defined?(GL_MINMAX_SINK_EXT)
|
2620
2620
|
const_set('GL_TABLE_TOO_LARGE_EXT', 0x8031) unless defined?(GL_TABLE_TOO_LARGE_EXT)
|
2621
|
-
end #
|
2621
|
+
end # define_ext_enum_GL_EXT_histogram
|
2622
2622
|
|
2623
|
-
def
|
2623
|
+
def define_ext_enum_GL_EXT_index_array_formats
|
2624
2624
|
const_set('GL_IUI_V2F_EXT', 0x81AD) unless defined?(GL_IUI_V2F_EXT)
|
2625
2625
|
const_set('GL_IUI_V3F_EXT', 0x81AE) unless defined?(GL_IUI_V3F_EXT)
|
2626
2626
|
const_set('GL_IUI_N3F_V2F_EXT', 0x81AF) unless defined?(GL_IUI_N3F_V2F_EXT)
|
@@ -2629,24 +2629,24 @@ module OpenGL
|
|
2629
2629
|
const_set('GL_T2F_IUI_V3F_EXT', 0x81B2) unless defined?(GL_T2F_IUI_V3F_EXT)
|
2630
2630
|
const_set('GL_T2F_IUI_N3F_V2F_EXT', 0x81B3) unless defined?(GL_T2F_IUI_N3F_V2F_EXT)
|
2631
2631
|
const_set('GL_T2F_IUI_N3F_V3F_EXT', 0x81B4) unless defined?(GL_T2F_IUI_N3F_V3F_EXT)
|
2632
|
-
end #
|
2632
|
+
end # define_ext_enum_GL_EXT_index_array_formats
|
2633
2633
|
|
2634
|
-
def
|
2634
|
+
def define_ext_enum_GL_EXT_index_func
|
2635
2635
|
const_set('GL_INDEX_TEST_EXT', 0x81B5) unless defined?(GL_INDEX_TEST_EXT)
|
2636
2636
|
const_set('GL_INDEX_TEST_FUNC_EXT', 0x81B6) unless defined?(GL_INDEX_TEST_FUNC_EXT)
|
2637
2637
|
const_set('GL_INDEX_TEST_REF_EXT', 0x81B7) unless defined?(GL_INDEX_TEST_REF_EXT)
|
2638
|
-
end #
|
2638
|
+
end # define_ext_enum_GL_EXT_index_func
|
2639
2639
|
|
2640
|
-
def
|
2640
|
+
def define_ext_enum_GL_EXT_index_material
|
2641
2641
|
const_set('GL_INDEX_MATERIAL_EXT', 0x81B8) unless defined?(GL_INDEX_MATERIAL_EXT)
|
2642
2642
|
const_set('GL_INDEX_MATERIAL_PARAMETER_EXT', 0x81B9) unless defined?(GL_INDEX_MATERIAL_PARAMETER_EXT)
|
2643
2643
|
const_set('GL_INDEX_MATERIAL_FACE_EXT', 0x81BA) unless defined?(GL_INDEX_MATERIAL_FACE_EXT)
|
2644
|
-
end #
|
2644
|
+
end # define_ext_enum_GL_EXT_index_material
|
2645
2645
|
|
2646
|
-
def
|
2647
|
-
end #
|
2646
|
+
def define_ext_enum_GL_EXT_index_texture
|
2647
|
+
end # define_ext_enum_GL_EXT_index_texture
|
2648
2648
|
|
2649
|
-
def
|
2649
|
+
def define_ext_enum_GL_EXT_light_texture
|
2650
2650
|
const_set('GL_FRAGMENT_MATERIAL_EXT', 0x8349) unless defined?(GL_FRAGMENT_MATERIAL_EXT)
|
2651
2651
|
const_set('GL_FRAGMENT_NORMAL_EXT', 0x834A) unless defined?(GL_FRAGMENT_NORMAL_EXT)
|
2652
2652
|
const_set('GL_FRAGMENT_COLOR_EXT', 0x834C) unless defined?(GL_FRAGMENT_COLOR_EXT)
|
@@ -2657,15 +2657,15 @@ module OpenGL
|
|
2657
2657
|
const_set('GL_TEXTURE_MATERIAL_FACE_EXT', 0x8351) unless defined?(GL_TEXTURE_MATERIAL_FACE_EXT)
|
2658
2658
|
const_set('GL_TEXTURE_MATERIAL_PARAMETER_EXT', 0x8352) unless defined?(GL_TEXTURE_MATERIAL_PARAMETER_EXT)
|
2659
2659
|
const_set('GL_FRAGMENT_DEPTH_EXT', 0x8452) unless defined?(GL_FRAGMENT_DEPTH_EXT)
|
2660
|
-
end #
|
2660
|
+
end # define_ext_enum_GL_EXT_light_texture
|
2661
2661
|
|
2662
|
-
def
|
2663
|
-
end #
|
2662
|
+
def define_ext_enum_GL_EXT_misc_attribute
|
2663
|
+
end # define_ext_enum_GL_EXT_misc_attribute
|
2664
2664
|
|
2665
|
-
def
|
2666
|
-
end #
|
2665
|
+
def define_ext_enum_GL_EXT_multi_draw_arrays
|
2666
|
+
end # define_ext_enum_GL_EXT_multi_draw_arrays
|
2667
2667
|
|
2668
|
-
def
|
2668
|
+
def define_ext_enum_GL_EXT_multisample
|
2669
2669
|
const_set('GL_MULTISAMPLE_EXT', 0x809D) unless defined?(GL_MULTISAMPLE_EXT)
|
2670
2670
|
const_set('GL_SAMPLE_ALPHA_TO_MASK_EXT', 0x809E) unless defined?(GL_SAMPLE_ALPHA_TO_MASK_EXT)
|
2671
2671
|
const_set('GL_SAMPLE_ALPHA_TO_ONE_EXT', 0x809F) unless defined?(GL_SAMPLE_ALPHA_TO_ONE_EXT)
|
@@ -2683,30 +2683,30 @@ module OpenGL
|
|
2683
2683
|
const_set('GL_SAMPLE_MASK_INVERT_EXT', 0x80AB) unless defined?(GL_SAMPLE_MASK_INVERT_EXT)
|
2684
2684
|
const_set('GL_SAMPLE_PATTERN_EXT', 0x80AC) unless defined?(GL_SAMPLE_PATTERN_EXT)
|
2685
2685
|
const_set('GL_MULTISAMPLE_BIT_EXT', 0x20000000) unless defined?(GL_MULTISAMPLE_BIT_EXT)
|
2686
|
-
end #
|
2686
|
+
end # define_ext_enum_GL_EXT_multisample
|
2687
2687
|
|
2688
|
-
def
|
2688
|
+
def define_ext_enum_GL_EXT_packed_depth_stencil
|
2689
2689
|
const_set('GL_DEPTH_STENCIL_EXT', 0x84F9) unless defined?(GL_DEPTH_STENCIL_EXT)
|
2690
2690
|
const_set('GL_UNSIGNED_INT_24_8_EXT', 0x84FA) unless defined?(GL_UNSIGNED_INT_24_8_EXT)
|
2691
2691
|
const_set('GL_DEPTH24_STENCIL8_EXT', 0x88F0) unless defined?(GL_DEPTH24_STENCIL8_EXT)
|
2692
2692
|
const_set('GL_TEXTURE_STENCIL_SIZE_EXT', 0x88F1) unless defined?(GL_TEXTURE_STENCIL_SIZE_EXT)
|
2693
|
-
end #
|
2693
|
+
end # define_ext_enum_GL_EXT_packed_depth_stencil
|
2694
2694
|
|
2695
|
-
def
|
2695
|
+
def define_ext_enum_GL_EXT_packed_float
|
2696
2696
|
const_set('GL_R11F_G11F_B10F_EXT', 0x8C3A) unless defined?(GL_R11F_G11F_B10F_EXT)
|
2697
2697
|
const_set('GL_UNSIGNED_INT_10F_11F_11F_REV_EXT', 0x8C3B) unless defined?(GL_UNSIGNED_INT_10F_11F_11F_REV_EXT)
|
2698
2698
|
const_set('GL_RGBA_SIGNED_COMPONENTS_EXT', 0x8C3C) unless defined?(GL_RGBA_SIGNED_COMPONENTS_EXT)
|
2699
|
-
end #
|
2699
|
+
end # define_ext_enum_GL_EXT_packed_float
|
2700
2700
|
|
2701
|
-
def
|
2701
|
+
def define_ext_enum_GL_EXT_packed_pixels
|
2702
2702
|
const_set('GL_UNSIGNED_BYTE_3_3_2_EXT', 0x8032) unless defined?(GL_UNSIGNED_BYTE_3_3_2_EXT)
|
2703
2703
|
const_set('GL_UNSIGNED_SHORT_4_4_4_4_EXT', 0x8033) unless defined?(GL_UNSIGNED_SHORT_4_4_4_4_EXT)
|
2704
2704
|
const_set('GL_UNSIGNED_SHORT_5_5_5_1_EXT', 0x8034) unless defined?(GL_UNSIGNED_SHORT_5_5_5_1_EXT)
|
2705
2705
|
const_set('GL_UNSIGNED_INT_8_8_8_8_EXT', 0x8035) unless defined?(GL_UNSIGNED_INT_8_8_8_8_EXT)
|
2706
2706
|
const_set('GL_UNSIGNED_INT_10_10_10_2_EXT', 0x8036) unless defined?(GL_UNSIGNED_INT_10_10_10_2_EXT)
|
2707
|
-
end #
|
2707
|
+
end # define_ext_enum_GL_EXT_packed_pixels
|
2708
2708
|
|
2709
|
-
def
|
2709
|
+
def define_ext_enum_GL_EXT_paletted_texture
|
2710
2710
|
const_set('GL_COLOR_INDEX1_EXT', 0x80E2) unless defined?(GL_COLOR_INDEX1_EXT)
|
2711
2711
|
const_set('GL_COLOR_INDEX2_EXT', 0x80E3) unless defined?(GL_COLOR_INDEX2_EXT)
|
2712
2712
|
const_set('GL_COLOR_INDEX4_EXT', 0x80E4) unless defined?(GL_COLOR_INDEX4_EXT)
|
@@ -2714,16 +2714,16 @@ module OpenGL
|
|
2714
2714
|
const_set('GL_COLOR_INDEX12_EXT', 0x80E6) unless defined?(GL_COLOR_INDEX12_EXT)
|
2715
2715
|
const_set('GL_COLOR_INDEX16_EXT', 0x80E7) unless defined?(GL_COLOR_INDEX16_EXT)
|
2716
2716
|
const_set('GL_TEXTURE_INDEX_SIZE_EXT', 0x80ED) unless defined?(GL_TEXTURE_INDEX_SIZE_EXT)
|
2717
|
-
end #
|
2717
|
+
end # define_ext_enum_GL_EXT_paletted_texture
|
2718
2718
|
|
2719
|
-
def
|
2719
|
+
def define_ext_enum_GL_EXT_pixel_buffer_object
|
2720
2720
|
const_set('GL_PIXEL_PACK_BUFFER_EXT', 0x88EB) unless defined?(GL_PIXEL_PACK_BUFFER_EXT)
|
2721
2721
|
const_set('GL_PIXEL_UNPACK_BUFFER_EXT', 0x88EC) unless defined?(GL_PIXEL_UNPACK_BUFFER_EXT)
|
2722
2722
|
const_set('GL_PIXEL_PACK_BUFFER_BINDING_EXT', 0x88ED) unless defined?(GL_PIXEL_PACK_BUFFER_BINDING_EXT)
|
2723
2723
|
const_set('GL_PIXEL_UNPACK_BUFFER_BINDING_EXT', 0x88EF) unless defined?(GL_PIXEL_UNPACK_BUFFER_BINDING_EXT)
|
2724
|
-
end #
|
2724
|
+
end # define_ext_enum_GL_EXT_pixel_buffer_object
|
2725
2725
|
|
2726
|
-
def
|
2726
|
+
def define_ext_enum_GL_EXT_pixel_transform
|
2727
2727
|
const_set('GL_PIXEL_TRANSFORM_2D_EXT', 0x8330) unless defined?(GL_PIXEL_TRANSFORM_2D_EXT)
|
2728
2728
|
const_set('GL_PIXEL_MAG_FILTER_EXT', 0x8331) unless defined?(GL_PIXEL_MAG_FILTER_EXT)
|
2729
2729
|
const_set('GL_PIXEL_MIN_FILTER_EXT', 0x8332) unless defined?(GL_PIXEL_MIN_FILTER_EXT)
|
@@ -2733,36 +2733,36 @@ module OpenGL
|
|
2733
2733
|
const_set('GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT', 0x8336) unless defined?(GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT)
|
2734
2734
|
const_set('GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT', 0x8337) unless defined?(GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT)
|
2735
2735
|
const_set('GL_PIXEL_TRANSFORM_2D_MATRIX_EXT', 0x8338) unless defined?(GL_PIXEL_TRANSFORM_2D_MATRIX_EXT)
|
2736
|
-
end #
|
2736
|
+
end # define_ext_enum_GL_EXT_pixel_transform
|
2737
2737
|
|
2738
|
-
def
|
2739
|
-
end #
|
2738
|
+
def define_ext_enum_GL_EXT_pixel_transform_color_table
|
2739
|
+
end # define_ext_enum_GL_EXT_pixel_transform_color_table
|
2740
2740
|
|
2741
|
-
def
|
2741
|
+
def define_ext_enum_GL_EXT_point_parameters
|
2742
2742
|
const_set('GL_POINT_SIZE_MIN_EXT', 0x8126) unless defined?(GL_POINT_SIZE_MIN_EXT)
|
2743
2743
|
const_set('GL_POINT_SIZE_MAX_EXT', 0x8127) unless defined?(GL_POINT_SIZE_MAX_EXT)
|
2744
2744
|
const_set('GL_POINT_FADE_THRESHOLD_SIZE_EXT', 0x8128) unless defined?(GL_POINT_FADE_THRESHOLD_SIZE_EXT)
|
2745
2745
|
const_set('GL_DISTANCE_ATTENUATION_EXT', 0x8129) unless defined?(GL_DISTANCE_ATTENUATION_EXT)
|
2746
|
-
end #
|
2746
|
+
end # define_ext_enum_GL_EXT_point_parameters
|
2747
2747
|
|
2748
|
-
def
|
2748
|
+
def define_ext_enum_GL_EXT_polygon_offset
|
2749
2749
|
const_set('GL_POLYGON_OFFSET_EXT', 0x8037) unless defined?(GL_POLYGON_OFFSET_EXT)
|
2750
2750
|
const_set('GL_POLYGON_OFFSET_FACTOR_EXT', 0x8038) unless defined?(GL_POLYGON_OFFSET_FACTOR_EXT)
|
2751
2751
|
const_set('GL_POLYGON_OFFSET_BIAS_EXT', 0x8039) unless defined?(GL_POLYGON_OFFSET_BIAS_EXT)
|
2752
|
-
end #
|
2752
|
+
end # define_ext_enum_GL_EXT_polygon_offset
|
2753
2753
|
|
2754
|
-
def
|
2754
|
+
def define_ext_enum_GL_EXT_provoking_vertex
|
2755
2755
|
const_set('GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT', 0x8E4C) unless defined?(GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT)
|
2756
2756
|
const_set('GL_FIRST_VERTEX_CONVENTION_EXT', 0x8E4D) unless defined?(GL_FIRST_VERTEX_CONVENTION_EXT)
|
2757
2757
|
const_set('GL_LAST_VERTEX_CONVENTION_EXT', 0x8E4E) unless defined?(GL_LAST_VERTEX_CONVENTION_EXT)
|
2758
2758
|
const_set('GL_PROVOKING_VERTEX_EXT', 0x8E4F) unless defined?(GL_PROVOKING_VERTEX_EXT)
|
2759
|
-
end #
|
2759
|
+
end # define_ext_enum_GL_EXT_provoking_vertex
|
2760
2760
|
|
2761
|
-
def
|
2761
|
+
def define_ext_enum_GL_EXT_rescale_normal
|
2762
2762
|
const_set('GL_RESCALE_NORMAL_EXT', 0x803A) unless defined?(GL_RESCALE_NORMAL_EXT)
|
2763
|
-
end #
|
2763
|
+
end # define_ext_enum_GL_EXT_rescale_normal
|
2764
2764
|
|
2765
|
-
def
|
2765
|
+
def define_ext_enum_GL_EXT_secondary_color
|
2766
2766
|
const_set('GL_COLOR_SUM_EXT', 0x8458) unless defined?(GL_COLOR_SUM_EXT)
|
2767
2767
|
const_set('GL_CURRENT_SECONDARY_COLOR_EXT', 0x8459) unless defined?(GL_CURRENT_SECONDARY_COLOR_EXT)
|
2768
2768
|
const_set('GL_SECONDARY_COLOR_ARRAY_SIZE_EXT', 0x845A) unless defined?(GL_SECONDARY_COLOR_ARRAY_SIZE_EXT)
|
@@ -2770,24 +2770,24 @@ module OpenGL
|
|
2770
2770
|
const_set('GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT', 0x845C) unless defined?(GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT)
|
2771
2771
|
const_set('GL_SECONDARY_COLOR_ARRAY_POINTER_EXT', 0x845D) unless defined?(GL_SECONDARY_COLOR_ARRAY_POINTER_EXT)
|
2772
2772
|
const_set('GL_SECONDARY_COLOR_ARRAY_EXT', 0x845E) unless defined?(GL_SECONDARY_COLOR_ARRAY_EXT)
|
2773
|
-
end #
|
2773
|
+
end # define_ext_enum_GL_EXT_secondary_color
|
2774
2774
|
|
2775
|
-
def
|
2776
|
-
const_set('GL_ACTIVE_PROGRAM_EXT',
|
2775
|
+
def define_ext_enum_GL_EXT_separate_shader_objects
|
2776
|
+
const_set('GL_ACTIVE_PROGRAM_EXT', 0x8B8D) unless defined?(GL_ACTIVE_PROGRAM_EXT)
|
2777
2777
|
const_set('GL_VERTEX_SHADER_BIT_EXT', 0x00000001) unless defined?(GL_VERTEX_SHADER_BIT_EXT)
|
2778
2778
|
const_set('GL_FRAGMENT_SHADER_BIT_EXT', 0x00000002) unless defined?(GL_FRAGMENT_SHADER_BIT_EXT)
|
2779
2779
|
const_set('GL_ALL_SHADER_BITS_EXT', 0xFFFFFFFF) unless defined?(GL_ALL_SHADER_BITS_EXT)
|
2780
2780
|
const_set('GL_PROGRAM_SEPARABLE_EXT', 0x8258) unless defined?(GL_PROGRAM_SEPARABLE_EXT)
|
2781
2781
|
const_set('GL_PROGRAM_PIPELINE_BINDING_EXT', 0x825A) unless defined?(GL_PROGRAM_PIPELINE_BINDING_EXT)
|
2782
|
-
end #
|
2782
|
+
end # define_ext_enum_GL_EXT_separate_shader_objects
|
2783
2783
|
|
2784
|
-
def
|
2784
|
+
def define_ext_enum_GL_EXT_separate_specular_color
|
2785
2785
|
const_set('GL_LIGHT_MODEL_COLOR_CONTROL_EXT', 0x81F8) unless defined?(GL_LIGHT_MODEL_COLOR_CONTROL_EXT)
|
2786
2786
|
const_set('GL_SINGLE_COLOR_EXT', 0x81F9) unless defined?(GL_SINGLE_COLOR_EXT)
|
2787
2787
|
const_set('GL_SEPARATE_SPECULAR_COLOR_EXT', 0x81FA) unless defined?(GL_SEPARATE_SPECULAR_COLOR_EXT)
|
2788
|
-
end #
|
2788
|
+
end # define_ext_enum_GL_EXT_separate_specular_color
|
2789
2789
|
|
2790
|
-
def
|
2790
|
+
def define_ext_enum_GL_EXT_shader_image_load_store
|
2791
2791
|
const_set('GL_MAX_IMAGE_UNITS_EXT', 0x8F38) unless defined?(GL_MAX_IMAGE_UNITS_EXT)
|
2792
2792
|
const_set('GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT', 0x8F39) unless defined?(GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT)
|
2793
2793
|
const_set('GL_IMAGE_BINDING_NAME_EXT', 0x8F3A) unless defined?(GL_IMAGE_BINDING_NAME_EXT)
|
@@ -2843,37 +2843,37 @@ module OpenGL
|
|
2843
2843
|
const_set('GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT', 0x00000800) unless defined?(GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT)
|
2844
2844
|
const_set('GL_ATOMIC_COUNTER_BARRIER_BIT_EXT', 0x00001000) unless defined?(GL_ATOMIC_COUNTER_BARRIER_BIT_EXT)
|
2845
2845
|
const_set('GL_ALL_BARRIER_BITS_EXT', 0xFFFFFFFF) unless defined?(GL_ALL_BARRIER_BITS_EXT)
|
2846
|
-
end #
|
2846
|
+
end # define_ext_enum_GL_EXT_shader_image_load_store
|
2847
2847
|
|
2848
|
-
def
|
2849
|
-
end #
|
2848
|
+
def define_ext_enum_GL_EXT_shader_integer_mix
|
2849
|
+
end # define_ext_enum_GL_EXT_shader_integer_mix
|
2850
2850
|
|
2851
|
-
def
|
2852
|
-
end #
|
2851
|
+
def define_ext_enum_GL_EXT_shadow_funcs
|
2852
|
+
end # define_ext_enum_GL_EXT_shadow_funcs
|
2853
2853
|
|
2854
|
-
def
|
2854
|
+
def define_ext_enum_GL_EXT_shared_texture_palette
|
2855
2855
|
const_set('GL_SHARED_TEXTURE_PALETTE_EXT', 0x81FB) unless defined?(GL_SHARED_TEXTURE_PALETTE_EXT)
|
2856
|
-
end #
|
2856
|
+
end # define_ext_enum_GL_EXT_shared_texture_palette
|
2857
2857
|
|
2858
|
-
def
|
2858
|
+
def define_ext_enum_GL_EXT_stencil_clear_tag
|
2859
2859
|
const_set('GL_STENCIL_TAG_BITS_EXT', 0x88F2) unless defined?(GL_STENCIL_TAG_BITS_EXT)
|
2860
2860
|
const_set('GL_STENCIL_CLEAR_TAG_VALUE_EXT', 0x88F3) unless defined?(GL_STENCIL_CLEAR_TAG_VALUE_EXT)
|
2861
|
-
end #
|
2861
|
+
end # define_ext_enum_GL_EXT_stencil_clear_tag
|
2862
2862
|
|
2863
|
-
def
|
2863
|
+
def define_ext_enum_GL_EXT_stencil_two_side
|
2864
2864
|
const_set('GL_STENCIL_TEST_TWO_SIDE_EXT', 0x8910) unless defined?(GL_STENCIL_TEST_TWO_SIDE_EXT)
|
2865
2865
|
const_set('GL_ACTIVE_STENCIL_FACE_EXT', 0x8911) unless defined?(GL_ACTIVE_STENCIL_FACE_EXT)
|
2866
|
-
end #
|
2866
|
+
end # define_ext_enum_GL_EXT_stencil_two_side
|
2867
2867
|
|
2868
|
-
def
|
2868
|
+
def define_ext_enum_GL_EXT_stencil_wrap
|
2869
2869
|
const_set('GL_INCR_WRAP_EXT', 0x8507) unless defined?(GL_INCR_WRAP_EXT)
|
2870
2870
|
const_set('GL_DECR_WRAP_EXT', 0x8508) unless defined?(GL_DECR_WRAP_EXT)
|
2871
|
-
end #
|
2871
|
+
end # define_ext_enum_GL_EXT_stencil_wrap
|
2872
2872
|
|
2873
|
-
def
|
2874
|
-
end #
|
2873
|
+
def define_ext_enum_GL_EXT_subtexture
|
2874
|
+
end # define_ext_enum_GL_EXT_subtexture
|
2875
2875
|
|
2876
|
-
def
|
2876
|
+
def define_ext_enum_GL_EXT_texture
|
2877
2877
|
const_set('GL_ALPHA4_EXT', 0x803B) unless defined?(GL_ALPHA4_EXT)
|
2878
2878
|
const_set('GL_ALPHA8_EXT', 0x803C) unless defined?(GL_ALPHA8_EXT)
|
2879
2879
|
const_set('GL_ALPHA12_EXT', 0x803D) unless defined?(GL_ALPHA12_EXT)
|
@@ -2917,9 +2917,9 @@ module OpenGL
|
|
2917
2917
|
const_set('GL_PROXY_TEXTURE_1D_EXT', 0x8063) unless defined?(GL_PROXY_TEXTURE_1D_EXT)
|
2918
2918
|
const_set('GL_PROXY_TEXTURE_2D_EXT', 0x8064) unless defined?(GL_PROXY_TEXTURE_2D_EXT)
|
2919
2919
|
const_set('GL_TEXTURE_TOO_LARGE_EXT', 0x8065) unless defined?(GL_TEXTURE_TOO_LARGE_EXT)
|
2920
|
-
end #
|
2920
|
+
end # define_ext_enum_GL_EXT_texture
|
2921
2921
|
|
2922
|
-
def
|
2922
|
+
def define_ext_enum_GL_EXT_texture3D
|
2923
2923
|
const_set('GL_PACK_SKIP_IMAGES_EXT', 0x806B) unless defined?(GL_PACK_SKIP_IMAGES_EXT)
|
2924
2924
|
const_set('GL_PACK_IMAGE_HEIGHT_EXT', 0x806C) unless defined?(GL_PACK_IMAGE_HEIGHT_EXT)
|
2925
2925
|
const_set('GL_UNPACK_SKIP_IMAGES_EXT', 0x806D) unless defined?(GL_UNPACK_SKIP_IMAGES_EXT)
|
@@ -2929,9 +2929,9 @@ module OpenGL
|
|
2929
2929
|
const_set('GL_TEXTURE_DEPTH_EXT', 0x8071) unless defined?(GL_TEXTURE_DEPTH_EXT)
|
2930
2930
|
const_set('GL_TEXTURE_WRAP_R_EXT', 0x8072) unless defined?(GL_TEXTURE_WRAP_R_EXT)
|
2931
2931
|
const_set('GL_MAX_3D_TEXTURE_SIZE_EXT', 0x8073) unless defined?(GL_MAX_3D_TEXTURE_SIZE_EXT)
|
2932
|
-
end #
|
2932
|
+
end # define_ext_enum_GL_EXT_texture3D
|
2933
2933
|
|
2934
|
-
def
|
2934
|
+
def define_ext_enum_GL_EXT_texture_array
|
2935
2935
|
const_set('GL_TEXTURE_1D_ARRAY_EXT', 0x8C18) unless defined?(GL_TEXTURE_1D_ARRAY_EXT)
|
2936
2936
|
const_set('GL_PROXY_TEXTURE_1D_ARRAY_EXT', 0x8C19) unless defined?(GL_PROXY_TEXTURE_1D_ARRAY_EXT)
|
2937
2937
|
const_set('GL_TEXTURE_2D_ARRAY_EXT', 0x8C1A) unless defined?(GL_TEXTURE_2D_ARRAY_EXT)
|
@@ -2941,38 +2941,38 @@ module OpenGL
|
|
2941
2941
|
const_set('GL_MAX_ARRAY_TEXTURE_LAYERS_EXT', 0x88FF) unless defined?(GL_MAX_ARRAY_TEXTURE_LAYERS_EXT)
|
2942
2942
|
const_set('GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT', 0x884E) unless defined?(GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT)
|
2943
2943
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT', 0x8CD4) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT)
|
2944
|
-
end #
|
2944
|
+
end # define_ext_enum_GL_EXT_texture_array
|
2945
2945
|
|
2946
|
-
def
|
2946
|
+
def define_ext_enum_GL_EXT_texture_buffer_object
|
2947
2947
|
const_set('GL_TEXTURE_BUFFER_EXT', 0x8C2A) unless defined?(GL_TEXTURE_BUFFER_EXT)
|
2948
2948
|
const_set('GL_MAX_TEXTURE_BUFFER_SIZE_EXT', 0x8C2B) unless defined?(GL_MAX_TEXTURE_BUFFER_SIZE_EXT)
|
2949
2949
|
const_set('GL_TEXTURE_BINDING_BUFFER_EXT', 0x8C2C) unless defined?(GL_TEXTURE_BINDING_BUFFER_EXT)
|
2950
2950
|
const_set('GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT', 0x8C2D) unless defined?(GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT)
|
2951
2951
|
const_set('GL_TEXTURE_BUFFER_FORMAT_EXT', 0x8C2E) unless defined?(GL_TEXTURE_BUFFER_FORMAT_EXT)
|
2952
|
-
end #
|
2952
|
+
end # define_ext_enum_GL_EXT_texture_buffer_object
|
2953
2953
|
|
2954
|
-
def
|
2954
|
+
def define_ext_enum_GL_EXT_texture_compression_latc
|
2955
2955
|
const_set('GL_COMPRESSED_LUMINANCE_LATC1_EXT', 0x8C70) unless defined?(GL_COMPRESSED_LUMINANCE_LATC1_EXT)
|
2956
2956
|
const_set('GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT', 0x8C71) unless defined?(GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT)
|
2957
2957
|
const_set('GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT', 0x8C72) unless defined?(GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT)
|
2958
2958
|
const_set('GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT', 0x8C73) unless defined?(GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT)
|
2959
|
-
end #
|
2959
|
+
end # define_ext_enum_GL_EXT_texture_compression_latc
|
2960
2960
|
|
2961
|
-
def
|
2961
|
+
def define_ext_enum_GL_EXT_texture_compression_rgtc
|
2962
2962
|
const_set('GL_COMPRESSED_RED_RGTC1_EXT', 0x8DBB) unless defined?(GL_COMPRESSED_RED_RGTC1_EXT)
|
2963
2963
|
const_set('GL_COMPRESSED_SIGNED_RED_RGTC1_EXT', 0x8DBC) unless defined?(GL_COMPRESSED_SIGNED_RED_RGTC1_EXT)
|
2964
2964
|
const_set('GL_COMPRESSED_RED_GREEN_RGTC2_EXT', 0x8DBD) unless defined?(GL_COMPRESSED_RED_GREEN_RGTC2_EXT)
|
2965
2965
|
const_set('GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT', 0x8DBE) unless defined?(GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT)
|
2966
|
-
end #
|
2966
|
+
end # define_ext_enum_GL_EXT_texture_compression_rgtc
|
2967
2967
|
|
2968
|
-
def
|
2968
|
+
def define_ext_enum_GL_EXT_texture_compression_s3tc
|
2969
2969
|
const_set('GL_COMPRESSED_RGB_S3TC_DXT1_EXT', 0x83F0) unless defined?(GL_COMPRESSED_RGB_S3TC_DXT1_EXT)
|
2970
2970
|
const_set('GL_COMPRESSED_RGBA_S3TC_DXT1_EXT', 0x83F1) unless defined?(GL_COMPRESSED_RGBA_S3TC_DXT1_EXT)
|
2971
2971
|
const_set('GL_COMPRESSED_RGBA_S3TC_DXT3_EXT', 0x83F2) unless defined?(GL_COMPRESSED_RGBA_S3TC_DXT3_EXT)
|
2972
2972
|
const_set('GL_COMPRESSED_RGBA_S3TC_DXT5_EXT', 0x83F3) unless defined?(GL_COMPRESSED_RGBA_S3TC_DXT5_EXT)
|
2973
|
-
end #
|
2973
|
+
end # define_ext_enum_GL_EXT_texture_compression_s3tc
|
2974
2974
|
|
2975
|
-
def
|
2975
|
+
def define_ext_enum_GL_EXT_texture_cube_map
|
2976
2976
|
const_set('GL_NORMAL_MAP_EXT', 0x8511) unless defined?(GL_NORMAL_MAP_EXT)
|
2977
2977
|
const_set('GL_REFLECTION_MAP_EXT', 0x8512) unless defined?(GL_REFLECTION_MAP_EXT)
|
2978
2978
|
const_set('GL_TEXTURE_CUBE_MAP_EXT', 0x8513) unless defined?(GL_TEXTURE_CUBE_MAP_EXT)
|
@@ -2985,12 +2985,12 @@ module OpenGL
|
|
2985
2985
|
const_set('GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT', 0x851A) unless defined?(GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT)
|
2986
2986
|
const_set('GL_PROXY_TEXTURE_CUBE_MAP_EXT', 0x851B) unless defined?(GL_PROXY_TEXTURE_CUBE_MAP_EXT)
|
2987
2987
|
const_set('GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT', 0x851C) unless defined?(GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT)
|
2988
|
-
end #
|
2988
|
+
end # define_ext_enum_GL_EXT_texture_cube_map
|
2989
2989
|
|
2990
|
-
def
|
2991
|
-
end #
|
2990
|
+
def define_ext_enum_GL_EXT_texture_env_add
|
2991
|
+
end # define_ext_enum_GL_EXT_texture_env_add
|
2992
2992
|
|
2993
|
-
def
|
2993
|
+
def define_ext_enum_GL_EXT_texture_env_combine
|
2994
2994
|
const_set('GL_COMBINE_EXT', 0x8570) unless defined?(GL_COMBINE_EXT)
|
2995
2995
|
const_set('GL_COMBINE_RGB_EXT', 0x8571) unless defined?(GL_COMBINE_RGB_EXT)
|
2996
2996
|
const_set('GL_COMBINE_ALPHA_EXT', 0x8572) unless defined?(GL_COMBINE_ALPHA_EXT)
|
@@ -3012,19 +3012,19 @@ module OpenGL
|
|
3012
3012
|
const_set('GL_OPERAND0_ALPHA_EXT', 0x8598) unless defined?(GL_OPERAND0_ALPHA_EXT)
|
3013
3013
|
const_set('GL_OPERAND1_ALPHA_EXT', 0x8599) unless defined?(GL_OPERAND1_ALPHA_EXT)
|
3014
3014
|
const_set('GL_OPERAND2_ALPHA_EXT', 0x859A) unless defined?(GL_OPERAND2_ALPHA_EXT)
|
3015
|
-
end #
|
3015
|
+
end # define_ext_enum_GL_EXT_texture_env_combine
|
3016
3016
|
|
3017
|
-
def
|
3017
|
+
def define_ext_enum_GL_EXT_texture_env_dot3
|
3018
3018
|
const_set('GL_DOT3_RGB_EXT', 0x8740) unless defined?(GL_DOT3_RGB_EXT)
|
3019
3019
|
const_set('GL_DOT3_RGBA_EXT', 0x8741) unless defined?(GL_DOT3_RGBA_EXT)
|
3020
|
-
end #
|
3020
|
+
end # define_ext_enum_GL_EXT_texture_env_dot3
|
3021
3021
|
|
3022
|
-
def
|
3022
|
+
def define_ext_enum_GL_EXT_texture_filter_anisotropic
|
3023
3023
|
const_set('GL_TEXTURE_MAX_ANISOTROPY_EXT', 0x84FE) unless defined?(GL_TEXTURE_MAX_ANISOTROPY_EXT)
|
3024
3024
|
const_set('GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT', 0x84FF) unless defined?(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT)
|
3025
|
-
end #
|
3025
|
+
end # define_ext_enum_GL_EXT_texture_filter_anisotropic
|
3026
3026
|
|
3027
|
-
def
|
3027
|
+
def define_ext_enum_GL_EXT_texture_integer
|
3028
3028
|
const_set('GL_RGBA32UI_EXT', 0x8D70) unless defined?(GL_RGBA32UI_EXT)
|
3029
3029
|
const_set('GL_RGB32UI_EXT', 0x8D71) unless defined?(GL_RGB32UI_EXT)
|
3030
3030
|
const_set('GL_ALPHA32UI_EXT', 0x8D72) unless defined?(GL_ALPHA32UI_EXT)
|
@@ -3072,34 +3072,34 @@ module OpenGL
|
|
3072
3072
|
const_set('GL_LUMINANCE_INTEGER_EXT', 0x8D9C) unless defined?(GL_LUMINANCE_INTEGER_EXT)
|
3073
3073
|
const_set('GL_LUMINANCE_ALPHA_INTEGER_EXT', 0x8D9D) unless defined?(GL_LUMINANCE_ALPHA_INTEGER_EXT)
|
3074
3074
|
const_set('GL_RGBA_INTEGER_MODE_EXT', 0x8D9E) unless defined?(GL_RGBA_INTEGER_MODE_EXT)
|
3075
|
-
end #
|
3075
|
+
end # define_ext_enum_GL_EXT_texture_integer
|
3076
3076
|
|
3077
|
-
def
|
3077
|
+
def define_ext_enum_GL_EXT_texture_lod_bias
|
3078
3078
|
const_set('GL_MAX_TEXTURE_LOD_BIAS_EXT', 0x84FD) unless defined?(GL_MAX_TEXTURE_LOD_BIAS_EXT)
|
3079
3079
|
const_set('GL_TEXTURE_FILTER_CONTROL_EXT', 0x8500) unless defined?(GL_TEXTURE_FILTER_CONTROL_EXT)
|
3080
3080
|
const_set('GL_TEXTURE_LOD_BIAS_EXT', 0x8501) unless defined?(GL_TEXTURE_LOD_BIAS_EXT)
|
3081
|
-
end #
|
3081
|
+
end # define_ext_enum_GL_EXT_texture_lod_bias
|
3082
3082
|
|
3083
|
-
def
|
3083
|
+
def define_ext_enum_GL_EXT_texture_mirror_clamp
|
3084
3084
|
const_set('GL_MIRROR_CLAMP_EXT', 0x8742) unless defined?(GL_MIRROR_CLAMP_EXT)
|
3085
3085
|
const_set('GL_MIRROR_CLAMP_TO_EDGE_EXT', 0x8743) unless defined?(GL_MIRROR_CLAMP_TO_EDGE_EXT)
|
3086
3086
|
const_set('GL_MIRROR_CLAMP_TO_BORDER_EXT', 0x8912) unless defined?(GL_MIRROR_CLAMP_TO_BORDER_EXT)
|
3087
|
-
end #
|
3087
|
+
end # define_ext_enum_GL_EXT_texture_mirror_clamp
|
3088
3088
|
|
3089
|
-
def
|
3089
|
+
def define_ext_enum_GL_EXT_texture_object
|
3090
3090
|
const_set('GL_TEXTURE_PRIORITY_EXT', 0x8066) unless defined?(GL_TEXTURE_PRIORITY_EXT)
|
3091
3091
|
const_set('GL_TEXTURE_RESIDENT_EXT', 0x8067) unless defined?(GL_TEXTURE_RESIDENT_EXT)
|
3092
3092
|
const_set('GL_TEXTURE_1D_BINDING_EXT', 0x8068) unless defined?(GL_TEXTURE_1D_BINDING_EXT)
|
3093
3093
|
const_set('GL_TEXTURE_2D_BINDING_EXT', 0x8069) unless defined?(GL_TEXTURE_2D_BINDING_EXT)
|
3094
3094
|
const_set('GL_TEXTURE_3D_BINDING_EXT', 0x806A) unless defined?(GL_TEXTURE_3D_BINDING_EXT)
|
3095
|
-
end #
|
3095
|
+
end # define_ext_enum_GL_EXT_texture_object
|
3096
3096
|
|
3097
|
-
def
|
3097
|
+
def define_ext_enum_GL_EXT_texture_perturb_normal
|
3098
3098
|
const_set('GL_PERTURB_EXT', 0x85AE) unless defined?(GL_PERTURB_EXT)
|
3099
3099
|
const_set('GL_TEXTURE_NORMAL_EXT', 0x85AF) unless defined?(GL_TEXTURE_NORMAL_EXT)
|
3100
|
-
end #
|
3100
|
+
end # define_ext_enum_GL_EXT_texture_perturb_normal
|
3101
3101
|
|
3102
|
-
def
|
3102
|
+
def define_ext_enum_GL_EXT_texture_sRGB
|
3103
3103
|
const_set('GL_SRGB_EXT', 0x8C40) unless defined?(GL_SRGB_EXT)
|
3104
3104
|
const_set('GL_SRGB8_EXT', 0x8C41) unless defined?(GL_SRGB8_EXT)
|
3105
3105
|
const_set('GL_SRGB_ALPHA_EXT', 0x8C42) unless defined?(GL_SRGB_ALPHA_EXT)
|
@@ -3116,21 +3116,21 @@ module OpenGL
|
|
3116
3116
|
const_set('GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT', 0x8C4D) unless defined?(GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT)
|
3117
3117
|
const_set('GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT', 0x8C4E) unless defined?(GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT)
|
3118
3118
|
const_set('GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT', 0x8C4F) unless defined?(GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT)
|
3119
|
-
end #
|
3119
|
+
end # define_ext_enum_GL_EXT_texture_sRGB
|
3120
3120
|
|
3121
|
-
def
|
3121
|
+
def define_ext_enum_GL_EXT_texture_sRGB_decode
|
3122
3122
|
const_set('GL_TEXTURE_SRGB_DECODE_EXT', 0x8A48) unless defined?(GL_TEXTURE_SRGB_DECODE_EXT)
|
3123
3123
|
const_set('GL_DECODE_EXT', 0x8A49) unless defined?(GL_DECODE_EXT)
|
3124
3124
|
const_set('GL_SKIP_DECODE_EXT', 0x8A4A) unless defined?(GL_SKIP_DECODE_EXT)
|
3125
|
-
end #
|
3125
|
+
end # define_ext_enum_GL_EXT_texture_sRGB_decode
|
3126
3126
|
|
3127
|
-
def
|
3127
|
+
def define_ext_enum_GL_EXT_texture_shared_exponent
|
3128
3128
|
const_set('GL_RGB9_E5_EXT', 0x8C3D) unless defined?(GL_RGB9_E5_EXT)
|
3129
3129
|
const_set('GL_UNSIGNED_INT_5_9_9_9_REV_EXT', 0x8C3E) unless defined?(GL_UNSIGNED_INT_5_9_9_9_REV_EXT)
|
3130
3130
|
const_set('GL_TEXTURE_SHARED_SIZE_EXT', 0x8C3F) unless defined?(GL_TEXTURE_SHARED_SIZE_EXT)
|
3131
|
-
end #
|
3131
|
+
end # define_ext_enum_GL_EXT_texture_shared_exponent
|
3132
3132
|
|
3133
|
-
def
|
3133
|
+
def define_ext_enum_GL_EXT_texture_snorm
|
3134
3134
|
const_set('GL_ALPHA_SNORM', 0x9010) unless defined?(GL_ALPHA_SNORM)
|
3135
3135
|
const_set('GL_LUMINANCE_SNORM', 0x9011) unless defined?(GL_LUMINANCE_SNORM)
|
3136
3136
|
const_set('GL_LUMINANCE_ALPHA_SNORM', 0x9012) unless defined?(GL_LUMINANCE_ALPHA_SNORM)
|
@@ -3156,21 +3156,21 @@ module OpenGL
|
|
3156
3156
|
const_set('GL_RGB16_SNORM', 0x8F9A) unless defined?(GL_RGB16_SNORM)
|
3157
3157
|
const_set('GL_RGBA16_SNORM', 0x8F9B) unless defined?(GL_RGBA16_SNORM)
|
3158
3158
|
const_set('GL_SIGNED_NORMALIZED', 0x8F9C) unless defined?(GL_SIGNED_NORMALIZED)
|
3159
|
-
end #
|
3159
|
+
end # define_ext_enum_GL_EXT_texture_snorm
|
3160
3160
|
|
3161
|
-
def
|
3161
|
+
def define_ext_enum_GL_EXT_texture_swizzle
|
3162
3162
|
const_set('GL_TEXTURE_SWIZZLE_R_EXT', 0x8E42) unless defined?(GL_TEXTURE_SWIZZLE_R_EXT)
|
3163
3163
|
const_set('GL_TEXTURE_SWIZZLE_G_EXT', 0x8E43) unless defined?(GL_TEXTURE_SWIZZLE_G_EXT)
|
3164
3164
|
const_set('GL_TEXTURE_SWIZZLE_B_EXT', 0x8E44) unless defined?(GL_TEXTURE_SWIZZLE_B_EXT)
|
3165
3165
|
const_set('GL_TEXTURE_SWIZZLE_A_EXT', 0x8E45) unless defined?(GL_TEXTURE_SWIZZLE_A_EXT)
|
3166
3166
|
const_set('GL_TEXTURE_SWIZZLE_RGBA_EXT', 0x8E46) unless defined?(GL_TEXTURE_SWIZZLE_RGBA_EXT)
|
3167
|
-
end #
|
3167
|
+
end # define_ext_enum_GL_EXT_texture_swizzle
|
3168
3168
|
|
3169
|
-
def
|
3169
|
+
def define_ext_enum_GL_EXT_timer_query
|
3170
3170
|
const_set('GL_TIME_ELAPSED_EXT', 0x88BF) unless defined?(GL_TIME_ELAPSED_EXT)
|
3171
|
-
end #
|
3171
|
+
end # define_ext_enum_GL_EXT_timer_query
|
3172
3172
|
|
3173
|
-
def
|
3173
|
+
def define_ext_enum_GL_EXT_transform_feedback
|
3174
3174
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_EXT', 0x8C8E) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_EXT)
|
3175
3175
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT', 0x8C84) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT)
|
3176
3176
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT', 0x8C85) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT)
|
@@ -3186,9 +3186,9 @@ module OpenGL
|
|
3186
3186
|
const_set('GL_TRANSFORM_FEEDBACK_VARYINGS_EXT', 0x8C83) unless defined?(GL_TRANSFORM_FEEDBACK_VARYINGS_EXT)
|
3187
3187
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT', 0x8C7F) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT)
|
3188
3188
|
const_set('GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT', 0x8C76) unless defined?(GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT)
|
3189
|
-
end #
|
3189
|
+
end # define_ext_enum_GL_EXT_transform_feedback
|
3190
3190
|
|
3191
|
-
def
|
3191
|
+
def define_ext_enum_GL_EXT_vertex_array
|
3192
3192
|
const_set('GL_VERTEX_ARRAY_EXT', 0x8074) unless defined?(GL_VERTEX_ARRAY_EXT)
|
3193
3193
|
const_set('GL_NORMAL_ARRAY_EXT', 0x8075) unless defined?(GL_NORMAL_ARRAY_EXT)
|
3194
3194
|
const_set('GL_COLOR_ARRAY_EXT', 0x8076) unless defined?(GL_COLOR_ARRAY_EXT)
|
@@ -3221,13 +3221,13 @@ module OpenGL
|
|
3221
3221
|
const_set('GL_INDEX_ARRAY_POINTER_EXT', 0x8091) unless defined?(GL_INDEX_ARRAY_POINTER_EXT)
|
3222
3222
|
const_set('GL_TEXTURE_COORD_ARRAY_POINTER_EXT', 0x8092) unless defined?(GL_TEXTURE_COORD_ARRAY_POINTER_EXT)
|
3223
3223
|
const_set('GL_EDGE_FLAG_ARRAY_POINTER_EXT', 0x8093) unless defined?(GL_EDGE_FLAG_ARRAY_POINTER_EXT)
|
3224
|
-
end #
|
3224
|
+
end # define_ext_enum_GL_EXT_vertex_array
|
3225
3225
|
|
3226
|
-
def
|
3226
|
+
def define_ext_enum_GL_EXT_vertex_array_bgra
|
3227
3227
|
const_set('GL_BGRA', 0x80E1) unless defined?(GL_BGRA)
|
3228
|
-
end #
|
3228
|
+
end # define_ext_enum_GL_EXT_vertex_array_bgra
|
3229
3229
|
|
3230
|
-
def
|
3230
|
+
def define_ext_enum_GL_EXT_vertex_attrib_64bit
|
3231
3231
|
const_set('GL_DOUBLE', 0x140A) unless defined?(GL_DOUBLE)
|
3232
3232
|
const_set('GL_DOUBLE_VEC2_EXT', 0x8FFC) unless defined?(GL_DOUBLE_VEC2_EXT)
|
3233
3233
|
const_set('GL_DOUBLE_VEC3_EXT', 0x8FFD) unless defined?(GL_DOUBLE_VEC3_EXT)
|
@@ -3241,9 +3241,9 @@ module OpenGL
|
|
3241
3241
|
const_set('GL_DOUBLE_MAT3x4_EXT', 0x8F4C) unless defined?(GL_DOUBLE_MAT3x4_EXT)
|
3242
3242
|
const_set('GL_DOUBLE_MAT4x2_EXT', 0x8F4D) unless defined?(GL_DOUBLE_MAT4x2_EXT)
|
3243
3243
|
const_set('GL_DOUBLE_MAT4x3_EXT', 0x8F4E) unless defined?(GL_DOUBLE_MAT4x3_EXT)
|
3244
|
-
end #
|
3244
|
+
end # define_ext_enum_GL_EXT_vertex_attrib_64bit
|
3245
3245
|
|
3246
|
-
def
|
3246
|
+
def define_ext_enum_GL_EXT_vertex_shader
|
3247
3247
|
const_set('GL_VERTEX_SHADER_EXT', 0x8780) unless defined?(GL_VERTEX_SHADER_EXT)
|
3248
3248
|
const_set('GL_VERTEX_SHADER_BINDING_EXT', 0x8781) unless defined?(GL_VERTEX_SHADER_BINDING_EXT)
|
3249
3249
|
const_set('GL_OP_INDEX_EXT', 0x8782) unless defined?(GL_OP_INDEX_EXT)
|
@@ -3354,9 +3354,9 @@ module OpenGL
|
|
3354
3354
|
const_set('GL_INVARIANT_DATATYPE_EXT', 0x87EB) unless defined?(GL_INVARIANT_DATATYPE_EXT)
|
3355
3355
|
const_set('GL_LOCAL_CONSTANT_VALUE_EXT', 0x87EC) unless defined?(GL_LOCAL_CONSTANT_VALUE_EXT)
|
3356
3356
|
const_set('GL_LOCAL_CONSTANT_DATATYPE_EXT', 0x87ED) unless defined?(GL_LOCAL_CONSTANT_DATATYPE_EXT)
|
3357
|
-
end #
|
3357
|
+
end # define_ext_enum_GL_EXT_vertex_shader
|
3358
3358
|
|
3359
|
-
def
|
3359
|
+
def define_ext_enum_GL_EXT_vertex_weighting
|
3360
3360
|
const_set('GL_MODELVIEW0_STACK_DEPTH_EXT', 0x0BA3) unless defined?(GL_MODELVIEW0_STACK_DEPTH_EXT)
|
3361
3361
|
const_set('GL_MODELVIEW1_STACK_DEPTH_EXT', 0x8502) unless defined?(GL_MODELVIEW1_STACK_DEPTH_EXT)
|
3362
3362
|
const_set('GL_MODELVIEW0_MATRIX_EXT', 0x0BA6) unless defined?(GL_MODELVIEW0_MATRIX_EXT)
|
@@ -3370,26 +3370,26 @@ module OpenGL
|
|
3370
3370
|
const_set('GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT', 0x850E) unless defined?(GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT)
|
3371
3371
|
const_set('GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT', 0x850F) unless defined?(GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT)
|
3372
3372
|
const_set('GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT', 0x8510) unless defined?(GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT)
|
3373
|
-
end #
|
3373
|
+
end # define_ext_enum_GL_EXT_vertex_weighting
|
3374
3374
|
|
3375
|
-
def
|
3375
|
+
def define_ext_enum_GL_EXT_x11_sync_object
|
3376
3376
|
const_set('GL_SYNC_X11_FENCE_EXT', 0x90E1) unless defined?(GL_SYNC_X11_FENCE_EXT)
|
3377
|
-
end #
|
3377
|
+
end # define_ext_enum_GL_EXT_x11_sync_object
|
3378
3378
|
|
3379
|
-
def
|
3380
|
-
end #
|
3379
|
+
def define_ext_enum_GL_GREMEDY_frame_terminator
|
3380
|
+
end # define_ext_enum_GL_GREMEDY_frame_terminator
|
3381
3381
|
|
3382
|
-
def
|
3383
|
-
end #
|
3382
|
+
def define_ext_enum_GL_GREMEDY_string_marker
|
3383
|
+
end # define_ext_enum_GL_GREMEDY_string_marker
|
3384
3384
|
|
3385
|
-
def
|
3385
|
+
def define_ext_enum_GL_HP_convolution_border_modes
|
3386
3386
|
const_set('GL_IGNORE_BORDER_HP', 0x8150) unless defined?(GL_IGNORE_BORDER_HP)
|
3387
3387
|
const_set('GL_CONSTANT_BORDER_HP', 0x8151) unless defined?(GL_CONSTANT_BORDER_HP)
|
3388
3388
|
const_set('GL_REPLICATE_BORDER_HP', 0x8153) unless defined?(GL_REPLICATE_BORDER_HP)
|
3389
3389
|
const_set('GL_CONVOLUTION_BORDER_COLOR_HP', 0x8154) unless defined?(GL_CONVOLUTION_BORDER_COLOR_HP)
|
3390
|
-
end #
|
3390
|
+
end # define_ext_enum_GL_HP_convolution_border_modes
|
3391
3391
|
|
3392
|
-
def
|
3392
|
+
def define_ext_enum_GL_HP_image_transform
|
3393
3393
|
const_set('GL_IMAGE_SCALE_X_HP', 0x8155) unless defined?(GL_IMAGE_SCALE_X_HP)
|
3394
3394
|
const_set('GL_IMAGE_SCALE_Y_HP', 0x8156) unless defined?(GL_IMAGE_SCALE_Y_HP)
|
3395
3395
|
const_set('GL_IMAGE_TRANSLATE_X_HP', 0x8157) unless defined?(GL_IMAGE_TRANSLATE_X_HP)
|
@@ -3405,40 +3405,40 @@ module OpenGL
|
|
3405
3405
|
const_set('GL_IMAGE_TRANSFORM_2D_HP', 0x8161) unless defined?(GL_IMAGE_TRANSFORM_2D_HP)
|
3406
3406
|
const_set('GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP', 0x8162) unless defined?(GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP)
|
3407
3407
|
const_set('GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP', 0x8163) unless defined?(GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP)
|
3408
|
-
end #
|
3408
|
+
end # define_ext_enum_GL_HP_image_transform
|
3409
3409
|
|
3410
|
-
def
|
3410
|
+
def define_ext_enum_GL_HP_occlusion_test
|
3411
3411
|
const_set('GL_OCCLUSION_TEST_HP', 0x8165) unless defined?(GL_OCCLUSION_TEST_HP)
|
3412
3412
|
const_set('GL_OCCLUSION_TEST_RESULT_HP', 0x8166) unless defined?(GL_OCCLUSION_TEST_RESULT_HP)
|
3413
|
-
end #
|
3413
|
+
end # define_ext_enum_GL_HP_occlusion_test
|
3414
3414
|
|
3415
|
-
def
|
3415
|
+
def define_ext_enum_GL_HP_texture_lighting
|
3416
3416
|
const_set('GL_TEXTURE_LIGHTING_MODE_HP', 0x8167) unless defined?(GL_TEXTURE_LIGHTING_MODE_HP)
|
3417
3417
|
const_set('GL_TEXTURE_POST_SPECULAR_HP', 0x8168) unless defined?(GL_TEXTURE_POST_SPECULAR_HP)
|
3418
3418
|
const_set('GL_TEXTURE_PRE_SPECULAR_HP', 0x8169) unless defined?(GL_TEXTURE_PRE_SPECULAR_HP)
|
3419
|
-
end #
|
3419
|
+
end # define_ext_enum_GL_HP_texture_lighting
|
3420
3420
|
|
3421
|
-
def
|
3421
|
+
def define_ext_enum_GL_IBM_cull_vertex
|
3422
3422
|
const_set('GL_CULL_VERTEX_IBM', 103050) unless defined?(GL_CULL_VERTEX_IBM)
|
3423
|
-
end #
|
3423
|
+
end # define_ext_enum_GL_IBM_cull_vertex
|
3424
3424
|
|
3425
|
-
def
|
3426
|
-
end #
|
3425
|
+
def define_ext_enum_GL_IBM_multimode_draw_arrays
|
3426
|
+
end # define_ext_enum_GL_IBM_multimode_draw_arrays
|
3427
3427
|
|
3428
|
-
def
|
3428
|
+
def define_ext_enum_GL_IBM_rasterpos_clip
|
3429
3429
|
const_set('GL_RASTER_POSITION_UNCLIPPED_IBM', 0x19262) unless defined?(GL_RASTER_POSITION_UNCLIPPED_IBM)
|
3430
|
-
end #
|
3430
|
+
end # define_ext_enum_GL_IBM_rasterpos_clip
|
3431
3431
|
|
3432
|
-
def
|
3432
|
+
def define_ext_enum_GL_IBM_static_data
|
3433
3433
|
const_set('GL_ALL_STATIC_DATA_IBM', 103060) unless defined?(GL_ALL_STATIC_DATA_IBM)
|
3434
3434
|
const_set('GL_STATIC_VERTEX_ARRAY_IBM', 103061) unless defined?(GL_STATIC_VERTEX_ARRAY_IBM)
|
3435
|
-
end #
|
3435
|
+
end # define_ext_enum_GL_IBM_static_data
|
3436
3436
|
|
3437
|
-
def
|
3437
|
+
def define_ext_enum_GL_IBM_texture_mirrored_repeat
|
3438
3438
|
const_set('GL_MIRRORED_REPEAT_IBM', 0x8370) unless defined?(GL_MIRRORED_REPEAT_IBM)
|
3439
|
-
end #
|
3439
|
+
end # define_ext_enum_GL_IBM_texture_mirrored_repeat
|
3440
3440
|
|
3441
|
-
def
|
3441
|
+
def define_ext_enum_GL_IBM_vertex_array_lists
|
3442
3442
|
const_set('GL_VERTEX_ARRAY_LIST_IBM', 103070) unless defined?(GL_VERTEX_ARRAY_LIST_IBM)
|
3443
3443
|
const_set('GL_NORMAL_ARRAY_LIST_IBM', 103071) unless defined?(GL_NORMAL_ARRAY_LIST_IBM)
|
3444
3444
|
const_set('GL_COLOR_ARRAY_LIST_IBM', 103072) unless defined?(GL_COLOR_ARRAY_LIST_IBM)
|
@@ -3455,12 +3455,12 @@ module OpenGL
|
|
3455
3455
|
const_set('GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM', 103085) unless defined?(GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM)
|
3456
3456
|
const_set('GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM', 103086) unless defined?(GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM)
|
3457
3457
|
const_set('GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM', 103087) unless defined?(GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM)
|
3458
|
-
end #
|
3458
|
+
end # define_ext_enum_GL_IBM_vertex_array_lists
|
3459
3459
|
|
3460
|
-
def
|
3461
|
-
end #
|
3460
|
+
def define_ext_enum_GL_INGR_blend_func_separate
|
3461
|
+
end # define_ext_enum_GL_INGR_blend_func_separate
|
3462
3462
|
|
3463
|
-
def
|
3463
|
+
def define_ext_enum_GL_INGR_color_clamp
|
3464
3464
|
const_set('GL_RED_MIN_CLAMP_INGR', 0x8560) unless defined?(GL_RED_MIN_CLAMP_INGR)
|
3465
3465
|
const_set('GL_GREEN_MIN_CLAMP_INGR', 0x8561) unless defined?(GL_GREEN_MIN_CLAMP_INGR)
|
3466
3466
|
const_set('GL_BLUE_MIN_CLAMP_INGR', 0x8562) unless defined?(GL_BLUE_MIN_CLAMP_INGR)
|
@@ -3469,31 +3469,31 @@ module OpenGL
|
|
3469
3469
|
const_set('GL_GREEN_MAX_CLAMP_INGR', 0x8565) unless defined?(GL_GREEN_MAX_CLAMP_INGR)
|
3470
3470
|
const_set('GL_BLUE_MAX_CLAMP_INGR', 0x8566) unless defined?(GL_BLUE_MAX_CLAMP_INGR)
|
3471
3471
|
const_set('GL_ALPHA_MAX_CLAMP_INGR', 0x8567) unless defined?(GL_ALPHA_MAX_CLAMP_INGR)
|
3472
|
-
end #
|
3472
|
+
end # define_ext_enum_GL_INGR_color_clamp
|
3473
3473
|
|
3474
|
-
def
|
3474
|
+
def define_ext_enum_GL_INGR_interlace_read
|
3475
3475
|
const_set('GL_INTERLACE_READ_INGR', 0x8568) unless defined?(GL_INTERLACE_READ_INGR)
|
3476
|
-
end #
|
3476
|
+
end # define_ext_enum_GL_INGR_interlace_read
|
3477
3477
|
|
3478
|
-
def
|
3479
|
-
end #
|
3478
|
+
def define_ext_enum_GL_INTEL_fragment_shader_ordering
|
3479
|
+
end # define_ext_enum_GL_INTEL_fragment_shader_ordering
|
3480
3480
|
|
3481
|
-
def
|
3481
|
+
def define_ext_enum_GL_INTEL_map_texture
|
3482
3482
|
const_set('GL_TEXTURE_MEMORY_LAYOUT_INTEL', 0x83FF) unless defined?(GL_TEXTURE_MEMORY_LAYOUT_INTEL)
|
3483
3483
|
const_set('GL_LAYOUT_DEFAULT_INTEL', 0) unless defined?(GL_LAYOUT_DEFAULT_INTEL)
|
3484
3484
|
const_set('GL_LAYOUT_LINEAR_INTEL', 1) unless defined?(GL_LAYOUT_LINEAR_INTEL)
|
3485
3485
|
const_set('GL_LAYOUT_LINEAR_CPU_CACHED_INTEL', 2) unless defined?(GL_LAYOUT_LINEAR_CPU_CACHED_INTEL)
|
3486
|
-
end #
|
3486
|
+
end # define_ext_enum_GL_INTEL_map_texture
|
3487
3487
|
|
3488
|
-
def
|
3488
|
+
def define_ext_enum_GL_INTEL_parallel_arrays
|
3489
3489
|
const_set('GL_PARALLEL_ARRAYS_INTEL', 0x83F4) unless defined?(GL_PARALLEL_ARRAYS_INTEL)
|
3490
3490
|
const_set('GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL', 0x83F5) unless defined?(GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL)
|
3491
3491
|
const_set('GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL', 0x83F6) unless defined?(GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL)
|
3492
3492
|
const_set('GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL', 0x83F7) unless defined?(GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL)
|
3493
3493
|
const_set('GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL', 0x83F8) unless defined?(GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL)
|
3494
|
-
end #
|
3494
|
+
end # define_ext_enum_GL_INTEL_parallel_arrays
|
3495
3495
|
|
3496
|
-
def
|
3496
|
+
def define_ext_enum_GL_INTEL_performance_query
|
3497
3497
|
const_set('GL_PERFQUERY_SINGLE_CONTEXT_INTEL', 0x00000000) unless defined?(GL_PERFQUERY_SINGLE_CONTEXT_INTEL)
|
3498
3498
|
const_set('GL_PERFQUERY_GLOBAL_CONTEXT_INTEL', 0x00000001) unless defined?(GL_PERFQUERY_GLOBAL_CONTEXT_INTEL)
|
3499
3499
|
const_set('GL_PERFQUERY_WAIT_INTEL', 0x83FB) unless defined?(GL_PERFQUERY_WAIT_INTEL)
|
@@ -3514,9 +3514,9 @@ module OpenGL
|
|
3514
3514
|
const_set('GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL', 0x94FE) unless defined?(GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL)
|
3515
3515
|
const_set('GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL', 0x94FF) unless defined?(GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL)
|
3516
3516
|
const_set('GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL', 0x9500) unless defined?(GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL)
|
3517
|
-
end #
|
3517
|
+
end # define_ext_enum_GL_INTEL_performance_query
|
3518
3518
|
|
3519
|
-
def
|
3519
|
+
def define_ext_enum_GL_KHR_debug
|
3520
3520
|
const_set('GL_DEBUG_OUTPUT_SYNCHRONOUS', 0x8242) unless defined?(GL_DEBUG_OUTPUT_SYNCHRONOUS)
|
3521
3521
|
const_set('GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH', 0x8243) unless defined?(GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH)
|
3522
3522
|
const_set('GL_DEBUG_CALLBACK_FUNCTION', 0x8244) unless defined?(GL_DEBUG_CALLBACK_FUNCTION)
|
@@ -3597,9 +3597,9 @@ module OpenGL
|
|
3597
3597
|
const_set('GL_STACK_UNDERFLOW_KHR', 0x0504) unless defined?(GL_STACK_UNDERFLOW_KHR)
|
3598
3598
|
const_set('GL_PROGRAM_PIPELINE', 0x82E4) unless defined?(GL_PROGRAM_PIPELINE)
|
3599
3599
|
const_set('GL_DISPLAY_LIST', 0x82E7) unless defined?(GL_DISPLAY_LIST)
|
3600
|
-
end #
|
3600
|
+
end # define_ext_enum_GL_KHR_debug
|
3601
3601
|
|
3602
|
-
def
|
3602
|
+
def define_ext_enum_GL_KHR_texture_compression_astc_hdr
|
3603
3603
|
const_set('GL_COMPRESSED_RGBA_ASTC_4x4_KHR', 0x93B0) unless defined?(GL_COMPRESSED_RGBA_ASTC_4x4_KHR)
|
3604
3604
|
const_set('GL_COMPRESSED_RGBA_ASTC_5x4_KHR', 0x93B1) unless defined?(GL_COMPRESSED_RGBA_ASTC_5x4_KHR)
|
3605
3605
|
const_set('GL_COMPRESSED_RGBA_ASTC_5x5_KHR', 0x93B2) unless defined?(GL_COMPRESSED_RGBA_ASTC_5x5_KHR)
|
@@ -3628,9 +3628,9 @@ module OpenGL
|
|
3628
3628
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR', 0x93DB) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR)
|
3629
3629
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR', 0x93DC) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR)
|
3630
3630
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR', 0x93DD) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR)
|
3631
|
-
end #
|
3631
|
+
end # define_ext_enum_GL_KHR_texture_compression_astc_hdr
|
3632
3632
|
|
3633
|
-
def
|
3633
|
+
def define_ext_enum_GL_KHR_texture_compression_astc_ldr
|
3634
3634
|
const_set('GL_COMPRESSED_RGBA_ASTC_4x4_KHR', 0x93B0) unless defined?(GL_COMPRESSED_RGBA_ASTC_4x4_KHR)
|
3635
3635
|
const_set('GL_COMPRESSED_RGBA_ASTC_5x4_KHR', 0x93B1) unless defined?(GL_COMPRESSED_RGBA_ASTC_5x4_KHR)
|
3636
3636
|
const_set('GL_COMPRESSED_RGBA_ASTC_5x5_KHR', 0x93B2) unless defined?(GL_COMPRESSED_RGBA_ASTC_5x5_KHR)
|
@@ -3659,43 +3659,43 @@ module OpenGL
|
|
3659
3659
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR', 0x93DB) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR)
|
3660
3660
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR', 0x93DC) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR)
|
3661
3661
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR', 0x93DD) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR)
|
3662
|
-
end #
|
3662
|
+
end # define_ext_enum_GL_KHR_texture_compression_astc_ldr
|
3663
3663
|
|
3664
|
-
def
|
3664
|
+
def define_ext_enum_GL_MESAX_texture_stack
|
3665
3665
|
const_set('GL_TEXTURE_1D_STACK_MESAX', 0x8759) unless defined?(GL_TEXTURE_1D_STACK_MESAX)
|
3666
3666
|
const_set('GL_TEXTURE_2D_STACK_MESAX', 0x875A) unless defined?(GL_TEXTURE_2D_STACK_MESAX)
|
3667
3667
|
const_set('GL_PROXY_TEXTURE_1D_STACK_MESAX', 0x875B) unless defined?(GL_PROXY_TEXTURE_1D_STACK_MESAX)
|
3668
3668
|
const_set('GL_PROXY_TEXTURE_2D_STACK_MESAX', 0x875C) unless defined?(GL_PROXY_TEXTURE_2D_STACK_MESAX)
|
3669
3669
|
const_set('GL_TEXTURE_1D_STACK_BINDING_MESAX', 0x875D) unless defined?(GL_TEXTURE_1D_STACK_BINDING_MESAX)
|
3670
3670
|
const_set('GL_TEXTURE_2D_STACK_BINDING_MESAX', 0x875E) unless defined?(GL_TEXTURE_2D_STACK_BINDING_MESAX)
|
3671
|
-
end #
|
3671
|
+
end # define_ext_enum_GL_MESAX_texture_stack
|
3672
3672
|
|
3673
|
-
def
|
3673
|
+
def define_ext_enum_GL_MESA_pack_invert
|
3674
3674
|
const_set('GL_PACK_INVERT_MESA', 0x8758) unless defined?(GL_PACK_INVERT_MESA)
|
3675
|
-
end #
|
3675
|
+
end # define_ext_enum_GL_MESA_pack_invert
|
3676
3676
|
|
3677
|
-
def
|
3678
|
-
end #
|
3677
|
+
def define_ext_enum_GL_MESA_resize_buffers
|
3678
|
+
end # define_ext_enum_GL_MESA_resize_buffers
|
3679
3679
|
|
3680
|
-
def
|
3681
|
-
end #
|
3680
|
+
def define_ext_enum_GL_MESA_window_pos
|
3681
|
+
end # define_ext_enum_GL_MESA_window_pos
|
3682
3682
|
|
3683
|
-
def
|
3683
|
+
def define_ext_enum_GL_MESA_ycbcr_texture
|
3684
3684
|
const_set('GL_UNSIGNED_SHORT_8_8_MESA', 0x85BA) unless defined?(GL_UNSIGNED_SHORT_8_8_MESA)
|
3685
3685
|
const_set('GL_UNSIGNED_SHORT_8_8_REV_MESA', 0x85BB) unless defined?(GL_UNSIGNED_SHORT_8_8_REV_MESA)
|
3686
3686
|
const_set('GL_YCBCR_MESA', 0x8757) unless defined?(GL_YCBCR_MESA)
|
3687
|
-
end #
|
3687
|
+
end # define_ext_enum_GL_MESA_ycbcr_texture
|
3688
3688
|
|
3689
|
-
def
|
3690
|
-
end #
|
3689
|
+
def define_ext_enum_GL_NVX_conditional_render
|
3690
|
+
end # define_ext_enum_GL_NVX_conditional_render
|
3691
3691
|
|
3692
|
-
def
|
3693
|
-
end #
|
3692
|
+
def define_ext_enum_GL_NV_bindless_multi_draw_indirect
|
3693
|
+
end # define_ext_enum_GL_NV_bindless_multi_draw_indirect
|
3694
3694
|
|
3695
|
-
def
|
3696
|
-
end #
|
3695
|
+
def define_ext_enum_GL_NV_bindless_texture
|
3696
|
+
end # define_ext_enum_GL_NV_bindless_texture
|
3697
3697
|
|
3698
|
-
def
|
3698
|
+
def define_ext_enum_GL_NV_blend_equation_advanced
|
3699
3699
|
const_set('GL_BLEND_OVERLAP_NV', 0x9281) unless defined?(GL_BLEND_OVERLAP_NV)
|
3700
3700
|
const_set('GL_BLEND_PREMULTIPLIED_SRC_NV', 0x9280) unless defined?(GL_BLEND_PREMULTIPLIED_SRC_NV)
|
3701
3701
|
const_set('GL_BLUE_NV', 0x1905) unless defined?(GL_BLUE_NV)
|
@@ -3747,55 +3747,55 @@ module OpenGL
|
|
3747
3747
|
const_set('GL_VIVIDLIGHT_NV', 0x92A6) unless defined?(GL_VIVIDLIGHT_NV)
|
3748
3748
|
const_set('GL_XOR_NV', 0x1506) unless defined?(GL_XOR_NV)
|
3749
3749
|
const_set('GL_ZERO', 0) unless defined?(GL_ZERO)
|
3750
|
-
end #
|
3750
|
+
end # define_ext_enum_GL_NV_blend_equation_advanced
|
3751
3751
|
|
3752
|
-
def
|
3752
|
+
def define_ext_enum_GL_NV_blend_equation_advanced_coherent
|
3753
3753
|
const_set('GL_BLEND_ADVANCED_COHERENT_NV', 0x9285) unless defined?(GL_BLEND_ADVANCED_COHERENT_NV)
|
3754
|
-
end #
|
3754
|
+
end # define_ext_enum_GL_NV_blend_equation_advanced_coherent
|
3755
3755
|
|
3756
|
-
def
|
3757
|
-
end #
|
3756
|
+
def define_ext_enum_GL_NV_blend_square
|
3757
|
+
end # define_ext_enum_GL_NV_blend_square
|
3758
3758
|
|
3759
|
-
def
|
3759
|
+
def define_ext_enum_GL_NV_compute_program5
|
3760
3760
|
const_set('GL_COMPUTE_PROGRAM_NV', 0x90FB) unless defined?(GL_COMPUTE_PROGRAM_NV)
|
3761
3761
|
const_set('GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV', 0x90FC) unless defined?(GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV)
|
3762
|
-
end #
|
3762
|
+
end # define_ext_enum_GL_NV_compute_program5
|
3763
3763
|
|
3764
|
-
def
|
3764
|
+
def define_ext_enum_GL_NV_conditional_render
|
3765
3765
|
const_set('GL_QUERY_WAIT_NV', 0x8E13) unless defined?(GL_QUERY_WAIT_NV)
|
3766
3766
|
const_set('GL_QUERY_NO_WAIT_NV', 0x8E14) unless defined?(GL_QUERY_NO_WAIT_NV)
|
3767
3767
|
const_set('GL_QUERY_BY_REGION_WAIT_NV', 0x8E15) unless defined?(GL_QUERY_BY_REGION_WAIT_NV)
|
3768
3768
|
const_set('GL_QUERY_BY_REGION_NO_WAIT_NV', 0x8E16) unless defined?(GL_QUERY_BY_REGION_NO_WAIT_NV)
|
3769
|
-
end #
|
3769
|
+
end # define_ext_enum_GL_NV_conditional_render
|
3770
3770
|
|
3771
|
-
def
|
3771
|
+
def define_ext_enum_GL_NV_copy_depth_to_color
|
3772
3772
|
const_set('GL_DEPTH_STENCIL_TO_RGBA_NV', 0x886E) unless defined?(GL_DEPTH_STENCIL_TO_RGBA_NV)
|
3773
3773
|
const_set('GL_DEPTH_STENCIL_TO_BGRA_NV', 0x886F) unless defined?(GL_DEPTH_STENCIL_TO_BGRA_NV)
|
3774
|
-
end #
|
3774
|
+
end # define_ext_enum_GL_NV_copy_depth_to_color
|
3775
3775
|
|
3776
|
-
def
|
3777
|
-
end #
|
3776
|
+
def define_ext_enum_GL_NV_copy_image
|
3777
|
+
end # define_ext_enum_GL_NV_copy_image
|
3778
3778
|
|
3779
|
-
def
|
3779
|
+
def define_ext_enum_GL_NV_deep_texture3D
|
3780
3780
|
const_set('GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV', 0x90D0) unless defined?(GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV)
|
3781
3781
|
const_set('GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV', 0x90D1) unless defined?(GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV)
|
3782
|
-
end #
|
3782
|
+
end # define_ext_enum_GL_NV_deep_texture3D
|
3783
3783
|
|
3784
|
-
def
|
3784
|
+
def define_ext_enum_GL_NV_depth_buffer_float
|
3785
3785
|
const_set('GL_DEPTH_COMPONENT32F_NV', 0x8DAB) unless defined?(GL_DEPTH_COMPONENT32F_NV)
|
3786
3786
|
const_set('GL_DEPTH32F_STENCIL8_NV', 0x8DAC) unless defined?(GL_DEPTH32F_STENCIL8_NV)
|
3787
3787
|
const_set('GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV', 0x8DAD) unless defined?(GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV)
|
3788
3788
|
const_set('GL_DEPTH_BUFFER_FLOAT_MODE_NV', 0x8DAF) unless defined?(GL_DEPTH_BUFFER_FLOAT_MODE_NV)
|
3789
|
-
end #
|
3789
|
+
end # define_ext_enum_GL_NV_depth_buffer_float
|
3790
3790
|
|
3791
|
-
def
|
3791
|
+
def define_ext_enum_GL_NV_depth_clamp
|
3792
3792
|
const_set('GL_DEPTH_CLAMP_NV', 0x864F) unless defined?(GL_DEPTH_CLAMP_NV)
|
3793
|
-
end #
|
3793
|
+
end # define_ext_enum_GL_NV_depth_clamp
|
3794
3794
|
|
3795
|
-
def
|
3796
|
-
end #
|
3795
|
+
def define_ext_enum_GL_NV_draw_texture
|
3796
|
+
end # define_ext_enum_GL_NV_draw_texture
|
3797
3797
|
|
3798
|
-
def
|
3798
|
+
def define_ext_enum_GL_NV_evaluators
|
3799
3799
|
const_set('GL_EVAL_2D_NV', 0x86C0) unless defined?(GL_EVAL_2D_NV)
|
3800
3800
|
const_set('GL_EVAL_TRIANGULAR_2D_NV', 0x86C1) unless defined?(GL_EVAL_TRIANGULAR_2D_NV)
|
3801
3801
|
const_set('GL_MAP_TESSELLATION_NV', 0x86C2) unless defined?(GL_MAP_TESSELLATION_NV)
|
@@ -3820,9 +3820,9 @@ module OpenGL
|
|
3820
3820
|
const_set('GL_EVAL_VERTEX_ATTRIB15_NV', 0x86D5) unless defined?(GL_EVAL_VERTEX_ATTRIB15_NV)
|
3821
3821
|
const_set('GL_MAX_MAP_TESSELLATION_NV', 0x86D6) unless defined?(GL_MAX_MAP_TESSELLATION_NV)
|
3822
3822
|
const_set('GL_MAX_RATIONAL_EVAL_ORDER_NV', 0x86D7) unless defined?(GL_MAX_RATIONAL_EVAL_ORDER_NV)
|
3823
|
-
end #
|
3823
|
+
end # define_ext_enum_GL_NV_evaluators
|
3824
3824
|
|
3825
|
-
def
|
3825
|
+
def define_ext_enum_GL_NV_explicit_multisample
|
3826
3826
|
const_set('GL_SAMPLE_POSITION_NV', 0x8E50) unless defined?(GL_SAMPLE_POSITION_NV)
|
3827
3827
|
const_set('GL_SAMPLE_MASK_NV', 0x8E51) unless defined?(GL_SAMPLE_MASK_NV)
|
3828
3828
|
const_set('GL_SAMPLE_MASK_VALUE_NV', 0x8E52) unless defined?(GL_SAMPLE_MASK_VALUE_NV)
|
@@ -3833,15 +3833,15 @@ module OpenGL
|
|
3833
3833
|
const_set('GL_INT_SAMPLER_RENDERBUFFER_NV', 0x8E57) unless defined?(GL_INT_SAMPLER_RENDERBUFFER_NV)
|
3834
3834
|
const_set('GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV', 0x8E58) unless defined?(GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV)
|
3835
3835
|
const_set('GL_MAX_SAMPLE_MASK_WORDS_NV', 0x8E59) unless defined?(GL_MAX_SAMPLE_MASK_WORDS_NV)
|
3836
|
-
end #
|
3836
|
+
end # define_ext_enum_GL_NV_explicit_multisample
|
3837
3837
|
|
3838
|
-
def
|
3838
|
+
def define_ext_enum_GL_NV_fence
|
3839
3839
|
const_set('GL_ALL_COMPLETED_NV', 0x84F2) unless defined?(GL_ALL_COMPLETED_NV)
|
3840
3840
|
const_set('GL_FENCE_STATUS_NV', 0x84F3) unless defined?(GL_FENCE_STATUS_NV)
|
3841
3841
|
const_set('GL_FENCE_CONDITION_NV', 0x84F4) unless defined?(GL_FENCE_CONDITION_NV)
|
3842
|
-
end #
|
3842
|
+
end # define_ext_enum_GL_NV_fence
|
3843
3843
|
|
3844
|
-
def
|
3844
|
+
def define_ext_enum_GL_NV_float_buffer
|
3845
3845
|
const_set('GL_FLOAT_R_NV', 0x8880) unless defined?(GL_FLOAT_R_NV)
|
3846
3846
|
const_set('GL_FLOAT_RG_NV', 0x8881) unless defined?(GL_FLOAT_RG_NV)
|
3847
3847
|
const_set('GL_FLOAT_RGB_NV', 0x8882) unless defined?(GL_FLOAT_RGB_NV)
|
@@ -3857,46 +3857,46 @@ module OpenGL
|
|
3857
3857
|
const_set('GL_TEXTURE_FLOAT_COMPONENTS_NV', 0x888C) unless defined?(GL_TEXTURE_FLOAT_COMPONENTS_NV)
|
3858
3858
|
const_set('GL_FLOAT_CLEAR_COLOR_VALUE_NV', 0x888D) unless defined?(GL_FLOAT_CLEAR_COLOR_VALUE_NV)
|
3859
3859
|
const_set('GL_FLOAT_RGBA_MODE_NV', 0x888E) unless defined?(GL_FLOAT_RGBA_MODE_NV)
|
3860
|
-
end #
|
3860
|
+
end # define_ext_enum_GL_NV_float_buffer
|
3861
3861
|
|
3862
|
-
def
|
3862
|
+
def define_ext_enum_GL_NV_fog_distance
|
3863
3863
|
const_set('GL_FOG_DISTANCE_MODE_NV', 0x855A) unless defined?(GL_FOG_DISTANCE_MODE_NV)
|
3864
3864
|
const_set('GL_EYE_RADIAL_NV', 0x855B) unless defined?(GL_EYE_RADIAL_NV)
|
3865
3865
|
const_set('GL_EYE_PLANE_ABSOLUTE_NV', 0x855C) unless defined?(GL_EYE_PLANE_ABSOLUTE_NV)
|
3866
3866
|
const_set('GL_EYE_PLANE', 0x2502) unless defined?(GL_EYE_PLANE)
|
3867
|
-
end #
|
3867
|
+
end # define_ext_enum_GL_NV_fog_distance
|
3868
3868
|
|
3869
|
-
def
|
3869
|
+
def define_ext_enum_GL_NV_fragment_program
|
3870
3870
|
const_set('GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV', 0x8868) unless defined?(GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV)
|
3871
3871
|
const_set('GL_FRAGMENT_PROGRAM_NV', 0x8870) unless defined?(GL_FRAGMENT_PROGRAM_NV)
|
3872
3872
|
const_set('GL_MAX_TEXTURE_COORDS_NV', 0x8871) unless defined?(GL_MAX_TEXTURE_COORDS_NV)
|
3873
3873
|
const_set('GL_MAX_TEXTURE_IMAGE_UNITS_NV', 0x8872) unless defined?(GL_MAX_TEXTURE_IMAGE_UNITS_NV)
|
3874
3874
|
const_set('GL_FRAGMENT_PROGRAM_BINDING_NV', 0x8873) unless defined?(GL_FRAGMENT_PROGRAM_BINDING_NV)
|
3875
3875
|
const_set('GL_PROGRAM_ERROR_STRING_NV', 0x8874) unless defined?(GL_PROGRAM_ERROR_STRING_NV)
|
3876
|
-
end #
|
3876
|
+
end # define_ext_enum_GL_NV_fragment_program
|
3877
3877
|
|
3878
|
-
def
|
3878
|
+
def define_ext_enum_GL_NV_fragment_program2
|
3879
3879
|
const_set('GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV', 0x88F4) unless defined?(GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV)
|
3880
3880
|
const_set('GL_MAX_PROGRAM_CALL_DEPTH_NV', 0x88F5) unless defined?(GL_MAX_PROGRAM_CALL_DEPTH_NV)
|
3881
3881
|
const_set('GL_MAX_PROGRAM_IF_DEPTH_NV', 0x88F6) unless defined?(GL_MAX_PROGRAM_IF_DEPTH_NV)
|
3882
3882
|
const_set('GL_MAX_PROGRAM_LOOP_DEPTH_NV', 0x88F7) unless defined?(GL_MAX_PROGRAM_LOOP_DEPTH_NV)
|
3883
3883
|
const_set('GL_MAX_PROGRAM_LOOP_COUNT_NV', 0x88F8) unless defined?(GL_MAX_PROGRAM_LOOP_COUNT_NV)
|
3884
|
-
end #
|
3884
|
+
end # define_ext_enum_GL_NV_fragment_program2
|
3885
3885
|
|
3886
|
-
def
|
3887
|
-
end #
|
3886
|
+
def define_ext_enum_GL_NV_fragment_program4
|
3887
|
+
end # define_ext_enum_GL_NV_fragment_program4
|
3888
3888
|
|
3889
|
-
def
|
3890
|
-
end #
|
3889
|
+
def define_ext_enum_GL_NV_fragment_program_option
|
3890
|
+
end # define_ext_enum_GL_NV_fragment_program_option
|
3891
3891
|
|
3892
|
-
def
|
3892
|
+
def define_ext_enum_GL_NV_framebuffer_multisample_coverage
|
3893
3893
|
const_set('GL_RENDERBUFFER_COVERAGE_SAMPLES_NV', 0x8CAB) unless defined?(GL_RENDERBUFFER_COVERAGE_SAMPLES_NV)
|
3894
3894
|
const_set('GL_RENDERBUFFER_COLOR_SAMPLES_NV', 0x8E10) unless defined?(GL_RENDERBUFFER_COLOR_SAMPLES_NV)
|
3895
3895
|
const_set('GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV', 0x8E11) unless defined?(GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV)
|
3896
3896
|
const_set('GL_MULTISAMPLE_COVERAGE_MODES_NV', 0x8E12) unless defined?(GL_MULTISAMPLE_COVERAGE_MODES_NV)
|
3897
|
-
end #
|
3897
|
+
end # define_ext_enum_GL_NV_framebuffer_multisample_coverage
|
3898
3898
|
|
3899
|
-
def
|
3899
|
+
def define_ext_enum_GL_NV_geometry_program4
|
3900
3900
|
const_set('GL_LINES_ADJACENCY_EXT', 0x000A) unless defined?(GL_LINES_ADJACENCY_EXT)
|
3901
3901
|
const_set('GL_LINE_STRIP_ADJACENCY_EXT', 0x000B) unless defined?(GL_LINE_STRIP_ADJACENCY_EXT)
|
3902
3902
|
const_set('GL_TRIANGLES_ADJACENCY_EXT', 0x000C) unless defined?(GL_TRIANGLES_ADJACENCY_EXT)
|
@@ -3913,12 +3913,12 @@ module OpenGL
|
|
3913
3913
|
const_set('GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT', 0x8DA9) unless defined?(GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT)
|
3914
3914
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT', 0x8CD4) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT)
|
3915
3915
|
const_set('GL_PROGRAM_POINT_SIZE_EXT', 0x8642) unless defined?(GL_PROGRAM_POINT_SIZE_EXT)
|
3916
|
-
end #
|
3916
|
+
end # define_ext_enum_GL_NV_geometry_program4
|
3917
3917
|
|
3918
|
-
def
|
3919
|
-
end #
|
3918
|
+
def define_ext_enum_GL_NV_geometry_shader4
|
3919
|
+
end # define_ext_enum_GL_NV_geometry_shader4
|
3920
3920
|
|
3921
|
-
def
|
3921
|
+
def define_ext_enum_GL_NV_gpu_program4
|
3922
3922
|
const_set('GL_MIN_PROGRAM_TEXEL_OFFSET_NV', 0x8904) unless defined?(GL_MIN_PROGRAM_TEXEL_OFFSET_NV)
|
3923
3923
|
const_set('GL_MAX_PROGRAM_TEXEL_OFFSET_NV', 0x8905) unless defined?(GL_MAX_PROGRAM_TEXEL_OFFSET_NV)
|
3924
3924
|
const_set('GL_PROGRAM_ATTRIB_COMPONENTS_NV', 0x8906) unless defined?(GL_PROGRAM_ATTRIB_COMPONENTS_NV)
|
@@ -3927,9 +3927,9 @@ module OpenGL
|
|
3927
3927
|
const_set('GL_MAX_PROGRAM_RESULT_COMPONENTS_NV', 0x8909) unless defined?(GL_MAX_PROGRAM_RESULT_COMPONENTS_NV)
|
3928
3928
|
const_set('GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV', 0x8DA5) unless defined?(GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV)
|
3929
3929
|
const_set('GL_MAX_PROGRAM_GENERIC_RESULTS_NV', 0x8DA6) unless defined?(GL_MAX_PROGRAM_GENERIC_RESULTS_NV)
|
3930
|
-
end #
|
3930
|
+
end # define_ext_enum_GL_NV_gpu_program4
|
3931
3931
|
|
3932
|
-
def
|
3932
|
+
def define_ext_enum_GL_NV_gpu_program5
|
3933
3933
|
const_set('GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV', 0x8E5A) unless defined?(GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV)
|
3934
3934
|
const_set('GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV', 0x8E5B) unless defined?(GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV)
|
3935
3935
|
const_set('GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV', 0x8E5C) unless defined?(GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV)
|
@@ -3938,12 +3938,12 @@ module OpenGL
|
|
3938
3938
|
const_set('GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV', 0x8E5F) unless defined?(GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV)
|
3939
3939
|
const_set('GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV', 0x8F44) unless defined?(GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV)
|
3940
3940
|
const_set('GL_MAX_PROGRAM_SUBROUTINE_NUM_NV', 0x8F45) unless defined?(GL_MAX_PROGRAM_SUBROUTINE_NUM_NV)
|
3941
|
-
end #
|
3941
|
+
end # define_ext_enum_GL_NV_gpu_program5
|
3942
3942
|
|
3943
|
-
def
|
3944
|
-
end #
|
3943
|
+
def define_ext_enum_GL_NV_gpu_program5_mem_extended
|
3944
|
+
end # define_ext_enum_GL_NV_gpu_program5_mem_extended
|
3945
3945
|
|
3946
|
-
def
|
3946
|
+
def define_ext_enum_GL_NV_gpu_shader5
|
3947
3947
|
const_set('GL_INT64_NV', 0x140E) unless defined?(GL_INT64_NV)
|
3948
3948
|
const_set('GL_UNSIGNED_INT64_NV', 0x140F) unless defined?(GL_UNSIGNED_INT64_NV)
|
3949
3949
|
const_set('GL_INT8_NV', 0x8FE0) unless defined?(GL_INT8_NV)
|
@@ -3973,50 +3973,50 @@ module OpenGL
|
|
3973
3973
|
const_set('GL_FLOAT16_VEC3_NV', 0x8FFA) unless defined?(GL_FLOAT16_VEC3_NV)
|
3974
3974
|
const_set('GL_FLOAT16_VEC4_NV', 0x8FFB) unless defined?(GL_FLOAT16_VEC4_NV)
|
3975
3975
|
const_set('GL_PATCHES', 0x000E) unless defined?(GL_PATCHES)
|
3976
|
-
end #
|
3976
|
+
end # define_ext_enum_GL_NV_gpu_shader5
|
3977
3977
|
|
3978
|
-
def
|
3978
|
+
def define_ext_enum_GL_NV_half_float
|
3979
3979
|
const_set('GL_HALF_FLOAT_NV', 0x140B) unless defined?(GL_HALF_FLOAT_NV)
|
3980
|
-
end #
|
3980
|
+
end # define_ext_enum_GL_NV_half_float
|
3981
3981
|
|
3982
|
-
def
|
3982
|
+
def define_ext_enum_GL_NV_light_max_exponent
|
3983
3983
|
const_set('GL_MAX_SHININESS_NV', 0x8504) unless defined?(GL_MAX_SHININESS_NV)
|
3984
3984
|
const_set('GL_MAX_SPOT_EXPONENT_NV', 0x8505) unless defined?(GL_MAX_SPOT_EXPONENT_NV)
|
3985
|
-
end #
|
3985
|
+
end # define_ext_enum_GL_NV_light_max_exponent
|
3986
3986
|
|
3987
|
-
def
|
3987
|
+
def define_ext_enum_GL_NV_multisample_coverage
|
3988
3988
|
const_set('GL_SAMPLES_ARB', 0x80A9) unless defined?(GL_SAMPLES_ARB)
|
3989
3989
|
const_set('GL_COLOR_SAMPLES_NV', 0x8E20) unless defined?(GL_COLOR_SAMPLES_NV)
|
3990
|
-
end #
|
3990
|
+
end # define_ext_enum_GL_NV_multisample_coverage
|
3991
3991
|
|
3992
|
-
def
|
3992
|
+
def define_ext_enum_GL_NV_multisample_filter_hint
|
3993
3993
|
const_set('GL_MULTISAMPLE_FILTER_HINT_NV', 0x8534) unless defined?(GL_MULTISAMPLE_FILTER_HINT_NV)
|
3994
|
-
end #
|
3994
|
+
end # define_ext_enum_GL_NV_multisample_filter_hint
|
3995
3995
|
|
3996
|
-
def
|
3996
|
+
def define_ext_enum_GL_NV_occlusion_query
|
3997
3997
|
const_set('GL_PIXEL_COUNTER_BITS_NV', 0x8864) unless defined?(GL_PIXEL_COUNTER_BITS_NV)
|
3998
3998
|
const_set('GL_CURRENT_OCCLUSION_QUERY_ID_NV', 0x8865) unless defined?(GL_CURRENT_OCCLUSION_QUERY_ID_NV)
|
3999
3999
|
const_set('GL_PIXEL_COUNT_NV', 0x8866) unless defined?(GL_PIXEL_COUNT_NV)
|
4000
4000
|
const_set('GL_PIXEL_COUNT_AVAILABLE_NV', 0x8867) unless defined?(GL_PIXEL_COUNT_AVAILABLE_NV)
|
4001
|
-
end #
|
4001
|
+
end # define_ext_enum_GL_NV_occlusion_query
|
4002
4002
|
|
4003
|
-
def
|
4003
|
+
def define_ext_enum_GL_NV_packed_depth_stencil
|
4004
4004
|
const_set('GL_DEPTH_STENCIL_NV', 0x84F9) unless defined?(GL_DEPTH_STENCIL_NV)
|
4005
4005
|
const_set('GL_UNSIGNED_INT_24_8_NV', 0x84FA) unless defined?(GL_UNSIGNED_INT_24_8_NV)
|
4006
|
-
end #
|
4006
|
+
end # define_ext_enum_GL_NV_packed_depth_stencil
|
4007
4007
|
|
4008
|
-
def
|
4008
|
+
def define_ext_enum_GL_NV_parameter_buffer_object
|
4009
4009
|
const_set('GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV', 0x8DA0) unless defined?(GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV)
|
4010
4010
|
const_set('GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV', 0x8DA1) unless defined?(GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV)
|
4011
4011
|
const_set('GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV', 0x8DA2) unless defined?(GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV)
|
4012
4012
|
const_set('GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV', 0x8DA3) unless defined?(GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV)
|
4013
4013
|
const_set('GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV', 0x8DA4) unless defined?(GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV)
|
4014
|
-
end #
|
4014
|
+
end # define_ext_enum_GL_NV_parameter_buffer_object
|
4015
4015
|
|
4016
|
-
def
|
4017
|
-
end #
|
4016
|
+
def define_ext_enum_GL_NV_parameter_buffer_object2
|
4017
|
+
end # define_ext_enum_GL_NV_parameter_buffer_object2
|
4018
4018
|
|
4019
|
-
def
|
4019
|
+
def define_ext_enum_GL_NV_path_rendering
|
4020
4020
|
const_set('GL_PATH_FORMAT_SVG_NV', 0x9070) unless defined?(GL_PATH_FORMAT_SVG_NV)
|
4021
4021
|
const_set('GL_PATH_FORMAT_PS_NV', 0x9071) unless defined?(GL_PATH_FORMAT_PS_NV)
|
4022
4022
|
const_set('GL_STANDARD_FONT_NAME_NV', 0x9072) unless defined?(GL_STANDARD_FONT_NAME_NV)
|
@@ -4147,38 +4147,38 @@ module OpenGL
|
|
4147
4147
|
const_set('GL_PRIMARY_COLOR', 0x8577) unless defined?(GL_PRIMARY_COLOR)
|
4148
4148
|
const_set('GL_PRIMARY_COLOR_NV', 0x852C) unless defined?(GL_PRIMARY_COLOR_NV)
|
4149
4149
|
const_set('GL_SECONDARY_COLOR_NV', 0x852D) unless defined?(GL_SECONDARY_COLOR_NV)
|
4150
|
-
end #
|
4150
|
+
end # define_ext_enum_GL_NV_path_rendering
|
4151
4151
|
|
4152
|
-
def
|
4152
|
+
def define_ext_enum_GL_NV_pixel_data_range
|
4153
4153
|
const_set('GL_WRITE_PIXEL_DATA_RANGE_NV', 0x8878) unless defined?(GL_WRITE_PIXEL_DATA_RANGE_NV)
|
4154
4154
|
const_set('GL_READ_PIXEL_DATA_RANGE_NV', 0x8879) unless defined?(GL_READ_PIXEL_DATA_RANGE_NV)
|
4155
4155
|
const_set('GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV', 0x887A) unless defined?(GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV)
|
4156
4156
|
const_set('GL_READ_PIXEL_DATA_RANGE_LENGTH_NV', 0x887B) unless defined?(GL_READ_PIXEL_DATA_RANGE_LENGTH_NV)
|
4157
4157
|
const_set('GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV', 0x887C) unless defined?(GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV)
|
4158
4158
|
const_set('GL_READ_PIXEL_DATA_RANGE_POINTER_NV', 0x887D) unless defined?(GL_READ_PIXEL_DATA_RANGE_POINTER_NV)
|
4159
|
-
end #
|
4159
|
+
end # define_ext_enum_GL_NV_pixel_data_range
|
4160
4160
|
|
4161
|
-
def
|
4161
|
+
def define_ext_enum_GL_NV_point_sprite
|
4162
4162
|
const_set('GL_POINT_SPRITE_NV', 0x8861) unless defined?(GL_POINT_SPRITE_NV)
|
4163
4163
|
const_set('GL_COORD_REPLACE_NV', 0x8862) unless defined?(GL_COORD_REPLACE_NV)
|
4164
4164
|
const_set('GL_POINT_SPRITE_R_MODE_NV', 0x8863) unless defined?(GL_POINT_SPRITE_R_MODE_NV)
|
4165
|
-
end #
|
4165
|
+
end # define_ext_enum_GL_NV_point_sprite
|
4166
4166
|
|
4167
|
-
def
|
4167
|
+
def define_ext_enum_GL_NV_present_video
|
4168
4168
|
const_set('GL_FRAME_NV', 0x8E26) unless defined?(GL_FRAME_NV)
|
4169
4169
|
const_set('GL_FIELDS_NV', 0x8E27) unless defined?(GL_FIELDS_NV)
|
4170
4170
|
const_set('GL_CURRENT_TIME_NV', 0x8E28) unless defined?(GL_CURRENT_TIME_NV)
|
4171
4171
|
const_set('GL_NUM_FILL_STREAMS_NV', 0x8E29) unless defined?(GL_NUM_FILL_STREAMS_NV)
|
4172
4172
|
const_set('GL_PRESENT_TIME_NV', 0x8E2A) unless defined?(GL_PRESENT_TIME_NV)
|
4173
4173
|
const_set('GL_PRESENT_DURATION_NV', 0x8E2B) unless defined?(GL_PRESENT_DURATION_NV)
|
4174
|
-
end #
|
4174
|
+
end # define_ext_enum_GL_NV_present_video
|
4175
4175
|
|
4176
|
-
def
|
4176
|
+
def define_ext_enum_GL_NV_primitive_restart
|
4177
4177
|
const_set('GL_PRIMITIVE_RESTART_NV', 0x8558) unless defined?(GL_PRIMITIVE_RESTART_NV)
|
4178
4178
|
const_set('GL_PRIMITIVE_RESTART_INDEX_NV', 0x8559) unless defined?(GL_PRIMITIVE_RESTART_INDEX_NV)
|
4179
|
-
end #
|
4179
|
+
end # define_ext_enum_GL_NV_primitive_restart
|
4180
4180
|
|
4181
|
-
def
|
4181
|
+
def define_ext_enum_GL_NV_register_combiners
|
4182
4182
|
const_set('GL_REGISTER_COMBINERS_NV', 0x8522) unless defined?(GL_REGISTER_COMBINERS_NV)
|
4183
4183
|
const_set('GL_VARIABLE_A_NV', 0x8523) unless defined?(GL_VARIABLE_A_NV)
|
4184
4184
|
const_set('GL_VARIABLE_B_NV', 0x8524) unless defined?(GL_VARIABLE_B_NV)
|
@@ -4235,83 +4235,83 @@ module OpenGL
|
|
4235
4235
|
const_set('GL_ZERO', 0) unless defined?(GL_ZERO)
|
4236
4236
|
const_set('GL_NONE', 0) unless defined?(GL_NONE)
|
4237
4237
|
const_set('GL_FOG', 0x0B60) unless defined?(GL_FOG)
|
4238
|
-
end #
|
4238
|
+
end # define_ext_enum_GL_NV_register_combiners
|
4239
4239
|
|
4240
|
-
def
|
4240
|
+
def define_ext_enum_GL_NV_register_combiners2
|
4241
4241
|
const_set('GL_PER_STAGE_CONSTANTS_NV', 0x8535) unless defined?(GL_PER_STAGE_CONSTANTS_NV)
|
4242
|
-
end #
|
4242
|
+
end # define_ext_enum_GL_NV_register_combiners2
|
4243
4243
|
|
4244
|
-
def
|
4245
|
-
end #
|
4244
|
+
def define_ext_enum_GL_NV_shader_atomic_counters
|
4245
|
+
end # define_ext_enum_GL_NV_shader_atomic_counters
|
4246
4246
|
|
4247
|
-
def
|
4248
|
-
end #
|
4247
|
+
def define_ext_enum_GL_NV_shader_atomic_float
|
4248
|
+
end # define_ext_enum_GL_NV_shader_atomic_float
|
4249
4249
|
|
4250
|
-
def
|
4250
|
+
def define_ext_enum_GL_NV_shader_buffer_load
|
4251
4251
|
const_set('GL_BUFFER_GPU_ADDRESS_NV', 0x8F1D) unless defined?(GL_BUFFER_GPU_ADDRESS_NV)
|
4252
4252
|
const_set('GL_GPU_ADDRESS_NV', 0x8F34) unless defined?(GL_GPU_ADDRESS_NV)
|
4253
4253
|
const_set('GL_MAX_SHADER_BUFFER_ADDRESS_NV', 0x8F35) unless defined?(GL_MAX_SHADER_BUFFER_ADDRESS_NV)
|
4254
|
-
end #
|
4254
|
+
end # define_ext_enum_GL_NV_shader_buffer_load
|
4255
4255
|
|
4256
|
-
def
|
4256
|
+
def define_ext_enum_GL_NV_shader_buffer_store
|
4257
4257
|
const_set('GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV', 0x00000010) unless defined?(GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV)
|
4258
4258
|
const_set('GL_READ_WRITE', 0x88BA) unless defined?(GL_READ_WRITE)
|
4259
4259
|
const_set('GL_WRITE_ONLY', 0x88B9) unless defined?(GL_WRITE_ONLY)
|
4260
|
-
end #
|
4260
|
+
end # define_ext_enum_GL_NV_shader_buffer_store
|
4261
4261
|
|
4262
|
-
def
|
4263
|
-
end #
|
4262
|
+
def define_ext_enum_GL_NV_shader_storage_buffer_object
|
4263
|
+
end # define_ext_enum_GL_NV_shader_storage_buffer_object
|
4264
4264
|
|
4265
|
-
def
|
4265
|
+
def define_ext_enum_GL_NV_tessellation_program5
|
4266
4266
|
const_set('GL_MAX_PROGRAM_PATCH_ATTRIBS_NV', 0x86D8) unless defined?(GL_MAX_PROGRAM_PATCH_ATTRIBS_NV)
|
4267
4267
|
const_set('GL_TESS_CONTROL_PROGRAM_NV', 0x891E) unless defined?(GL_TESS_CONTROL_PROGRAM_NV)
|
4268
4268
|
const_set('GL_TESS_EVALUATION_PROGRAM_NV', 0x891F) unless defined?(GL_TESS_EVALUATION_PROGRAM_NV)
|
4269
4269
|
const_set('GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV', 0x8C74) unless defined?(GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV)
|
4270
4270
|
const_set('GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV', 0x8C75) unless defined?(GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV)
|
4271
|
-
end #
|
4271
|
+
end # define_ext_enum_GL_NV_tessellation_program5
|
4272
4272
|
|
4273
|
-
def
|
4273
|
+
def define_ext_enum_GL_NV_texgen_emboss
|
4274
4274
|
const_set('GL_EMBOSS_LIGHT_NV', 0x855D) unless defined?(GL_EMBOSS_LIGHT_NV)
|
4275
4275
|
const_set('GL_EMBOSS_CONSTANT_NV', 0x855E) unless defined?(GL_EMBOSS_CONSTANT_NV)
|
4276
4276
|
const_set('GL_EMBOSS_MAP_NV', 0x855F) unless defined?(GL_EMBOSS_MAP_NV)
|
4277
|
-
end #
|
4277
|
+
end # define_ext_enum_GL_NV_texgen_emboss
|
4278
4278
|
|
4279
|
-
def
|
4279
|
+
def define_ext_enum_GL_NV_texgen_reflection
|
4280
4280
|
const_set('GL_NORMAL_MAP_NV', 0x8511) unless defined?(GL_NORMAL_MAP_NV)
|
4281
4281
|
const_set('GL_REFLECTION_MAP_NV', 0x8512) unless defined?(GL_REFLECTION_MAP_NV)
|
4282
|
-
end #
|
4282
|
+
end # define_ext_enum_GL_NV_texgen_reflection
|
4283
4283
|
|
4284
|
-
def
|
4285
|
-
end #
|
4284
|
+
def define_ext_enum_GL_NV_texture_barrier
|
4285
|
+
end # define_ext_enum_GL_NV_texture_barrier
|
4286
4286
|
|
4287
|
-
def
|
4288
|
-
end #
|
4287
|
+
def define_ext_enum_GL_NV_texture_compression_vtc
|
4288
|
+
end # define_ext_enum_GL_NV_texture_compression_vtc
|
4289
4289
|
|
4290
|
-
def
|
4290
|
+
def define_ext_enum_GL_NV_texture_env_combine4
|
4291
4291
|
const_set('GL_COMBINE4_NV', 0x8503) unless defined?(GL_COMBINE4_NV)
|
4292
4292
|
const_set('GL_SOURCE3_RGB_NV', 0x8583) unless defined?(GL_SOURCE3_RGB_NV)
|
4293
4293
|
const_set('GL_SOURCE3_ALPHA_NV', 0x858B) unless defined?(GL_SOURCE3_ALPHA_NV)
|
4294
4294
|
const_set('GL_OPERAND3_RGB_NV', 0x8593) unless defined?(GL_OPERAND3_RGB_NV)
|
4295
4295
|
const_set('GL_OPERAND3_ALPHA_NV', 0x859B) unless defined?(GL_OPERAND3_ALPHA_NV)
|
4296
|
-
end #
|
4296
|
+
end # define_ext_enum_GL_NV_texture_env_combine4
|
4297
4297
|
|
4298
|
-
def
|
4298
|
+
def define_ext_enum_GL_NV_texture_expand_normal
|
4299
4299
|
const_set('GL_TEXTURE_UNSIGNED_REMAP_MODE_NV', 0x888F) unless defined?(GL_TEXTURE_UNSIGNED_REMAP_MODE_NV)
|
4300
|
-
end #
|
4300
|
+
end # define_ext_enum_GL_NV_texture_expand_normal
|
4301
4301
|
|
4302
|
-
def
|
4302
|
+
def define_ext_enum_GL_NV_texture_multisample
|
4303
4303
|
const_set('GL_TEXTURE_COVERAGE_SAMPLES_NV', 0x9045) unless defined?(GL_TEXTURE_COVERAGE_SAMPLES_NV)
|
4304
4304
|
const_set('GL_TEXTURE_COLOR_SAMPLES_NV', 0x9046) unless defined?(GL_TEXTURE_COLOR_SAMPLES_NV)
|
4305
|
-
end #
|
4305
|
+
end # define_ext_enum_GL_NV_texture_multisample
|
4306
4306
|
|
4307
|
-
def
|
4307
|
+
def define_ext_enum_GL_NV_texture_rectangle
|
4308
4308
|
const_set('GL_TEXTURE_RECTANGLE_NV', 0x84F5) unless defined?(GL_TEXTURE_RECTANGLE_NV)
|
4309
4309
|
const_set('GL_TEXTURE_BINDING_RECTANGLE_NV', 0x84F6) unless defined?(GL_TEXTURE_BINDING_RECTANGLE_NV)
|
4310
4310
|
const_set('GL_PROXY_TEXTURE_RECTANGLE_NV', 0x84F7) unless defined?(GL_PROXY_TEXTURE_RECTANGLE_NV)
|
4311
4311
|
const_set('GL_MAX_RECTANGLE_TEXTURE_SIZE_NV', 0x84F8) unless defined?(GL_MAX_RECTANGLE_TEXTURE_SIZE_NV)
|
4312
|
-
end #
|
4312
|
+
end # define_ext_enum_GL_NV_texture_rectangle
|
4313
4313
|
|
4314
|
-
def
|
4314
|
+
def define_ext_enum_GL_NV_texture_shader
|
4315
4315
|
const_set('GL_OFFSET_TEXTURE_RECTANGLE_NV', 0x864C) unless defined?(GL_OFFSET_TEXTURE_RECTANGLE_NV)
|
4316
4316
|
const_set('GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV', 0x864D) unless defined?(GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV)
|
4317
4317
|
const_set('GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV', 0x864E) unless defined?(GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV)
|
@@ -4326,9 +4326,9 @@ module OpenGL
|
|
4326
4326
|
const_set('GL_OFFSET_TEXTURE_MATRIX_NV', 0x86E1) unless defined?(GL_OFFSET_TEXTURE_MATRIX_NV)
|
4327
4327
|
const_set('GL_OFFSET_TEXTURE_SCALE_NV', 0x86E2) unless defined?(GL_OFFSET_TEXTURE_SCALE_NV)
|
4328
4328
|
const_set('GL_OFFSET_TEXTURE_BIAS_NV', 0x86E3) unless defined?(GL_OFFSET_TEXTURE_BIAS_NV)
|
4329
|
-
const_set('GL_OFFSET_TEXTURE_2D_MATRIX_NV', ) unless defined?(GL_OFFSET_TEXTURE_2D_MATRIX_NV)
|
4330
|
-
const_set('GL_OFFSET_TEXTURE_2D_SCALE_NV', ) unless defined?(GL_OFFSET_TEXTURE_2D_SCALE_NV)
|
4331
|
-
const_set('GL_OFFSET_TEXTURE_2D_BIAS_NV', ) unless defined?(GL_OFFSET_TEXTURE_2D_BIAS_NV)
|
4329
|
+
const_set('GL_OFFSET_TEXTURE_2D_MATRIX_NV', 0x86E1) unless defined?(GL_OFFSET_TEXTURE_2D_MATRIX_NV)
|
4330
|
+
const_set('GL_OFFSET_TEXTURE_2D_SCALE_NV', 0x86E2) unless defined?(GL_OFFSET_TEXTURE_2D_SCALE_NV)
|
4331
|
+
const_set('GL_OFFSET_TEXTURE_2D_BIAS_NV', 0x86E3) unless defined?(GL_OFFSET_TEXTURE_2D_BIAS_NV)
|
4332
4332
|
const_set('GL_PREVIOUS_TEXTURE_INPUT_NV', 0x86E4) unless defined?(GL_PREVIOUS_TEXTURE_INPUT_NV)
|
4333
4333
|
const_set('GL_CONST_EYE_NV', 0x86E5) unless defined?(GL_CONST_EYE_NV)
|
4334
4334
|
const_set('GL_PASS_THROUGH_NV', 0x86E6) unless defined?(GL_PASS_THROUGH_NV)
|
@@ -4385,13 +4385,13 @@ module OpenGL
|
|
4385
4385
|
const_set('GL_TEXTURE_DS_SIZE_NV', 0x871D) unless defined?(GL_TEXTURE_DS_SIZE_NV)
|
4386
4386
|
const_set('GL_TEXTURE_DT_SIZE_NV', 0x871E) unless defined?(GL_TEXTURE_DT_SIZE_NV)
|
4387
4387
|
const_set('GL_TEXTURE_MAG_SIZE_NV', 0x871F) unless defined?(GL_TEXTURE_MAG_SIZE_NV)
|
4388
|
-
end #
|
4388
|
+
end # define_ext_enum_GL_NV_texture_shader
|
4389
4389
|
|
4390
|
-
def
|
4390
|
+
def define_ext_enum_GL_NV_texture_shader2
|
4391
4391
|
const_set('GL_DOT_PRODUCT_TEXTURE_3D_NV', 0x86EF) unless defined?(GL_DOT_PRODUCT_TEXTURE_3D_NV)
|
4392
|
-
end #
|
4392
|
+
end # define_ext_enum_GL_NV_texture_shader2
|
4393
4393
|
|
4394
|
-
def
|
4394
|
+
def define_ext_enum_GL_NV_texture_shader3
|
4395
4395
|
const_set('GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV', 0x8850) unless defined?(GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV)
|
4396
4396
|
const_set('GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV', 0x8851) unless defined?(GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV)
|
4397
4397
|
const_set('GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV', 0x8852) unless defined?(GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV)
|
@@ -4409,9 +4409,9 @@ module OpenGL
|
|
4409
4409
|
const_set('GL_HILO8_NV', 0x885E) unless defined?(GL_HILO8_NV)
|
4410
4410
|
const_set('GL_SIGNED_HILO8_NV', 0x885F) unless defined?(GL_SIGNED_HILO8_NV)
|
4411
4411
|
const_set('GL_FORCE_BLUE_TO_ONE_NV', 0x8860) unless defined?(GL_FORCE_BLUE_TO_ONE_NV)
|
4412
|
-
end #
|
4412
|
+
end # define_ext_enum_GL_NV_texture_shader3
|
4413
4413
|
|
4414
|
-
def
|
4414
|
+
def define_ext_enum_GL_NV_transform_feedback
|
4415
4415
|
const_set('GL_BACK_PRIMARY_COLOR_NV', 0x8C77) unless defined?(GL_BACK_PRIMARY_COLOR_NV)
|
4416
4416
|
const_set('GL_BACK_SECONDARY_COLOR_NV', 0x8C78) unless defined?(GL_BACK_SECONDARY_COLOR_NV)
|
4417
4417
|
const_set('GL_TEXTURE_COORD_NV', 0x8C79) unless defined?(GL_TEXTURE_COORD_NV)
|
@@ -4443,40 +4443,40 @@ module OpenGL
|
|
4443
4443
|
const_set('GL_SKIP_COMPONENTS3_NV', -4) unless defined?(GL_SKIP_COMPONENTS3_NV)
|
4444
4444
|
const_set('GL_SKIP_COMPONENTS2_NV', -5) unless defined?(GL_SKIP_COMPONENTS2_NV)
|
4445
4445
|
const_set('GL_SKIP_COMPONENTS1_NV', -6) unless defined?(GL_SKIP_COMPONENTS1_NV)
|
4446
|
-
end #
|
4446
|
+
end # define_ext_enum_GL_NV_transform_feedback
|
4447
4447
|
|
4448
|
-
def
|
4448
|
+
def define_ext_enum_GL_NV_transform_feedback2
|
4449
4449
|
const_set('GL_TRANSFORM_FEEDBACK_NV', 0x8E22) unless defined?(GL_TRANSFORM_FEEDBACK_NV)
|
4450
4450
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV', 0x8E23) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV)
|
4451
4451
|
const_set('GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV', 0x8E24) unless defined?(GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV)
|
4452
4452
|
const_set('GL_TRANSFORM_FEEDBACK_BINDING_NV', 0x8E25) unless defined?(GL_TRANSFORM_FEEDBACK_BINDING_NV)
|
4453
|
-
end #
|
4453
|
+
end # define_ext_enum_GL_NV_transform_feedback2
|
4454
4454
|
|
4455
|
-
def
|
4455
|
+
def define_ext_enum_GL_NV_vdpau_interop
|
4456
4456
|
const_set('GL_SURFACE_STATE_NV', 0x86EB) unless defined?(GL_SURFACE_STATE_NV)
|
4457
4457
|
const_set('GL_SURFACE_REGISTERED_NV', 0x86FD) unless defined?(GL_SURFACE_REGISTERED_NV)
|
4458
4458
|
const_set('GL_SURFACE_MAPPED_NV', 0x8700) unless defined?(GL_SURFACE_MAPPED_NV)
|
4459
4459
|
const_set('GL_WRITE_DISCARD_NV', 0x88BE) unless defined?(GL_WRITE_DISCARD_NV)
|
4460
|
-
end #
|
4460
|
+
end # define_ext_enum_GL_NV_vdpau_interop
|
4461
4461
|
|
4462
|
-
def
|
4462
|
+
def define_ext_enum_GL_NV_vertex_array_range
|
4463
4463
|
const_set('GL_VERTEX_ARRAY_RANGE_NV', 0x851D) unless defined?(GL_VERTEX_ARRAY_RANGE_NV)
|
4464
4464
|
const_set('GL_VERTEX_ARRAY_RANGE_LENGTH_NV', 0x851E) unless defined?(GL_VERTEX_ARRAY_RANGE_LENGTH_NV)
|
4465
4465
|
const_set('GL_VERTEX_ARRAY_RANGE_VALID_NV', 0x851F) unless defined?(GL_VERTEX_ARRAY_RANGE_VALID_NV)
|
4466
4466
|
const_set('GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV', 0x8520) unless defined?(GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV)
|
4467
4467
|
const_set('GL_VERTEX_ARRAY_RANGE_POINTER_NV', 0x8521) unless defined?(GL_VERTEX_ARRAY_RANGE_POINTER_NV)
|
4468
|
-
end #
|
4468
|
+
end # define_ext_enum_GL_NV_vertex_array_range
|
4469
4469
|
|
4470
|
-
def
|
4470
|
+
def define_ext_enum_GL_NV_vertex_array_range2
|
4471
4471
|
const_set('GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV', 0x8533) unless defined?(GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV)
|
4472
|
-
end #
|
4472
|
+
end # define_ext_enum_GL_NV_vertex_array_range2
|
4473
4473
|
|
4474
|
-
def
|
4474
|
+
def define_ext_enum_GL_NV_vertex_attrib_integer_64bit
|
4475
4475
|
const_set('GL_INT64_NV', 0x140E) unless defined?(GL_INT64_NV)
|
4476
4476
|
const_set('GL_UNSIGNED_INT64_NV', 0x140F) unless defined?(GL_UNSIGNED_INT64_NV)
|
4477
|
-
end #
|
4477
|
+
end # define_ext_enum_GL_NV_vertex_attrib_integer_64bit
|
4478
4478
|
|
4479
|
-
def
|
4479
|
+
def define_ext_enum_GL_NV_vertex_buffer_unified_memory
|
4480
4480
|
const_set('GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV', 0x8F1E) unless defined?(GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV)
|
4481
4481
|
const_set('GL_ELEMENT_ARRAY_UNIFIED_NV', 0x8F1F) unless defined?(GL_ELEMENT_ARRAY_UNIFIED_NV)
|
4482
4482
|
const_set('GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV', 0x8F20) unless defined?(GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV)
|
@@ -4502,9 +4502,9 @@ module OpenGL
|
|
4502
4502
|
const_set('GL_DRAW_INDIRECT_UNIFIED_NV', 0x8F40) unless defined?(GL_DRAW_INDIRECT_UNIFIED_NV)
|
4503
4503
|
const_set('GL_DRAW_INDIRECT_ADDRESS_NV', 0x8F41) unless defined?(GL_DRAW_INDIRECT_ADDRESS_NV)
|
4504
4504
|
const_set('GL_DRAW_INDIRECT_LENGTH_NV', 0x8F42) unless defined?(GL_DRAW_INDIRECT_LENGTH_NV)
|
4505
|
-
end #
|
4505
|
+
end # define_ext_enum_GL_NV_vertex_buffer_unified_memory
|
4506
4506
|
|
4507
|
-
def
|
4507
|
+
def define_ext_enum_GL_NV_vertex_program
|
4508
4508
|
const_set('GL_VERTEX_PROGRAM_NV', 0x8620) unless defined?(GL_VERTEX_PROGRAM_NV)
|
4509
4509
|
const_set('GL_VERTEX_STATE_PROGRAM_NV', 0x8621) unless defined?(GL_VERTEX_STATE_PROGRAM_NV)
|
4510
4510
|
const_set('GL_ATTRIB_ARRAY_SIZE_NV', 0x8623) unless defined?(GL_ATTRIB_ARRAY_SIZE_NV)
|
@@ -4588,28 +4588,28 @@ module OpenGL
|
|
4588
4588
|
const_set('GL_MAP2_VERTEX_ATTRIB13_4_NV', 0x867D) unless defined?(GL_MAP2_VERTEX_ATTRIB13_4_NV)
|
4589
4589
|
const_set('GL_MAP2_VERTEX_ATTRIB14_4_NV', 0x867E) unless defined?(GL_MAP2_VERTEX_ATTRIB14_4_NV)
|
4590
4590
|
const_set('GL_MAP2_VERTEX_ATTRIB15_4_NV', 0x867F) unless defined?(GL_MAP2_VERTEX_ATTRIB15_4_NV)
|
4591
|
-
end #
|
4591
|
+
end # define_ext_enum_GL_NV_vertex_program
|
4592
4592
|
|
4593
|
-
def
|
4594
|
-
end #
|
4593
|
+
def define_ext_enum_GL_NV_vertex_program1_1
|
4594
|
+
end # define_ext_enum_GL_NV_vertex_program1_1
|
4595
4595
|
|
4596
|
-
def
|
4597
|
-
end #
|
4596
|
+
def define_ext_enum_GL_NV_vertex_program2
|
4597
|
+
end # define_ext_enum_GL_NV_vertex_program2
|
4598
4598
|
|
4599
|
-
def
|
4599
|
+
def define_ext_enum_GL_NV_vertex_program2_option
|
4600
4600
|
const_set('GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV', 0x88F4) unless defined?(GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV)
|
4601
4601
|
const_set('GL_MAX_PROGRAM_CALL_DEPTH_NV', 0x88F5) unless defined?(GL_MAX_PROGRAM_CALL_DEPTH_NV)
|
4602
|
-
end #
|
4602
|
+
end # define_ext_enum_GL_NV_vertex_program2_option
|
4603
4603
|
|
4604
|
-
def
|
4604
|
+
def define_ext_enum_GL_NV_vertex_program3
|
4605
4605
|
const_set('GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB', 0x8B4C) unless defined?(GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB)
|
4606
|
-
end #
|
4606
|
+
end # define_ext_enum_GL_NV_vertex_program3
|
4607
4607
|
|
4608
|
-
def
|
4608
|
+
def define_ext_enum_GL_NV_vertex_program4
|
4609
4609
|
const_set('GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV', 0x88FD) unless defined?(GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV)
|
4610
|
-
end #
|
4610
|
+
end # define_ext_enum_GL_NV_vertex_program4
|
4611
4611
|
|
4612
|
-
def
|
4612
|
+
def define_ext_enum_GL_NV_video_capture
|
4613
4613
|
const_set('GL_VIDEO_BUFFER_NV', 0x9020) unless defined?(GL_VIDEO_BUFFER_NV)
|
4614
4614
|
const_set('GL_VIDEO_BUFFER_BINDING_NV', 0x9021) unless defined?(GL_VIDEO_BUFFER_BINDING_NV)
|
4615
4615
|
const_set('GL_FIELD_UPPER_NV', 0x9022) unless defined?(GL_FIELD_UPPER_NV)
|
@@ -4639,12 +4639,12 @@ module OpenGL
|
|
4639
4639
|
const_set('GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV', 0x903A) unless defined?(GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV)
|
4640
4640
|
const_set('GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV', 0x903B) unless defined?(GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV)
|
4641
4641
|
const_set('GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV', 0x903C) unless defined?(GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV)
|
4642
|
-
end #
|
4642
|
+
end # define_ext_enum_GL_NV_video_capture
|
4643
4643
|
|
4644
|
-
def
|
4645
|
-
end #
|
4644
|
+
def define_ext_enum_GL_OES_byte_coordinates
|
4645
|
+
end # define_ext_enum_GL_OES_byte_coordinates
|
4646
4646
|
|
4647
|
-
def
|
4647
|
+
def define_ext_enum_GL_OES_compressed_paletted_texture
|
4648
4648
|
const_set('GL_PALETTE4_RGB8_OES', 0x8B90) unless defined?(GL_PALETTE4_RGB8_OES)
|
4649
4649
|
const_set('GL_PALETTE4_RGBA8_OES', 0x8B91) unless defined?(GL_PALETTE4_RGBA8_OES)
|
4650
4650
|
const_set('GL_PALETTE4_R5_G6_B5_OES', 0x8B92) unless defined?(GL_PALETTE4_R5_G6_B5_OES)
|
@@ -4655,43 +4655,43 @@ module OpenGL
|
|
4655
4655
|
const_set('GL_PALETTE8_R5_G6_B5_OES', 0x8B97) unless defined?(GL_PALETTE8_R5_G6_B5_OES)
|
4656
4656
|
const_set('GL_PALETTE8_RGBA4_OES', 0x8B98) unless defined?(GL_PALETTE8_RGBA4_OES)
|
4657
4657
|
const_set('GL_PALETTE8_RGB5_A1_OES', 0x8B99) unless defined?(GL_PALETTE8_RGB5_A1_OES)
|
4658
|
-
end #
|
4658
|
+
end # define_ext_enum_GL_OES_compressed_paletted_texture
|
4659
4659
|
|
4660
|
-
def
|
4660
|
+
def define_ext_enum_GL_OES_fixed_point
|
4661
4661
|
const_set('GL_FIXED_OES', 0x140C) unless defined?(GL_FIXED_OES)
|
4662
|
-
end #
|
4662
|
+
end # define_ext_enum_GL_OES_fixed_point
|
4663
4663
|
|
4664
|
-
def
|
4665
|
-
end #
|
4664
|
+
def define_ext_enum_GL_OES_query_matrix
|
4665
|
+
end # define_ext_enum_GL_OES_query_matrix
|
4666
4666
|
|
4667
|
-
def
|
4667
|
+
def define_ext_enum_GL_OES_read_format
|
4668
4668
|
const_set('GL_IMPLEMENTATION_COLOR_READ_TYPE_OES', 0x8B9A) unless defined?(GL_IMPLEMENTATION_COLOR_READ_TYPE_OES)
|
4669
4669
|
const_set('GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES', 0x8B9B) unless defined?(GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES)
|
4670
|
-
end #
|
4670
|
+
end # define_ext_enum_GL_OES_read_format
|
4671
4671
|
|
4672
|
-
def
|
4673
|
-
end #
|
4672
|
+
def define_ext_enum_GL_OES_single_precision
|
4673
|
+
end # define_ext_enum_GL_OES_single_precision
|
4674
4674
|
|
4675
|
-
def
|
4675
|
+
def define_ext_enum_GL_OML_interlace
|
4676
4676
|
const_set('GL_INTERLACE_OML', 0x8980) unless defined?(GL_INTERLACE_OML)
|
4677
4677
|
const_set('GL_INTERLACE_READ_OML', 0x8981) unless defined?(GL_INTERLACE_READ_OML)
|
4678
|
-
end #
|
4678
|
+
end # define_ext_enum_GL_OML_interlace
|
4679
4679
|
|
4680
|
-
def
|
4680
|
+
def define_ext_enum_GL_OML_resample
|
4681
4681
|
const_set('GL_PACK_RESAMPLE_OML', 0x8984) unless defined?(GL_PACK_RESAMPLE_OML)
|
4682
4682
|
const_set('GL_UNPACK_RESAMPLE_OML', 0x8985) unless defined?(GL_UNPACK_RESAMPLE_OML)
|
4683
4683
|
const_set('GL_RESAMPLE_REPLICATE_OML', 0x8986) unless defined?(GL_RESAMPLE_REPLICATE_OML)
|
4684
4684
|
const_set('GL_RESAMPLE_ZERO_FILL_OML', 0x8987) unless defined?(GL_RESAMPLE_ZERO_FILL_OML)
|
4685
4685
|
const_set('GL_RESAMPLE_AVERAGE_OML', 0x8988) unless defined?(GL_RESAMPLE_AVERAGE_OML)
|
4686
4686
|
const_set('GL_RESAMPLE_DECIMATE_OML', 0x8989) unless defined?(GL_RESAMPLE_DECIMATE_OML)
|
4687
|
-
end #
|
4687
|
+
end # define_ext_enum_GL_OML_resample
|
4688
4688
|
|
4689
|
-
def
|
4689
|
+
def define_ext_enum_GL_OML_subsample
|
4690
4690
|
const_set('GL_FORMAT_SUBSAMPLE_24_24_OML', 0x8982) unless defined?(GL_FORMAT_SUBSAMPLE_24_24_OML)
|
4691
4691
|
const_set('GL_FORMAT_SUBSAMPLE_244_244_OML', 0x8983) unless defined?(GL_FORMAT_SUBSAMPLE_244_244_OML)
|
4692
|
-
end #
|
4692
|
+
end # define_ext_enum_GL_OML_subsample
|
4693
4693
|
|
4694
|
-
def
|
4694
|
+
def define_ext_enum_GL_PGI_misc_hints
|
4695
4695
|
const_set('GL_PREFER_DOUBLEBUFFER_HINT_PGI', 0x1A1F8) unless defined?(GL_PREFER_DOUBLEBUFFER_HINT_PGI)
|
4696
4696
|
const_set('GL_CONSERVE_MEMORY_HINT_PGI', 0x1A1FD) unless defined?(GL_CONSERVE_MEMORY_HINT_PGI)
|
4697
4697
|
const_set('GL_RECLAIM_MEMORY_HINT_PGI', 0x1A1FE) unless defined?(GL_RECLAIM_MEMORY_HINT_PGI)
|
@@ -4712,9 +4712,9 @@ module OpenGL
|
|
4712
4712
|
const_set('GL_CLIP_FAR_HINT_PGI', 0x1A221) unless defined?(GL_CLIP_FAR_HINT_PGI)
|
4713
4713
|
const_set('GL_WIDE_LINE_HINT_PGI', 0x1A222) unless defined?(GL_WIDE_LINE_HINT_PGI)
|
4714
4714
|
const_set('GL_BACK_NORMALS_HINT_PGI', 0x1A223) unless defined?(GL_BACK_NORMALS_HINT_PGI)
|
4715
|
-
end #
|
4715
|
+
end # define_ext_enum_GL_PGI_misc_hints
|
4716
4716
|
|
4717
|
-
def
|
4717
|
+
def define_ext_enum_GL_PGI_vertex_hints
|
4718
4718
|
const_set('GL_VERTEX_DATA_HINT_PGI', 0x1A22A) unless defined?(GL_VERTEX_DATA_HINT_PGI)
|
4719
4719
|
const_set('GL_VERTEX_CONSISTENT_HINT_PGI', 0x1A22B) unless defined?(GL_VERTEX_CONSISTENT_HINT_PGI)
|
4720
4720
|
const_set('GL_MATERIAL_SIDE_HINT_PGI', 0x1A22C) unless defined?(GL_MATERIAL_SIDE_HINT_PGI)
|
@@ -4737,23 +4737,23 @@ module OpenGL
|
|
4737
4737
|
const_set('GL_TEXCOORD4_BIT_PGI', 0x80000000) unless defined?(GL_TEXCOORD4_BIT_PGI)
|
4738
4738
|
const_set('GL_VERTEX23_BIT_PGI', 0x00000004) unless defined?(GL_VERTEX23_BIT_PGI)
|
4739
4739
|
const_set('GL_VERTEX4_BIT_PGI', 0x00000008) unless defined?(GL_VERTEX4_BIT_PGI)
|
4740
|
-
end #
|
4740
|
+
end # define_ext_enum_GL_PGI_vertex_hints
|
4741
4741
|
|
4742
|
-
def
|
4742
|
+
def define_ext_enum_GL_REND_screen_coordinates
|
4743
4743
|
const_set('GL_SCREEN_COORDINATES_REND', 0x8490) unless defined?(GL_SCREEN_COORDINATES_REND)
|
4744
4744
|
const_set('GL_INVERTED_SCREEN_W_REND', 0x8491) unless defined?(GL_INVERTED_SCREEN_W_REND)
|
4745
|
-
end #
|
4745
|
+
end # define_ext_enum_GL_REND_screen_coordinates
|
4746
4746
|
|
4747
|
-
def
|
4747
|
+
def define_ext_enum_GL_S3_s3tc
|
4748
4748
|
const_set('GL_RGB_S3TC', 0x83A0) unless defined?(GL_RGB_S3TC)
|
4749
4749
|
const_set('GL_RGB4_S3TC', 0x83A1) unless defined?(GL_RGB4_S3TC)
|
4750
4750
|
const_set('GL_RGBA_S3TC', 0x83A2) unless defined?(GL_RGBA_S3TC)
|
4751
4751
|
const_set('GL_RGBA4_S3TC', 0x83A3) unless defined?(GL_RGBA4_S3TC)
|
4752
4752
|
const_set('GL_RGBA_DXT5_S3TC', 0x83A4) unless defined?(GL_RGBA_DXT5_S3TC)
|
4753
4753
|
const_set('GL_RGBA4_DXT5_S3TC', 0x83A5) unless defined?(GL_RGBA4_DXT5_S3TC)
|
4754
|
-
end #
|
4754
|
+
end # define_ext_enum_GL_S3_s3tc
|
4755
4755
|
|
4756
|
-
def
|
4756
|
+
def define_ext_enum_GL_SGIS_detail_texture
|
4757
4757
|
const_set('GL_DETAIL_TEXTURE_2D_SGIS', 0x8095) unless defined?(GL_DETAIL_TEXTURE_2D_SGIS)
|
4758
4758
|
const_set('GL_DETAIL_TEXTURE_2D_BINDING_SGIS', 0x8096) unless defined?(GL_DETAIL_TEXTURE_2D_BINDING_SGIS)
|
4759
4759
|
const_set('GL_LINEAR_DETAIL_SGIS', 0x8097) unless defined?(GL_LINEAR_DETAIL_SGIS)
|
@@ -4762,20 +4762,20 @@ module OpenGL
|
|
4762
4762
|
const_set('GL_DETAIL_TEXTURE_LEVEL_SGIS', 0x809A) unless defined?(GL_DETAIL_TEXTURE_LEVEL_SGIS)
|
4763
4763
|
const_set('GL_DETAIL_TEXTURE_MODE_SGIS', 0x809B) unless defined?(GL_DETAIL_TEXTURE_MODE_SGIS)
|
4764
4764
|
const_set('GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS', 0x809C) unless defined?(GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS)
|
4765
|
-
end #
|
4765
|
+
end # define_ext_enum_GL_SGIS_detail_texture
|
4766
4766
|
|
4767
|
-
def
|
4767
|
+
def define_ext_enum_GL_SGIS_fog_function
|
4768
4768
|
const_set('GL_FOG_FUNC_SGIS', 0x812A) unless defined?(GL_FOG_FUNC_SGIS)
|
4769
4769
|
const_set('GL_FOG_FUNC_POINTS_SGIS', 0x812B) unless defined?(GL_FOG_FUNC_POINTS_SGIS)
|
4770
4770
|
const_set('GL_MAX_FOG_FUNC_POINTS_SGIS', 0x812C) unless defined?(GL_MAX_FOG_FUNC_POINTS_SGIS)
|
4771
|
-
end #
|
4771
|
+
end # define_ext_enum_GL_SGIS_fog_function
|
4772
4772
|
|
4773
|
-
def
|
4773
|
+
def define_ext_enum_GL_SGIS_generate_mipmap
|
4774
4774
|
const_set('GL_GENERATE_MIPMAP_SGIS', 0x8191) unless defined?(GL_GENERATE_MIPMAP_SGIS)
|
4775
4775
|
const_set('GL_GENERATE_MIPMAP_HINT_SGIS', 0x8192) unless defined?(GL_GENERATE_MIPMAP_HINT_SGIS)
|
4776
|
-
end #
|
4776
|
+
end # define_ext_enum_GL_SGIS_generate_mipmap
|
4777
4777
|
|
4778
|
-
def
|
4778
|
+
def define_ext_enum_GL_SGIS_multisample
|
4779
4779
|
const_set('GL_MULTISAMPLE_SGIS', 0x809D) unless defined?(GL_MULTISAMPLE_SGIS)
|
4780
4780
|
const_set('GL_SAMPLE_ALPHA_TO_MASK_SGIS', 0x809E) unless defined?(GL_SAMPLE_ALPHA_TO_MASK_SGIS)
|
4781
4781
|
const_set('GL_SAMPLE_ALPHA_TO_ONE_SGIS', 0x809F) unless defined?(GL_SAMPLE_ALPHA_TO_ONE_SGIS)
|
@@ -4792,16 +4792,16 @@ module OpenGL
|
|
4792
4792
|
const_set('GL_SAMPLE_MASK_VALUE_SGIS', 0x80AA) unless defined?(GL_SAMPLE_MASK_VALUE_SGIS)
|
4793
4793
|
const_set('GL_SAMPLE_MASK_INVERT_SGIS', 0x80AB) unless defined?(GL_SAMPLE_MASK_INVERT_SGIS)
|
4794
4794
|
const_set('GL_SAMPLE_PATTERN_SGIS', 0x80AC) unless defined?(GL_SAMPLE_PATTERN_SGIS)
|
4795
|
-
end #
|
4795
|
+
end # define_ext_enum_GL_SGIS_multisample
|
4796
4796
|
|
4797
|
-
def
|
4797
|
+
def define_ext_enum_GL_SGIS_pixel_texture
|
4798
4798
|
const_set('GL_PIXEL_TEXTURE_SGIS', 0x8353) unless defined?(GL_PIXEL_TEXTURE_SGIS)
|
4799
4799
|
const_set('GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS', 0x8354) unless defined?(GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS)
|
4800
4800
|
const_set('GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS', 0x8355) unless defined?(GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS)
|
4801
4801
|
const_set('GL_PIXEL_GROUP_COLOR_SGIS', 0x8356) unless defined?(GL_PIXEL_GROUP_COLOR_SGIS)
|
4802
|
-
end #
|
4802
|
+
end # define_ext_enum_GL_SGIS_pixel_texture
|
4803
4803
|
|
4804
|
-
def
|
4804
|
+
def define_ext_enum_GL_SGIS_point_line_texgen
|
4805
4805
|
const_set('GL_EYE_DISTANCE_TO_POINT_SGIS', 0x81F0) unless defined?(GL_EYE_DISTANCE_TO_POINT_SGIS)
|
4806
4806
|
const_set('GL_OBJECT_DISTANCE_TO_POINT_SGIS', 0x81F1) unless defined?(GL_OBJECT_DISTANCE_TO_POINT_SGIS)
|
4807
4807
|
const_set('GL_EYE_DISTANCE_TO_LINE_SGIS', 0x81F2) unless defined?(GL_EYE_DISTANCE_TO_LINE_SGIS)
|
@@ -4810,23 +4810,23 @@ module OpenGL
|
|
4810
4810
|
const_set('GL_OBJECT_POINT_SGIS', 0x81F5) unless defined?(GL_OBJECT_POINT_SGIS)
|
4811
4811
|
const_set('GL_EYE_LINE_SGIS', 0x81F6) unless defined?(GL_EYE_LINE_SGIS)
|
4812
4812
|
const_set('GL_OBJECT_LINE_SGIS', 0x81F7) unless defined?(GL_OBJECT_LINE_SGIS)
|
4813
|
-
end #
|
4813
|
+
end # define_ext_enum_GL_SGIS_point_line_texgen
|
4814
4814
|
|
4815
|
-
def
|
4815
|
+
def define_ext_enum_GL_SGIS_point_parameters
|
4816
4816
|
const_set('GL_POINT_SIZE_MIN_SGIS', 0x8126) unless defined?(GL_POINT_SIZE_MIN_SGIS)
|
4817
4817
|
const_set('GL_POINT_SIZE_MAX_SGIS', 0x8127) unless defined?(GL_POINT_SIZE_MAX_SGIS)
|
4818
4818
|
const_set('GL_POINT_FADE_THRESHOLD_SIZE_SGIS', 0x8128) unless defined?(GL_POINT_FADE_THRESHOLD_SIZE_SGIS)
|
4819
4819
|
const_set('GL_DISTANCE_ATTENUATION_SGIS', 0x8129) unless defined?(GL_DISTANCE_ATTENUATION_SGIS)
|
4820
|
-
end #
|
4820
|
+
end # define_ext_enum_GL_SGIS_point_parameters
|
4821
4821
|
|
4822
|
-
def
|
4822
|
+
def define_ext_enum_GL_SGIS_sharpen_texture
|
4823
4823
|
const_set('GL_LINEAR_SHARPEN_SGIS', 0x80AD) unless defined?(GL_LINEAR_SHARPEN_SGIS)
|
4824
4824
|
const_set('GL_LINEAR_SHARPEN_ALPHA_SGIS', 0x80AE) unless defined?(GL_LINEAR_SHARPEN_ALPHA_SGIS)
|
4825
4825
|
const_set('GL_LINEAR_SHARPEN_COLOR_SGIS', 0x80AF) unless defined?(GL_LINEAR_SHARPEN_COLOR_SGIS)
|
4826
4826
|
const_set('GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS', 0x80B0) unless defined?(GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS)
|
4827
|
-
end #
|
4827
|
+
end # define_ext_enum_GL_SGIS_sharpen_texture
|
4828
4828
|
|
4829
|
-
def
|
4829
|
+
def define_ext_enum_GL_SGIS_texture4D
|
4830
4830
|
const_set('GL_PACK_SKIP_VOLUMES_SGIS', 0x8130) unless defined?(GL_PACK_SKIP_VOLUMES_SGIS)
|
4831
4831
|
const_set('GL_PACK_IMAGE_DEPTH_SGIS', 0x8131) unless defined?(GL_PACK_IMAGE_DEPTH_SGIS)
|
4832
4832
|
const_set('GL_UNPACK_SKIP_VOLUMES_SGIS', 0x8132) unless defined?(GL_UNPACK_SKIP_VOLUMES_SGIS)
|
@@ -4837,33 +4837,33 @@ module OpenGL
|
|
4837
4837
|
const_set('GL_TEXTURE_WRAP_Q_SGIS', 0x8137) unless defined?(GL_TEXTURE_WRAP_Q_SGIS)
|
4838
4838
|
const_set('GL_MAX_4D_TEXTURE_SIZE_SGIS', 0x8138) unless defined?(GL_MAX_4D_TEXTURE_SIZE_SGIS)
|
4839
4839
|
const_set('GL_TEXTURE_4D_BINDING_SGIS', 0x814F) unless defined?(GL_TEXTURE_4D_BINDING_SGIS)
|
4840
|
-
end #
|
4840
|
+
end # define_ext_enum_GL_SGIS_texture4D
|
4841
4841
|
|
4842
|
-
def
|
4842
|
+
def define_ext_enum_GL_SGIS_texture_border_clamp
|
4843
4843
|
const_set('GL_CLAMP_TO_BORDER_SGIS', 0x812D) unless defined?(GL_CLAMP_TO_BORDER_SGIS)
|
4844
|
-
end #
|
4844
|
+
end # define_ext_enum_GL_SGIS_texture_border_clamp
|
4845
4845
|
|
4846
|
-
def
|
4846
|
+
def define_ext_enum_GL_SGIS_texture_color_mask
|
4847
4847
|
const_set('GL_TEXTURE_COLOR_WRITEMASK_SGIS', 0x81EF) unless defined?(GL_TEXTURE_COLOR_WRITEMASK_SGIS)
|
4848
|
-
end #
|
4848
|
+
end # define_ext_enum_GL_SGIS_texture_color_mask
|
4849
4849
|
|
4850
|
-
def
|
4850
|
+
def define_ext_enum_GL_SGIS_texture_edge_clamp
|
4851
4851
|
const_set('GL_CLAMP_TO_EDGE_SGIS', 0x812F) unless defined?(GL_CLAMP_TO_EDGE_SGIS)
|
4852
|
-
end #
|
4852
|
+
end # define_ext_enum_GL_SGIS_texture_edge_clamp
|
4853
4853
|
|
4854
|
-
def
|
4854
|
+
def define_ext_enum_GL_SGIS_texture_filter4
|
4855
4855
|
const_set('GL_FILTER4_SGIS', 0x8146) unless defined?(GL_FILTER4_SGIS)
|
4856
4856
|
const_set('GL_TEXTURE_FILTER4_SIZE_SGIS', 0x8147) unless defined?(GL_TEXTURE_FILTER4_SIZE_SGIS)
|
4857
|
-
end #
|
4857
|
+
end # define_ext_enum_GL_SGIS_texture_filter4
|
4858
4858
|
|
4859
|
-
def
|
4859
|
+
def define_ext_enum_GL_SGIS_texture_lod
|
4860
4860
|
const_set('GL_TEXTURE_MIN_LOD_SGIS', 0x813A) unless defined?(GL_TEXTURE_MIN_LOD_SGIS)
|
4861
4861
|
const_set('GL_TEXTURE_MAX_LOD_SGIS', 0x813B) unless defined?(GL_TEXTURE_MAX_LOD_SGIS)
|
4862
4862
|
const_set('GL_TEXTURE_BASE_LEVEL_SGIS', 0x813C) unless defined?(GL_TEXTURE_BASE_LEVEL_SGIS)
|
4863
4863
|
const_set('GL_TEXTURE_MAX_LEVEL_SGIS', 0x813D) unless defined?(GL_TEXTURE_MAX_LEVEL_SGIS)
|
4864
|
-
end #
|
4864
|
+
end # define_ext_enum_GL_SGIS_texture_lod
|
4865
4865
|
|
4866
|
-
def
|
4866
|
+
def define_ext_enum_GL_SGIS_texture_select
|
4867
4867
|
const_set('GL_DUAL_ALPHA4_SGIS', 0x8110) unless defined?(GL_DUAL_ALPHA4_SGIS)
|
4868
4868
|
const_set('GL_DUAL_ALPHA8_SGIS', 0x8111) unless defined?(GL_DUAL_ALPHA8_SGIS)
|
4869
4869
|
const_set('GL_DUAL_ALPHA12_SGIS', 0x8112) unless defined?(GL_DUAL_ALPHA12_SGIS)
|
@@ -4886,36 +4886,36 @@ module OpenGL
|
|
4886
4886
|
const_set('GL_QUAD_INTENSITY8_SGIS', 0x8123) unless defined?(GL_QUAD_INTENSITY8_SGIS)
|
4887
4887
|
const_set('GL_DUAL_TEXTURE_SELECT_SGIS', 0x8124) unless defined?(GL_DUAL_TEXTURE_SELECT_SGIS)
|
4888
4888
|
const_set('GL_QUAD_TEXTURE_SELECT_SGIS', 0x8125) unless defined?(GL_QUAD_TEXTURE_SELECT_SGIS)
|
4889
|
-
end #
|
4889
|
+
end # define_ext_enum_GL_SGIS_texture_select
|
4890
4890
|
|
4891
|
-
def
|
4891
|
+
def define_ext_enum_GL_SGIX_async
|
4892
4892
|
const_set('GL_ASYNC_MARKER_SGIX', 0x8329) unless defined?(GL_ASYNC_MARKER_SGIX)
|
4893
|
-
end #
|
4893
|
+
end # define_ext_enum_GL_SGIX_async
|
4894
4894
|
|
4895
|
-
def
|
4895
|
+
def define_ext_enum_GL_SGIX_async_histogram
|
4896
4896
|
const_set('GL_ASYNC_HISTOGRAM_SGIX', 0x832C) unless defined?(GL_ASYNC_HISTOGRAM_SGIX)
|
4897
4897
|
const_set('GL_MAX_ASYNC_HISTOGRAM_SGIX', 0x832D) unless defined?(GL_MAX_ASYNC_HISTOGRAM_SGIX)
|
4898
|
-
end #
|
4898
|
+
end # define_ext_enum_GL_SGIX_async_histogram
|
4899
4899
|
|
4900
|
-
def
|
4900
|
+
def define_ext_enum_GL_SGIX_async_pixel
|
4901
4901
|
const_set('GL_ASYNC_TEX_IMAGE_SGIX', 0x835C) unless defined?(GL_ASYNC_TEX_IMAGE_SGIX)
|
4902
4902
|
const_set('GL_ASYNC_DRAW_PIXELS_SGIX', 0x835D) unless defined?(GL_ASYNC_DRAW_PIXELS_SGIX)
|
4903
4903
|
const_set('GL_ASYNC_READ_PIXELS_SGIX', 0x835E) unless defined?(GL_ASYNC_READ_PIXELS_SGIX)
|
4904
4904
|
const_set('GL_MAX_ASYNC_TEX_IMAGE_SGIX', 0x835F) unless defined?(GL_MAX_ASYNC_TEX_IMAGE_SGIX)
|
4905
4905
|
const_set('GL_MAX_ASYNC_DRAW_PIXELS_SGIX', 0x8360) unless defined?(GL_MAX_ASYNC_DRAW_PIXELS_SGIX)
|
4906
4906
|
const_set('GL_MAX_ASYNC_READ_PIXELS_SGIX', 0x8361) unless defined?(GL_MAX_ASYNC_READ_PIXELS_SGIX)
|
4907
|
-
end #
|
4907
|
+
end # define_ext_enum_GL_SGIX_async_pixel
|
4908
4908
|
|
4909
|
-
def
|
4909
|
+
def define_ext_enum_GL_SGIX_blend_alpha_minmax
|
4910
4910
|
const_set('GL_ALPHA_MIN_SGIX', 0x8320) unless defined?(GL_ALPHA_MIN_SGIX)
|
4911
4911
|
const_set('GL_ALPHA_MAX_SGIX', 0x8321) unless defined?(GL_ALPHA_MAX_SGIX)
|
4912
|
-
end #
|
4912
|
+
end # define_ext_enum_GL_SGIX_blend_alpha_minmax
|
4913
4913
|
|
4914
|
-
def
|
4914
|
+
def define_ext_enum_GL_SGIX_calligraphic_fragment
|
4915
4915
|
const_set('GL_CALLIGRAPHIC_FRAGMENT_SGIX', 0x8183) unless defined?(GL_CALLIGRAPHIC_FRAGMENT_SGIX)
|
4916
|
-
end #
|
4916
|
+
end # define_ext_enum_GL_SGIX_calligraphic_fragment
|
4917
4917
|
|
4918
|
-
def
|
4918
|
+
def define_ext_enum_GL_SGIX_clipmap
|
4919
4919
|
const_set('GL_LINEAR_CLIPMAP_LINEAR_SGIX', 0x8170) unless defined?(GL_LINEAR_CLIPMAP_LINEAR_SGIX)
|
4920
4920
|
const_set('GL_TEXTURE_CLIPMAP_CENTER_SGIX', 0x8171) unless defined?(GL_TEXTURE_CLIPMAP_CENTER_SGIX)
|
4921
4921
|
const_set('GL_TEXTURE_CLIPMAP_FRAME_SGIX', 0x8172) unless defined?(GL_TEXTURE_CLIPMAP_FRAME_SGIX)
|
@@ -4928,30 +4928,30 @@ module OpenGL
|
|
4928
4928
|
const_set('GL_NEAREST_CLIPMAP_NEAREST_SGIX', 0x844D) unless defined?(GL_NEAREST_CLIPMAP_NEAREST_SGIX)
|
4929
4929
|
const_set('GL_NEAREST_CLIPMAP_LINEAR_SGIX', 0x844E) unless defined?(GL_NEAREST_CLIPMAP_LINEAR_SGIX)
|
4930
4930
|
const_set('GL_LINEAR_CLIPMAP_NEAREST_SGIX', 0x844F) unless defined?(GL_LINEAR_CLIPMAP_NEAREST_SGIX)
|
4931
|
-
end #
|
4931
|
+
end # define_ext_enum_GL_SGIX_clipmap
|
4932
4932
|
|
4933
|
-
def
|
4933
|
+
def define_ext_enum_GL_SGIX_convolution_accuracy
|
4934
4934
|
const_set('GL_CONVOLUTION_HINT_SGIX', 0x8316) unless defined?(GL_CONVOLUTION_HINT_SGIX)
|
4935
|
-
end #
|
4935
|
+
end # define_ext_enum_GL_SGIX_convolution_accuracy
|
4936
4936
|
|
4937
|
-
def
|
4938
|
-
end #
|
4937
|
+
def define_ext_enum_GL_SGIX_depth_pass_instrument
|
4938
|
+
end # define_ext_enum_GL_SGIX_depth_pass_instrument
|
4939
4939
|
|
4940
|
-
def
|
4940
|
+
def define_ext_enum_GL_SGIX_depth_texture
|
4941
4941
|
const_set('GL_DEPTH_COMPONENT16_SGIX', 0x81A5) unless defined?(GL_DEPTH_COMPONENT16_SGIX)
|
4942
4942
|
const_set('GL_DEPTH_COMPONENT24_SGIX', 0x81A6) unless defined?(GL_DEPTH_COMPONENT24_SGIX)
|
4943
4943
|
const_set('GL_DEPTH_COMPONENT32_SGIX', 0x81A7) unless defined?(GL_DEPTH_COMPONENT32_SGIX)
|
4944
|
-
end #
|
4944
|
+
end # define_ext_enum_GL_SGIX_depth_texture
|
4945
4945
|
|
4946
|
-
def
|
4947
|
-
end #
|
4946
|
+
def define_ext_enum_GL_SGIX_flush_raster
|
4947
|
+
end # define_ext_enum_GL_SGIX_flush_raster
|
4948
4948
|
|
4949
|
-
def
|
4949
|
+
def define_ext_enum_GL_SGIX_fog_offset
|
4950
4950
|
const_set('GL_FOG_OFFSET_SGIX', 0x8198) unless defined?(GL_FOG_OFFSET_SGIX)
|
4951
4951
|
const_set('GL_FOG_OFFSET_VALUE_SGIX', 0x8199) unless defined?(GL_FOG_OFFSET_VALUE_SGIX)
|
4952
|
-
end #
|
4952
|
+
end # define_ext_enum_GL_SGIX_fog_offset
|
4953
4953
|
|
4954
|
-
def
|
4954
|
+
def define_ext_enum_GL_SGIX_fragment_lighting
|
4955
4955
|
const_set('GL_FRAGMENT_LIGHTING_SGIX', 0x8400) unless defined?(GL_FRAGMENT_LIGHTING_SGIX)
|
4956
4956
|
const_set('GL_FRAGMENT_COLOR_MATERIAL_SGIX', 0x8401) unless defined?(GL_FRAGMENT_COLOR_MATERIAL_SGIX)
|
4957
4957
|
const_set('GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX', 0x8402) unless defined?(GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX)
|
@@ -4972,40 +4972,40 @@ module OpenGL
|
|
4972
4972
|
const_set('GL_FRAGMENT_LIGHT5_SGIX', 0x8411) unless defined?(GL_FRAGMENT_LIGHT5_SGIX)
|
4973
4973
|
const_set('GL_FRAGMENT_LIGHT6_SGIX', 0x8412) unless defined?(GL_FRAGMENT_LIGHT6_SGIX)
|
4974
4974
|
const_set('GL_FRAGMENT_LIGHT7_SGIX', 0x8413) unless defined?(GL_FRAGMENT_LIGHT7_SGIX)
|
4975
|
-
end #
|
4975
|
+
end # define_ext_enum_GL_SGIX_fragment_lighting
|
4976
4976
|
|
4977
|
-
def
|
4977
|
+
def define_ext_enum_GL_SGIX_framezoom
|
4978
4978
|
const_set('GL_FRAMEZOOM_SGIX', 0x818B) unless defined?(GL_FRAMEZOOM_SGIX)
|
4979
4979
|
const_set('GL_FRAMEZOOM_FACTOR_SGIX', 0x818C) unless defined?(GL_FRAMEZOOM_FACTOR_SGIX)
|
4980
4980
|
const_set('GL_MAX_FRAMEZOOM_FACTOR_SGIX', 0x818D) unless defined?(GL_MAX_FRAMEZOOM_FACTOR_SGIX)
|
4981
|
-
end #
|
4981
|
+
end # define_ext_enum_GL_SGIX_framezoom
|
4982
4982
|
|
4983
|
-
def
|
4984
|
-
end #
|
4983
|
+
def define_ext_enum_GL_SGIX_igloo_interface
|
4984
|
+
end # define_ext_enum_GL_SGIX_igloo_interface
|
4985
4985
|
|
4986
|
-
def
|
4986
|
+
def define_ext_enum_GL_SGIX_instruments
|
4987
4987
|
const_set('GL_INSTRUMENT_BUFFER_POINTER_SGIX', 0x8180) unless defined?(GL_INSTRUMENT_BUFFER_POINTER_SGIX)
|
4988
4988
|
const_set('GL_INSTRUMENT_MEASUREMENTS_SGIX', 0x8181) unless defined?(GL_INSTRUMENT_MEASUREMENTS_SGIX)
|
4989
|
-
end #
|
4989
|
+
end # define_ext_enum_GL_SGIX_instruments
|
4990
4990
|
|
4991
|
-
def
|
4991
|
+
def define_ext_enum_GL_SGIX_interlace
|
4992
4992
|
const_set('GL_INTERLACE_SGIX', 0x8094) unless defined?(GL_INTERLACE_SGIX)
|
4993
|
-
end #
|
4993
|
+
end # define_ext_enum_GL_SGIX_interlace
|
4994
4994
|
|
4995
|
-
def
|
4995
|
+
def define_ext_enum_GL_SGIX_ir_instrument1
|
4996
4996
|
const_set('GL_IR_INSTRUMENT1_SGIX', 0x817F) unless defined?(GL_IR_INSTRUMENT1_SGIX)
|
4997
|
-
end #
|
4997
|
+
end # define_ext_enum_GL_SGIX_ir_instrument1
|
4998
4998
|
|
4999
|
-
def
|
4999
|
+
def define_ext_enum_GL_SGIX_list_priority
|
5000
5000
|
const_set('GL_LIST_PRIORITY_SGIX', 0x8182) unless defined?(GL_LIST_PRIORITY_SGIX)
|
5001
|
-
end #
|
5001
|
+
end # define_ext_enum_GL_SGIX_list_priority
|
5002
5002
|
|
5003
|
-
def
|
5003
|
+
def define_ext_enum_GL_SGIX_pixel_texture
|
5004
5004
|
const_set('GL_PIXEL_TEX_GEN_SGIX', 0x8139) unless defined?(GL_PIXEL_TEX_GEN_SGIX)
|
5005
5005
|
const_set('GL_PIXEL_TEX_GEN_MODE_SGIX', 0x832B) unless defined?(GL_PIXEL_TEX_GEN_MODE_SGIX)
|
5006
|
-
end #
|
5006
|
+
end # define_ext_enum_GL_SGIX_pixel_texture
|
5007
5007
|
|
5008
|
-
def
|
5008
|
+
def define_ext_enum_GL_SGIX_pixel_tiles
|
5009
5009
|
const_set('GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX', 0x813E) unless defined?(GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX)
|
5010
5010
|
const_set('GL_PIXEL_TILE_CACHE_INCREMENT_SGIX', 0x813F) unless defined?(GL_PIXEL_TILE_CACHE_INCREMENT_SGIX)
|
5011
5011
|
const_set('GL_PIXEL_TILE_WIDTH_SGIX', 0x8140) unless defined?(GL_PIXEL_TILE_WIDTH_SGIX)
|
@@ -5014,46 +5014,46 @@ module OpenGL
|
|
5014
5014
|
const_set('GL_PIXEL_TILE_GRID_HEIGHT_SGIX', 0x8143) unless defined?(GL_PIXEL_TILE_GRID_HEIGHT_SGIX)
|
5015
5015
|
const_set('GL_PIXEL_TILE_GRID_DEPTH_SGIX', 0x8144) unless defined?(GL_PIXEL_TILE_GRID_DEPTH_SGIX)
|
5016
5016
|
const_set('GL_PIXEL_TILE_CACHE_SIZE_SGIX', 0x8145) unless defined?(GL_PIXEL_TILE_CACHE_SIZE_SGIX)
|
5017
|
-
end #
|
5017
|
+
end # define_ext_enum_GL_SGIX_pixel_tiles
|
5018
5018
|
|
5019
|
-
def
|
5019
|
+
def define_ext_enum_GL_SGIX_polynomial_ffd
|
5020
5020
|
const_set('GL_TEXTURE_DEFORMATION_BIT_SGIX', 0x00000001) unless defined?(GL_TEXTURE_DEFORMATION_BIT_SGIX)
|
5021
5021
|
const_set('GL_GEOMETRY_DEFORMATION_BIT_SGIX', 0x00000002) unless defined?(GL_GEOMETRY_DEFORMATION_BIT_SGIX)
|
5022
5022
|
const_set('GL_GEOMETRY_DEFORMATION_SGIX', 0x8194) unless defined?(GL_GEOMETRY_DEFORMATION_SGIX)
|
5023
5023
|
const_set('GL_TEXTURE_DEFORMATION_SGIX', 0x8195) unless defined?(GL_TEXTURE_DEFORMATION_SGIX)
|
5024
5024
|
const_set('GL_DEFORMATIONS_MASK_SGIX', 0x8196) unless defined?(GL_DEFORMATIONS_MASK_SGIX)
|
5025
5025
|
const_set('GL_MAX_DEFORMATION_ORDER_SGIX', 0x8197) unless defined?(GL_MAX_DEFORMATION_ORDER_SGIX)
|
5026
|
-
end #
|
5026
|
+
end # define_ext_enum_GL_SGIX_polynomial_ffd
|
5027
5027
|
|
5028
|
-
def
|
5028
|
+
def define_ext_enum_GL_SGIX_reference_plane
|
5029
5029
|
const_set('GL_REFERENCE_PLANE_SGIX', 0x817D) unless defined?(GL_REFERENCE_PLANE_SGIX)
|
5030
5030
|
const_set('GL_REFERENCE_PLANE_EQUATION_SGIX', 0x817E) unless defined?(GL_REFERENCE_PLANE_EQUATION_SGIX)
|
5031
|
-
end #
|
5031
|
+
end # define_ext_enum_GL_SGIX_reference_plane
|
5032
5032
|
|
5033
|
-
def
|
5033
|
+
def define_ext_enum_GL_SGIX_resample
|
5034
5034
|
const_set('GL_PACK_RESAMPLE_SGIX', 0x842C) unless defined?(GL_PACK_RESAMPLE_SGIX)
|
5035
5035
|
const_set('GL_UNPACK_RESAMPLE_SGIX', 0x842D) unless defined?(GL_UNPACK_RESAMPLE_SGIX)
|
5036
5036
|
const_set('GL_RESAMPLE_REPLICATE_SGIX', 0x842E) unless defined?(GL_RESAMPLE_REPLICATE_SGIX)
|
5037
5037
|
const_set('GL_RESAMPLE_ZERO_FILL_SGIX', 0x842F) unless defined?(GL_RESAMPLE_ZERO_FILL_SGIX)
|
5038
5038
|
const_set('GL_RESAMPLE_DECIMATE_SGIX', 0x8430) unless defined?(GL_RESAMPLE_DECIMATE_SGIX)
|
5039
|
-
end #
|
5039
|
+
end # define_ext_enum_GL_SGIX_resample
|
5040
5040
|
|
5041
|
-
def
|
5041
|
+
def define_ext_enum_GL_SGIX_scalebias_hint
|
5042
5042
|
const_set('GL_SCALEBIAS_HINT_SGIX', 0x8322) unless defined?(GL_SCALEBIAS_HINT_SGIX)
|
5043
|
-
end #
|
5043
|
+
end # define_ext_enum_GL_SGIX_scalebias_hint
|
5044
5044
|
|
5045
|
-
def
|
5045
|
+
def define_ext_enum_GL_SGIX_shadow
|
5046
5046
|
const_set('GL_TEXTURE_COMPARE_SGIX', 0x819A) unless defined?(GL_TEXTURE_COMPARE_SGIX)
|
5047
5047
|
const_set('GL_TEXTURE_COMPARE_OPERATOR_SGIX', 0x819B) unless defined?(GL_TEXTURE_COMPARE_OPERATOR_SGIX)
|
5048
5048
|
const_set('GL_TEXTURE_LEQUAL_R_SGIX', 0x819C) unless defined?(GL_TEXTURE_LEQUAL_R_SGIX)
|
5049
5049
|
const_set('GL_TEXTURE_GEQUAL_R_SGIX', 0x819D) unless defined?(GL_TEXTURE_GEQUAL_R_SGIX)
|
5050
|
-
end #
|
5050
|
+
end # define_ext_enum_GL_SGIX_shadow
|
5051
5051
|
|
5052
|
-
def
|
5052
|
+
def define_ext_enum_GL_SGIX_shadow_ambient
|
5053
5053
|
const_set('GL_SHADOW_AMBIENT_SGIX', 0x80BF) unless defined?(GL_SHADOW_AMBIENT_SGIX)
|
5054
|
-
end #
|
5054
|
+
end # define_ext_enum_GL_SGIX_shadow_ambient
|
5055
5055
|
|
5056
|
-
def
|
5056
|
+
def define_ext_enum_GL_SGIX_sprite
|
5057
5057
|
const_set('GL_SPRITE_SGIX', 0x8148) unless defined?(GL_SPRITE_SGIX)
|
5058
5058
|
const_set('GL_SPRITE_MODE_SGIX', 0x8149) unless defined?(GL_SPRITE_MODE_SGIX)
|
5059
5059
|
const_set('GL_SPRITE_AXIS_SGIX', 0x814A) unless defined?(GL_SPRITE_AXIS_SGIX)
|
@@ -5061,65 +5061,65 @@ module OpenGL
|
|
5061
5061
|
const_set('GL_SPRITE_AXIAL_SGIX', 0x814C) unless defined?(GL_SPRITE_AXIAL_SGIX)
|
5062
5062
|
const_set('GL_SPRITE_OBJECT_ALIGNED_SGIX', 0x814D) unless defined?(GL_SPRITE_OBJECT_ALIGNED_SGIX)
|
5063
5063
|
const_set('GL_SPRITE_EYE_ALIGNED_SGIX', 0x814E) unless defined?(GL_SPRITE_EYE_ALIGNED_SGIX)
|
5064
|
-
end #
|
5064
|
+
end # define_ext_enum_GL_SGIX_sprite
|
5065
5065
|
|
5066
|
-
def
|
5066
|
+
def define_ext_enum_GL_SGIX_subsample
|
5067
5067
|
const_set('GL_PACK_SUBSAMPLE_RATE_SGIX', 0x85A0) unless defined?(GL_PACK_SUBSAMPLE_RATE_SGIX)
|
5068
5068
|
const_set('GL_UNPACK_SUBSAMPLE_RATE_SGIX', 0x85A1) unless defined?(GL_UNPACK_SUBSAMPLE_RATE_SGIX)
|
5069
5069
|
const_set('GL_PIXEL_SUBSAMPLE_4444_SGIX', 0x85A2) unless defined?(GL_PIXEL_SUBSAMPLE_4444_SGIX)
|
5070
5070
|
const_set('GL_PIXEL_SUBSAMPLE_2424_SGIX', 0x85A3) unless defined?(GL_PIXEL_SUBSAMPLE_2424_SGIX)
|
5071
5071
|
const_set('GL_PIXEL_SUBSAMPLE_4242_SGIX', 0x85A4) unless defined?(GL_PIXEL_SUBSAMPLE_4242_SGIX)
|
5072
|
-
end #
|
5072
|
+
end # define_ext_enum_GL_SGIX_subsample
|
5073
5073
|
|
5074
|
-
def
|
5075
|
-
end #
|
5074
|
+
def define_ext_enum_GL_SGIX_tag_sample_buffer
|
5075
|
+
end # define_ext_enum_GL_SGIX_tag_sample_buffer
|
5076
5076
|
|
5077
|
-
def
|
5077
|
+
def define_ext_enum_GL_SGIX_texture_add_env
|
5078
5078
|
const_set('GL_TEXTURE_ENV_BIAS_SGIX', 0x80BE) unless defined?(GL_TEXTURE_ENV_BIAS_SGIX)
|
5079
|
-
end #
|
5079
|
+
end # define_ext_enum_GL_SGIX_texture_add_env
|
5080
5080
|
|
5081
|
-
def
|
5081
|
+
def define_ext_enum_GL_SGIX_texture_coordinate_clamp
|
5082
5082
|
const_set('GL_TEXTURE_MAX_CLAMP_S_SGIX', 0x8369) unless defined?(GL_TEXTURE_MAX_CLAMP_S_SGIX)
|
5083
5083
|
const_set('GL_TEXTURE_MAX_CLAMP_T_SGIX', 0x836A) unless defined?(GL_TEXTURE_MAX_CLAMP_T_SGIX)
|
5084
5084
|
const_set('GL_TEXTURE_MAX_CLAMP_R_SGIX', 0x836B) unless defined?(GL_TEXTURE_MAX_CLAMP_R_SGIX)
|
5085
|
-
end #
|
5085
|
+
end # define_ext_enum_GL_SGIX_texture_coordinate_clamp
|
5086
5086
|
|
5087
|
-
def
|
5087
|
+
def define_ext_enum_GL_SGIX_texture_lod_bias
|
5088
5088
|
const_set('GL_TEXTURE_LOD_BIAS_S_SGIX', 0x818E) unless defined?(GL_TEXTURE_LOD_BIAS_S_SGIX)
|
5089
5089
|
const_set('GL_TEXTURE_LOD_BIAS_T_SGIX', 0x818F) unless defined?(GL_TEXTURE_LOD_BIAS_T_SGIX)
|
5090
5090
|
const_set('GL_TEXTURE_LOD_BIAS_R_SGIX', 0x8190) unless defined?(GL_TEXTURE_LOD_BIAS_R_SGIX)
|
5091
|
-
end #
|
5091
|
+
end # define_ext_enum_GL_SGIX_texture_lod_bias
|
5092
5092
|
|
5093
|
-
def
|
5093
|
+
def define_ext_enum_GL_SGIX_texture_multi_buffer
|
5094
5094
|
const_set('GL_TEXTURE_MULTI_BUFFER_HINT_SGIX', 0x812E) unless defined?(GL_TEXTURE_MULTI_BUFFER_HINT_SGIX)
|
5095
|
-
end #
|
5095
|
+
end # define_ext_enum_GL_SGIX_texture_multi_buffer
|
5096
5096
|
|
5097
|
-
def
|
5097
|
+
def define_ext_enum_GL_SGIX_texture_scale_bias
|
5098
5098
|
const_set('GL_POST_TEXTURE_FILTER_BIAS_SGIX', 0x8179) unless defined?(GL_POST_TEXTURE_FILTER_BIAS_SGIX)
|
5099
5099
|
const_set('GL_POST_TEXTURE_FILTER_SCALE_SGIX', 0x817A) unless defined?(GL_POST_TEXTURE_FILTER_SCALE_SGIX)
|
5100
5100
|
const_set('GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX', 0x817B) unless defined?(GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX)
|
5101
5101
|
const_set('GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX', 0x817C) unless defined?(GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX)
|
5102
|
-
end #
|
5102
|
+
end # define_ext_enum_GL_SGIX_texture_scale_bias
|
5103
5103
|
|
5104
|
-
def
|
5104
|
+
def define_ext_enum_GL_SGIX_vertex_preclip
|
5105
5105
|
const_set('GL_VERTEX_PRECLIP_SGIX', 0x83EE) unless defined?(GL_VERTEX_PRECLIP_SGIX)
|
5106
5106
|
const_set('GL_VERTEX_PRECLIP_HINT_SGIX', 0x83EF) unless defined?(GL_VERTEX_PRECLIP_HINT_SGIX)
|
5107
|
-
end #
|
5107
|
+
end # define_ext_enum_GL_SGIX_vertex_preclip
|
5108
5108
|
|
5109
|
-
def
|
5109
|
+
def define_ext_enum_GL_SGIX_ycrcb
|
5110
5110
|
const_set('GL_YCRCB_422_SGIX', 0x81BB) unless defined?(GL_YCRCB_422_SGIX)
|
5111
5111
|
const_set('GL_YCRCB_444_SGIX', 0x81BC) unless defined?(GL_YCRCB_444_SGIX)
|
5112
|
-
end #
|
5112
|
+
end # define_ext_enum_GL_SGIX_ycrcb
|
5113
5113
|
|
5114
|
-
def
|
5115
|
-
end #
|
5114
|
+
def define_ext_enum_GL_SGIX_ycrcb_subsample
|
5115
|
+
end # define_ext_enum_GL_SGIX_ycrcb_subsample
|
5116
5116
|
|
5117
|
-
def
|
5117
|
+
def define_ext_enum_GL_SGIX_ycrcba
|
5118
5118
|
const_set('GL_YCRCB_SGIX', 0x8318) unless defined?(GL_YCRCB_SGIX)
|
5119
5119
|
const_set('GL_YCRCBA_SGIX', 0x8319) unless defined?(GL_YCRCBA_SGIX)
|
5120
|
-
end #
|
5120
|
+
end # define_ext_enum_GL_SGIX_ycrcba
|
5121
5121
|
|
5122
|
-
def
|
5122
|
+
def define_ext_enum_GL_SGI_color_matrix
|
5123
5123
|
const_set('GL_COLOR_MATRIX_SGI', 0x80B1) unless defined?(GL_COLOR_MATRIX_SGI)
|
5124
5124
|
const_set('GL_COLOR_MATRIX_STACK_DEPTH_SGI', 0x80B2) unless defined?(GL_COLOR_MATRIX_STACK_DEPTH_SGI)
|
5125
5125
|
const_set('GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI', 0x80B3) unless defined?(GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI)
|
@@ -5131,9 +5131,9 @@ module OpenGL
|
|
5131
5131
|
const_set('GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI', 0x80B9) unless defined?(GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI)
|
5132
5132
|
const_set('GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI', 0x80BA) unless defined?(GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI)
|
5133
5133
|
const_set('GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI', 0x80BB) unless defined?(GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI)
|
5134
|
-
end #
|
5134
|
+
end # define_ext_enum_GL_SGI_color_matrix
|
5135
5135
|
|
5136
|
-
def
|
5136
|
+
def define_ext_enum_GL_SGI_color_table
|
5137
5137
|
const_set('GL_COLOR_TABLE_SGI', 0x80D0) unless defined?(GL_COLOR_TABLE_SGI)
|
5138
5138
|
const_set('GL_POST_CONVOLUTION_COLOR_TABLE_SGI', 0x80D1) unless defined?(GL_POST_CONVOLUTION_COLOR_TABLE_SGI)
|
5139
5139
|
const_set('GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI', 0x80D2) unless defined?(GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI)
|
@@ -5150,37 +5150,37 @@ module OpenGL
|
|
5150
5150
|
const_set('GL_COLOR_TABLE_ALPHA_SIZE_SGI', 0x80DD) unless defined?(GL_COLOR_TABLE_ALPHA_SIZE_SGI)
|
5151
5151
|
const_set('GL_COLOR_TABLE_LUMINANCE_SIZE_SGI', 0x80DE) unless defined?(GL_COLOR_TABLE_LUMINANCE_SIZE_SGI)
|
5152
5152
|
const_set('GL_COLOR_TABLE_INTENSITY_SIZE_SGI', 0x80DF) unless defined?(GL_COLOR_TABLE_INTENSITY_SIZE_SGI)
|
5153
|
-
end #
|
5153
|
+
end # define_ext_enum_GL_SGI_color_table
|
5154
5154
|
|
5155
|
-
def
|
5155
|
+
def define_ext_enum_GL_SGI_texture_color_table
|
5156
5156
|
const_set('GL_TEXTURE_COLOR_TABLE_SGI', 0x80BC) unless defined?(GL_TEXTURE_COLOR_TABLE_SGI)
|
5157
5157
|
const_set('GL_PROXY_TEXTURE_COLOR_TABLE_SGI', 0x80BD) unless defined?(GL_PROXY_TEXTURE_COLOR_TABLE_SGI)
|
5158
|
-
end #
|
5158
|
+
end # define_ext_enum_GL_SGI_texture_color_table
|
5159
5159
|
|
5160
|
-
def
|
5160
|
+
def define_ext_enum_GL_SUNX_constant_data
|
5161
5161
|
const_set('GL_UNPACK_CONSTANT_DATA_SUNX', 0x81D5) unless defined?(GL_UNPACK_CONSTANT_DATA_SUNX)
|
5162
5162
|
const_set('GL_TEXTURE_CONSTANT_DATA_SUNX', 0x81D6) unless defined?(GL_TEXTURE_CONSTANT_DATA_SUNX)
|
5163
|
-
end #
|
5163
|
+
end # define_ext_enum_GL_SUNX_constant_data
|
5164
5164
|
|
5165
|
-
def
|
5165
|
+
def define_ext_enum_GL_SUN_convolution_border_modes
|
5166
5166
|
const_set('GL_WRAP_BORDER_SUN', 0x81D4) unless defined?(GL_WRAP_BORDER_SUN)
|
5167
|
-
end #
|
5167
|
+
end # define_ext_enum_GL_SUN_convolution_border_modes
|
5168
5168
|
|
5169
|
-
def
|
5169
|
+
def define_ext_enum_GL_SUN_global_alpha
|
5170
5170
|
const_set('GL_GLOBAL_ALPHA_SUN', 0x81D9) unless defined?(GL_GLOBAL_ALPHA_SUN)
|
5171
5171
|
const_set('GL_GLOBAL_ALPHA_FACTOR_SUN', 0x81DA) unless defined?(GL_GLOBAL_ALPHA_FACTOR_SUN)
|
5172
|
-
end #
|
5172
|
+
end # define_ext_enum_GL_SUN_global_alpha
|
5173
5173
|
|
5174
|
-
def
|
5174
|
+
def define_ext_enum_GL_SUN_mesh_array
|
5175
5175
|
const_set('GL_QUAD_MESH_SUN', 0x8614) unless defined?(GL_QUAD_MESH_SUN)
|
5176
5176
|
const_set('GL_TRIANGLE_MESH_SUN', 0x8615) unless defined?(GL_TRIANGLE_MESH_SUN)
|
5177
|
-
end #
|
5177
|
+
end # define_ext_enum_GL_SUN_mesh_array
|
5178
5178
|
|
5179
|
-
def
|
5179
|
+
def define_ext_enum_GL_SUN_slice_accum
|
5180
5180
|
const_set('GL_SLICE_ACCUM_SUN', 0x85CC) unless defined?(GL_SLICE_ACCUM_SUN)
|
5181
|
-
end #
|
5181
|
+
end # define_ext_enum_GL_SUN_slice_accum
|
5182
5182
|
|
5183
|
-
def
|
5183
|
+
def define_ext_enum_GL_SUN_triangle_list
|
5184
5184
|
const_set('GL_RESTART_SUN', 0x0001) unless defined?(GL_RESTART_SUN)
|
5185
5185
|
const_set('GL_REPLACE_MIDDLE_SUN', 0x0002) unless defined?(GL_REPLACE_MIDDLE_SUN)
|
5186
5186
|
const_set('GL_REPLACE_OLDEST_SUN', 0x0003) unless defined?(GL_REPLACE_OLDEST_SUN)
|
@@ -5198,18 +5198,18 @@ module OpenGL
|
|
5198
5198
|
const_set('GL_R1UI_T2F_V3F_SUN', 0x85C9) unless defined?(GL_R1UI_T2F_V3F_SUN)
|
5199
5199
|
const_set('GL_R1UI_T2F_N3F_V3F_SUN', 0x85CA) unless defined?(GL_R1UI_T2F_N3F_V3F_SUN)
|
5200
5200
|
const_set('GL_R1UI_T2F_C4F_N3F_V3F_SUN', 0x85CB) unless defined?(GL_R1UI_T2F_C4F_N3F_V3F_SUN)
|
5201
|
-
end #
|
5201
|
+
end # define_ext_enum_GL_SUN_triangle_list
|
5202
5202
|
|
5203
|
-
def
|
5204
|
-
end #
|
5203
|
+
def define_ext_enum_GL_SUN_vertex
|
5204
|
+
end # define_ext_enum_GL_SUN_vertex
|
5205
5205
|
|
5206
|
-
def
|
5206
|
+
def define_ext_enum_GL_WIN_phong_shading
|
5207
5207
|
const_set('GL_PHONG_WIN', 0x80EA) unless defined?(GL_PHONG_WIN)
|
5208
5208
|
const_set('GL_PHONG_HINT_WIN', 0x80EB) unless defined?(GL_PHONG_HINT_WIN)
|
5209
|
-
end #
|
5209
|
+
end # define_ext_enum_GL_WIN_phong_shading
|
5210
5210
|
|
5211
|
-
def
|
5211
|
+
def define_ext_enum_GL_WIN_specular_fog
|
5212
5212
|
const_set('GL_FOG_SPECULAR_TEXTURE_WIN', 0x80EC) unless defined?(GL_FOG_SPECULAR_TEXTURE_WIN)
|
5213
|
-
end #
|
5213
|
+
end # define_ext_enum_GL_WIN_specular_fog
|
5214
5214
|
|
5215
5215
|
end
|