opengl-bindings 1.3.10 → 1.3.11
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 +8 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/opengl_es_ext_command.rb +937 -0
- data/lib/opengl_es_ext_enum.rb +235 -0
- data/lib/opengl_ext_command.rb +77 -63
- data/lib/opengl_ext_enum.rb +18 -5
- metadata +3 -3
data/lib/opengl_es_ext_enum.rb
CHANGED
@@ -186,6 +186,9 @@ module OpenGL
|
|
186
186
|
const_set('GL_SHADER_BINARY_DMP', 0x9250) unless defined?(GL_SHADER_BINARY_DMP)
|
187
187
|
end # define_ext_enum_GL_DMP_shader_binary
|
188
188
|
|
189
|
+
def define_ext_enum_GL_EXT_base_instance
|
190
|
+
end # define_ext_enum_GL_EXT_base_instance
|
191
|
+
|
189
192
|
def define_ext_enum_GL_EXT_blend_minmax
|
190
193
|
const_set('GL_MIN_EXT', 0x8007) unless defined?(GL_MIN_EXT)
|
191
194
|
const_set('GL_MAX_EXT', 0x8008) unless defined?(GL_MAX_EXT)
|
@@ -303,6 +306,9 @@ module OpenGL
|
|
303
306
|
const_set('GL_SRC_ALPHA_SATURATE', 0x0308) unless defined?(GL_SRC_ALPHA_SATURATE)
|
304
307
|
end # define_ext_enum_GL_EXT_draw_buffers_indexed
|
305
308
|
|
309
|
+
def define_ext_enum_GL_EXT_draw_elements_base_vertex
|
310
|
+
end # define_ext_enum_GL_EXT_draw_elements_base_vertex
|
311
|
+
|
306
312
|
def define_ext_enum_GL_EXT_draw_instanced
|
307
313
|
end # define_ext_enum_GL_EXT_draw_instanced
|
308
314
|
|
@@ -364,6 +370,9 @@ module OpenGL
|
|
364
370
|
def define_ext_enum_GL_EXT_multi_draw_arrays
|
365
371
|
end # define_ext_enum_GL_EXT_multi_draw_arrays
|
366
372
|
|
373
|
+
def define_ext_enum_GL_EXT_multi_draw_indirect
|
374
|
+
end # define_ext_enum_GL_EXT_multi_draw_indirect
|
375
|
+
|
367
376
|
def define_ext_enum_GL_EXT_multisampled_render_to_texture
|
368
377
|
const_set('GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT', 0x8D6C) unless defined?(GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT)
|
369
378
|
const_set('GL_RENDERBUFFER_SAMPLES_EXT', 0x8CAB) unless defined?(GL_RENDERBUFFER_SAMPLES_EXT)
|
@@ -406,6 +415,17 @@ module OpenGL
|
|
406
415
|
const_set('GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT', 0x8366) unless defined?(GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT)
|
407
416
|
end # define_ext_enum_GL_EXT_read_format_bgra
|
408
417
|
|
418
|
+
def define_ext_enum_GL_EXT_render_snorm
|
419
|
+
const_set('GL_BYTE', 0x1400) unless defined?(GL_BYTE)
|
420
|
+
const_set('GL_SHORT', 0x1402) unless defined?(GL_SHORT)
|
421
|
+
const_set('GL_R8_SNORM', 0x8F94) unless defined?(GL_R8_SNORM)
|
422
|
+
const_set('GL_RG8_SNORM', 0x8F95) unless defined?(GL_RG8_SNORM)
|
423
|
+
const_set('GL_RGBA8_SNORM', 0x8F97) unless defined?(GL_RGBA8_SNORM)
|
424
|
+
const_set('GL_R16_SNORM_EXT', 0x8F98) unless defined?(GL_R16_SNORM_EXT)
|
425
|
+
const_set('GL_RG16_SNORM_EXT', 0x8F99) unless defined?(GL_RG16_SNORM_EXT)
|
426
|
+
const_set('GL_RGBA16_SNORM_EXT', 0x8F9B) unless defined?(GL_RGBA16_SNORM_EXT)
|
427
|
+
end # define_ext_enum_GL_EXT_render_snorm
|
428
|
+
|
409
429
|
def define_ext_enum_GL_EXT_robustness
|
410
430
|
const_set('GL_NO_ERROR', 0) unless defined?(GL_NO_ERROR)
|
411
431
|
const_set('GL_GUILTY_CONTEXT_RESET_EXT', 0x8253) unless defined?(GL_GUILTY_CONTEXT_RESET_EXT)
|
@@ -574,6 +594,17 @@ module OpenGL
|
|
574
594
|
const_set('GL_BGRA_EXT', 0x80E1) unless defined?(GL_BGRA_EXT)
|
575
595
|
end # define_ext_enum_GL_EXT_texture_format_BGRA8888
|
576
596
|
|
597
|
+
def define_ext_enum_GL_EXT_texture_norm16
|
598
|
+
const_set('GL_R16_EXT', 0x822A) unless defined?(GL_R16_EXT)
|
599
|
+
const_set('GL_RG16_EXT', 0x822C) unless defined?(GL_RG16_EXT)
|
600
|
+
const_set('GL_RGBA16_EXT', 0x805B) unless defined?(GL_RGBA16_EXT)
|
601
|
+
const_set('GL_RGB16_EXT', 0x8054) unless defined?(GL_RGB16_EXT)
|
602
|
+
const_set('GL_R16_SNORM_EXT', 0x8F98) unless defined?(GL_R16_SNORM_EXT)
|
603
|
+
const_set('GL_RG16_SNORM_EXT', 0x8F99) unless defined?(GL_RG16_SNORM_EXT)
|
604
|
+
const_set('GL_RGB16_SNORM_EXT', 0x8F9A) unless defined?(GL_RGB16_SNORM_EXT)
|
605
|
+
const_set('GL_RGBA16_SNORM_EXT', 0x8F9B) unless defined?(GL_RGBA16_SNORM_EXT)
|
606
|
+
end # define_ext_enum_GL_EXT_texture_norm16
|
607
|
+
|
577
608
|
def define_ext_enum_GL_EXT_texture_rg
|
578
609
|
const_set('GL_RED_EXT', 0x1903) unless defined?(GL_RED_EXT)
|
579
610
|
const_set('GL_RG_EXT', 0x8227) unless defined?(GL_RG_EXT)
|
@@ -888,6 +919,9 @@ module OpenGL
|
|
888
919
|
const_set('GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR', 0x93DD) unless defined?(GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR)
|
889
920
|
end # define_ext_enum_GL_KHR_texture_compression_astc_ldr
|
890
921
|
|
922
|
+
def define_ext_enum_GL_NV_bindless_texture
|
923
|
+
end # define_ext_enum_GL_NV_bindless_texture
|
924
|
+
|
891
925
|
def define_ext_enum_GL_NV_blend_equation_advanced
|
892
926
|
const_set('GL_BLEND_OVERLAP_NV', 0x9281) unless defined?(GL_BLEND_OVERLAP_NV)
|
893
927
|
const_set('GL_BLEND_PREMULTIPLIED_SRC_NV', 0x9280) unless defined?(GL_BLEND_PREMULTIPLIED_SRC_NV)
|
@@ -946,6 +980,13 @@ module OpenGL
|
|
946
980
|
const_set('GL_BLEND_ADVANCED_COHERENT_NV', 0x9285) unless defined?(GL_BLEND_ADVANCED_COHERENT_NV)
|
947
981
|
end # define_ext_enum_GL_NV_blend_equation_advanced_coherent
|
948
982
|
|
983
|
+
def define_ext_enum_GL_NV_conditional_render
|
984
|
+
const_set('GL_QUERY_WAIT_NV', 0x8E13) unless defined?(GL_QUERY_WAIT_NV)
|
985
|
+
const_set('GL_QUERY_NO_WAIT_NV', 0x8E14) unless defined?(GL_QUERY_NO_WAIT_NV)
|
986
|
+
const_set('GL_QUERY_BY_REGION_WAIT_NV', 0x8E15) unless defined?(GL_QUERY_BY_REGION_WAIT_NV)
|
987
|
+
const_set('GL_QUERY_BY_REGION_NO_WAIT_NV', 0x8E16) unless defined?(GL_QUERY_BY_REGION_NO_WAIT_NV)
|
988
|
+
end # define_ext_enum_GL_NV_conditional_render
|
989
|
+
|
949
990
|
def define_ext_enum_GL_NV_copy_buffer
|
950
991
|
const_set('GL_COPY_READ_BUFFER_NV', 0x8F36) unless defined?(GL_COPY_READ_BUFFER_NV)
|
951
992
|
const_set('GL_COPY_WRITE_BUFFER_NV', 0x8F37) unless defined?(GL_COPY_WRITE_BUFFER_NV)
|
@@ -1051,10 +1092,23 @@ module OpenGL
|
|
1051
1092
|
def define_ext_enum_GL_NV_generate_mipmap_sRGB
|
1052
1093
|
end # define_ext_enum_GL_NV_generate_mipmap_sRGB
|
1053
1094
|
|
1095
|
+
def define_ext_enum_GL_NV_image_formats
|
1096
|
+
end # define_ext_enum_GL_NV_image_formats
|
1097
|
+
|
1054
1098
|
def define_ext_enum_GL_NV_instanced_arrays
|
1055
1099
|
const_set('GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV', 0x88FE) unless defined?(GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV)
|
1056
1100
|
end # define_ext_enum_GL_NV_instanced_arrays
|
1057
1101
|
|
1102
|
+
def define_ext_enum_GL_NV_internalformat_sample_query
|
1103
|
+
const_set('GL_RENDERBUFFER', 0x8D41) unless defined?(GL_RENDERBUFFER)
|
1104
|
+
const_set('GL_TEXTURE_2D_MULTISAMPLE', 0x9100) unless defined?(GL_TEXTURE_2D_MULTISAMPLE)
|
1105
|
+
const_set('GL_TEXTURE_2D_MULTISAMPLE_ARRAY', 0x9102) unless defined?(GL_TEXTURE_2D_MULTISAMPLE_ARRAY)
|
1106
|
+
const_set('GL_MULTISAMPLES_NV', 0x9371) unless defined?(GL_MULTISAMPLES_NV)
|
1107
|
+
const_set('GL_SUPERSAMPLE_SCALE_X_NV', 0x9372) unless defined?(GL_SUPERSAMPLE_SCALE_X_NV)
|
1108
|
+
const_set('GL_SUPERSAMPLE_SCALE_Y_NV', 0x9373) unless defined?(GL_SUPERSAMPLE_SCALE_Y_NV)
|
1109
|
+
const_set('GL_CONFORMANT_NV', 0x9374) unless defined?(GL_CONFORMANT_NV)
|
1110
|
+
end # define_ext_enum_GL_NV_internalformat_sample_query
|
1111
|
+
|
1058
1112
|
def define_ext_enum_GL_NV_non_square_matrices
|
1059
1113
|
const_set('GL_FLOAT_MAT2x3_NV', 0x8B65) unless defined?(GL_FLOAT_MAT2x3_NV)
|
1060
1114
|
const_set('GL_FLOAT_MAT2x4_NV', 0x8B66) unless defined?(GL_FLOAT_MAT2x4_NV)
|
@@ -1064,6 +1118,173 @@ module OpenGL
|
|
1064
1118
|
const_set('GL_FLOAT_MAT4x3_NV', 0x8B6A) unless defined?(GL_FLOAT_MAT4x3_NV)
|
1065
1119
|
end # define_ext_enum_GL_NV_non_square_matrices
|
1066
1120
|
|
1121
|
+
def define_ext_enum_GL_NV_path_rendering
|
1122
|
+
const_set('GL_PATH_FORMAT_SVG_NV', 0x9070) unless defined?(GL_PATH_FORMAT_SVG_NV)
|
1123
|
+
const_set('GL_PATH_FORMAT_PS_NV', 0x9071) unless defined?(GL_PATH_FORMAT_PS_NV)
|
1124
|
+
const_set('GL_STANDARD_FONT_NAME_NV', 0x9072) unless defined?(GL_STANDARD_FONT_NAME_NV)
|
1125
|
+
const_set('GL_SYSTEM_FONT_NAME_NV', 0x9073) unless defined?(GL_SYSTEM_FONT_NAME_NV)
|
1126
|
+
const_set('GL_FILE_NAME_NV', 0x9074) unless defined?(GL_FILE_NAME_NV)
|
1127
|
+
const_set('GL_PATH_STROKE_WIDTH_NV', 0x9075) unless defined?(GL_PATH_STROKE_WIDTH_NV)
|
1128
|
+
const_set('GL_PATH_END_CAPS_NV', 0x9076) unless defined?(GL_PATH_END_CAPS_NV)
|
1129
|
+
const_set('GL_PATH_INITIAL_END_CAP_NV', 0x9077) unless defined?(GL_PATH_INITIAL_END_CAP_NV)
|
1130
|
+
const_set('GL_PATH_TERMINAL_END_CAP_NV', 0x9078) unless defined?(GL_PATH_TERMINAL_END_CAP_NV)
|
1131
|
+
const_set('GL_PATH_JOIN_STYLE_NV', 0x9079) unless defined?(GL_PATH_JOIN_STYLE_NV)
|
1132
|
+
const_set('GL_PATH_MITER_LIMIT_NV', 0x907A) unless defined?(GL_PATH_MITER_LIMIT_NV)
|
1133
|
+
const_set('GL_PATH_DASH_CAPS_NV', 0x907B) unless defined?(GL_PATH_DASH_CAPS_NV)
|
1134
|
+
const_set('GL_PATH_INITIAL_DASH_CAP_NV', 0x907C) unless defined?(GL_PATH_INITIAL_DASH_CAP_NV)
|
1135
|
+
const_set('GL_PATH_TERMINAL_DASH_CAP_NV', 0x907D) unless defined?(GL_PATH_TERMINAL_DASH_CAP_NV)
|
1136
|
+
const_set('GL_PATH_DASH_OFFSET_NV', 0x907E) unless defined?(GL_PATH_DASH_OFFSET_NV)
|
1137
|
+
const_set('GL_PATH_CLIENT_LENGTH_NV', 0x907F) unless defined?(GL_PATH_CLIENT_LENGTH_NV)
|
1138
|
+
const_set('GL_PATH_FILL_MODE_NV', 0x9080) unless defined?(GL_PATH_FILL_MODE_NV)
|
1139
|
+
const_set('GL_PATH_FILL_MASK_NV', 0x9081) unless defined?(GL_PATH_FILL_MASK_NV)
|
1140
|
+
const_set('GL_PATH_FILL_COVER_MODE_NV', 0x9082) unless defined?(GL_PATH_FILL_COVER_MODE_NV)
|
1141
|
+
const_set('GL_PATH_STROKE_COVER_MODE_NV', 0x9083) unless defined?(GL_PATH_STROKE_COVER_MODE_NV)
|
1142
|
+
const_set('GL_PATH_STROKE_MASK_NV', 0x9084) unless defined?(GL_PATH_STROKE_MASK_NV)
|
1143
|
+
const_set('GL_COUNT_UP_NV', 0x9088) unless defined?(GL_COUNT_UP_NV)
|
1144
|
+
const_set('GL_COUNT_DOWN_NV', 0x9089) unless defined?(GL_COUNT_DOWN_NV)
|
1145
|
+
const_set('GL_PATH_OBJECT_BOUNDING_BOX_NV', 0x908A) unless defined?(GL_PATH_OBJECT_BOUNDING_BOX_NV)
|
1146
|
+
const_set('GL_CONVEX_HULL_NV', 0x908B) unless defined?(GL_CONVEX_HULL_NV)
|
1147
|
+
const_set('GL_BOUNDING_BOX_NV', 0x908D) unless defined?(GL_BOUNDING_BOX_NV)
|
1148
|
+
const_set('GL_TRANSLATE_X_NV', 0x908E) unless defined?(GL_TRANSLATE_X_NV)
|
1149
|
+
const_set('GL_TRANSLATE_Y_NV', 0x908F) unless defined?(GL_TRANSLATE_Y_NV)
|
1150
|
+
const_set('GL_TRANSLATE_2D_NV', 0x9090) unless defined?(GL_TRANSLATE_2D_NV)
|
1151
|
+
const_set('GL_TRANSLATE_3D_NV', 0x9091) unless defined?(GL_TRANSLATE_3D_NV)
|
1152
|
+
const_set('GL_AFFINE_2D_NV', 0x9092) unless defined?(GL_AFFINE_2D_NV)
|
1153
|
+
const_set('GL_AFFINE_3D_NV', 0x9094) unless defined?(GL_AFFINE_3D_NV)
|
1154
|
+
const_set('GL_TRANSPOSE_AFFINE_2D_NV', 0x9096) unless defined?(GL_TRANSPOSE_AFFINE_2D_NV)
|
1155
|
+
const_set('GL_TRANSPOSE_AFFINE_3D_NV', 0x9098) unless defined?(GL_TRANSPOSE_AFFINE_3D_NV)
|
1156
|
+
const_set('GL_UTF8_NV', 0x909A) unless defined?(GL_UTF8_NV)
|
1157
|
+
const_set('GL_UTF16_NV', 0x909B) unless defined?(GL_UTF16_NV)
|
1158
|
+
const_set('GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV', 0x909C) unless defined?(GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV)
|
1159
|
+
const_set('GL_PATH_COMMAND_COUNT_NV', 0x909D) unless defined?(GL_PATH_COMMAND_COUNT_NV)
|
1160
|
+
const_set('GL_PATH_COORD_COUNT_NV', 0x909E) unless defined?(GL_PATH_COORD_COUNT_NV)
|
1161
|
+
const_set('GL_PATH_DASH_ARRAY_COUNT_NV', 0x909F) unless defined?(GL_PATH_DASH_ARRAY_COUNT_NV)
|
1162
|
+
const_set('GL_PATH_COMPUTED_LENGTH_NV', 0x90A0) unless defined?(GL_PATH_COMPUTED_LENGTH_NV)
|
1163
|
+
const_set('GL_PATH_FILL_BOUNDING_BOX_NV', 0x90A1) unless defined?(GL_PATH_FILL_BOUNDING_BOX_NV)
|
1164
|
+
const_set('GL_PATH_STROKE_BOUNDING_BOX_NV', 0x90A2) unless defined?(GL_PATH_STROKE_BOUNDING_BOX_NV)
|
1165
|
+
const_set('GL_SQUARE_NV', 0x90A3) unless defined?(GL_SQUARE_NV)
|
1166
|
+
const_set('GL_ROUND_NV', 0x90A4) unless defined?(GL_ROUND_NV)
|
1167
|
+
const_set('GL_TRIANGULAR_NV', 0x90A5) unless defined?(GL_TRIANGULAR_NV)
|
1168
|
+
const_set('GL_BEVEL_NV', 0x90A6) unless defined?(GL_BEVEL_NV)
|
1169
|
+
const_set('GL_MITER_REVERT_NV', 0x90A7) unless defined?(GL_MITER_REVERT_NV)
|
1170
|
+
const_set('GL_MITER_TRUNCATE_NV', 0x90A8) unless defined?(GL_MITER_TRUNCATE_NV)
|
1171
|
+
const_set('GL_SKIP_MISSING_GLYPH_NV', 0x90A9) unless defined?(GL_SKIP_MISSING_GLYPH_NV)
|
1172
|
+
const_set('GL_USE_MISSING_GLYPH_NV', 0x90AA) unless defined?(GL_USE_MISSING_GLYPH_NV)
|
1173
|
+
const_set('GL_PATH_ERROR_POSITION_NV', 0x90AB) unless defined?(GL_PATH_ERROR_POSITION_NV)
|
1174
|
+
const_set('GL_ACCUM_ADJACENT_PAIRS_NV', 0x90AD) unless defined?(GL_ACCUM_ADJACENT_PAIRS_NV)
|
1175
|
+
const_set('GL_ADJACENT_PAIRS_NV', 0x90AE) unless defined?(GL_ADJACENT_PAIRS_NV)
|
1176
|
+
const_set('GL_FIRST_TO_REST_NV', 0x90AF) unless defined?(GL_FIRST_TO_REST_NV)
|
1177
|
+
const_set('GL_PATH_GEN_MODE_NV', 0x90B0) unless defined?(GL_PATH_GEN_MODE_NV)
|
1178
|
+
const_set('GL_PATH_GEN_COEFF_NV', 0x90B1) unless defined?(GL_PATH_GEN_COEFF_NV)
|
1179
|
+
const_set('GL_PATH_GEN_COMPONENTS_NV', 0x90B3) unless defined?(GL_PATH_GEN_COMPONENTS_NV)
|
1180
|
+
const_set('GL_PATH_STENCIL_FUNC_NV', 0x90B7) unless defined?(GL_PATH_STENCIL_FUNC_NV)
|
1181
|
+
const_set('GL_PATH_STENCIL_REF_NV', 0x90B8) unless defined?(GL_PATH_STENCIL_REF_NV)
|
1182
|
+
const_set('GL_PATH_STENCIL_VALUE_MASK_NV', 0x90B9) unless defined?(GL_PATH_STENCIL_VALUE_MASK_NV)
|
1183
|
+
const_set('GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV', 0x90BD) unless defined?(GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV)
|
1184
|
+
const_set('GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV', 0x90BE) unless defined?(GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV)
|
1185
|
+
const_set('GL_PATH_COVER_DEPTH_FUNC_NV', 0x90BF) unless defined?(GL_PATH_COVER_DEPTH_FUNC_NV)
|
1186
|
+
const_set('GL_PATH_DASH_OFFSET_RESET_NV', 0x90B4) unless defined?(GL_PATH_DASH_OFFSET_RESET_NV)
|
1187
|
+
const_set('GL_MOVE_TO_RESETS_NV', 0x90B5) unless defined?(GL_MOVE_TO_RESETS_NV)
|
1188
|
+
const_set('GL_MOVE_TO_CONTINUES_NV', 0x90B6) unless defined?(GL_MOVE_TO_CONTINUES_NV)
|
1189
|
+
const_set('GL_CLOSE_PATH_NV', 0x00) unless defined?(GL_CLOSE_PATH_NV)
|
1190
|
+
const_set('GL_MOVE_TO_NV', 0x02) unless defined?(GL_MOVE_TO_NV)
|
1191
|
+
const_set('GL_RELATIVE_MOVE_TO_NV', 0x03) unless defined?(GL_RELATIVE_MOVE_TO_NV)
|
1192
|
+
const_set('GL_LINE_TO_NV', 0x04) unless defined?(GL_LINE_TO_NV)
|
1193
|
+
const_set('GL_RELATIVE_LINE_TO_NV', 0x05) unless defined?(GL_RELATIVE_LINE_TO_NV)
|
1194
|
+
const_set('GL_HORIZONTAL_LINE_TO_NV', 0x06) unless defined?(GL_HORIZONTAL_LINE_TO_NV)
|
1195
|
+
const_set('GL_RELATIVE_HORIZONTAL_LINE_TO_NV', 0x07) unless defined?(GL_RELATIVE_HORIZONTAL_LINE_TO_NV)
|
1196
|
+
const_set('GL_VERTICAL_LINE_TO_NV', 0x08) unless defined?(GL_VERTICAL_LINE_TO_NV)
|
1197
|
+
const_set('GL_RELATIVE_VERTICAL_LINE_TO_NV', 0x09) unless defined?(GL_RELATIVE_VERTICAL_LINE_TO_NV)
|
1198
|
+
const_set('GL_QUADRATIC_CURVE_TO_NV', 0x0A) unless defined?(GL_QUADRATIC_CURVE_TO_NV)
|
1199
|
+
const_set('GL_RELATIVE_QUADRATIC_CURVE_TO_NV', 0x0B) unless defined?(GL_RELATIVE_QUADRATIC_CURVE_TO_NV)
|
1200
|
+
const_set('GL_CUBIC_CURVE_TO_NV', 0x0C) unless defined?(GL_CUBIC_CURVE_TO_NV)
|
1201
|
+
const_set('GL_RELATIVE_CUBIC_CURVE_TO_NV', 0x0D) unless defined?(GL_RELATIVE_CUBIC_CURVE_TO_NV)
|
1202
|
+
const_set('GL_SMOOTH_QUADRATIC_CURVE_TO_NV', 0x0E) unless defined?(GL_SMOOTH_QUADRATIC_CURVE_TO_NV)
|
1203
|
+
const_set('GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV', 0x0F) unless defined?(GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV)
|
1204
|
+
const_set('GL_SMOOTH_CUBIC_CURVE_TO_NV', 0x10) unless defined?(GL_SMOOTH_CUBIC_CURVE_TO_NV)
|
1205
|
+
const_set('GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV', 0x11) unless defined?(GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV)
|
1206
|
+
const_set('GL_SMALL_CCW_ARC_TO_NV', 0x12) unless defined?(GL_SMALL_CCW_ARC_TO_NV)
|
1207
|
+
const_set('GL_RELATIVE_SMALL_CCW_ARC_TO_NV', 0x13) unless defined?(GL_RELATIVE_SMALL_CCW_ARC_TO_NV)
|
1208
|
+
const_set('GL_SMALL_CW_ARC_TO_NV', 0x14) unless defined?(GL_SMALL_CW_ARC_TO_NV)
|
1209
|
+
const_set('GL_RELATIVE_SMALL_CW_ARC_TO_NV', 0x15) unless defined?(GL_RELATIVE_SMALL_CW_ARC_TO_NV)
|
1210
|
+
const_set('GL_LARGE_CCW_ARC_TO_NV', 0x16) unless defined?(GL_LARGE_CCW_ARC_TO_NV)
|
1211
|
+
const_set('GL_RELATIVE_LARGE_CCW_ARC_TO_NV', 0x17) unless defined?(GL_RELATIVE_LARGE_CCW_ARC_TO_NV)
|
1212
|
+
const_set('GL_LARGE_CW_ARC_TO_NV', 0x18) unless defined?(GL_LARGE_CW_ARC_TO_NV)
|
1213
|
+
const_set('GL_RELATIVE_LARGE_CW_ARC_TO_NV', 0x19) unless defined?(GL_RELATIVE_LARGE_CW_ARC_TO_NV)
|
1214
|
+
const_set('GL_RESTART_PATH_NV', 0xF0) unless defined?(GL_RESTART_PATH_NV)
|
1215
|
+
const_set('GL_DUP_FIRST_CUBIC_CURVE_TO_NV', 0xF2) unless defined?(GL_DUP_FIRST_CUBIC_CURVE_TO_NV)
|
1216
|
+
const_set('GL_DUP_LAST_CUBIC_CURVE_TO_NV', 0xF4) unless defined?(GL_DUP_LAST_CUBIC_CURVE_TO_NV)
|
1217
|
+
const_set('GL_RECT_NV', 0xF6) unless defined?(GL_RECT_NV)
|
1218
|
+
const_set('GL_CIRCULAR_CCW_ARC_TO_NV', 0xF8) unless defined?(GL_CIRCULAR_CCW_ARC_TO_NV)
|
1219
|
+
const_set('GL_CIRCULAR_CW_ARC_TO_NV', 0xFA) unless defined?(GL_CIRCULAR_CW_ARC_TO_NV)
|
1220
|
+
const_set('GL_CIRCULAR_TANGENT_ARC_TO_NV', 0xFC) unless defined?(GL_CIRCULAR_TANGENT_ARC_TO_NV)
|
1221
|
+
const_set('GL_ARC_TO_NV', 0xFE) unless defined?(GL_ARC_TO_NV)
|
1222
|
+
const_set('GL_RELATIVE_ARC_TO_NV', 0xFF) unless defined?(GL_RELATIVE_ARC_TO_NV)
|
1223
|
+
const_set('GL_BOLD_BIT_NV', 0x01) unless defined?(GL_BOLD_BIT_NV)
|
1224
|
+
const_set('GL_ITALIC_BIT_NV', 0x02) unless defined?(GL_ITALIC_BIT_NV)
|
1225
|
+
const_set('GL_GLYPH_WIDTH_BIT_NV', 0x01) unless defined?(GL_GLYPH_WIDTH_BIT_NV)
|
1226
|
+
const_set('GL_GLYPH_HEIGHT_BIT_NV', 0x02) unless defined?(GL_GLYPH_HEIGHT_BIT_NV)
|
1227
|
+
const_set('GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV', 0x04) unless defined?(GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV)
|
1228
|
+
const_set('GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV', 0x08) unless defined?(GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV)
|
1229
|
+
const_set('GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV', 0x10) unless defined?(GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV)
|
1230
|
+
const_set('GL_GLYPH_VERTICAL_BEARING_X_BIT_NV', 0x20) unless defined?(GL_GLYPH_VERTICAL_BEARING_X_BIT_NV)
|
1231
|
+
const_set('GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV', 0x40) unless defined?(GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV)
|
1232
|
+
const_set('GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV', 0x80) unless defined?(GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV)
|
1233
|
+
const_set('GL_GLYPH_HAS_KERNING_BIT_NV', 0x100) unless defined?(GL_GLYPH_HAS_KERNING_BIT_NV)
|
1234
|
+
const_set('GL_FONT_X_MIN_BOUNDS_BIT_NV', 0x00010000) unless defined?(GL_FONT_X_MIN_BOUNDS_BIT_NV)
|
1235
|
+
const_set('GL_FONT_Y_MIN_BOUNDS_BIT_NV', 0x00020000) unless defined?(GL_FONT_Y_MIN_BOUNDS_BIT_NV)
|
1236
|
+
const_set('GL_FONT_X_MAX_BOUNDS_BIT_NV', 0x00040000) unless defined?(GL_FONT_X_MAX_BOUNDS_BIT_NV)
|
1237
|
+
const_set('GL_FONT_Y_MAX_BOUNDS_BIT_NV', 0x00080000) unless defined?(GL_FONT_Y_MAX_BOUNDS_BIT_NV)
|
1238
|
+
const_set('GL_FONT_UNITS_PER_EM_BIT_NV', 0x00100000) unless defined?(GL_FONT_UNITS_PER_EM_BIT_NV)
|
1239
|
+
const_set('GL_FONT_ASCENDER_BIT_NV', 0x00200000) unless defined?(GL_FONT_ASCENDER_BIT_NV)
|
1240
|
+
const_set('GL_FONT_DESCENDER_BIT_NV', 0x00400000) unless defined?(GL_FONT_DESCENDER_BIT_NV)
|
1241
|
+
const_set('GL_FONT_HEIGHT_BIT_NV', 0x00800000) unless defined?(GL_FONT_HEIGHT_BIT_NV)
|
1242
|
+
const_set('GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV', 0x01000000) unless defined?(GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV)
|
1243
|
+
const_set('GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV', 0x02000000) unless defined?(GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV)
|
1244
|
+
const_set('GL_FONT_UNDERLINE_POSITION_BIT_NV', 0x04000000) unless defined?(GL_FONT_UNDERLINE_POSITION_BIT_NV)
|
1245
|
+
const_set('GL_FONT_UNDERLINE_THICKNESS_BIT_NV', 0x08000000) unless defined?(GL_FONT_UNDERLINE_THICKNESS_BIT_NV)
|
1246
|
+
const_set('GL_FONT_HAS_KERNING_BIT_NV', 0x10000000) unless defined?(GL_FONT_HAS_KERNING_BIT_NV)
|
1247
|
+
const_set('GL_ROUNDED_RECT_NV', 0xE8) unless defined?(GL_ROUNDED_RECT_NV)
|
1248
|
+
const_set('GL_RELATIVE_ROUNDED_RECT_NV', 0xE9) unless defined?(GL_RELATIVE_ROUNDED_RECT_NV)
|
1249
|
+
const_set('GL_ROUNDED_RECT2_NV', 0xEA) unless defined?(GL_ROUNDED_RECT2_NV)
|
1250
|
+
const_set('GL_RELATIVE_ROUNDED_RECT2_NV', 0xEB) unless defined?(GL_RELATIVE_ROUNDED_RECT2_NV)
|
1251
|
+
const_set('GL_ROUNDED_RECT4_NV', 0xEC) unless defined?(GL_ROUNDED_RECT4_NV)
|
1252
|
+
const_set('GL_RELATIVE_ROUNDED_RECT4_NV', 0xED) unless defined?(GL_RELATIVE_ROUNDED_RECT4_NV)
|
1253
|
+
const_set('GL_ROUNDED_RECT8_NV', 0xEE) unless defined?(GL_ROUNDED_RECT8_NV)
|
1254
|
+
const_set('GL_RELATIVE_ROUNDED_RECT8_NV', 0xEF) unless defined?(GL_RELATIVE_ROUNDED_RECT8_NV)
|
1255
|
+
const_set('GL_RELATIVE_RECT_NV', 0xF7) unless defined?(GL_RELATIVE_RECT_NV)
|
1256
|
+
const_set('GL_FONT_GLYPHS_AVAILABLE_NV', 0x9368) unless defined?(GL_FONT_GLYPHS_AVAILABLE_NV)
|
1257
|
+
const_set('GL_FONT_TARGET_UNAVAILABLE_NV', 0x9369) unless defined?(GL_FONT_TARGET_UNAVAILABLE_NV)
|
1258
|
+
const_set('GL_FONT_UNAVAILABLE_NV', 0x936A) unless defined?(GL_FONT_UNAVAILABLE_NV)
|
1259
|
+
const_set('GL_FONT_UNINTELLIGIBLE_NV', 0x936B) unless defined?(GL_FONT_UNINTELLIGIBLE_NV)
|
1260
|
+
const_set('GL_CONIC_CURVE_TO_NV', 0x1A) unless defined?(GL_CONIC_CURVE_TO_NV)
|
1261
|
+
const_set('GL_RELATIVE_CONIC_CURVE_TO_NV', 0x1B) unless defined?(GL_RELATIVE_CONIC_CURVE_TO_NV)
|
1262
|
+
const_set('GL_FONT_NUM_GLYPH_INDICES_BIT_NV', 0x20000000) unless defined?(GL_FONT_NUM_GLYPH_INDICES_BIT_NV)
|
1263
|
+
const_set('GL_STANDARD_FONT_FORMAT_NV', 0x936C) unless defined?(GL_STANDARD_FONT_FORMAT_NV)
|
1264
|
+
const_set('GL_2_BYTES_NV', 0x1407) unless defined?(GL_2_BYTES_NV)
|
1265
|
+
const_set('GL_3_BYTES_NV', 0x1408) unless defined?(GL_3_BYTES_NV)
|
1266
|
+
const_set('GL_4_BYTES_NV', 0x1409) unless defined?(GL_4_BYTES_NV)
|
1267
|
+
const_set('GL_EYE_LINEAR_NV', 0x2400) unless defined?(GL_EYE_LINEAR_NV)
|
1268
|
+
const_set('GL_OBJECT_LINEAR_NV', 0x2401) unless defined?(GL_OBJECT_LINEAR_NV)
|
1269
|
+
const_set('GL_CONSTANT_NV', 0x8576) unless defined?(GL_CONSTANT_NV)
|
1270
|
+
const_set('GL_PATH_FOG_GEN_MODE_NV', 0x90AC) unless defined?(GL_PATH_FOG_GEN_MODE_NV)
|
1271
|
+
const_set('GL_PRIMARY_COLOR', 0x8577) unless defined?(GL_PRIMARY_COLOR)
|
1272
|
+
const_set('GL_PRIMARY_COLOR_NV', 0x852C) unless defined?(GL_PRIMARY_COLOR_NV)
|
1273
|
+
const_set('GL_SECONDARY_COLOR_NV', 0x852D) unless defined?(GL_SECONDARY_COLOR_NV)
|
1274
|
+
const_set('GL_PATH_GEN_COLOR_FORMAT_NV', 0x90B2) unless defined?(GL_PATH_GEN_COLOR_FORMAT_NV)
|
1275
|
+
const_set('GL_PATH_PROJECTION_NV', 0x1701) unless defined?(GL_PATH_PROJECTION_NV)
|
1276
|
+
const_set('GL_PATH_MODELVIEW_NV', 0x1700) unless defined?(GL_PATH_MODELVIEW_NV)
|
1277
|
+
const_set('GL_PATH_MODELVIEW_STACK_DEPTH_NV', 0x0BA3) unless defined?(GL_PATH_MODELVIEW_STACK_DEPTH_NV)
|
1278
|
+
const_set('GL_PATH_MODELVIEW_MATRIX_NV', 0x0BA6) unless defined?(GL_PATH_MODELVIEW_MATRIX_NV)
|
1279
|
+
const_set('GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV', 0x0D36) unless defined?(GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV)
|
1280
|
+
const_set('GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV', 0x84E3) unless defined?(GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV)
|
1281
|
+
const_set('GL_PATH_PROJECTION_STACK_DEPTH_NV', 0x0BA4) unless defined?(GL_PATH_PROJECTION_STACK_DEPTH_NV)
|
1282
|
+
const_set('GL_PATH_PROJECTION_MATRIX_NV', 0x0BA7) unless defined?(GL_PATH_PROJECTION_MATRIX_NV)
|
1283
|
+
const_set('GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV', 0x0D38) unless defined?(GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV)
|
1284
|
+
const_set('GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV', 0x84E4) unless defined?(GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV)
|
1285
|
+
const_set('GL_FRAGMENT_INPUT_NV', 0x936D) unless defined?(GL_FRAGMENT_INPUT_NV)
|
1286
|
+
end # define_ext_enum_GL_NV_path_rendering
|
1287
|
+
|
1067
1288
|
def define_ext_enum_GL_NV_read_buffer
|
1068
1289
|
const_set('GL_READ_BUFFER_NV', 0x0C02) unless defined?(GL_READ_BUFFER_NV)
|
1069
1290
|
end # define_ext_enum_GL_NV_read_buffer
|
@@ -1093,6 +1314,9 @@ module OpenGL
|
|
1093
1314
|
const_set('GL_ETC1_SRGB8_NV', 0x88EE) unless defined?(GL_ETC1_SRGB8_NV)
|
1094
1315
|
end # define_ext_enum_GL_NV_sRGB_formats
|
1095
1316
|
|
1317
|
+
def define_ext_enum_GL_NV_shader_noperspective_interpolation
|
1318
|
+
end # define_ext_enum_GL_NV_shader_noperspective_interpolation
|
1319
|
+
|
1096
1320
|
def define_ext_enum_GL_NV_shadow_samplers_array
|
1097
1321
|
const_set('GL_SAMPLER_2D_ARRAY_SHADOW_NV', 0x8DC4) unless defined?(GL_SAMPLER_2D_ARRAY_SHADOW_NV)
|
1098
1322
|
end # define_ext_enum_GL_NV_shadow_samplers_array
|
@@ -1112,6 +1336,17 @@ module OpenGL
|
|
1112
1336
|
def define_ext_enum_GL_NV_texture_npot_2D_mipmap
|
1113
1337
|
end # define_ext_enum_GL_NV_texture_npot_2D_mipmap
|
1114
1338
|
|
1339
|
+
def define_ext_enum_GL_NV_viewport_array
|
1340
|
+
const_set('GL_MAX_VIEWPORTS_NV', 0x825B) unless defined?(GL_MAX_VIEWPORTS_NV)
|
1341
|
+
const_set('GL_VIEWPORT_SUBPIXEL_BITS_NV', 0x825C) unless defined?(GL_VIEWPORT_SUBPIXEL_BITS_NV)
|
1342
|
+
const_set('GL_VIEWPORT_BOUNDS_RANGE_NV', 0x825D) unless defined?(GL_VIEWPORT_BOUNDS_RANGE_NV)
|
1343
|
+
const_set('GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV', 0x825F) unless defined?(GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV)
|
1344
|
+
const_set('GL_SCISSOR_BOX', 0x0C10) unless defined?(GL_SCISSOR_BOX)
|
1345
|
+
const_set('GL_VIEWPORT', 0x0BA2) unless defined?(GL_VIEWPORT)
|
1346
|
+
const_set('GL_DEPTH_RANGE', 0x0B70) unless defined?(GL_DEPTH_RANGE)
|
1347
|
+
const_set('GL_SCISSOR_TEST', 0x0C11) unless defined?(GL_SCISSOR_TEST)
|
1348
|
+
end # define_ext_enum_GL_NV_viewport_array
|
1349
|
+
|
1115
1350
|
def define_ext_enum_GL_OES_EGL_image
|
1116
1351
|
end # define_ext_enum_GL_OES_EGL_image
|
1117
1352
|
|
data/lib/opengl_ext_command.rb
CHANGED
@@ -16821,6 +16821,17 @@ module OpenGL
|
|
16821
16821
|
SRC_GL_NV_half_float
|
16822
16822
|
end # define_ext_command_GL_NV_half_float
|
16823
16823
|
|
16824
|
+
def define_ext_command_GL_NV_internalformat_sample_query
|
16825
|
+
GL_FUNCTIONS_ARGS_MAP[:glGetInternalformatSampleivNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
16826
|
+
GL_FUNCTIONS_RETVAL_MAP[:glGetInternalformatSampleivNV] = Fiddle::TYPE_VOID
|
16827
|
+
module_eval(<<-SRC_GL_NV_internalformat_sample_query)
|
16828
|
+
def glGetInternalformatSampleivNV(_target_, _internalformat_, _samples_, _pname_, _bufSize_, _params_)
|
16829
|
+
f = OpenGL::get_command(:glGetInternalformatSampleivNV)
|
16830
|
+
f.call(_target_, _internalformat_, _samples_, _pname_, _bufSize_, _params_)
|
16831
|
+
end
|
16832
|
+
SRC_GL_NV_internalformat_sample_query
|
16833
|
+
end # define_ext_command_GL_NV_internalformat_sample_query
|
16834
|
+
|
16824
16835
|
def define_ext_command_GL_NV_light_max_exponent
|
16825
16836
|
end # define_ext_command_GL_NV_light_max_exponent
|
16826
16837
|
|
@@ -17165,33 +17176,6 @@ module OpenGL
|
|
17165
17176
|
end
|
17166
17177
|
SRC_GL_NV_path_rendering
|
17167
17178
|
|
17168
|
-
GL_FUNCTIONS_ARGS_MAP[:glPathColorGenNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17169
|
-
GL_FUNCTIONS_RETVAL_MAP[:glPathColorGenNV] = Fiddle::TYPE_VOID
|
17170
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17171
|
-
def glPathColorGenNV(_color_, _genMode_, _colorFormat_, _coeffs_)
|
17172
|
-
f = OpenGL::get_command(:glPathColorGenNV)
|
17173
|
-
f.call(_color_, _genMode_, _colorFormat_, _coeffs_)
|
17174
|
-
end
|
17175
|
-
SRC_GL_NV_path_rendering
|
17176
|
-
|
17177
|
-
GL_FUNCTIONS_ARGS_MAP[:glPathTexGenNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17178
|
-
GL_FUNCTIONS_RETVAL_MAP[:glPathTexGenNV] = Fiddle::TYPE_VOID
|
17179
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17180
|
-
def glPathTexGenNV(_texCoordSet_, _genMode_, _components_, _coeffs_)
|
17181
|
-
f = OpenGL::get_command(:glPathTexGenNV)
|
17182
|
-
f.call(_texCoordSet_, _genMode_, _components_, _coeffs_)
|
17183
|
-
end
|
17184
|
-
SRC_GL_NV_path_rendering
|
17185
|
-
|
17186
|
-
GL_FUNCTIONS_ARGS_MAP[:glPathFogGenNV] = [-Fiddle::TYPE_INT]
|
17187
|
-
GL_FUNCTIONS_RETVAL_MAP[:glPathFogGenNV] = Fiddle::TYPE_VOID
|
17188
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17189
|
-
def glPathFogGenNV(_genMode_)
|
17190
|
-
f = OpenGL::get_command(:glPathFogGenNV)
|
17191
|
-
f.call(_genMode_)
|
17192
|
-
end
|
17193
|
-
SRC_GL_NV_path_rendering
|
17194
|
-
|
17195
17179
|
GL_FUNCTIONS_ARGS_MAP[:glCoverFillPathNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT]
|
17196
17180
|
GL_FUNCTIONS_RETVAL_MAP[:glCoverFillPathNV] = Fiddle::TYPE_VOID
|
17197
17181
|
module_eval(<<-SRC_GL_NV_path_rendering)
|
@@ -17300,42 +17284,6 @@ module OpenGL
|
|
17300
17284
|
end
|
17301
17285
|
SRC_GL_NV_path_rendering
|
17302
17286
|
|
17303
|
-
GL_FUNCTIONS_ARGS_MAP[:glGetPathColorGenivNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17304
|
-
GL_FUNCTIONS_RETVAL_MAP[:glGetPathColorGenivNV] = Fiddle::TYPE_VOID
|
17305
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17306
|
-
def glGetPathColorGenivNV(_color_, _pname_, _value_)
|
17307
|
-
f = OpenGL::get_command(:glGetPathColorGenivNV)
|
17308
|
-
f.call(_color_, _pname_, _value_)
|
17309
|
-
end
|
17310
|
-
SRC_GL_NV_path_rendering
|
17311
|
-
|
17312
|
-
GL_FUNCTIONS_ARGS_MAP[:glGetPathColorGenfvNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17313
|
-
GL_FUNCTIONS_RETVAL_MAP[:glGetPathColorGenfvNV] = Fiddle::TYPE_VOID
|
17314
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17315
|
-
def glGetPathColorGenfvNV(_color_, _pname_, _value_)
|
17316
|
-
f = OpenGL::get_command(:glGetPathColorGenfvNV)
|
17317
|
-
f.call(_color_, _pname_, _value_)
|
17318
|
-
end
|
17319
|
-
SRC_GL_NV_path_rendering
|
17320
|
-
|
17321
|
-
GL_FUNCTIONS_ARGS_MAP[:glGetPathTexGenivNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17322
|
-
GL_FUNCTIONS_RETVAL_MAP[:glGetPathTexGenivNV] = Fiddle::TYPE_VOID
|
17323
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17324
|
-
def glGetPathTexGenivNV(_texCoordSet_, _pname_, _value_)
|
17325
|
-
f = OpenGL::get_command(:glGetPathTexGenivNV)
|
17326
|
-
f.call(_texCoordSet_, _pname_, _value_)
|
17327
|
-
end
|
17328
|
-
SRC_GL_NV_path_rendering
|
17329
|
-
|
17330
|
-
GL_FUNCTIONS_ARGS_MAP[:glGetPathTexGenfvNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17331
|
-
GL_FUNCTIONS_RETVAL_MAP[:glGetPathTexGenfvNV] = Fiddle::TYPE_VOID
|
17332
|
-
module_eval(<<-SRC_GL_NV_path_rendering)
|
17333
|
-
def glGetPathTexGenfvNV(_texCoordSet_, _pname_, _value_)
|
17334
|
-
f = OpenGL::get_command(:glGetPathTexGenfvNV)
|
17335
|
-
f.call(_texCoordSet_, _pname_, _value_)
|
17336
|
-
end
|
17337
|
-
SRC_GL_NV_path_rendering
|
17338
|
-
|
17339
17287
|
GL_FUNCTIONS_ARGS_MAP[:glIsPointInFillPathNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_FLOAT, Fiddle::TYPE_FLOAT]
|
17340
17288
|
GL_FUNCTIONS_RETVAL_MAP[:glIsPointInFillPathNV] = -Fiddle::TYPE_CHAR
|
17341
17289
|
module_eval(<<-SRC_GL_NV_path_rendering)
|
@@ -17506,6 +17454,69 @@ module OpenGL
|
|
17506
17454
|
f.call(_program_, _programInterface_, _index_, _propCount_, _props_, _bufSize_, _length_, _params_)
|
17507
17455
|
end
|
17508
17456
|
SRC_GL_NV_path_rendering
|
17457
|
+
|
17458
|
+
GL_FUNCTIONS_ARGS_MAP[:glPathColorGenNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17459
|
+
GL_FUNCTIONS_RETVAL_MAP[:glPathColorGenNV] = Fiddle::TYPE_VOID
|
17460
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17461
|
+
def glPathColorGenNV(_color_, _genMode_, _colorFormat_, _coeffs_)
|
17462
|
+
f = OpenGL::get_command(:glPathColorGenNV)
|
17463
|
+
f.call(_color_, _genMode_, _colorFormat_, _coeffs_)
|
17464
|
+
end
|
17465
|
+
SRC_GL_NV_path_rendering
|
17466
|
+
|
17467
|
+
GL_FUNCTIONS_ARGS_MAP[:glPathTexGenNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17468
|
+
GL_FUNCTIONS_RETVAL_MAP[:glPathTexGenNV] = Fiddle::TYPE_VOID
|
17469
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17470
|
+
def glPathTexGenNV(_texCoordSet_, _genMode_, _components_, _coeffs_)
|
17471
|
+
f = OpenGL::get_command(:glPathTexGenNV)
|
17472
|
+
f.call(_texCoordSet_, _genMode_, _components_, _coeffs_)
|
17473
|
+
end
|
17474
|
+
SRC_GL_NV_path_rendering
|
17475
|
+
|
17476
|
+
GL_FUNCTIONS_ARGS_MAP[:glPathFogGenNV] = [-Fiddle::TYPE_INT]
|
17477
|
+
GL_FUNCTIONS_RETVAL_MAP[:glPathFogGenNV] = Fiddle::TYPE_VOID
|
17478
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17479
|
+
def glPathFogGenNV(_genMode_)
|
17480
|
+
f = OpenGL::get_command(:glPathFogGenNV)
|
17481
|
+
f.call(_genMode_)
|
17482
|
+
end
|
17483
|
+
SRC_GL_NV_path_rendering
|
17484
|
+
|
17485
|
+
GL_FUNCTIONS_ARGS_MAP[:glGetPathColorGenivNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17486
|
+
GL_FUNCTIONS_RETVAL_MAP[:glGetPathColorGenivNV] = Fiddle::TYPE_VOID
|
17487
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17488
|
+
def glGetPathColorGenivNV(_color_, _pname_, _value_)
|
17489
|
+
f = OpenGL::get_command(:glGetPathColorGenivNV)
|
17490
|
+
f.call(_color_, _pname_, _value_)
|
17491
|
+
end
|
17492
|
+
SRC_GL_NV_path_rendering
|
17493
|
+
|
17494
|
+
GL_FUNCTIONS_ARGS_MAP[:glGetPathColorGenfvNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17495
|
+
GL_FUNCTIONS_RETVAL_MAP[:glGetPathColorGenfvNV] = Fiddle::TYPE_VOID
|
17496
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17497
|
+
def glGetPathColorGenfvNV(_color_, _pname_, _value_)
|
17498
|
+
f = OpenGL::get_command(:glGetPathColorGenfvNV)
|
17499
|
+
f.call(_color_, _pname_, _value_)
|
17500
|
+
end
|
17501
|
+
SRC_GL_NV_path_rendering
|
17502
|
+
|
17503
|
+
GL_FUNCTIONS_ARGS_MAP[:glGetPathTexGenivNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17504
|
+
GL_FUNCTIONS_RETVAL_MAP[:glGetPathTexGenivNV] = Fiddle::TYPE_VOID
|
17505
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17506
|
+
def glGetPathTexGenivNV(_texCoordSet_, _pname_, _value_)
|
17507
|
+
f = OpenGL::get_command(:glGetPathTexGenivNV)
|
17508
|
+
f.call(_texCoordSet_, _pname_, _value_)
|
17509
|
+
end
|
17510
|
+
SRC_GL_NV_path_rendering
|
17511
|
+
|
17512
|
+
GL_FUNCTIONS_ARGS_MAP[:glGetPathTexGenfvNV] = [-Fiddle::TYPE_INT, -Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP]
|
17513
|
+
GL_FUNCTIONS_RETVAL_MAP[:glGetPathTexGenfvNV] = Fiddle::TYPE_VOID
|
17514
|
+
module_eval(<<-SRC_GL_NV_path_rendering)
|
17515
|
+
def glGetPathTexGenfvNV(_texCoordSet_, _pname_, _value_)
|
17516
|
+
f = OpenGL::get_command(:glGetPathTexGenfvNV)
|
17517
|
+
f.call(_texCoordSet_, _pname_, _value_)
|
17518
|
+
end
|
17519
|
+
SRC_GL_NV_path_rendering
|
17509
17520
|
end # define_ext_command_GL_NV_path_rendering
|
17510
17521
|
|
17511
17522
|
def define_ext_command_GL_NV_pixel_data_range
|
@@ -19532,6 +19543,9 @@ module OpenGL
|
|
19532
19543
|
SRC_GL_NV_video_capture
|
19533
19544
|
end # define_ext_command_GL_NV_video_capture
|
19534
19545
|
|
19546
|
+
def define_ext_command_GL_NV_viewport_array2
|
19547
|
+
end # define_ext_command_GL_NV_viewport_array2
|
19548
|
+
|
19535
19549
|
def define_ext_command_GL_OES_byte_coordinates
|
19536
19550
|
GL_FUNCTIONS_ARGS_MAP[:glMultiTexCoord1bOES] = [-Fiddle::TYPE_INT, Fiddle::TYPE_CHAR]
|
19537
19551
|
GL_FUNCTIONS_RETVAL_MAP[:glMultiTexCoord1bOES] = Fiddle::TYPE_VOID
|