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_ext_enum.rb
CHANGED
@@ -4218,6 +4218,16 @@ module OpenGL
|
|
4218
4218
|
const_set('GL_HALF_FLOAT_NV', 0x140B) unless defined?(GL_HALF_FLOAT_NV)
|
4219
4219
|
end # define_ext_enum_GL_NV_half_float
|
4220
4220
|
|
4221
|
+
def define_ext_enum_GL_NV_internalformat_sample_query
|
4222
|
+
const_set('GL_RENDERBUFFER', 0x8D41) unless defined?(GL_RENDERBUFFER)
|
4223
|
+
const_set('GL_TEXTURE_2D_MULTISAMPLE', 0x9100) unless defined?(GL_TEXTURE_2D_MULTISAMPLE)
|
4224
|
+
const_set('GL_TEXTURE_2D_MULTISAMPLE_ARRAY', 0x9102) unless defined?(GL_TEXTURE_2D_MULTISAMPLE_ARRAY)
|
4225
|
+
const_set('GL_MULTISAMPLES_NV', 0x9371) unless defined?(GL_MULTISAMPLES_NV)
|
4226
|
+
const_set('GL_SUPERSAMPLE_SCALE_X_NV', 0x9372) unless defined?(GL_SUPERSAMPLE_SCALE_X_NV)
|
4227
|
+
const_set('GL_SUPERSAMPLE_SCALE_Y_NV', 0x9373) unless defined?(GL_SUPERSAMPLE_SCALE_Y_NV)
|
4228
|
+
const_set('GL_CONFORMANT_NV', 0x9374) unless defined?(GL_CONFORMANT_NV)
|
4229
|
+
end # define_ext_enum_GL_NV_internalformat_sample_query
|
4230
|
+
|
4221
4231
|
def define_ext_enum_GL_NV_light_max_exponent
|
4222
4232
|
const_set('GL_MAX_SHININESS_NV', 0x8504) unless defined?(GL_MAX_SHININESS_NV)
|
4223
4233
|
const_set('GL_MAX_SPOT_EXPONENT_NV', 0x8505) unless defined?(GL_MAX_SPOT_EXPONENT_NV)
|
@@ -4308,13 +4318,11 @@ module OpenGL
|
|
4308
4318
|
const_set('GL_SKIP_MISSING_GLYPH_NV', 0x90A9) unless defined?(GL_SKIP_MISSING_GLYPH_NV)
|
4309
4319
|
const_set('GL_USE_MISSING_GLYPH_NV', 0x90AA) unless defined?(GL_USE_MISSING_GLYPH_NV)
|
4310
4320
|
const_set('GL_PATH_ERROR_POSITION_NV', 0x90AB) unless defined?(GL_PATH_ERROR_POSITION_NV)
|
4311
|
-
const_set('GL_PATH_FOG_GEN_MODE_NV', 0x90AC) unless defined?(GL_PATH_FOG_GEN_MODE_NV)
|
4312
4321
|
const_set('GL_ACCUM_ADJACENT_PAIRS_NV', 0x90AD) unless defined?(GL_ACCUM_ADJACENT_PAIRS_NV)
|
4313
4322
|
const_set('GL_ADJACENT_PAIRS_NV', 0x90AE) unless defined?(GL_ADJACENT_PAIRS_NV)
|
4314
4323
|
const_set('GL_FIRST_TO_REST_NV', 0x90AF) unless defined?(GL_FIRST_TO_REST_NV)
|
4315
4324
|
const_set('GL_PATH_GEN_MODE_NV', 0x90B0) unless defined?(GL_PATH_GEN_MODE_NV)
|
4316
4325
|
const_set('GL_PATH_GEN_COEFF_NV', 0x90B1) unless defined?(GL_PATH_GEN_COEFF_NV)
|
4317
|
-
const_set('GL_PATH_GEN_COLOR_FORMAT_NV', 0x90B2) unless defined?(GL_PATH_GEN_COLOR_FORMAT_NV)
|
4318
4326
|
const_set('GL_PATH_GEN_COMPONENTS_NV', 0x90B3) unless defined?(GL_PATH_GEN_COMPONENTS_NV)
|
4319
4327
|
const_set('GL_PATH_STENCIL_FUNC_NV', 0x90B7) unless defined?(GL_PATH_STENCIL_FUNC_NV)
|
4320
4328
|
const_set('GL_PATH_STENCIL_REF_NV', 0x90B8) unless defined?(GL_PATH_STENCIL_REF_NV)
|
@@ -4383,9 +4391,6 @@ module OpenGL
|
|
4383
4391
|
const_set('GL_FONT_UNDERLINE_POSITION_BIT_NV', 0x04000000) unless defined?(GL_FONT_UNDERLINE_POSITION_BIT_NV)
|
4384
4392
|
const_set('GL_FONT_UNDERLINE_THICKNESS_BIT_NV', 0x08000000) unless defined?(GL_FONT_UNDERLINE_THICKNESS_BIT_NV)
|
4385
4393
|
const_set('GL_FONT_HAS_KERNING_BIT_NV', 0x10000000) unless defined?(GL_FONT_HAS_KERNING_BIT_NV)
|
4386
|
-
const_set('GL_PRIMARY_COLOR', 0x8577) unless defined?(GL_PRIMARY_COLOR)
|
4387
|
-
const_set('GL_PRIMARY_COLOR_NV', 0x852C) unless defined?(GL_PRIMARY_COLOR_NV)
|
4388
|
-
const_set('GL_SECONDARY_COLOR_NV', 0x852D) unless defined?(GL_SECONDARY_COLOR_NV)
|
4389
4394
|
const_set('GL_ROUNDED_RECT_NV', 0xE8) unless defined?(GL_ROUNDED_RECT_NV)
|
4390
4395
|
const_set('GL_RELATIVE_ROUNDED_RECT_NV', 0xE9) unless defined?(GL_RELATIVE_ROUNDED_RECT_NV)
|
4391
4396
|
const_set('GL_ROUNDED_RECT2_NV', 0xEA) unless defined?(GL_ROUNDED_RECT2_NV)
|
@@ -4409,6 +4414,11 @@ module OpenGL
|
|
4409
4414
|
const_set('GL_EYE_LINEAR_NV', 0x2400) unless defined?(GL_EYE_LINEAR_NV)
|
4410
4415
|
const_set('GL_OBJECT_LINEAR_NV', 0x2401) unless defined?(GL_OBJECT_LINEAR_NV)
|
4411
4416
|
const_set('GL_CONSTANT_NV', 0x8576) unless defined?(GL_CONSTANT_NV)
|
4417
|
+
const_set('GL_PATH_FOG_GEN_MODE_NV', 0x90AC) unless defined?(GL_PATH_FOG_GEN_MODE_NV)
|
4418
|
+
const_set('GL_PRIMARY_COLOR', 0x8577) unless defined?(GL_PRIMARY_COLOR)
|
4419
|
+
const_set('GL_PRIMARY_COLOR_NV', 0x852C) unless defined?(GL_PRIMARY_COLOR_NV)
|
4420
|
+
const_set('GL_SECONDARY_COLOR_NV', 0x852D) unless defined?(GL_SECONDARY_COLOR_NV)
|
4421
|
+
const_set('GL_PATH_GEN_COLOR_FORMAT_NV', 0x90B2) unless defined?(GL_PATH_GEN_COLOR_FORMAT_NV)
|
4412
4422
|
const_set('GL_PATH_PROJECTION_NV', 0x1701) unless defined?(GL_PATH_PROJECTION_NV)
|
4413
4423
|
const_set('GL_PATH_MODELVIEW_NV', 0x1700) unless defined?(GL_PATH_MODELVIEW_NV)
|
4414
4424
|
const_set('GL_PATH_MODELVIEW_STACK_DEPTH_NV', 0x0BA3) unless defined?(GL_PATH_MODELVIEW_STACK_DEPTH_NV)
|
@@ -4953,6 +4963,9 @@ module OpenGL
|
|
4953
4963
|
const_set('GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV', 0x903C) unless defined?(GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV)
|
4954
4964
|
end # define_ext_enum_GL_NV_video_capture
|
4955
4965
|
|
4966
|
+
def define_ext_enum_GL_NV_viewport_array2
|
4967
|
+
end # define_ext_enum_GL_NV_viewport_array2
|
4968
|
+
|
4956
4969
|
def define_ext_enum_GL_OES_byte_coordinates
|
4957
4970
|
const_set('GL_BYTE', 0x1400) unless defined?(GL_BYTE)
|
4958
4971
|
end # define_ext_enum_GL_OES_byte_coordinates
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opengl-bindings
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vaiorabbit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
Ruby bindings for OpenGL - 4.5, OpenGL ES - 3.1 and all extensions using Fiddle (For MRI >= 2.0.0).
|
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
version: '0'
|
67
67
|
requirements: []
|
68
68
|
rubyforge_project:
|
69
|
-
rubygems_version: 2.
|
69
|
+
rubygems_version: 2.4.3
|
70
70
|
signing_key:
|
71
71
|
specification_version: 4
|
72
72
|
summary: Bindings for OpenGL -4.5, ES - 3.1 and extensions (For MRI >= 2.0.0)
|