opengl-definitions 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/opengl-definitions/extensions/GL_ARB_ES3_2_compatibility.rb +11 -0
- data/lib/opengl-definitions/extensions/GL_ARB_gpu_shader_int64.rb +51 -0
- data/lib/opengl-definitions/extensions/GL_ARB_parallel_shader_compile.rb +10 -0
- data/lib/opengl-definitions/extensions/GL_ARB_sample_locations.rb +18 -0
- data/lib/opengl-definitions/extensions/GL_ARB_texture_filter_minmax.rb +6 -0
- data/lib/opengl-definitions/extensions/GL_ARB_uniform_buffer_object.rb +3 -0
- data/lib/opengl-definitions/extensions/GL_EXT_YUV_target.rb +8 -0
- data/lib/opengl-definitions/extensions/GL_EXT_blend_func_extended.rb +18 -0
- data/lib/opengl-definitions/extensions/GL_EXT_buffer_storage.rb +17 -0
- data/lib/opengl-definitions/extensions/GL_EXT_multisampled_compatibility.rb +6 -0
- data/lib/opengl-definitions/extensions/GL_EXT_sparse_texture.rb +24 -0
- data/lib/opengl-definitions/extensions/GL_EXT_texture_sRGB_R8.rb +5 -0
- data/lib/opengl-definitions/extensions/GL_EXT_texture_sRGB_RG8.rb +5 -0
- data/lib/opengl-definitions/extensions/GL_INTEL_framebuffer_CMAA.rb +5 -0
- data/lib/opengl-definitions/extensions/GL_KHR_debug.rb +2 -1
- data/lib/opengl-definitions/extensions/GL_KHR_no_error.rb +5 -0
- data/lib/opengl-definitions/extensions/GL_NV_command_list.rb +43 -0
- data/lib/opengl-definitions/extensions/GL_NV_conservative_raster_dilate.rb +11 -0
- data/lib/opengl-definitions/extensions/GL_NV_polygon_mode.rb +14 -0
- data/lib/opengl-definitions/extensions/GL_OES_fixed_point.rb +0 -1
- data/lib/opengl-definitions/extensions/GL_OVR_multiview.rb +11 -0
- data/lib/opengl-definitions/version.rb +1 -1
- metadata +24 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed0acf9429244545ac7c95427bc0de080a77146c
|
4
|
+
data.tar.gz: fe99c72874108341c59435e0014ae06e67231d7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8605425303870c9bea8659e1dbf9665b84e70178b048c2bfa56eb173441541445bf54fe74f39b9e99a4670f7ba1976f76236e27dfba5e9453973832b425dfc69
|
7
|
+
data.tar.gz: 656241d7d3e87a496a741d128b08f61384d7a2de441a844f2043053dc813b56acc99b04a0f7acf831afe999004a1631503c9add53a395dacbcfd75805f02abcc
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module GL_ARB_ES3_2_compatibility
|
2
|
+
module Constants
|
3
|
+
GL_PRIMITIVE_BOUNDING_BOX_ARB = 0x92BE
|
4
|
+
GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB = 0x9381
|
5
|
+
GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB = 0x9382
|
6
|
+
end
|
7
|
+
|
8
|
+
FUNCTIONS = {
|
9
|
+
glPrimitiveBoundingBoxARB: [ :void, :GLfloat, :GLfloat, :GLfloat, :GLfloat, :GLfloat, :GLfloat, :GLfloat, :GLfloat ].freeze,
|
10
|
+
}.freeze
|
11
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
module GL_ARB_gpu_shader_int64
|
2
|
+
module Constants
|
3
|
+
GL_INT64_ARB = 0x140E
|
4
|
+
GL_UNSIGNED_INT64_ARB = 0x140F
|
5
|
+
GL_INT64_VEC2_ARB = 0x8FE9
|
6
|
+
GL_INT64_VEC3_ARB = 0x8FEA
|
7
|
+
GL_INT64_VEC4_ARB = 0x8FEB
|
8
|
+
GL_UNSIGNED_INT64_VEC2_ARB = 0x8FF5
|
9
|
+
GL_UNSIGNED_INT64_VEC3_ARB = 0x8FF6
|
10
|
+
GL_UNSIGNED_INT64_VEC4_ARB = 0x8FF7
|
11
|
+
end
|
12
|
+
|
13
|
+
FUNCTIONS = {
|
14
|
+
glUniform1i64ARB: [ :void, :GLint, :GLint64 ].freeze,
|
15
|
+
glUniform2i64ARB: [ :void, :GLint, :GLint64, :GLint64 ].freeze,
|
16
|
+
glUniform3i64ARB: [ :void, :GLint, :GLint64, :GLint64, :GLint64 ].freeze,
|
17
|
+
glUniform4i64ARB: [ :void, :GLint, :GLint64, :GLint64, :GLint64, :GLint64 ].freeze,
|
18
|
+
glUniform1i64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
19
|
+
glUniform2i64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
20
|
+
glUniform3i64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
21
|
+
glUniform4i64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
22
|
+
glUniform1ui64ARB: [ :void, :GLint, :GLuint64 ].freeze,
|
23
|
+
glUniform2ui64ARB: [ :void, :GLint, :GLuint64, :GLuint64 ].freeze,
|
24
|
+
glUniform3ui64ARB: [ :void, :GLint, :GLuint64, :GLuint64, :GLuint64 ].freeze,
|
25
|
+
glUniform4ui64ARB: [ :void, :GLint, :GLuint64, :GLuint64, :GLuint64, :GLuint64 ].freeze,
|
26
|
+
glUniform1ui64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
27
|
+
glUniform2ui64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
28
|
+
glUniform3ui64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
29
|
+
glUniform4ui64vARB: [ :void, :GLint, :GLsizei, :pointer ].freeze,
|
30
|
+
glGetUniformi64vARB: [ :void, :GLuint, :GLint, :pointer ].freeze,
|
31
|
+
glGetUniformui64vARB: [ :void, :GLuint, :GLint, :pointer ].freeze,
|
32
|
+
glGetnUniformi64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
33
|
+
glGetnUniformui64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
34
|
+
glProgramUniform1i64ARB: [ :void, :GLuint, :GLint, :GLint64 ].freeze,
|
35
|
+
glProgramUniform2i64ARB: [ :void, :GLuint, :GLint, :GLint64, :GLint64 ].freeze,
|
36
|
+
glProgramUniform3i64ARB: [ :void, :GLuint, :GLint, :GLint64, :GLint64, :GLint64 ].freeze,
|
37
|
+
glProgramUniform4i64ARB: [ :void, :GLuint, :GLint, :GLint64, :GLint64, :GLint64, :GLint64 ].freeze,
|
38
|
+
glProgramUniform1i64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
39
|
+
glProgramUniform2i64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
40
|
+
glProgramUniform3i64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
41
|
+
glProgramUniform4i64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
42
|
+
glProgramUniform1ui64ARB: [ :void, :GLuint, :GLint, :GLuint64 ].freeze,
|
43
|
+
glProgramUniform2ui64ARB: [ :void, :GLuint, :GLint, :GLuint64, :GLuint64 ].freeze,
|
44
|
+
glProgramUniform3ui64ARB: [ :void, :GLuint, :GLint, :GLuint64, :GLuint64, :GLuint64 ].freeze,
|
45
|
+
glProgramUniform4ui64ARB: [ :void, :GLuint, :GLint, :GLuint64, :GLuint64, :GLuint64, :GLuint64 ].freeze,
|
46
|
+
glProgramUniform1ui64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
47
|
+
glProgramUniform2ui64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
48
|
+
glProgramUniform3ui64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
49
|
+
glProgramUniform4ui64vARB: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
|
50
|
+
}.freeze
|
51
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module GL_ARB_sample_locations
|
2
|
+
module Constants
|
3
|
+
GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB = 0x933D
|
4
|
+
GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB = 0x933E
|
5
|
+
GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB = 0x933F
|
6
|
+
GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB = 0x9340
|
7
|
+
GL_SAMPLE_LOCATION_ARB = 0x8E50
|
8
|
+
GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB = 0x9341
|
9
|
+
GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB = 0x9342
|
10
|
+
GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB = 0x9343
|
11
|
+
end
|
12
|
+
|
13
|
+
FUNCTIONS = {
|
14
|
+
glFramebufferSampleLocationsfvARB: [ :void, :GLenum, :GLuint, :GLsizei, :pointer ].freeze,
|
15
|
+
glNamedFramebufferSampleLocationsfvARB: [ :void, :GLuint, :GLuint, :GLsizei, :pointer ].freeze,
|
16
|
+
glEvaluateDepthValuesARB: [ :void ].freeze,
|
17
|
+
}.freeze
|
18
|
+
end
|
@@ -43,5 +43,8 @@ module GL_ARB_uniform_buffer_object
|
|
43
43
|
glGetActiveUniformBlockiv: [ :void, :GLuint, :GLuint, :GLenum, :pointer ].freeze,
|
44
44
|
glGetActiveUniformBlockName: [ :void, :GLuint, :GLuint, :GLsizei, :pointer, :pointer ].freeze,
|
45
45
|
glUniformBlockBinding: [ :void, :GLuint, :GLuint, :GLuint ].freeze,
|
46
|
+
glBindBufferRange: [ :void, :GLenum, :GLuint, :GLuint, :GLintptr, :GLsizeiptr ].freeze,
|
47
|
+
glBindBufferBase: [ :void, :GLenum, :GLuint, :GLuint ].freeze,
|
48
|
+
glGetIntegeri_v: [ :void, :GLenum, :GLuint, :pointer ].freeze,
|
46
49
|
}.freeze
|
47
50
|
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module GL_EXT_blend_func_extended
|
2
|
+
module Constants
|
3
|
+
GL_SRC1_COLOR_EXT = 0x88F9
|
4
|
+
GL_SRC1_ALPHA_EXT = 0x8589
|
5
|
+
GL_ONE_MINUS_SRC1_COLOR_EXT = 0x88FA
|
6
|
+
GL_ONE_MINUS_SRC1_ALPHA_EXT = 0x88FB
|
7
|
+
GL_SRC_ALPHA_SATURATE_EXT = 0x0308
|
8
|
+
GL_LOCATION_INDEX_EXT = 0x930F
|
9
|
+
GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT = 0x88FC
|
10
|
+
end
|
11
|
+
|
12
|
+
FUNCTIONS = {
|
13
|
+
glBindFragDataLocationIndexedEXT: [ :void, :GLuint, :GLuint, :GLuint, :pointer ].freeze,
|
14
|
+
glBindFragDataLocationEXT: [ :void, :GLuint, :GLuint, :pointer ].freeze,
|
15
|
+
glGetProgramResourceLocationIndexEXT: [ :GLint, :GLuint, :GLenum, :pointer ].freeze,
|
16
|
+
glGetFragDataIndexEXT: [ :GLint, :GLuint, :pointer ].freeze,
|
17
|
+
}.freeze
|
18
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module GL_EXT_buffer_storage
|
2
|
+
module Constants
|
3
|
+
GL_MAP_READ_BIT = 0x0001
|
4
|
+
GL_MAP_WRITE_BIT = 0x0002
|
5
|
+
GL_MAP_PERSISTENT_BIT_EXT = 0x0040
|
6
|
+
GL_MAP_COHERENT_BIT_EXT = 0x0080
|
7
|
+
GL_DYNAMIC_STORAGE_BIT_EXT = 0x0100
|
8
|
+
GL_CLIENT_STORAGE_BIT_EXT = 0x0200
|
9
|
+
GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT = 0x00004000
|
10
|
+
GL_BUFFER_IMMUTABLE_STORAGE_EXT = 0x821F
|
11
|
+
GL_BUFFER_STORAGE_FLAGS_EXT = 0x8220
|
12
|
+
end
|
13
|
+
|
14
|
+
FUNCTIONS = {
|
15
|
+
glBufferStorageEXT: [ :void, :GLenum, :GLsizeiptr, :pointer, :GLbitfield ].freeze,
|
16
|
+
}.freeze
|
17
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module GL_EXT_sparse_texture
|
2
|
+
module Constants
|
3
|
+
GL_TEXTURE_SPARSE_EXT = 0x91A6
|
4
|
+
GL_VIRTUAL_PAGE_SIZE_INDEX_EXT = 0x91A7
|
5
|
+
GL_NUM_SPARSE_LEVELS_EXT = 0x91AA
|
6
|
+
GL_NUM_VIRTUAL_PAGE_SIZES_EXT = 0x91A8
|
7
|
+
GL_VIRTUAL_PAGE_SIZE_X_EXT = 0x9195
|
8
|
+
GL_VIRTUAL_PAGE_SIZE_Y_EXT = 0x9196
|
9
|
+
GL_VIRTUAL_PAGE_SIZE_Z_EXT = 0x9197
|
10
|
+
GL_TEXTURE_2D = 0x0DE1
|
11
|
+
GL_TEXTURE_2D_ARRAY = 0x8C1A
|
12
|
+
GL_TEXTURE_CUBE_MAP = 0x8513
|
13
|
+
GL_TEXTURE_CUBE_MAP_ARRAY_OES = 0x9009
|
14
|
+
GL_TEXTURE_3D = 0x806F
|
15
|
+
GL_MAX_SPARSE_TEXTURE_SIZE_EXT = 0x9198
|
16
|
+
GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT = 0x9199
|
17
|
+
GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT = 0x919A
|
18
|
+
GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT = 0x91A9
|
19
|
+
end
|
20
|
+
|
21
|
+
FUNCTIONS = {
|
22
|
+
glTexPageCommitmentEXT: [ :void, :GLenum, :GLint, :GLint, :GLint, :GLint, :GLsizei, :GLsizei, :GLsizei, :GLboolean ].freeze,
|
23
|
+
}.freeze
|
24
|
+
end
|
@@ -27,6 +27,7 @@ module GL_KHR_debug
|
|
27
27
|
GL_PROGRAM = 0x82E2
|
28
28
|
GL_VERTEX_ARRAY = 0x8074
|
29
29
|
GL_QUERY = 0x82E3
|
30
|
+
GL_PROGRAM_PIPELINE = 0x82E4
|
30
31
|
GL_SAMPLER = 0x82E6
|
31
32
|
GL_MAX_LABEL_LENGTH = 0x82E8
|
32
33
|
GL_MAX_DEBUG_MESSAGE_LENGTH = 0x9143
|
@@ -39,7 +40,6 @@ module GL_KHR_debug
|
|
39
40
|
GL_CONTEXT_FLAG_DEBUG_BIT = 0x00000002
|
40
41
|
GL_STACK_OVERFLOW = 0x0503
|
41
42
|
GL_STACK_UNDERFLOW = 0x0504
|
42
|
-
GL_PROGRAM_PIPELINE = 0x82E4
|
43
43
|
end
|
44
44
|
|
45
45
|
CALLBACKS = {
|
@@ -88,6 +88,7 @@ module GL_KHR_debug
|
|
88
88
|
GL_PROGRAM_KHR = 0x82E2
|
89
89
|
GL_VERTEX_ARRAY_KHR = 0x8074
|
90
90
|
GL_QUERY_KHR = 0x82E3
|
91
|
+
GL_PROGRAM_PIPELINE_KHR = 0x82E4
|
91
92
|
GL_SAMPLER_KHR = 0x82E6
|
92
93
|
GL_MAX_LABEL_LENGTH_KHR = 0x82E8
|
93
94
|
GL_MAX_DEBUG_MESSAGE_LENGTH_KHR = 0x9143
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module GL_NV_command_list
|
2
|
+
module Constants
|
3
|
+
GL_TERMINATE_SEQUENCE_COMMAND_NV = 0x0000
|
4
|
+
GL_NOP_COMMAND_NV = 0x0001
|
5
|
+
GL_DRAW_ELEMENTS_COMMAND_NV = 0x0002
|
6
|
+
GL_DRAW_ARRAYS_COMMAND_NV = 0x0003
|
7
|
+
GL_DRAW_ELEMENTS_STRIP_COMMAND_NV = 0x0004
|
8
|
+
GL_DRAW_ARRAYS_STRIP_COMMAND_NV = 0x0005
|
9
|
+
GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV = 0x0006
|
10
|
+
GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV = 0x0007
|
11
|
+
GL_ELEMENT_ADDRESS_COMMAND_NV = 0x0008
|
12
|
+
GL_ATTRIBUTE_ADDRESS_COMMAND_NV = 0x0009
|
13
|
+
GL_UNIFORM_ADDRESS_COMMAND_NV = 0x000A
|
14
|
+
GL_BLEND_COLOR_COMMAND_NV = 0x000B
|
15
|
+
GL_STENCIL_REF_COMMAND_NV = 0x000C
|
16
|
+
GL_LINE_WIDTH_COMMAND_NV = 0x000D
|
17
|
+
GL_POLYGON_OFFSET_COMMAND_NV = 0x000E
|
18
|
+
GL_ALPHA_REF_COMMAND_NV = 0x000F
|
19
|
+
GL_VIEWPORT_COMMAND_NV = 0x0010
|
20
|
+
GL_SCISSOR_COMMAND_NV = 0x0011
|
21
|
+
GL_FRONT_FACE_COMMAND_NV = 0x0012
|
22
|
+
end
|
23
|
+
|
24
|
+
FUNCTIONS = {
|
25
|
+
glCreateStatesNV: [ :void, :GLsizei, :pointer ].freeze,
|
26
|
+
glDeleteStatesNV: [ :void, :GLsizei, :pointer ].freeze,
|
27
|
+
glIsStateNV: [ :GLboolean, :GLuint ].freeze,
|
28
|
+
glStateCaptureNV: [ :void, :GLuint, :GLenum ].freeze,
|
29
|
+
glGetCommandHeaderNV: [ :GLuint, :GLenum, :GLuint ].freeze,
|
30
|
+
glGetStageIndexNV: [ :GLushort, :GLenum ].freeze,
|
31
|
+
glDrawCommandsNV: [ :void, :GLenum, :GLuint, :pointer, :pointer, :GLuint ].freeze,
|
32
|
+
glDrawCommandsAddressNV: [ :void, :GLenum, :pointer, :pointer, :GLuint ].freeze,
|
33
|
+
glDrawCommandsStatesNV: [ :void, :GLuint, :pointer, :pointer, :pointer, :pointer, :GLuint ].freeze,
|
34
|
+
glDrawCommandsStatesAddressNV: [ :void, :pointer, :pointer, :pointer, :pointer, :GLuint ].freeze,
|
35
|
+
glCreateCommandListsNV: [ :void, :GLsizei, :pointer ].freeze,
|
36
|
+
glDeleteCommandListsNV: [ :void, :GLsizei, :pointer ].freeze,
|
37
|
+
glIsCommandListNV: [ :GLboolean, :GLuint ].freeze,
|
38
|
+
glListDrawCommandsStatesClientNV: [ :void, :GLuint, :GLuint, :pointer, :pointer, :pointer, :pointer, :GLuint ].freeze,
|
39
|
+
glCommandListSegmentsNV: [ :void, :GLuint, :GLuint ].freeze,
|
40
|
+
glCompileCommandListNV: [ :void, :GLuint ].freeze,
|
41
|
+
glCallCommandListNV: [ :void, :GLuint ].freeze,
|
42
|
+
}.freeze
|
43
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module GL_NV_conservative_raster_dilate
|
2
|
+
module Constants
|
3
|
+
GL_CONSERVATIVE_RASTER_DILATE_NV = 0x9379
|
4
|
+
GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV = 0x937A
|
5
|
+
GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV = 0x937B
|
6
|
+
end
|
7
|
+
|
8
|
+
FUNCTIONS = {
|
9
|
+
glConservativeRasterParameterfNV: [ :void, :GLenum, :GLfloat ].freeze,
|
10
|
+
}.freeze
|
11
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module GL_NV_polygon_mode
|
2
|
+
module Constants
|
3
|
+
GL_POLYGON_MODE_NV = 0x0B40
|
4
|
+
GL_POLYGON_OFFSET_POINT_NV = 0x2A01
|
5
|
+
GL_POLYGON_OFFSET_LINE_NV = 0x2A02
|
6
|
+
GL_POINT_NV = 0x1B00
|
7
|
+
GL_LINE_NV = 0x1B01
|
8
|
+
GL_FILL_NV = 0x1B02
|
9
|
+
end
|
10
|
+
|
11
|
+
FUNCTIONS = {
|
12
|
+
glPolygonModeNV: [ :void, :GLenum, :GLenum ].freeze,
|
13
|
+
}.freeze
|
14
|
+
end
|
@@ -33,7 +33,6 @@ module GL_OES_fixed_point
|
|
33
33
|
glPointSizexOES: [ :void, :GLfixed ].freeze,
|
34
34
|
glPolygonOffsetxOES: [ :void, :GLfixed, :GLfixed ].freeze,
|
35
35
|
glRotatexOES: [ :void, :GLfixed, :GLfixed, :GLfixed, :GLfixed ].freeze,
|
36
|
-
glSampleCoverageOES: [ :void, :GLfixed, :GLboolean ].freeze,
|
37
36
|
glScalexOES: [ :void, :GLfixed, :GLfixed, :GLfixed ].freeze,
|
38
37
|
glTexEnvxOES: [ :void, :GLenum, :GLenum, :GLfixed ].freeze,
|
39
38
|
glTexEnvxvOES: [ :void, :GLenum, :GLenum, :pointer ].freeze,
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module GL_OVR_multiview
|
2
|
+
module Constants
|
3
|
+
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR = 0x9630
|
4
|
+
GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR = 0x9632
|
5
|
+
GL_MAX_VIEWS_OVR = 0x9631
|
6
|
+
end
|
7
|
+
|
8
|
+
FUNCTIONS = {
|
9
|
+
glFramebufferTextureMultiviewOVR: [ :void, :GLenum, :GLenum, :GLuint, :GLint, :GLint, :GLsizei ].freeze,
|
10
|
+
}.freeze
|
11
|
+
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opengl-definitions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Silver Phoenix
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: oga
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.3'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: erubis
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -187,6 +187,7 @@ files:
|
|
187
187
|
- lib/opengl-definitions/extensions/GL_APPLE_ycbcr_422.rb
|
188
188
|
- lib/opengl-definitions/extensions/GL_ARB_ES2_compatibility.rb
|
189
189
|
- lib/opengl-definitions/extensions/GL_ARB_ES3_1_compatibility.rb
|
190
|
+
- lib/opengl-definitions/extensions/GL_ARB_ES3_2_compatibility.rb
|
190
191
|
- lib/opengl-definitions/extensions/GL_ARB_ES3_compatibility.rb
|
191
192
|
- lib/opengl-definitions/extensions/GL_ARB_base_instance.rb
|
192
193
|
- lib/opengl-definitions/extensions/GL_ARB_bindless_texture.rb
|
@@ -226,6 +227,7 @@ files:
|
|
226
227
|
- lib/opengl-definitions/extensions/GL_ARB_get_texture_sub_image.rb
|
227
228
|
- lib/opengl-definitions/extensions/GL_ARB_gpu_shader5.rb
|
228
229
|
- lib/opengl-definitions/extensions/GL_ARB_gpu_shader_fp64.rb
|
230
|
+
- lib/opengl-definitions/extensions/GL_ARB_gpu_shader_int64.rb
|
229
231
|
- lib/opengl-definitions/extensions/GL_ARB_half_float_pixel.rb
|
230
232
|
- lib/opengl-definitions/extensions/GL_ARB_half_float_vertex.rb
|
231
233
|
- lib/opengl-definitions/extensions/GL_ARB_imaging.rb
|
@@ -243,6 +245,7 @@ files:
|
|
243
245
|
- lib/opengl-definitions/extensions/GL_ARB_multitexture.rb
|
244
246
|
- lib/opengl-definitions/extensions/GL_ARB_occlusion_query.rb
|
245
247
|
- lib/opengl-definitions/extensions/GL_ARB_occlusion_query2.rb
|
248
|
+
- lib/opengl-definitions/extensions/GL_ARB_parallel_shader_compile.rb
|
246
249
|
- lib/opengl-definitions/extensions/GL_ARB_pipeline_statistics_query.rb
|
247
250
|
- lib/opengl-definitions/extensions/GL_ARB_pixel_buffer_object.rb
|
248
251
|
- lib/opengl-definitions/extensions/GL_ARB_point_parameters.rb
|
@@ -251,6 +254,7 @@ files:
|
|
251
254
|
- lib/opengl-definitions/extensions/GL_ARB_provoking_vertex.rb
|
252
255
|
- lib/opengl-definitions/extensions/GL_ARB_query_buffer_object.rb
|
253
256
|
- lib/opengl-definitions/extensions/GL_ARB_robustness.rb
|
257
|
+
- lib/opengl-definitions/extensions/GL_ARB_sample_locations.rb
|
254
258
|
- lib/opengl-definitions/extensions/GL_ARB_sample_shading.rb
|
255
259
|
- lib/opengl-definitions/extensions/GL_ARB_sampler_objects.rb
|
256
260
|
- lib/opengl-definitions/extensions/GL_ARB_seamless_cube_map.rb
|
@@ -282,6 +286,7 @@ files:
|
|
282
286
|
- lib/opengl-definitions/extensions/GL_ARB_texture_cube_map_array.rb
|
283
287
|
- lib/opengl-definitions/extensions/GL_ARB_texture_env_combine.rb
|
284
288
|
- lib/opengl-definitions/extensions/GL_ARB_texture_env_dot3.rb
|
289
|
+
- lib/opengl-definitions/extensions/GL_ARB_texture_filter_minmax.rb
|
285
290
|
- lib/opengl-definitions/extensions/GL_ARB_texture_float.rb
|
286
291
|
- lib/opengl-definitions/extensions/GL_ARB_texture_gather.rb
|
287
292
|
- lib/opengl-definitions/extensions/GL_ARB_texture_mirror_clamp_to_edge.rb
|
@@ -336,15 +341,18 @@ files:
|
|
336
341
|
- lib/opengl-definitions/extensions/GL_DMP_program_binary.rb
|
337
342
|
- lib/opengl-definitions/extensions/GL_DMP_shader_binary.rb
|
338
343
|
- lib/opengl-definitions/extensions/GL_EXT_422_pixels.rb
|
344
|
+
- lib/opengl-definitions/extensions/GL_EXT_YUV_target.rb
|
339
345
|
- lib/opengl-definitions/extensions/GL_EXT_abgr.rb
|
340
346
|
- lib/opengl-definitions/extensions/GL_EXT_base_instance.rb
|
341
347
|
- lib/opengl-definitions/extensions/GL_EXT_bgra.rb
|
342
348
|
- lib/opengl-definitions/extensions/GL_EXT_bindable_uniform.rb
|
343
349
|
- lib/opengl-definitions/extensions/GL_EXT_blend_color.rb
|
344
350
|
- lib/opengl-definitions/extensions/GL_EXT_blend_equation_separate.rb
|
351
|
+
- lib/opengl-definitions/extensions/GL_EXT_blend_func_extended.rb
|
345
352
|
- lib/opengl-definitions/extensions/GL_EXT_blend_func_separate.rb
|
346
353
|
- lib/opengl-definitions/extensions/GL_EXT_blend_minmax.rb
|
347
354
|
- lib/opengl-definitions/extensions/GL_EXT_blend_subtract.rb
|
355
|
+
- lib/opengl-definitions/extensions/GL_EXT_buffer_storage.rb
|
348
356
|
- lib/opengl-definitions/extensions/GL_EXT_clip_volume_hint.rb
|
349
357
|
- lib/opengl-definitions/extensions/GL_EXT_cmyka.rb
|
350
358
|
- lib/opengl-definitions/extensions/GL_EXT_color_buffer_half_float.rb
|
@@ -387,6 +395,7 @@ files:
|
|
387
395
|
- lib/opengl-definitions/extensions/GL_EXT_multi_draw_arrays.rb
|
388
396
|
- lib/opengl-definitions/extensions/GL_EXT_multi_draw_indirect.rb
|
389
397
|
- lib/opengl-definitions/extensions/GL_EXT_multisample.rb
|
398
|
+
- lib/opengl-definitions/extensions/GL_EXT_multisampled_compatibility.rb
|
390
399
|
- lib/opengl-definitions/extensions/GL_EXT_multisampled_render_to_texture.rb
|
391
400
|
- lib/opengl-definitions/extensions/GL_EXT_multiview_draw_buffers.rb
|
392
401
|
- lib/opengl-definitions/extensions/GL_EXT_occlusion_query_boolean.rb
|
@@ -417,6 +426,7 @@ files:
|
|
417
426
|
- lib/opengl-definitions/extensions/GL_EXT_shader_pixel_local_storage.rb
|
418
427
|
- lib/opengl-definitions/extensions/GL_EXT_shadow_samplers.rb
|
419
428
|
- lib/opengl-definitions/extensions/GL_EXT_shared_texture_palette.rb
|
429
|
+
- lib/opengl-definitions/extensions/GL_EXT_sparse_texture.rb
|
420
430
|
- lib/opengl-definitions/extensions/GL_EXT_stencil_clear_tag.rb
|
421
431
|
- lib/opengl-definitions/extensions/GL_EXT_stencil_two_side.rb
|
422
432
|
- lib/opengl-definitions/extensions/GL_EXT_stencil_wrap.rb
|
@@ -447,6 +457,8 @@ files:
|
|
447
457
|
- lib/opengl-definitions/extensions/GL_EXT_texture_perturb_normal.rb
|
448
458
|
- lib/opengl-definitions/extensions/GL_EXT_texture_rg.rb
|
449
459
|
- lib/opengl-definitions/extensions/GL_EXT_texture_sRGB.rb
|
460
|
+
- lib/opengl-definitions/extensions/GL_EXT_texture_sRGB_R8.rb
|
461
|
+
- lib/opengl-definitions/extensions/GL_EXT_texture_sRGB_RG8.rb
|
450
462
|
- lib/opengl-definitions/extensions/GL_EXT_texture_sRGB_decode.rb
|
451
463
|
- lib/opengl-definitions/extensions/GL_EXT_texture_shared_exponent.rb
|
452
464
|
- lib/opengl-definitions/extensions/GL_EXT_texture_snorm.rb
|
@@ -487,6 +499,7 @@ files:
|
|
487
499
|
- lib/opengl-definitions/extensions/GL_INGR_blend_func_separate.rb
|
488
500
|
- lib/opengl-definitions/extensions/GL_INGR_color_clamp.rb
|
489
501
|
- lib/opengl-definitions/extensions/GL_INGR_interlace_read.rb
|
502
|
+
- lib/opengl-definitions/extensions/GL_INTEL_framebuffer_CMAA.rb
|
490
503
|
- lib/opengl-definitions/extensions/GL_INTEL_map_texture.rb
|
491
504
|
- lib/opengl-definitions/extensions/GL_INTEL_parallel_arrays.rb
|
492
505
|
- lib/opengl-definitions/extensions/GL_INTEL_performance_query.rb
|
@@ -494,6 +507,7 @@ files:
|
|
494
507
|
- lib/opengl-definitions/extensions/GL_KHR_blend_equation_advanced_coherent.rb
|
495
508
|
- lib/opengl-definitions/extensions/GL_KHR_context_flush_control.rb
|
496
509
|
- lib/opengl-definitions/extensions/GL_KHR_debug.rb
|
510
|
+
- lib/opengl-definitions/extensions/GL_KHR_no_error.rb
|
497
511
|
- lib/opengl-definitions/extensions/GL_KHR_robustness.rb
|
498
512
|
- lib/opengl-definitions/extensions/GL_KHR_texture_compression_astc_hdr.rb
|
499
513
|
- lib/opengl-definitions/extensions/GL_KHR_texture_compression_astc_ldr.rb
|
@@ -509,9 +523,11 @@ files:
|
|
509
523
|
- lib/opengl-definitions/extensions/GL_NV_bindless_texture.rb
|
510
524
|
- lib/opengl-definitions/extensions/GL_NV_blend_equation_advanced.rb
|
511
525
|
- lib/opengl-definitions/extensions/GL_NV_blend_equation_advanced_coherent.rb
|
526
|
+
- lib/opengl-definitions/extensions/GL_NV_command_list.rb
|
512
527
|
- lib/opengl-definitions/extensions/GL_NV_compute_program5.rb
|
513
528
|
- lib/opengl-definitions/extensions/GL_NV_conditional_render.rb
|
514
529
|
- lib/opengl-definitions/extensions/GL_NV_conservative_raster.rb
|
530
|
+
- lib/opengl-definitions/extensions/GL_NV_conservative_raster_dilate.rb
|
515
531
|
- lib/opengl-definitions/extensions/GL_NV_copy_buffer.rb
|
516
532
|
- lib/opengl-definitions/extensions/GL_NV_copy_depth_to_color.rb
|
517
533
|
- lib/opengl-definitions/extensions/GL_NV_copy_image.rb
|
@@ -555,6 +571,7 @@ files:
|
|
555
571
|
- lib/opengl-definitions/extensions/GL_NV_path_rendering_shared_edge.rb
|
556
572
|
- lib/opengl-definitions/extensions/GL_NV_pixel_data_range.rb
|
557
573
|
- lib/opengl-definitions/extensions/GL_NV_point_sprite.rb
|
574
|
+
- lib/opengl-definitions/extensions/GL_NV_polygon_mode.rb
|
558
575
|
- lib/opengl-definitions/extensions/GL_NV_present_video.rb
|
559
576
|
- lib/opengl-definitions/extensions/GL_NV_primitive_restart.rb
|
560
577
|
- lib/opengl-definitions/extensions/GL_NV_read_buffer.rb
|
@@ -652,6 +669,7 @@ files:
|
|
652
669
|
- lib/opengl-definitions/extensions/GL_OML_interlace.rb
|
653
670
|
- lib/opengl-definitions/extensions/GL_OML_resample.rb
|
654
671
|
- lib/opengl-definitions/extensions/GL_OML_subsample.rb
|
672
|
+
- lib/opengl-definitions/extensions/GL_OVR_multiview.rb
|
655
673
|
- lib/opengl-definitions/extensions/GL_PGI_misc_hints.rb
|
656
674
|
- lib/opengl-definitions/extensions/GL_PGI_vertex_hints.rb
|
657
675
|
- lib/opengl-definitions/extensions/GL_QCOM_alpha_test.rb
|
@@ -801,7 +819,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
801
819
|
version: '0'
|
802
820
|
requirements: []
|
803
821
|
rubyforge_project:
|
804
|
-
rubygems_version: 2.4.
|
822
|
+
rubygems_version: 2.4.8
|
805
823
|
signing_key:
|
806
824
|
specification_version: 4
|
807
825
|
summary: Opengl definitions for Ruby.
|