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,58 @@
1
+ ---
2
+ glGetSubroutineUniformLocation:
3
+ return_type: GLint
4
+ parameters:
5
+ - GLuint program
6
+ - GLenum shadertype
7
+ - string name
8
+ glGetSubroutineIndex:
9
+ return_type: GLuint
10
+ parameters:
11
+ - GLuint program
12
+ - GLenum shadertype
13
+ - string name
14
+ glGetActiveSubroutineUniformiv:
15
+ return_type: void
16
+ parameters:
17
+ - GLuint program
18
+ - GLenum shadertype
19
+ - GLuint index
20
+ - GLenum pname
21
+ - GLint_out values
22
+ glGetActiveSubroutineUniformName:
23
+ return_type: void
24
+ parameters:
25
+ - GLuint program
26
+ - GLenum shadertype
27
+ - GLuint index
28
+ - GLsizei bufsize
29
+ - GLsizei_out length
30
+ - GLchar_out name
31
+ glGetActiveSubroutineName:
32
+ return_type: void
33
+ parameters:
34
+ - GLuint program
35
+ - GLenum shadertype
36
+ - GLuint index
37
+ - GLsizei bufsize
38
+ - GLsizei_out length
39
+ - GLchar_out name
40
+ glUniformSubroutinesuiv:
41
+ return_type: void
42
+ parameters:
43
+ - GLenum shadertype
44
+ - GLsizei count
45
+ - GLuint_in indices
46
+ glGetUniformSubroutineuiv:
47
+ return_type: void
48
+ parameters:
49
+ - GLenum shadertype
50
+ - GLint location
51
+ - GLuint_out params
52
+ glGetProgramStageiv:
53
+ return_type: void
54
+ parameters:
55
+ - GLuint program
56
+ - GLenum shadertype
57
+ - GLenum pname
58
+ - GLint_out values
@@ -0,0 +1,11 @@
1
+ ---
2
+ glPatchParameteri:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum pname
6
+ - GLint value
7
+ glPatchParameterfv:
8
+ return_type: void
9
+ parameters:
10
+ - GLenum pname
11
+ - GLfloat_in values
@@ -0,0 +1,31 @@
1
+ ---
2
+ glBindTransformFeedback:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum target
6
+ - GLuint id
7
+ glDeleteTransformFeedbacks:
8
+ return_type: void
9
+ parameters:
10
+ - GLsizei n
11
+ - GLuint_in ids
12
+ glGenTransformFeedbacks:
13
+ return_type: void
14
+ parameters:
15
+ - GLsizei n
16
+ - GLuint_out ids
17
+ glIsTransformFeedback:
18
+ return_type: GLboolean
19
+ parameters:
20
+ - GLuint id
21
+ glPauseTransformFeedback:
22
+ return_type: void
23
+ parameters: []
24
+ glResumeTransformFeedback:
25
+ return_type: void
26
+ parameters: []
27
+ glDrawTransformFeedback:
28
+ return_type: void
29
+ parameters:
30
+ - GLenum mode
31
+ - GLuint id
@@ -0,0 +1,25 @@
1
+ ---
2
+ glDrawTransformFeedbackStream:
3
+ return_type: void
4
+ parameters:
5
+ - GLenum mode
6
+ - GLuint id
7
+ - GLuint stream
8
+ glBeginQueryIndexed:
9
+ return_type: void
10
+ parameters:
11
+ - GLenum target
12
+ - GLuint index
13
+ - GLuint id
14
+ glEndQueryIndexed:
15
+ return_type: void
16
+ parameters:
17
+ - GLenum target
18
+ - GLuint index
19
+ glGetQueryIndexediv:
20
+ return_type: void
21
+ parameters:
22
+ - GLenum target
23
+ - GLuint index
24
+ - GLenum pname
25
+ - GLint_out params
@@ -0,0 +1,30 @@
1
+ ---
2
+ glMinSampleShading:
3
+ return_type: void
4
+ parameters:
5
+ - GLfloat value
6
+ glBlendEquationi:
7
+ return_type: void
8
+ parameters:
9
+ - GLuint buf
10
+ - GLenum mode
11
+ glBlendEquationSeparatei:
12
+ return_type: void
13
+ parameters:
14
+ - GLuint buf
15
+ - GLenum modeRGB
16
+ - GLenum modeAlpha
17
+ glBlendFunci:
18
+ return_type: void
19
+ parameters:
20
+ - GLuint buf
21
+ - GLenum src
22
+ - GLenum dst
23
+ glBlendFuncSeparatei:
24
+ return_type: void
25
+ parameters:
26
+ - GLuint buf
27
+ - GLenum srcRGB
28
+ - GLenum dstRGB
29
+ - GLenum srcAlpha
30
+ - GLenum dstAlpha
@@ -0,0 +1,28 @@
1
+ ---
2
+ glReleaseShaderCompiler:
3
+ return_type: void
4
+ parameters: []
5
+ glShaderBinary:
6
+ return_type: void
7
+ parameters:
8
+ - GLsizei count
9
+ - GLuint_in shaders
10
+ - GLenum binaryformat
11
+ - buffer_in binary
12
+ - GLsizei length
13
+ glGetShaderPrecisionFormat:
14
+ return_type: void
15
+ parameters:
16
+ - GLenum shadertype
17
+ - GLenum precisiontype
18
+ - GLint_out range
19
+ - GLint_out precision
20
+ glDepthRangef:
21
+ return_type: void
22
+ parameters:
23
+ - GLfloat n
24
+ - GLfloat f
25
+ glClearDepthf:
26
+ return_type: void
27
+ parameters:
28
+ - GLfloat d
@@ -0,0 +1,22 @@
1
+ ---
2
+ glGetProgramBinary:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint program
6
+ - GLsizei bufSize
7
+ - GLsizei_out length
8
+ - GLenum_out binaryFormat
9
+ - buffer_out binary
10
+ glProgramBinary:
11
+ return_type: void
12
+ parameters:
13
+ - GLuint program
14
+ - GLenum binaryFormat
15
+ - buffer_in binary
16
+ - GLsizei length
17
+ glProgramParameteri:
18
+ return_type: void
19
+ parameters:
20
+ - GLuint program
21
+ - GLenum pname
22
+ - GLint value
@@ -0,0 +1,429 @@
1
+ ---
2
+ glUseProgramStages:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint pipeline
6
+ - GLbitfield stages
7
+ - GLuint program
8
+ glActiveShaderProgram:
9
+ return_type: void
10
+ parameters:
11
+ - GLuint pipeline
12
+ - GLuint program
13
+ glCreateShaderProgramv:
14
+ return_type: GLuint
15
+ parameters:
16
+ - GLenum type
17
+ - GLsizei count
18
+ - GLchar_pointer_in strings
19
+ glBindProgramPipeline:
20
+ return_type: void
21
+ parameters:
22
+ - GLuint pipeline
23
+ glDeleteProgramPipelines:
24
+ return_type: void
25
+ parameters:
26
+ - GLsizei n
27
+ - GLuint_in pipelines
28
+ glGenProgramPipelines:
29
+ return_type: void
30
+ parameters:
31
+ - GLsizei n
32
+ - GLuint_out pipelines
33
+ glIsProgramPipeline:
34
+ return_type: GLboolean
35
+ parameters:
36
+ - GLuint pipeline
37
+ glGetProgramPipelineiv:
38
+ return_type: void
39
+ parameters:
40
+ - GLuint pipeline
41
+ - GLenum pname
42
+ - GLint_out params
43
+ glProgramUniform1i:
44
+ return_type: void
45
+ parameters:
46
+ - GLuint program
47
+ - GLint location
48
+ - GLint v0
49
+ glProgramUniform1iv:
50
+ return_type: void
51
+ parameters:
52
+ - GLuint program
53
+ - GLint location
54
+ - GLsizei count
55
+ - GLint_in value
56
+ glProgramUniform1f:
57
+ return_type: void
58
+ parameters:
59
+ - GLuint program
60
+ - GLint location
61
+ - GLfloat v0
62
+ glProgramUniform1fv:
63
+ return_type: void
64
+ parameters:
65
+ - GLuint program
66
+ - GLint location
67
+ - GLsizei count
68
+ - GLfloat_in value
69
+ glProgramUniform1d:
70
+ return_type: void
71
+ parameters:
72
+ - GLuint program
73
+ - GLint location
74
+ - GLdouble v0
75
+ glProgramUniform1dv:
76
+ return_type: void
77
+ parameters:
78
+ - GLuint program
79
+ - GLint location
80
+ - GLsizei count
81
+ - GLdouble_in value
82
+ glProgramUniform1ui:
83
+ return_type: void
84
+ parameters:
85
+ - GLuint program
86
+ - GLint location
87
+ - GLuint v0
88
+ glProgramUniform1uiv:
89
+ return_type: void
90
+ parameters:
91
+ - GLuint program
92
+ - GLint location
93
+ - GLsizei count
94
+ - GLuint_in value
95
+ glProgramUniform2i:
96
+ return_type: void
97
+ parameters:
98
+ - GLuint program
99
+ - GLint location
100
+ - GLint v0
101
+ - GLint v1
102
+ glProgramUniform2iv:
103
+ return_type: void
104
+ parameters:
105
+ - GLuint program
106
+ - GLint location
107
+ - GLsizei count
108
+ - GLint_in value
109
+ glProgramUniform2f:
110
+ return_type: void
111
+ parameters:
112
+ - GLuint program
113
+ - GLint location
114
+ - GLfloat v0
115
+ - GLfloat v1
116
+ glProgramUniform2fv:
117
+ return_type: void
118
+ parameters:
119
+ - GLuint program
120
+ - GLint location
121
+ - GLsizei count
122
+ - GLfloat_in value
123
+ glProgramUniform2d:
124
+ return_type: void
125
+ parameters:
126
+ - GLuint program
127
+ - GLint location
128
+ - GLdouble v0
129
+ - GLdouble v1
130
+ glProgramUniform2dv:
131
+ return_type: void
132
+ parameters:
133
+ - GLuint program
134
+ - GLint location
135
+ - GLsizei count
136
+ - GLdouble_in value
137
+ glProgramUniform2ui:
138
+ return_type: void
139
+ parameters:
140
+ - GLuint program
141
+ - GLint location
142
+ - GLuint v0
143
+ - GLuint v1
144
+ glProgramUniform2uiv:
145
+ return_type: void
146
+ parameters:
147
+ - GLuint program
148
+ - GLint location
149
+ - GLsizei count
150
+ - GLuint_in value
151
+ glProgramUniform3i:
152
+ return_type: void
153
+ parameters:
154
+ - GLuint program
155
+ - GLint location
156
+ - GLint v0
157
+ - GLint v1
158
+ - GLint v2
159
+ glProgramUniform3iv:
160
+ return_type: void
161
+ parameters:
162
+ - GLuint program
163
+ - GLint location
164
+ - GLsizei count
165
+ - GLint_in value
166
+ glProgramUniform3f:
167
+ return_type: void
168
+ parameters:
169
+ - GLuint program
170
+ - GLint location
171
+ - GLfloat v0
172
+ - GLfloat v1
173
+ - GLfloat v2
174
+ glProgramUniform3fv:
175
+ return_type: void
176
+ parameters:
177
+ - GLuint program
178
+ - GLint location
179
+ - GLsizei count
180
+ - GLfloat_in value
181
+ glProgramUniform3d:
182
+ return_type: void
183
+ parameters:
184
+ - GLuint program
185
+ - GLint location
186
+ - GLdouble v0
187
+ - GLdouble v1
188
+ - GLdouble v2
189
+ glProgramUniform3dv:
190
+ return_type: void
191
+ parameters:
192
+ - GLuint program
193
+ - GLint location
194
+ - GLsizei count
195
+ - GLdouble_in value
196
+ glProgramUniform3ui:
197
+ return_type: void
198
+ parameters:
199
+ - GLuint program
200
+ - GLint location
201
+ - GLuint v0
202
+ - GLuint v1
203
+ - GLuint v2
204
+ glProgramUniform3uiv:
205
+ return_type: void
206
+ parameters:
207
+ - GLuint program
208
+ - GLint location
209
+ - GLsizei count
210
+ - GLuint_in value
211
+ glProgramUniform4i:
212
+ return_type: void
213
+ parameters:
214
+ - GLuint program
215
+ - GLint location
216
+ - GLint v0
217
+ - GLint v1
218
+ - GLint v2
219
+ - GLint v3
220
+ glProgramUniform4iv:
221
+ return_type: void
222
+ parameters:
223
+ - GLuint program
224
+ - GLint location
225
+ - GLsizei count
226
+ - GLint_in value
227
+ glProgramUniform4f:
228
+ return_type: void
229
+ parameters:
230
+ - GLuint program
231
+ - GLint location
232
+ - GLfloat v0
233
+ - GLfloat v1
234
+ - GLfloat v2
235
+ - GLfloat v3
236
+ glProgramUniform4fv:
237
+ return_type: void
238
+ parameters:
239
+ - GLuint program
240
+ - GLint location
241
+ - GLsizei count
242
+ - GLfloat_in value
243
+ glProgramUniform4d:
244
+ return_type: void
245
+ parameters:
246
+ - GLuint program
247
+ - GLint location
248
+ - GLdouble v0
249
+ - GLdouble v1
250
+ - GLdouble v2
251
+ - GLdouble v3
252
+ glProgramUniform4dv:
253
+ return_type: void
254
+ parameters:
255
+ - GLuint program
256
+ - GLint location
257
+ - GLsizei count
258
+ - GLdouble_in value
259
+ glProgramUniform4ui:
260
+ return_type: void
261
+ parameters:
262
+ - GLuint program
263
+ - GLint location
264
+ - GLuint v0
265
+ - GLuint v1
266
+ - GLuint v2
267
+ - GLuint v3
268
+ glProgramUniform4uiv:
269
+ return_type: void
270
+ parameters:
271
+ - GLuint program
272
+ - GLint location
273
+ - GLsizei count
274
+ - GLuint_in value
275
+ glProgramUniformMatrix2fv:
276
+ return_type: void
277
+ parameters:
278
+ - GLuint program
279
+ - GLint location
280
+ - GLsizei count
281
+ - GLboolean transpose
282
+ - GLfloat_in value
283
+ glProgramUniformMatrix3fv:
284
+ return_type: void
285
+ parameters:
286
+ - GLuint program
287
+ - GLint location
288
+ - GLsizei count
289
+ - GLboolean transpose
290
+ - GLfloat_in value
291
+ glProgramUniformMatrix4fv:
292
+ return_type: void
293
+ parameters:
294
+ - GLuint program
295
+ - GLint location
296
+ - GLsizei count
297
+ - GLboolean transpose
298
+ - GLfloat_in value
299
+ glProgramUniformMatrix2dv:
300
+ return_type: void
301
+ parameters:
302
+ - GLuint program
303
+ - GLint location
304
+ - GLsizei count
305
+ - GLboolean transpose
306
+ - GLdouble_in value
307
+ glProgramUniformMatrix3dv:
308
+ return_type: void
309
+ parameters:
310
+ - GLuint program
311
+ - GLint location
312
+ - GLsizei count
313
+ - GLboolean transpose
314
+ - GLdouble_in value
315
+ glProgramUniformMatrix4dv:
316
+ return_type: void
317
+ parameters:
318
+ - GLuint program
319
+ - GLint location
320
+ - GLsizei count
321
+ - GLboolean transpose
322
+ - GLdouble_in value
323
+ glProgramUniformMatrix2x3fv:
324
+ return_type: void
325
+ parameters:
326
+ - GLuint program
327
+ - GLint location
328
+ - GLsizei count
329
+ - GLboolean transpose
330
+ - GLfloat_in value
331
+ glProgramUniformMatrix3x2fv:
332
+ return_type: void
333
+ parameters:
334
+ - GLuint program
335
+ - GLint location
336
+ - GLsizei count
337
+ - GLboolean transpose
338
+ - GLfloat_in value
339
+ glProgramUniformMatrix2x4fv:
340
+ return_type: void
341
+ parameters:
342
+ - GLuint program
343
+ - GLint location
344
+ - GLsizei count
345
+ - GLboolean transpose
346
+ - GLfloat_in value
347
+ glProgramUniformMatrix4x2fv:
348
+ return_type: void
349
+ parameters:
350
+ - GLuint program
351
+ - GLint location
352
+ - GLsizei count
353
+ - GLboolean transpose
354
+ - GLfloat_in value
355
+ glProgramUniformMatrix3x4fv:
356
+ return_type: void
357
+ parameters:
358
+ - GLuint program
359
+ - GLint location
360
+ - GLsizei count
361
+ - GLboolean transpose
362
+ - GLfloat_in value
363
+ glProgramUniformMatrix4x3fv:
364
+ return_type: void
365
+ parameters:
366
+ - GLuint program
367
+ - GLint location
368
+ - GLsizei count
369
+ - GLboolean transpose
370
+ - GLfloat_in value
371
+ glProgramUniformMatrix2x3dv:
372
+ return_type: void
373
+ parameters:
374
+ - GLuint program
375
+ - GLint location
376
+ - GLsizei count
377
+ - GLboolean transpose
378
+ - GLdouble_in value
379
+ glProgramUniformMatrix3x2dv:
380
+ return_type: void
381
+ parameters:
382
+ - GLuint program
383
+ - GLint location
384
+ - GLsizei count
385
+ - GLboolean transpose
386
+ - GLdouble_in value
387
+ glProgramUniformMatrix2x4dv:
388
+ return_type: void
389
+ parameters:
390
+ - GLuint program
391
+ - GLint location
392
+ - GLsizei count
393
+ - GLboolean transpose
394
+ - GLdouble_in value
395
+ glProgramUniformMatrix4x2dv:
396
+ return_type: void
397
+ parameters:
398
+ - GLuint program
399
+ - GLint location
400
+ - GLsizei count
401
+ - GLboolean transpose
402
+ - GLdouble_in value
403
+ glProgramUniformMatrix3x4dv:
404
+ return_type: void
405
+ parameters:
406
+ - GLuint program
407
+ - GLint location
408
+ - GLsizei count
409
+ - GLboolean transpose
410
+ - GLdouble_in value
411
+ glProgramUniformMatrix4x3dv:
412
+ return_type: void
413
+ parameters:
414
+ - GLuint program
415
+ - GLint location
416
+ - GLsizei count
417
+ - GLboolean transpose
418
+ - GLdouble_in value
419
+ glValidateProgramPipeline:
420
+ return_type: void
421
+ parameters:
422
+ - GLuint pipeline
423
+ glGetProgramPipelineInfoLog:
424
+ return_type: void
425
+ parameters:
426
+ - GLuint pipeline
427
+ - GLsizei bufSize
428
+ - GLsizei_out length
429
+ - GLchar_out infoLog