opengl3 0.0.1.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. data/.gitignore +21 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +22 -0
  4. data/README.md +87 -0
  5. data/Rakefile +17 -0
  6. data/examples/math3d.rb +65 -0
  7. data/examples/ogl-2_1-basic.rb +107 -0
  8. data/examples/ogl-3_2-basic.rb +128 -0
  9. data/examples/ogl-3_2-cube.rb +203 -0
  10. data/examples/ogl-4_0-quad_tessellation.rb +283 -0
  11. data/examples/ogl-4_0-triangle_tessellation.rb +262 -0
  12. data/lib/glut.rb +125 -0
  13. data/lib/opengl.rb +7 -0
  14. data/lib/opengl/constants.rb +15 -0
  15. data/lib/opengl/constants/core/2_x/GL_VERSION_1_1.yml +230 -0
  16. data/lib/opengl/constants/core/2_x/GL_VERSION_1_2.yml +36 -0
  17. data/lib/opengl/constants/core/2_x/GL_VERSION_1_3.yml +59 -0
  18. data/lib/opengl/constants/core/2_x/GL_VERSION_1_4.yml +16 -0
  19. data/lib/opengl/constants/core/2_x/GL_VERSION_1_5.yml +28 -0
  20. data/lib/opengl/constants/core/2_x/GL_VERSION_2_0.yml +80 -0
  21. data/lib/opengl/constants/core/2_x/GL_VERSION_2_1.yml +16 -0
  22. data/lib/opengl/constants/core/3_0/GL_ARB_depth_buffer_float.yml +3 -0
  23. data/lib/opengl/constants/core/3_0/GL_ARB_framebuffer_object.yml +77 -0
  24. data/lib/opengl/constants/core/3_0/GL_ARB_framebuffer_sRGB.yml +1 -0
  25. data/lib/opengl/constants/core/3_0/GL_ARB_half_float_vertex.yml +1 -0
  26. data/lib/opengl/constants/core/3_0/GL_ARB_map_buffer_range.yml +6 -0
  27. data/lib/opengl/constants/core/3_0/GL_ARB_texture_compression_rgtc.yml +4 -0
  28. data/lib/opengl/constants/core/3_0/GL_ARB_texture_rg.yml +22 -0
  29. data/lib/opengl/constants/core/3_0/GL_ARB_vertex_array_object.yml +1 -0
  30. data/lib/opengl/constants/core/3_0/GL_VERSION_3_0.yml +224 -0
  31. data/lib/opengl/constants/core/3_1/GL_ARB_copy_buffer.yml +4 -0
  32. data/lib/opengl/constants/core/3_1/GL_ARB_uniform_buffer_object.yml +33 -0
  33. data/lib/opengl/constants/core/3_1/GL_VERSION_3_1.yml +65 -0
  34. data/lib/opengl/constants/core/3_2/GL_ARB_depth_clamp.yml +1 -0
  35. data/lib/opengl/constants/core/3_2/GL_ARB_provoking_vertex.yml +4 -0
  36. data/lib/opengl/constants/core/3_2/GL_ARB_seamless_cube_map.yml +1 -0
  37. data/lib/opengl/constants/core/3_2/GL_ARB_sync.yml +15 -0
  38. data/lib/opengl/constants/core/3_2/GL_ARB_texture_multisample.yml +21 -0
  39. data/lib/opengl/constants/core/3_2/GL_VERSION_3_2.yml +76 -0
  40. data/lib/opengl/constants/core/3_3/GL_ARB_blend_func_extended.yml +5 -0
  41. data/lib/opengl/constants/core/3_3/GL_ARB_occlusion_query2.yml +1 -0
  42. data/lib/opengl/constants/core/3_3/GL_ARB_sampler_objects.yml +1 -0
  43. data/lib/opengl/constants/core/3_3/GL_ARB_texture_rgb10_a2ui.yml +1 -0
  44. data/lib/opengl/constants/core/3_3/GL_ARB_texture_swizzle.yml +5 -0
  45. data/lib/opengl/constants/core/3_3/GL_ARB_timer_query.yml +2 -0
  46. data/lib/opengl/constants/core/3_3/GL_ARB_vertex_type_2_10_10_10_rev.yml +2 -0
  47. data/lib/opengl/constants/core/3_3/GL_VERSION_3_3.yml +25 -0
  48. data/lib/opengl/constants/core/4_0/GL_ARB_draw_indirect.yml +2 -0
  49. data/lib/opengl/constants/core/4_0/GL_ARB_gpu_shader5.yml +6 -0
  50. data/lib/opengl/constants/core/4_0/GL_ARB_gpu_shader_fp64.yml +13 -0
  51. data/lib/opengl/constants/core/4_0/GL_ARB_shader_subroutine.yml +11 -0
  52. data/lib/opengl/constants/core/4_0/GL_ARB_tessellation_shader.yml +37 -0
  53. data/lib/opengl/constants/core/4_0/GL_ARB_transform_feedback2.yml +6 -0
  54. data/lib/opengl/constants/core/4_0/GL_ARB_transform_feedback3.yml +2 -0
  55. data/lib/opengl/constants/core/4_0/GL_VERSION_4_0.yml +88 -0
  56. data/lib/opengl/constants/core/4_1/GL_ARB_ES2_compatibility.yml +16 -0
  57. data/lib/opengl/constants/core/4_1/GL_ARB_get_program_binary.yml +4 -0
  58. data/lib/opengl/constants/core/4_1/GL_ARB_separate_shader_objects.yml +9 -0
  59. data/lib/opengl/constants/core/4_1/GL_ARB_viewport_array.yml +13 -0
  60. data/lib/opengl/constants/core/4_1/GL_VERSION_4_1.yml +44 -0
  61. data/lib/opengl/constants/core/4_2/GL_ARB_compressed_texture_pixel_storage.yml +8 -0
  62. data/lib/opengl/constants/core/4_2/GL_ARB_internalformat_query.yml +1 -0
  63. data/lib/opengl/constants/core/4_2/GL_ARB_map_buffer_alignment.yml +1 -0
  64. data/lib/opengl/constants/core/4_2/GL_ARB_shader_atomic_counters.yml +29 -0
  65. data/lib/opengl/constants/core/4_2/GL_ARB_shader_image_load_store.yml +64 -0
  66. data/lib/opengl/constants/core/4_2/GL_ARB_texture_storage.yml +1 -0
  67. data/lib/opengl/constants/core/4_2/GL_VERSION_4_2.yml +116 -0
  68. data/lib/opengl/constants/core/4_3/GL_ARB_ES3_compatibility.yml +13 -0
  69. data/lib/opengl/constants/core/4_3/GL_ARB_compute_shader.yml +18 -0
  70. data/lib/opengl/constants/core/4_3/GL_ARB_explicit_uniform_location.yml +1 -0
  71. data/lib/opengl/constants/core/4_3/GL_ARB_framebuffer_no_attachments.yml +9 -0
  72. data/lib/opengl/constants/core/4_3/GL_ARB_internalformat_query2.yml +115 -0
  73. data/lib/opengl/constants/core/4_3/GL_ARB_program_interface_query.yml +50 -0
  74. data/lib/opengl/constants/core/4_3/GL_ARB_shader_storage_buffer_object.yml +18 -0
  75. data/lib/opengl/constants/core/4_3/GL_ARB_stencil_texturing.yml +1 -0
  76. data/lib/opengl/constants/core/4_3/GL_ARB_texture_buffer_range.yml +3 -0
  77. data/lib/opengl/constants/core/4_3/GL_ARB_texture_view.yml +5 -0
  78. data/lib/opengl/constants/core/4_3/GL_ARB_vertex_attrib_binding.yml +7 -0
  79. data/lib/opengl/constants/core/4_3/GL_KHR_debug.yml +41 -0
  80. data/lib/opengl/constants/core/4_3/GL_VERSION_4_3.yml +281 -0
  81. data/lib/opengl/constants/ext/GL_EXT_texture_compression_s3tc.yml +4 -0
  82. data/lib/opengl/constants/ext/GL_EXT_texture_filter_anisotropic.yml +2 -0
  83. data/lib/opengl/constants/ext/GL_EXT_texture_sRGB.yml +16 -0
  84. data/lib/opengl/debugging.rb +38 -0
  85. data/lib/opengl/gl.rb +26 -0
  86. data/lib/opengl/platform.rb +4 -0
  87. data/lib/opengl/platform/base.rb +30 -0
  88. data/lib/opengl/platform/darwin.rb +24 -0
  89. data/lib/opengl/platform/linux.rb +25 -0
  90. data/lib/opengl/platform/types/darwin.yml +2 -0
  91. data/lib/opengl/platform/types/default.yml +27 -0
  92. data/lib/opengl/platform/types/linux.yml +2 -0
  93. data/lib/opengl/raw.rb +44 -0
  94. data/lib/opengl/raw/core/2_x/GL_VERSION_1_0.yml +259 -0
  95. data/lib/opengl/raw/core/2_x/GL_VERSION_1_1.yml +106 -0
  96. data/lib/opengl/raw/core/2_x/GL_VERSION_1_2.yml +60 -0
  97. data/lib/opengl/raw/core/2_x/GL_VERSION_1_3.yml +85 -0
  98. data/lib/opengl/raw/core/2_x/GL_VERSION_1_4.yml +43 -0
  99. data/lib/opengl/raw/core/2_x/GL_VERSION_1_5.yml +103 -0
  100. data/lib/opengl/raw/core/2_x/GL_VERSION_2_0.yml +537 -0
  101. data/lib/opengl/raw/core/2_x/GL_VERSION_2_1.yml +43 -0
  102. data/lib/opengl/raw/core/3_0/GL_ARB_framebuffer_object.yml +128 -0
  103. data/lib/opengl/raw/core/3_0/GL_ARB_map_buffer_range.yml +14 -0
  104. data/lib/opengl/raw/core/3_0/GL_ARB_vertex_array_object.yml +19 -0
  105. data/lib/opengl/raw/core/3_0/GL_VERSION_3_0.yml +340 -0
  106. data/lib/opengl/raw/core/3_1/GL_ARB_copy_buffer.yml +9 -0
  107. data/lib/opengl/raw/core/3_1/GL_ARB_uniform_buffer_object.yml +50 -0
  108. data/lib/opengl/raw/core/3_1/GL_VERSION_3_1.yml +26 -0
  109. data/lib/opengl/raw/core/3_2/GL_ARB_draw_elements_base_vertex.yml +37 -0
  110. data/lib/opengl/raw/core/3_2/GL_ARB_provoking_vertex.yml +5 -0
  111. data/lib/opengl/raw/core/3_2/GL_ARB_sync.yml +39 -0
  112. data/lib/opengl/raw/core/3_2/GL_ARB_texture_multisample.yml +31 -0
  113. data/lib/opengl/raw/core/3_2/GL_VERSION_3_2.yml +20 -0
  114. data/lib/opengl/raw/core/3_3/GL_ARB_blend_func_extended.yml +13 -0
  115. data/lib/opengl/raw/core/3_3/GL_ARB_sampler_objects.yml +80 -0
  116. data/lib/opengl/raw/core/3_3/GL_ARB_timer_query.yml +18 -0
  117. data/lib/opengl/raw/core/3_3/GL_ARB_vertex_type_2_10_10_10_rev.yml +57 -0
  118. data/lib/opengl/raw/core/3_3/GL_VERSION_3_3.yml +6 -0
  119. data/lib/opengl/raw/core/4_0/GL_ARB_draw_indirect.yml +12 -0
  120. data/lib/opengl/raw/core/4_0/GL_ARB_gpu_shader_fp64.yml +120 -0
  121. data/lib/opengl/raw/core/4_0/GL_ARB_shader_subroutine.yml +58 -0
  122. data/lib/opengl/raw/core/4_0/GL_ARB_tessellation_shader.yml +11 -0
  123. data/lib/opengl/raw/core/4_0/GL_ARB_transform_feedback2.yml +31 -0
  124. data/lib/opengl/raw/core/4_0/GL_ARB_transform_feedback3.yml +25 -0
  125. data/lib/opengl/raw/core/4_0/GL_VERSION_4_0.yml +30 -0
  126. data/lib/opengl/raw/core/4_1/GL_ARB_ES2_compatibility.yml +28 -0
  127. data/lib/opengl/raw/core/4_1/GL_ARB_get_program_binary.yml +22 -0
  128. data/lib/opengl/raw/core/4_1/GL_ARB_separate_shader_objects.yml +429 -0
  129. data/lib/opengl/raw/core/4_1/GL_ARB_vertex_attrib_64bit.yml +61 -0
  130. data/lib/opengl/raw/core/4_1/GL_ARB_viewport_array.yml +63 -0
  131. data/lib/opengl/raw/core/4_1/GL_VERSION_4_1.yml +1 -0
  132. data/lib/opengl/raw/core/4_2/GL_ARB_base_instance.yml +28 -0
  133. data/lib/opengl/raw/core/4_2/GL_ARB_internalformat_query.yml +9 -0
  134. data/lib/opengl/raw/core/4_2/GL_ARB_shader_atomic_counters.yml +8 -0
  135. data/lib/opengl/raw/core/4_2/GL_ARB_shader_image_load_store.yml +15 -0
  136. data/lib/opengl/raw/core/4_2/GL_ARB_texture_storage.yml +52 -0
  137. data/lib/opengl/raw/core/4_2/GL_ARB_transform_feedback_instanced.yml +14 -0
  138. data/lib/opengl/raw/core/4_2/GL_VERSION_4_2.yml +1 -0
  139. data/lib/opengl/type.rb +74 -0
  140. data/lib/opengl/version.rb +3 -0
  141. data/lib/opengl/wrapper.rb +13 -0
  142. data/lib/opengl/wrapper/core/2_x/GL_VERSION_1_0.rb +165 -0
  143. data/lib/opengl/wrapper/core/2_x/GL_VERSION_1_1.rb +29 -0
  144. data/lib/opengl/wrapper/core/2_x/GL_VERSION_1_2.rb +13 -0
  145. data/lib/opengl/wrapper/core/2_x/GL_VERSION_1_3.rb +16 -0
  146. data/lib/opengl/wrapper/core/2_x/GL_VERSION_1_4.rb +18 -0
  147. data/lib/opengl/wrapper/core/2_x/GL_VERSION_1_5.rb +49 -0
  148. data/lib/opengl/wrapper/core/2_x/GL_VERSION_2_0.rb +184 -0
  149. data/lib/opengl/wrapper/core/2_x/GL_VERSION_2_1.rb +13 -0
  150. data/lib/opengl/wrapper/core/3_0/GL_ARB_framebuffer_object.rb +43 -0
  151. data/lib/opengl/wrapper/core/3_0/GL_ARB_map_buffer_range.rb +11 -0
  152. data/lib/opengl/wrapper/core/3_0/GL_ARB_vertex_array_object.rb +16 -0
  153. data/lib/opengl/wrapper/core/3_0/GL_VERSION_3_0.rb +87 -0
  154. data/lib/opengl/wrapper/macros/base.rb +80 -0
  155. data/opengl.gemspec +25 -0
  156. data/spec/spec_helper.rb +8 -0
  157. data/test/test_helper.rb +8 -0
  158. metadata +269 -0
@@ -0,0 +1,9 @@
1
+ ---
2
+ glCopyBufferSubData:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum readTarget
6
+ - GLenum writeTarget
7
+ - GLintptr readOffset
8
+ - GLintptr writeOffset
9
+ - GLsizeiptr size
@@ -0,0 +1,50 @@
1
+ ---
2
+ glGetUniformIndices:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint program
6
+ - GLsizei uniformCount
7
+ - GLchar_pointer_in uniformNames
8
+ - GLuint_out uniformIndices
9
+ glGetActiveUniformsiv:
10
+ return_type: void
11
+ parameters:
12
+ - GLuint program
13
+ - GLsizei uniformCount
14
+ - GLuint_in uniformIndices
15
+ - GLenum pname
16
+ - GLint_out params
17
+ glGetActiveUniformName:
18
+ return_type: void
19
+ parameters:
20
+ - GLuint program
21
+ - GLuint uniformIndex
22
+ - GLsizei bufSize
23
+ - GLsizei_out length
24
+ - GLchar_out uniformName
25
+ glGetUniformBlockIndex:
26
+ return_type: GLuint
27
+ parameters:
28
+ - GLuint program
29
+ - string uniformBlockName
30
+ glGetActiveUniformBlockiv:
31
+ return_type: void
32
+ parameters:
33
+ - GLuint program
34
+ - GLuint uniformBlockIndex
35
+ - GLenum pname
36
+ - GLint_out params
37
+ glGetActiveUniformBlockName:
38
+ return_type: void
39
+ parameters:
40
+ - GLuint program
41
+ - GLuint uniformBlockIndex
42
+ - GLsizei bufSize
43
+ - GLsizei_out length
44
+ - GLchar_out uniformBlockName
45
+ glUniformBlockBinding:
46
+ return_type: void
47
+ parameters:
48
+ - GLuint program
49
+ - GLuint uniformBlockIndex
50
+ - GLuint uniformBlockBinding
@@ -0,0 +1,26 @@
1
+ ---
2
+ glDrawArraysInstanced:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum mode
6
+ - GLint first
7
+ - GLsizei count
8
+ - GLsizei instancecount
9
+ glDrawElementsInstanced:
10
+ return_type: void
11
+ parameters:
12
+ - GLenum mode
13
+ - GLsizei count
14
+ - GLenum type
15
+ - buffer_in indices
16
+ - GLsizei instancecount
17
+ glTexBuffer:
18
+ return_type: void
19
+ parameters:
20
+ - GLenum target
21
+ - GLenum internalformat
22
+ - GLuint buffer
23
+ glPrimitiveRestartIndex:
24
+ return_type: void
25
+ parameters:
26
+ - GLuint index
@@ -0,0 +1,37 @@
1
+ ---
2
+ glDrawElementsBaseVertex:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum mode
6
+ - GLsizei count
7
+ - GLenum type
8
+ - buffer_in indices
9
+ - GLint basevertex
10
+ glDrawRangeElementsBaseVertex:
11
+ return_type: void
12
+ parameters:
13
+ - GLenum mode
14
+ - GLuint start
15
+ - GLuint end
16
+ - GLsizei count
17
+ - GLenum type
18
+ - buffer_in indices
19
+ - GLint basevertex
20
+ glDrawElementsInstancedBaseVertex:
21
+ return_type: void
22
+ parameters:
23
+ - GLenum mode
24
+ - GLsizei count
25
+ - GLenum type
26
+ - buffer_in indices
27
+ - GLsizei instancecount
28
+ - GLint basevertex
29
+ glMultiDrawElementsBaseVertex:
30
+ return_type: void
31
+ parameters:
32
+ - GLenum mode
33
+ - GLsizei_in count
34
+ - GLenum type
35
+ - pointer_in indices
36
+ - GLsizei drawcount
37
+ - GLint_in basevertex
@@ -0,0 +1,5 @@
1
+ ---
2
+ glProvokingVertex:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum mode
@@ -0,0 +1,39 @@
1
+ ---
2
+ glFenceSync:
3
+ return_type: GLsync
4
+ parameters:
5
+ - GLenum condition
6
+ - GLbitfield flags
7
+ glIsSync:
8
+ return_type: GLboolean
9
+ parameters:
10
+ - GLsync sync
11
+ glDeleteSync:
12
+ return_type: void
13
+ parameters:
14
+ - GLsync sync
15
+ glClientWaitSync:
16
+ return_type: GLenum
17
+ parameters:
18
+ - GLsync sync
19
+ - GLbitfield flags
20
+ - GLuint64 timeout
21
+ glWaitSync:
22
+ return_type: void
23
+ parameters:
24
+ - GLsync sync
25
+ - GLbitfield flags
26
+ - GLuint64 timeout
27
+ glGetInteger64v:
28
+ return_type: void
29
+ parameters:
30
+ - GLenum pname
31
+ - GLint64_out params
32
+ glGetSynciv:
33
+ return_type: void
34
+ parameters:
35
+ - GLsync sync
36
+ - GLenum pname
37
+ - GLsizei bufSize
38
+ - GLsizei_out length
39
+ - GLint_out values
@@ -0,0 +1,31 @@
1
+ ---
2
+ glTexImage2DMultisample:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum target
6
+ - GLsizei samples
7
+ - GLint internalformat
8
+ - GLsizei width
9
+ - GLsizei height
10
+ - GLboolean fixedsamplelocations
11
+ glTexImage3DMultisample:
12
+ return_type: void
13
+ parameters:
14
+ - GLenum target
15
+ - GLsizei samples
16
+ - GLint internalformat
17
+ - GLsizei width
18
+ - GLsizei height
19
+ - GLsizei depth
20
+ - GLboolean fixedsamplelocations
21
+ glGetMultisamplefv:
22
+ return_type: void
23
+ parameters:
24
+ - GLenum pname
25
+ - GLuint index
26
+ - GLfloat_out val
27
+ glSampleMaski:
28
+ return_type: void
29
+ parameters:
30
+ - GLuint index
31
+ - GLbitfield mask
@@ -0,0 +1,20 @@
1
+ ---
2
+ glGetInteger64i_v:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum target
6
+ - GLuint index
7
+ - GLint64_out data
8
+ glGetBufferParameteri64v:
9
+ return_type: void
10
+ parameters:
11
+ - GLenum target
12
+ - GLenum pname
13
+ - GLint64_out params
14
+ glFramebufferTexture:
15
+ return_type: void
16
+ parameters:
17
+ - GLenum target
18
+ - GLenum attachment
19
+ - GLuint texture
20
+ - GLint level
@@ -0,0 +1,13 @@
1
+ ---
2
+ glBindFragDataLocationIndexed:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint program
6
+ - GLuint colorNumber
7
+ - GLuint index
8
+ - string name
9
+ glGetFragDataIndex:
10
+ return_type: GLint
11
+ parameters:
12
+ - GLuint program
13
+ - string name
@@ -0,0 +1,80 @@
1
+ ---
2
+ glGenSamplers:
3
+ return_type: void
4
+ parameters:
5
+ - GLsizei count
6
+ - GLuint_out samplers
7
+ glDeleteSamplers:
8
+ return_type: void
9
+ parameters:
10
+ - GLsizei count
11
+ - GLuint_in samplers
12
+ glIsSampler:
13
+ return_type: GLboolean
14
+ parameters:
15
+ - GLuint sampler
16
+ glBindSampler:
17
+ return_type: void
18
+ parameters:
19
+ - GLuint unit
20
+ - GLuint sampler
21
+ glSamplerParameteri:
22
+ return_type: void
23
+ parameters:
24
+ - GLuint sampler
25
+ - GLenum pname
26
+ - GLint param
27
+ glSamplerParameteriv:
28
+ return_type: void
29
+ parameters:
30
+ - GLuint sampler
31
+ - GLenum pname
32
+ - GLint_in param
33
+ glSamplerParameterf:
34
+ return_type: void
35
+ parameters:
36
+ - GLuint sampler
37
+ - GLenum pname
38
+ - GLfloat param
39
+ glSamplerParameterfv:
40
+ return_type: void
41
+ parameters:
42
+ - GLuint sampler
43
+ - GLenum pname
44
+ - GLfloat_in param
45
+ glSamplerParameterIiv:
46
+ return_type: void
47
+ parameters:
48
+ - GLuint sampler
49
+ - GLenum pname
50
+ - GLint_in param
51
+ glSamplerParameterIuiv:
52
+ return_type: void
53
+ parameters:
54
+ - GLuint sampler
55
+ - GLenum pname
56
+ - GLuint_in param
57
+ glGetSamplerParameteriv:
58
+ return_type: void
59
+ parameters:
60
+ - GLuint sampler
61
+ - GLenum pname
62
+ - GLint_out params
63
+ glGetSamplerParameterIiv:
64
+ return_type: void
65
+ parameters:
66
+ - GLuint sampler
67
+ - GLenum pname
68
+ - GLint_out params
69
+ glGetSamplerParameterfv:
70
+ return_type: void
71
+ parameters:
72
+ - GLuint sampler
73
+ - GLenum pname
74
+ - GLfloat_out params
75
+ glGetSamplerParameterIuiv:
76
+ return_type: void
77
+ parameters:
78
+ - GLuint sampler
79
+ - GLenum pname
80
+ - GLuint_out params
@@ -0,0 +1,18 @@
1
+ ---
2
+ glQueryCounter:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint id
6
+ - GLenum target
7
+ glGetQueryObjecti64v:
8
+ return_type: void
9
+ parameters:
10
+ - GLuint id
11
+ - GLenum pname
12
+ - GLint64_out params
13
+ glGetQueryObjectui64v:
14
+ return_type: void
15
+ parameters:
16
+ - GLuint id
17
+ - GLenum pname
18
+ - GLuint64_out params
@@ -0,0 +1,57 @@
1
+ ---
2
+ glVertexAttribP1ui:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint index
6
+ - GLenum type
7
+ - GLboolean normalized
8
+ - GLuint value
9
+ glVertexAttribP1uiv:
10
+ return_type: void
11
+ parameters:
12
+ - GLuint index
13
+ - GLenum type
14
+ - GLboolean normalized
15
+ - GLuint_in value
16
+ glVertexAttribP2ui:
17
+ return_type: void
18
+ parameters:
19
+ - GLuint index
20
+ - GLenum type
21
+ - GLboolean normalized
22
+ - GLuint value
23
+ glVertexAttribP2uiv:
24
+ return_type: void
25
+ parameters:
26
+ - GLuint index
27
+ - GLenum type
28
+ - GLboolean normalized
29
+ - GLuint_in value
30
+ glVertexAttribP3ui:
31
+ return_type: void
32
+ parameters:
33
+ - GLuint index
34
+ - GLenum type
35
+ - GLboolean normalized
36
+ - GLuint value
37
+ glVertexAttribP3uiv:
38
+ return_type: void
39
+ parameters:
40
+ - GLuint index
41
+ - GLenum type
42
+ - GLboolean normalized
43
+ - GLuint_in value
44
+ glVertexAttribP4ui:
45
+ return_type: void
46
+ parameters:
47
+ - GLuint index
48
+ - GLenum type
49
+ - GLboolean normalized
50
+ - GLuint value
51
+ glVertexAttribP4uiv:
52
+ return_type: void
53
+ parameters:
54
+ - GLuint index
55
+ - GLenum type
56
+ - GLboolean normalized
57
+ - GLuint_in value
@@ -0,0 +1,6 @@
1
+ ---
2
+ glVertexAttribDivisor:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint index
6
+ - GLuint divisor
@@ -0,0 +1,12 @@
1
+ ---
2
+ glDrawArraysIndirect:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum mode
6
+ - buffer_in indirect
7
+ glDrawElementsIndirect:
8
+ return_type: void
9
+ parameters:
10
+ - GLenum mode
11
+ - GLenum type
12
+ - buffer_in indirect
@@ -0,0 +1,120 @@
1
+ ---
2
+ glUniform1d:
3
+ return_type: void
4
+ parameters:
5
+ - GLint location
6
+ - GLdouble x
7
+ glUniform2d:
8
+ return_type: void
9
+ parameters:
10
+ - GLint location
11
+ - GLdouble x
12
+ - GLdouble y
13
+ glUniform3d:
14
+ return_type: void
15
+ parameters:
16
+ - GLint location
17
+ - GLdouble x
18
+ - GLdouble y
19
+ - GLdouble z
20
+ glUniform4d:
21
+ return_type: void
22
+ parameters:
23
+ - GLint location
24
+ - GLdouble x
25
+ - GLdouble y
26
+ - GLdouble z
27
+ - GLdouble w
28
+ glUniform1dv:
29
+ return_type: void
30
+ parameters:
31
+ - GLint location
32
+ - GLsizei count
33
+ - GLdouble_in value
34
+ glUniform2dv:
35
+ return_type: void
36
+ parameters:
37
+ - GLint location
38
+ - GLsizei count
39
+ - GLdouble_in value
40
+ glUniform3dv:
41
+ return_type: void
42
+ parameters:
43
+ - GLint location
44
+ - GLsizei count
45
+ - GLdouble_in value
46
+ glUniform4dv:
47
+ return_type: void
48
+ parameters:
49
+ - GLint location
50
+ - GLsizei count
51
+ - GLdouble_in value
52
+ glUniformMatrix2dv:
53
+ return_type: void
54
+ parameters:
55
+ - GLint location
56
+ - GLsizei count
57
+ - GLboolean transpose
58
+ - GLdouble_in value
59
+ glUniformMatrix3dv:
60
+ return_type: void
61
+ parameters:
62
+ - GLint location
63
+ - GLsizei count
64
+ - GLboolean transpose
65
+ - GLdouble_in value
66
+ glUniformMatrix4dv:
67
+ return_type: void
68
+ parameters:
69
+ - GLint location
70
+ - GLsizei count
71
+ - GLboolean transpose
72
+ - GLdouble_in value
73
+ glUniformMatrix2x3dv:
74
+ return_type: void
75
+ parameters:
76
+ - GLint location
77
+ - GLsizei count
78
+ - GLboolean transpose
79
+ - GLdouble_in value
80
+ glUniformMatrix2x4dv:
81
+ return_type: void
82
+ parameters:
83
+ - GLint location
84
+ - GLsizei count
85
+ - GLboolean transpose
86
+ - GLdouble_in value
87
+ glUniformMatrix3x2dv:
88
+ return_type: void
89
+ parameters:
90
+ - GLint location
91
+ - GLsizei count
92
+ - GLboolean transpose
93
+ - GLdouble_in value
94
+ glUniformMatrix3x4dv:
95
+ return_type: void
96
+ parameters:
97
+ - GLint location
98
+ - GLsizei count
99
+ - GLboolean transpose
100
+ - GLdouble_in value
101
+ glUniformMatrix4x2dv:
102
+ return_type: void
103
+ parameters:
104
+ - GLint location
105
+ - GLsizei count
106
+ - GLboolean transpose
107
+ - GLdouble_in value
108
+ glUniformMatrix4x3dv:
109
+ return_type: void
110
+ parameters:
111
+ - GLint location
112
+ - GLsizei count
113
+ - GLboolean transpose
114
+ - GLdouble_in value
115
+ glGetUniformdv:
116
+ return_type: void
117
+ parameters:
118
+ - GLuint program
119
+ - GLint location
120
+ - GLdouble_out params