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,43 @@
1
+ ---
2
+ glUniformMatrix2x3fv:
3
+ return_type: void
4
+ parameters:
5
+ - GLint location
6
+ - GLsizei count
7
+ - GLboolean transpose
8
+ - GLfloat_in value
9
+ glUniformMatrix3x2fv:
10
+ return_type: void
11
+ parameters:
12
+ - GLint location
13
+ - GLsizei count
14
+ - GLboolean transpose
15
+ - GLfloat_in value
16
+ glUniformMatrix2x4fv:
17
+ return_type: void
18
+ parameters:
19
+ - GLint location
20
+ - GLsizei count
21
+ - GLboolean transpose
22
+ - GLfloat_in value
23
+ glUniformMatrix4x2fv:
24
+ return_type: void
25
+ parameters:
26
+ - GLint location
27
+ - GLsizei count
28
+ - GLboolean transpose
29
+ - GLfloat_in value
30
+ glUniformMatrix3x4fv:
31
+ return_type: void
32
+ parameters:
33
+ - GLint location
34
+ - GLsizei count
35
+ - GLboolean transpose
36
+ - GLfloat_in value
37
+ glUniformMatrix4x3fv:
38
+ return_type: void
39
+ parameters:
40
+ - GLint location
41
+ - GLsizei count
42
+ - GLboolean transpose
43
+ - GLfloat_in value
@@ -0,0 +1,128 @@
1
+ ---
2
+ glIsRenderbuffer:
3
+ return_type: GLboolean
4
+ parameters:
5
+ - GLuint renderbuffer
6
+ glBindRenderbuffer:
7
+ return_type: void
8
+ parameters:
9
+ - GLenum target
10
+ - GLuint renderbuffer
11
+ glDeleteRenderbuffers:
12
+ return_type: void
13
+ parameters:
14
+ - GLsizei n
15
+ - GLuint_in renderbuffers
16
+ glGenRenderbuffers:
17
+ return_type: void
18
+ parameters:
19
+ - GLsizei n
20
+ - GLuint_out renderbuffers
21
+ glRenderbufferStorage:
22
+ return_type: void
23
+ parameters:
24
+ - GLenum target
25
+ - GLenum internalformat
26
+ - GLsizei width
27
+ - GLsizei height
28
+ glGetRenderbufferParameteriv:
29
+ return_type: void
30
+ parameters:
31
+ - GLenum target
32
+ - GLenum pname
33
+ - GLint_out params
34
+ glIsFramebuffer:
35
+ return_type: GLboolean
36
+ parameters:
37
+ - GLuint framebuffer
38
+ glBindFramebuffer:
39
+ return_type: void
40
+ parameters:
41
+ - GLenum target
42
+ - GLuint framebuffer
43
+ glDeleteFramebuffers:
44
+ return_type: void
45
+ parameters:
46
+ - GLsizei n
47
+ - GLuint_in framebuffers
48
+ glGenFramebuffers:
49
+ return_type: void
50
+ parameters:
51
+ - GLsizei n
52
+ - GLuint_out framebuffers
53
+ glCheckFramebufferStatus:
54
+ return_type: GLenum
55
+ parameters:
56
+ - GLenum target
57
+ glFramebufferTexture1D:
58
+ return_type: void
59
+ parameters:
60
+ - GLenum target
61
+ - GLenum attachment
62
+ - GLenum textarget
63
+ - GLuint texture
64
+ - GLint level
65
+ glFramebufferTexture2D:
66
+ return_type: void
67
+ parameters:
68
+ - GLenum target
69
+ - GLenum attachment
70
+ - GLenum textarget
71
+ - GLuint texture
72
+ - GLint level
73
+ glFramebufferTexture3D:
74
+ return_type: void
75
+ parameters:
76
+ - GLenum target
77
+ - GLenum attachment
78
+ - GLenum textarget
79
+ - GLuint texture
80
+ - GLint level
81
+ - GLint zoffset
82
+ glFramebufferRenderbuffer:
83
+ return_type: void
84
+ parameters:
85
+ - GLenum target
86
+ - GLenum attachment
87
+ - GLenum renderbuffertarget
88
+ - GLuint renderbuffer
89
+ glGetFramebufferAttachmentParameteriv:
90
+ return_type: void
91
+ parameters:
92
+ - GLenum target
93
+ - GLenum attachment
94
+ - GLenum pname
95
+ - GLint_out params
96
+ glGenerateMipmap:
97
+ return_type: void
98
+ parameters:
99
+ - GLenum target
100
+ glBlitFramebuffer:
101
+ return_type: void
102
+ parameters:
103
+ - GLint srcX0
104
+ - GLint srcY0
105
+ - GLint srcX1
106
+ - GLint srcY1
107
+ - GLint dstX0
108
+ - GLint dstY0
109
+ - GLint dstX1
110
+ - GLint dstY1
111
+ - GLbitfield mask
112
+ - GLenum filter
113
+ glRenderbufferStorageMultisample:
114
+ return_type: void
115
+ parameters:
116
+ - GLenum target
117
+ - GLsizei samples
118
+ - GLenum internalformat
119
+ - GLsizei width
120
+ - GLsizei height
121
+ glFramebufferTextureLayer:
122
+ return_type: void
123
+ parameters:
124
+ - GLenum target
125
+ - GLenum attachment
126
+ - GLuint texture
127
+ - GLint level
128
+ - GLint layer
@@ -0,0 +1,14 @@
1
+ ---
2
+ glMapBufferRange:
3
+ return_type: pointer
4
+ parameters:
5
+ - GLenum target
6
+ - GLintptr offset
7
+ - GLsizeiptr length
8
+ - GLbitfield access
9
+ glFlushMappedBufferRange:
10
+ return_type: void
11
+ parameters:
12
+ - GLenum target
13
+ - GLintptr offset
14
+ - GLsizeiptr length
@@ -0,0 +1,19 @@
1
+ ---
2
+ glBindVertexArray:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint array
6
+ glDeleteVertexArrays:
7
+ return_type: void
8
+ parameters:
9
+ - GLsizei n
10
+ - GLuint_in arrays
11
+ glGenVertexArrays:
12
+ return_type: void
13
+ parameters:
14
+ - GLsizei n
15
+ - GLuint_out arrays
16
+ glIsVertexArray:
17
+ return_type: GLboolean
18
+ parameters:
19
+ - GLuint array
@@ -0,0 +1,340 @@
1
+ ---
2
+ glColorMaski:
3
+ return_type: void
4
+ parameters:
5
+ - GLuint index
6
+ - GLboolean r
7
+ - GLboolean g
8
+ - GLboolean b
9
+ - GLboolean a
10
+ glGetBooleani_v:
11
+ return_type: void
12
+ parameters:
13
+ - GLenum target
14
+ - GLuint index
15
+ - GLboolean_out data
16
+ glGetIntegeri_v:
17
+ return_type: void
18
+ parameters:
19
+ - GLenum target
20
+ - GLuint index
21
+ - GLint_out data
22
+ glEnablei:
23
+ return_type: void
24
+ parameters:
25
+ - GLenum target
26
+ - GLuint index
27
+ glDisablei:
28
+ return_type: void
29
+ parameters:
30
+ - GLenum target
31
+ - GLuint index
32
+ glIsEnabledi:
33
+ return_type: GLboolean
34
+ parameters:
35
+ - GLenum target
36
+ - GLuint index
37
+ glBeginTransformFeedback:
38
+ return_type: void
39
+ parameters:
40
+ - GLenum primitiveMode
41
+ glEndTransformFeedback:
42
+ return_type: void
43
+ parameters: []
44
+ glBindBufferRange:
45
+ return_type: void
46
+ parameters:
47
+ - GLenum target
48
+ - GLuint index
49
+ - GLuint buffer
50
+ - GLintptr offset
51
+ - GLsizeiptr size
52
+ glBindBufferBase:
53
+ return_type: void
54
+ parameters:
55
+ - GLenum target
56
+ - GLuint index
57
+ - GLuint buffer
58
+ glTransformFeedbackVaryings:
59
+ return_type: void
60
+ parameters:
61
+ - GLuint program
62
+ - GLsizei count
63
+ - GLchar_pointer_in varyings
64
+ - GLenum bufferMode
65
+ glGetTransformFeedbackVarying:
66
+ return_type: void
67
+ parameters:
68
+ - GLuint program
69
+ - GLuint index
70
+ - GLsizei bufSize
71
+ - GLsizei_out length
72
+ - GLsizei_out size
73
+ - GLenum_out type
74
+ - GLchar_out name
75
+ glClampColor:
76
+ return_type: void
77
+ parameters:
78
+ - GLenum target
79
+ - GLenum clamp
80
+ glBeginConditionalRender:
81
+ return_type: void
82
+ parameters:
83
+ - GLuint id
84
+ - GLenum mode
85
+ glEndConditionalRender:
86
+ return_type: void
87
+ parameters: []
88
+ glVertexAttribIPointer:
89
+ return_type: void
90
+ parameters:
91
+ - GLuint index
92
+ - GLint size
93
+ - GLenum type
94
+ - GLsizei stride
95
+ - buffer_in pointer
96
+ glGetVertexAttribIiv:
97
+ return_type: void
98
+ parameters:
99
+ - GLuint index
100
+ - GLenum pname
101
+ - GLint_out params
102
+ glGetVertexAttribIuiv:
103
+ return_type: void
104
+ parameters:
105
+ - GLuint index
106
+ - GLenum pname
107
+ - GLuint_out params
108
+ glVertexAttribI1i:
109
+ return_type: void
110
+ parameters:
111
+ - GLuint index
112
+ - GLint x
113
+ glVertexAttribI2i:
114
+ return_type: void
115
+ parameters:
116
+ - GLuint index
117
+ - GLint x
118
+ - GLint y
119
+ glVertexAttribI3i:
120
+ return_type: void
121
+ parameters:
122
+ - GLuint index
123
+ - GLint x
124
+ - GLint y
125
+ - GLint z
126
+ glVertexAttribI4i:
127
+ return_type: void
128
+ parameters:
129
+ - GLuint index
130
+ - GLint x
131
+ - GLint y
132
+ - GLint z
133
+ - GLint w
134
+ glVertexAttribI1ui:
135
+ return_type: void
136
+ parameters:
137
+ - GLuint index
138
+ - GLuint x
139
+ glVertexAttribI2ui:
140
+ return_type: void
141
+ parameters:
142
+ - GLuint index
143
+ - GLuint x
144
+ - GLuint y
145
+ glVertexAttribI3ui:
146
+ return_type: void
147
+ parameters:
148
+ - GLuint index
149
+ - GLuint x
150
+ - GLuint y
151
+ - GLuint z
152
+ glVertexAttribI4ui:
153
+ return_type: void
154
+ parameters:
155
+ - GLuint index
156
+ - GLuint x
157
+ - GLuint y
158
+ - GLuint z
159
+ - GLuint w
160
+ glVertexAttribI1iv:
161
+ return_type: void
162
+ parameters:
163
+ - GLuint index
164
+ - GLint_in v
165
+ glVertexAttribI2iv:
166
+ return_type: void
167
+ parameters:
168
+ - GLuint index
169
+ - GLint_in v
170
+ glVertexAttribI3iv:
171
+ return_type: void
172
+ parameters:
173
+ - GLuint index
174
+ - GLint_in v
175
+ glVertexAttribI4iv:
176
+ return_type: void
177
+ parameters:
178
+ - GLuint index
179
+ - GLint_in v
180
+ glVertexAttribI1uiv:
181
+ return_type: void
182
+ parameters:
183
+ - GLuint index
184
+ - GLuint_in v
185
+ glVertexAttribI2uiv:
186
+ return_type: void
187
+ parameters:
188
+ - GLuint index
189
+ - GLuint_in v
190
+ glVertexAttribI3uiv:
191
+ return_type: void
192
+ parameters:
193
+ - GLuint index
194
+ - GLuint_in v
195
+ glVertexAttribI4uiv:
196
+ return_type: void
197
+ parameters:
198
+ - GLuint index
199
+ - GLuint_in v
200
+ glVertexAttribI4bv:
201
+ return_type: void
202
+ parameters:
203
+ - GLuint index
204
+ - GLbyte_in v
205
+ glVertexAttribI4sv:
206
+ return_type: void
207
+ parameters:
208
+ - GLuint index
209
+ - GLshort_in v
210
+ glVertexAttribI4ubv:
211
+ return_type: void
212
+ parameters:
213
+ - GLuint index
214
+ - GLubyte_in v
215
+ glVertexAttribI4usv:
216
+ return_type: void
217
+ parameters:
218
+ - GLuint index
219
+ - GLushort_in v
220
+ glGetUniformuiv:
221
+ return_type: void
222
+ parameters:
223
+ - GLuint program
224
+ - GLint location
225
+ - GLuint_out params
226
+ glBindFragDataLocation:
227
+ return_type: void
228
+ parameters:
229
+ - GLuint program
230
+ - GLuint color
231
+ - string name
232
+ glGetFragDataLocation:
233
+ return_type: GLint
234
+ parameters:
235
+ - GLuint program
236
+ - string name
237
+ glUniform1ui:
238
+ return_type: void
239
+ parameters:
240
+ - GLint location
241
+ - GLuint v0
242
+ glUniform2ui:
243
+ return_type: void
244
+ parameters:
245
+ - GLint location
246
+ - GLuint v0
247
+ - GLuint v1
248
+ glUniform3ui:
249
+ return_type: void
250
+ parameters:
251
+ - GLint location
252
+ - GLuint v0
253
+ - GLuint v1
254
+ - GLuint v2
255
+ glUniform4ui:
256
+ return_type: void
257
+ parameters:
258
+ - GLint location
259
+ - GLuint v0
260
+ - GLuint v1
261
+ - GLuint v2
262
+ - GLuint v3
263
+ glUniform1uiv:
264
+ return_type: void
265
+ parameters:
266
+ - GLint location
267
+ - GLsizei count
268
+ - GLuint_in value
269
+ glUniform2uiv:
270
+ return_type: void
271
+ parameters:
272
+ - GLint location
273
+ - GLsizei count
274
+ - GLuint_in value
275
+ glUniform3uiv:
276
+ return_type: void
277
+ parameters:
278
+ - GLint location
279
+ - GLsizei count
280
+ - GLuint_in value
281
+ glUniform4uiv:
282
+ return_type: void
283
+ parameters:
284
+ - GLint location
285
+ - GLsizei count
286
+ - GLuint_in value
287
+ glTexParameterIiv:
288
+ return_type: void
289
+ parameters:
290
+ - GLenum target
291
+ - GLenum pname
292
+ - GLint_in params
293
+ glTexParameterIuiv:
294
+ return_type: void
295
+ parameters:
296
+ - GLenum target
297
+ - GLenum pname
298
+ - GLuint_in params
299
+ glGetTexParameterIiv:
300
+ return_type: void
301
+ parameters:
302
+ - GLenum target
303
+ - GLenum pname
304
+ - GLint_out params
305
+ glGetTexParameterIuiv:
306
+ return_type: void
307
+ parameters:
308
+ - GLenum target
309
+ - GLenum pname
310
+ - GLuint_out params
311
+ glClearBufferiv:
312
+ return_type: void
313
+ parameters:
314
+ - GLenum buffer
315
+ - GLint drawbuffer
316
+ - GLint_in value
317
+ glClearBufferuiv:
318
+ return_type: void
319
+ parameters:
320
+ - GLenum buffer
321
+ - GLint drawbuffer
322
+ - GLuint_in value
323
+ glClearBufferfv:
324
+ return_type: void
325
+ parameters:
326
+ - GLenum buffer
327
+ - GLint drawbuffer
328
+ - GLfloat_in value
329
+ glClearBufferfi:
330
+ return_type: void
331
+ parameters:
332
+ - GLenum buffer
333
+ - GLint drawbuffer
334
+ - GLfloat depth
335
+ - GLint stencil
336
+ glGetStringi:
337
+ return_type: string
338
+ parameters:
339
+ - GLenum name
340
+ - GLuint index