roglew 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (484) hide show
  1. data/README.md +4 -0
  2. data/lib/roglew/contexts/base.rb +58 -0
  3. data/lib/roglew/contexts/deferred.rb +27 -0
  4. data/lib/roglew/contexts/immediate.rb +19 -0
  5. data/lib/roglew/contextual.rb +53 -0
  6. data/lib/roglew/errors.rb +5 -0
  7. data/lib/roglew/ext/ffi_struct_ext.rb +20 -0
  8. data/lib/roglew/extensions/GL_3DFX_multisample.rb +8 -0
  9. data/lib/roglew/extensions/GL_3DFX_tbuffer.rb +8 -0
  10. data/lib/roglew/extensions/GL_3DFX_texture_compression_FXT1.rb +6 -0
  11. data/lib/roglew/extensions/GL_AMD_blend_minmax_factor.rb +6 -0
  12. data/lib/roglew/extensions/GL_AMD_debug_output.rb +37 -0
  13. data/lib/roglew/extensions/GL_AMD_depth_clamp_separate.rb +6 -0
  14. data/lib/roglew/extensions/GL_AMD_draw_buffers_blend.rb +10 -0
  15. data/lib/roglew/extensions/GL_AMD_multi_draw_indirect.rb +8 -0
  16. data/lib/roglew/extensions/GL_AMD_name_gen_delete.rb +19 -0
  17. data/lib/roglew/extensions/GL_AMD_performance_monitor.rb +29 -0
  18. data/lib/roglew/extensions/GL_AMD_pinned_memory.rb +5 -0
  19. data/lib/roglew/extensions/GL_AMD_query_buffer_object.rb +7 -0
  20. data/lib/roglew/extensions/GL_AMD_sample_positions.rb +13 -0
  21. data/lib/roglew/extensions/GL_AMD_seamless_cubemap_per_texture.rb +5 -0
  22. data/lib/roglew/extensions/GL_AMD_stencil_operation_extended.rb +16 -0
  23. data/lib/roglew/extensions/GL_AMD_vertex_shader_tessellator.rb +20 -0
  24. data/lib/roglew/extensions/GL_APPLE_aux_depth_stencil.rb +5 -0
  25. data/lib/roglew/extensions/GL_APPLE_client_storage.rb +5 -0
  26. data/lib/roglew/extensions/GL_APPLE_element_array.rb +19 -0
  27. data/lib/roglew/extensions/GL_APPLE_fence.rb +21 -0
  28. data/lib/roglew/extensions/GL_APPLE_float_pixels.rb +18 -0
  29. data/lib/roglew/extensions/GL_APPLE_flush_buffer_range.rb +15 -0
  30. data/lib/roglew/extensions/GL_APPLE_object_purgeable.rb +20 -0
  31. data/lib/roglew/extensions/GL_APPLE_pixel_buffer.rb +5 -0
  32. data/lib/roglew/extensions/GL_APPLE_rgb_422.rb +7 -0
  33. data/lib/roglew/extensions/GL_APPLE_row_bytes.rb +6 -0
  34. data/lib/roglew/extensions/GL_APPLE_specular_vector.rb +5 -0
  35. data/lib/roglew/extensions/GL_APPLE_texture_range.rb +19 -0
  36. data/lib/roglew/extensions/GL_APPLE_transform_hint.rb +5 -0
  37. data/lib/roglew/extensions/GL_APPLE_vertex_array_object.rb +16 -0
  38. data/lib/roglew/extensions/GL_APPLE_vertex_array_range.rb +22 -0
  39. data/lib/roglew/extensions/GL_APPLE_vertex_program_evaluators.rb +28 -0
  40. data/lib/roglew/extensions/GL_APPLE_ycbcr_422.rb +5 -0
  41. data/lib/roglew/extensions/GL_ARB_ES2_compatibility.rb +32 -0
  42. data/lib/roglew/extensions/GL_ARB_ES3_compatibility.rb +17 -0
  43. data/lib/roglew/extensions/GL_ARB_base_instance.rb +9 -0
  44. data/lib/roglew/extensions/GL_ARB_blend_func_extended.rb +17 -0
  45. data/lib/roglew/extensions/GL_ARB_cl_event.rb +14 -0
  46. data/lib/roglew/extensions/GL_ARB_clear_buffer_object.rb +10 -0
  47. data/lib/roglew/extensions/GL_ARB_color_buffer_float.rb +17 -0
  48. data/lib/roglew/extensions/GL_ARB_compressed_texture_pixel_storage.rb +12 -0
  49. data/lib/roglew/extensions/GL_ARB_compute_shader.rb +31 -0
  50. data/lib/roglew/extensions/GL_ARB_copy_buffer.rb +14 -0
  51. data/lib/roglew/extensions/GL_ARB_copy_image.rb +7 -0
  52. data/lib/roglew/extensions/GL_ARB_debug_output.rb +39 -0
  53. data/lib/roglew/extensions/GL_ARB_depth_buffer_float.rb +7 -0
  54. data/lib/roglew/extensions/GL_ARB_depth_clamp.rb +5 -0
  55. data/lib/roglew/extensions/GL_ARB_depth_texture.rb +9 -0
  56. data/lib/roglew/extensions/GL_ARB_draw_buffers.rb +29 -0
  57. data/lib/roglew/extensions/GL_ARB_draw_buffers_blend.rb +10 -0
  58. data/lib/roglew/extensions/GL_ARB_draw_elements_base_vertex.rb +10 -0
  59. data/lib/roglew/extensions/GL_ARB_draw_indirect.rb +15 -0
  60. data/lib/roglew/extensions/GL_ARB_explicit_uniform_location.rb +5 -0
  61. data/lib/roglew/extensions/GL_ARB_fragment_program.rb +19 -0
  62. data/lib/roglew/extensions/GL_ARB_fragment_shader.rb +7 -0
  63. data/lib/roglew/extensions/GL_ARB_framebuffer_no_attachments.rb +24 -0
  64. data/lib/roglew/extensions/GL_ARB_framebuffer_object/framebuffer.rb +24 -0
  65. data/lib/roglew/extensions/GL_ARB_framebuffer_object/framebuffer_context.rb +51 -0
  66. data/lib/roglew/extensions/GL_ARB_framebuffer_object/renderbuffer.rb +23 -0
  67. data/lib/roglew/extensions/GL_ARB_framebuffer_object/renderbuffer_context.rb +48 -0
  68. data/lib/roglew/extensions/GL_ARB_framebuffer_object.rb +152 -0
  69. data/lib/roglew/extensions/GL_ARB_framebuffer_sRGB.rb +5 -0
  70. data/lib/roglew/extensions/GL_ARB_geometry_shader4.rb +34 -0
  71. data/lib/roglew/extensions/GL_ARB_get_program_binary.rb +18 -0
  72. data/lib/roglew/extensions/GL_ARB_gpu_shader5.rb +10 -0
  73. data/lib/roglew/extensions/GL_ARB_gpu_shader_fp64.rb +41 -0
  74. data/lib/roglew/extensions/GL_ARB_half_float_pixel.rb +5 -0
  75. data/lib/roglew/extensions/GL_ARB_half_float_vertex.rb +5 -0
  76. data/lib/roglew/extensions/GL_ARB_imaging.rb +120 -0
  77. data/lib/roglew/extensions/GL_ARB_instanced_arrays.rb +15 -0
  78. data/lib/roglew/extensions/GL_ARB_internalformat_query.rb +13 -0
  79. data/lib/roglew/extensions/GL_ARB_internalformat_query2.rb +124 -0
  80. data/lib/roglew/extensions/GL_ARB_invalidate_subdata.rb +12 -0
  81. data/lib/roglew/extensions/GL_ARB_map_buffer_alignment.rb +5 -0
  82. data/lib/roglew/extensions/GL_ARB_map_buffer_range.rb +19 -0
  83. data/lib/roglew/extensions/GL_ARB_matrix_palette.rb +26 -0
  84. data/lib/roglew/extensions/GL_ARB_multi_draw_indirect.rb +8 -0
  85. data/lib/roglew/extensions/GL_ARB_multisample.rb +21 -0
  86. data/lib/roglew/extensions/GL_ARB_multitexture.rb +80 -0
  87. data/lib/roglew/extensions/GL_ARB_occlusion_query.rb +24 -0
  88. data/lib/roglew/extensions/GL_ARB_occlusion_query2.rb +5 -0
  89. data/lib/roglew/extensions/GL_ARB_pixel_buffer_object.rb +9 -0
  90. data/lib/roglew/extensions/GL_ARB_point_parameters.rb +17 -0
  91. data/lib/roglew/extensions/GL_ARB_point_sprite.rb +6 -0
  92. data/lib/roglew/extensions/GL_ARB_program_interface_query.rb +64 -0
  93. data/lib/roglew/extensions/GL_ARB_provoking_vertex.rb +16 -0
  94. data/lib/roglew/extensions/GL_ARB_robustness.rb +38 -0
  95. data/lib/roglew/extensions/GL_ARB_sample_shading.rb +15 -0
  96. data/lib/roglew/extensions/GL_ARB_sampler_objects.rb +27 -0
  97. data/lib/roglew/extensions/GL_ARB_seamless_cube_map.rb +5 -0
  98. data/lib/roglew/extensions/GL_ARB_separate_shader_objects.rb +81 -0
  99. data/lib/roglew/extensions/GL_ARB_shader_atomic_counters.rb +42 -0
  100. data/lib/roglew/extensions/GL_ARB_shader_image_load_store.rb +78 -0
  101. data/lib/roglew/extensions/GL_ARB_shader_objects.rb +85 -0
  102. data/lib/roglew/extensions/GL_ARB_shader_storage_buffer_object.rb +29 -0
  103. data/lib/roglew/extensions/GL_ARB_shader_subroutine.rb +29 -0
  104. data/lib/roglew/extensions/GL_ARB_shading_language_100.rb +5 -0
  105. data/lib/roglew/extensions/GL_ARB_shading_language_include.rb +20 -0
  106. data/lib/roglew/extensions/GL_ARB_shadow.rb +7 -0
  107. data/lib/roglew/extensions/GL_ARB_shadow_ambient.rb +5 -0
  108. data/lib/roglew/extensions/GL_ARB_stencil_texturing.rb +5 -0
  109. data/lib/roglew/extensions/GL_ARB_sync.rb +34 -0
  110. data/lib/roglew/extensions/GL_ARB_tessellation_shader.rb +46 -0
  111. data/lib/roglew/extensions/GL_ARB_texture_border_clamp.rb +5 -0
  112. data/lib/roglew/extensions/GL_ARB_texture_buffer_object.rb +18 -0
  113. data/lib/roglew/extensions/GL_ARB_texture_buffer_range.rb +17 -0
  114. data/lib/roglew/extensions/GL_ARB_texture_compression.rb +30 -0
  115. data/lib/roglew/extensions/GL_ARB_texture_compression_bptc.rb +8 -0
  116. data/lib/roglew/extensions/GL_ARB_texture_compression_rgtc.rb +8 -0
  117. data/lib/roglew/extensions/GL_ARB_texture_cube_map.rb +16 -0
  118. data/lib/roglew/extensions/GL_ARB_texture_cube_map_array.rb +11 -0
  119. data/lib/roglew/extensions/GL_ARB_texture_env_combine.rb +26 -0
  120. data/lib/roglew/extensions/GL_ARB_texture_env_dot3.rb +6 -0
  121. data/lib/roglew/extensions/GL_ARB_texture_float.rb +24 -0
  122. data/lib/roglew/extensions/GL_ARB_texture_gather.rb +7 -0
  123. data/lib/roglew/extensions/GL_ARB_texture_mirrored_repeat.rb +5 -0
  124. data/lib/roglew/extensions/GL_ARB_texture_multisample.rb +37 -0
  125. data/lib/roglew/extensions/GL_ARB_texture_rectangle.rb +10 -0
  126. data/lib/roglew/extensions/GL_ARB_texture_rg.rb +28 -0
  127. data/lib/roglew/extensions/GL_ARB_texture_rgb10_a2ui.rb +5 -0
  128. data/lib/roglew/extensions/GL_ARB_texture_storage.rb +19 -0
  129. data/lib/roglew/extensions/GL_ARB_texture_storage_multisample.rb +11 -0
  130. data/lib/roglew/extensions/GL_ARB_texture_swizzle.rb +9 -0
  131. data/lib/roglew/extensions/GL_ARB_texture_view.rb +18 -0
  132. data/lib/roglew/extensions/GL_ARB_timer_query.rb +17 -0
  133. data/lib/roglew/extensions/GL_ARB_transform_feedback2.rb +23 -0
  134. data/lib/roglew/extensions/GL_ARB_transform_feedback3pt.rb +18 -0
  135. data/lib/roglew/extensions/GL_ARB_transform_feedback_instanced.rb +9 -0
  136. data/lib/roglew/extensions/GL_ARB_transpose_matrix.rb +20 -0
  137. data/lib/roglew/extensions/GL_ARB_uniform_buffer_object.rb +55 -0
  138. data/lib/roglew/extensions/GL_ARB_vertex_array_bgra.rb +5 -0
  139. data/lib/roglew/extensions/GL_ARB_vertex_array_object.rb +21 -0
  140. data/lib/roglew/extensions/GL_ARB_vertex_attrib_64bit.rb +28 -0
  141. data/lib/roglew/extensions/GL_ARB_vertex_attrib_binding.rb +25 -0
  142. data/lib/roglew/extensions/GL_ARB_vertex_blend.rb +64 -0
  143. data/lib/roglew/extensions/GL_ARB_vertex_buffer_object.rb +51 -0
  144. data/lib/roglew/extensions/GL_ARB_vertex_program.rb +153 -0
  145. data/lib/roglew/extensions/GL_ARB_vertex_shader.rb +22 -0
  146. data/lib/roglew/extensions/GL_ARB_vertex_type_2_10_10_10_rev.rb +52 -0
  147. data/lib/roglew/extensions/GL_ARB_viewport_array.rb +35 -0
  148. data/lib/roglew/extensions/GL_ARB_window_pos.rb +22 -0
  149. data/lib/roglew/extensions/GL_ATIX_point_sprites.rb +10 -0
  150. data/lib/roglew/extensions/GL_ATIX_texture_env_combine3.rb +7 -0
  151. data/lib/roglew/extensions/GL_ATIX_texture_env_route.rb +7 -0
  152. data/lib/roglew/extensions/GL_ATIX_vertex_shader_output_point_size.rb +5 -0
  153. data/lib/roglew/extensions/GL_ATI_draw_buffers.rb +30 -0
  154. data/lib/roglew/extensions/GL_ATI_element_array.rb +18 -0
  155. data/lib/roglew/extensions/GL_ATI_envmap_bumpmap.rb +24 -0
  156. data/lib/roglew/extensions/GL_ATI_fragment_shader.rb +80 -0
  157. data/lib/roglew/extensions/GL_ATI_map_object_buffer.rb +9 -0
  158. data/lib/roglew/extensions/GL_ATI_meminfo.rb +7 -0
  159. data/lib/roglew/extensions/GL_ATI_pn_triangles.rb +23 -0
  160. data/lib/roglew/extensions/GL_ATI_separate_stencil.rb +18 -0
  161. data/lib/roglew/extensions/GL_ATI_text_fragment_shader.rb +5 -0
  162. data/lib/roglew/extensions/GL_ATI_texture_compression_3dc.rb +5 -0
  163. data/lib/roglew/extensions/GL_ATI_texture_env_combine3.rb +7 -0
  164. data/lib/roglew/extensions/GL_ATI_texture_float.rb +16 -0
  165. data/lib/roglew/extensions/GL_ATI_texture_mirror_once.rb +6 -0
  166. data/lib/roglew/extensions/GL_ATI_vertex_array_object.rb +32 -0
  167. data/lib/roglew/extensions/GL_ATI_vertex_attrib_array_object.rb +9 -0
  168. data/lib/roglew/extensions/GL_ATI_vertex_streams.rb +67 -0
  169. data/lib/roglew/extensions/GL_EXT_422_pixels.rb +8 -0
  170. data/lib/roglew/extensions/GL_EXT_Cg_shader.rb +6 -0
  171. data/lib/roglew/extensions/GL_EXT_abgr.rb +5 -0
  172. data/lib/roglew/extensions/GL_EXT_bgra.rb +6 -0
  173. data/lib/roglew/extensions/GL_EXT_bindable_uniform.rb +21 -0
  174. data/lib/roglew/extensions/GL_EXT_blend_color.rb +18 -0
  175. data/lib/roglew/extensions/GL_EXT_blend_equation_separate.rb +15 -0
  176. data/lib/roglew/extensions/GL_EXT_blend_func_separate.rb +17 -0
  177. data/lib/roglew/extensions/GL_EXT_blend_minmax.rb +17 -0
  178. data/lib/roglew/extensions/GL_EXT_blend_subtract.rb +8 -0
  179. data/lib/roglew/extensions/GL_EXT_clip_volume_hint.rb +5 -0
  180. data/lib/roglew/extensions/GL_EXT_cmyka.rb +8 -0
  181. data/lib/roglew/extensions/GL_EXT_color_subtable.rb +8 -0
  182. data/lib/roglew/extensions/GL_EXT_compiled_vertex_array.rb +16 -0
  183. data/lib/roglew/extensions/GL_EXT_convolution.rb +45 -0
  184. data/lib/roglew/extensions/GL_EXT_coordinate_frame.rb +28 -0
  185. data/lib/roglew/extensions/GL_EXT_copy_texture.rb +11 -0
  186. data/lib/roglew/extensions/GL_EXT_cull_vertex.rb +17 -0
  187. data/lib/roglew/extensions/GL_EXT_debug_marker.rb +9 -0
  188. data/lib/roglew/extensions/GL_EXT_depth_bounds_test.rb +15 -0
  189. data/lib/roglew/extensions/GL_EXT_direct_state_access.rb +245 -0
  190. data/lib/roglew/extensions/GL_EXT_draw_buffers2.rb +12 -0
  191. data/lib/roglew/extensions/GL_EXT_draw_instanced.rb +8 -0
  192. data/lib/roglew/extensions/GL_EXT_draw_range_elements.rb +15 -0
  193. data/lib/roglew/extensions/GL_EXT_fog_coord.rb +24 -0
  194. data/lib/roglew/extensions/GL_EXT_fragment_lighting.rb +44 -0
  195. data/lib/roglew/extensions/GL_EXT_framebuffer_blit.rb +17 -0
  196. data/lib/roglew/extensions/GL_EXT_framebuffer_multisample.rb +16 -0
  197. data/lib/roglew/extensions/GL_EXT_framebuffer_multisample_blit_scaled.rb +6 -0
  198. data/lib/roglew/extensions/GL_EXT_framebuffer_object/framebuffer.rb +24 -0
  199. data/lib/roglew/extensions/GL_EXT_framebuffer_object/framebuffer_context.rb +42 -0
  200. data/lib/roglew/extensions/GL_EXT_framebuffer_object/renderbuffer.rb +23 -0
  201. data/lib/roglew/extensions/GL_EXT_framebuffer_object/renderbuffer_context.rb +43 -0
  202. data/lib/roglew/extensions/GL_EXT_framebuffer_object.rb +127 -0
  203. data/lib/roglew/extensions/GL_EXT_framebuffer_sRGB.rb +6 -0
  204. data/lib/roglew/extensions/GL_EXT_geometry_shader4.rb +35 -0
  205. data/lib/roglew/extensions/GL_EXT_gpu_program_parameters.rb +8 -0
  206. data/lib/roglew/extensions/GL_EXT_gpu_shader4.rb +72 -0
  207. data/lib/roglew/extensions/GL_EXT_histogram.rb +35 -0
  208. data/lib/roglew/extensions/GL_EXT_index_func.rb +7 -0
  209. data/lib/roglew/extensions/GL_EXT_index_material.rb +7 -0
  210. data/lib/roglew/extensions/GL_EXT_light_texture.rb +24 -0
  211. data/lib/roglew/extensions/GL_EXT_multi_draw_arrays.rb +8 -0
  212. data/lib/roglew/extensions/GL_EXT_multisample.rb +31 -0
  213. data/lib/roglew/extensions/GL_EXT_packed_depth_stencil.rb +8 -0
  214. data/lib/roglew/extensions/GL_EXT_packed_float.rb +7 -0
  215. data/lib/roglew/extensions/GL_EXT_packed_pixels.rb +9 -0
  216. data/lib/roglew/extensions/GL_EXT_paletted_texture.rb +37 -0
  217. data/lib/roglew/extensions/GL_EXT_pixel_buffer_object.rb +8 -0
  218. data/lib/roglew/extensions/GL_EXT_pixel_transform.rb +27 -0
  219. data/lib/roglew/extensions/GL_EXT_point_parameters.rb +18 -0
  220. data/lib/roglew/extensions/GL_EXT_polygon_offset.rb +16 -0
  221. data/lib/roglew/extensions/GL_EXT_provoking_vertex.rb +17 -0
  222. data/lib/roglew/extensions/GL_EXT_rescale_normal.rb +5 -0
  223. data/lib/roglew/extensions/GL_EXT_scene_marker.rb +8 -0
  224. data/lib/roglew/extensions/GL_EXT_secondary_color.rb +36 -0
  225. data/lib/roglew/extensions/GL_EXT_separate_shader_objects.rb +16 -0
  226. data/lib/roglew/extensions/GL_EXT_separate_specular_color.rb +7 -0
  227. data/lib/roglew/extensions/GL_EXT_shader_image_load_store.rb +69 -0
  228. data/lib/roglew/extensions/GL_EXT_shared_texture_palette.rb +5 -0
  229. data/lib/roglew/extensions/GL_EXT_stencil_clear_tag.rb +6 -0
  230. data/lib/roglew/extensions/GL_EXT_stencil_two_side.rb +15 -0
  231. data/lib/roglew/extensions/GL_EXT_stencil_wrap.rb +6 -0
  232. data/lib/roglew/extensions/GL_EXT_subtexture.rb +9 -0
  233. data/lib/roglew/extensions/GL_EXT_texture.rb +46 -0
  234. data/lib/roglew/extensions/GL_EXT_texture3D.rb +22 -0
  235. data/lib/roglew/extensions/GL_EXT_texture_array.rb +21 -0
  236. data/lib/roglew/extensions/GL_EXT_texture_buffer_object.rb +18 -0
  237. data/lib/roglew/extensions/GL_EXT_texture_compression_latc.rb +8 -0
  238. data/lib/roglew/extensions/GL_EXT_texture_compression_rgtc.rb +8 -0
  239. data/lib/roglew/extensions/GL_EXT_texture_compression_s3tc.rb +8 -0
  240. data/lib/roglew/extensions/GL_EXT_texture_cube_map.rb +16 -0
  241. data/lib/roglew/extensions/GL_EXT_texture_edge_clamp.rb +5 -0
  242. data/lib/roglew/extensions/GL_EXT_texture_env.rb +15 -0
  243. data/lib/roglew/extensions/GL_EXT_texture_env_combine.rb +25 -0
  244. data/lib/roglew/extensions/GL_EXT_texture_env_dot3.rb +6 -0
  245. data/lib/roglew/extensions/GL_EXT_texture_filter_anisotropic.rb +6 -0
  246. data/lib/roglew/extensions/GL_EXT_texture_integer.rb +65 -0
  247. data/lib/roglew/extensions/GL_EXT_texture_lod_bias.rb +7 -0
  248. data/lib/roglew/extensions/GL_EXT_texture_mirror_clamp.rb +7 -0
  249. data/lib/roglew/extensions/GL_EXT_texture_object.rb +23 -0
  250. data/lib/roglew/extensions/GL_EXT_texture_perturb_normal.rb +15 -0
  251. data/lib/roglew/extensions/GL_EXT_texture_rectangle.rb +8 -0
  252. data/lib/roglew/extensions/GL_EXT_texture_sRGB.rb +20 -0
  253. data/lib/roglew/extensions/GL_EXT_texture_sRGB_decode.rb +7 -0
  254. data/lib/roglew/extensions/GL_EXT_texture_shared_exponent.rb +7 -0
  255. data/lib/roglew/extensions/GL_EXT_texture_snorm.rb +29 -0
  256. data/lib/roglew/extensions/GL_EXT_texture_swizzle.rb +9 -0
  257. data/lib/roglew/extensions/GL_EXT_timer_query.rb +15 -0
  258. data/lib/roglew/extensions/GL_EXT_transform_feedback.rb +34 -0
  259. data/lib/roglew/extensions/GL_EXT_vertex_array.rb +53 -0
  260. data/lib/roglew/extensions/GL_EXT_vertex_array_bgra.rb +5 -0
  261. data/lib/roglew/extensions/GL_EXT_vertex_attrib_64bit.rb +35 -0
  262. data/lib/roglew/extensions/GL_EXT_vertex_shader.rb +164 -0
  263. data/lib/roglew/extensions/GL_EXT_vertex_weighting.rb +28 -0
  264. data/lib/roglew/extensions/GL_EXT_x11_sync_object.rb +14 -0
  265. data/lib/roglew/extensions/GL_GREMEDY_frame_terminator.rb +7 -0
  266. data/lib/roglew/extensions/GL_GREMEDY_string_marker.rb +7 -0
  267. data/lib/roglew/extensions/GL_HP_image_transform.rb +12 -0
  268. data/lib/roglew/extensions/GL_HP_occlusion_test.rb +6 -0
  269. data/lib/roglew/extensions/GL_IBM_cull_vertex.rb +5 -0
  270. data/lib/roglew/extensions/GL_IBM_multimode_draw_arrays.rb +8 -0
  271. data/lib/roglew/extensions/GL_IBM_rasterpos_clip.rb +5 -0
  272. data/lib/roglew/extensions/GL_IBM_static_data.rb +6 -0
  273. data/lib/roglew/extensions/GL_IBM_texture_mirrored_repeat.rb +5 -0
  274. data/lib/roglew/extensions/GL_IBM_vertex_array_lists.rb +36 -0
  275. data/lib/roglew/extensions/GL_INGR_color_clamp.rb +12 -0
  276. data/lib/roglew/extensions/GL_INGR_interlace_read.rb +5 -0
  277. data/lib/roglew/extensions/GL_INTEL_parallel_arrays.rb +21 -0
  278. data/lib/roglew/extensions/GL_INTEL_texture_scissor.rb +8 -0
  279. data/lib/roglew/extensions/GL_KHR_debug.rb +64 -0
  280. data/lib/roglew/extensions/GL_KHR_texture_compression_astc_ldr.rb +32 -0
  281. data/lib/roglew/extensions/GL_KTX_buffer_region.rb +21 -0
  282. data/lib/roglew/extensions/GL_MESAX_texture_stack.rb +10 -0
  283. data/lib/roglew/extensions/GL_MESA_pack_invert.rb +5 -0
  284. data/lib/roglew/extensions/GL_MESA_resize_buffers.rb +7 -0
  285. data/lib/roglew/extensions/GL_MESA_window_pos.rb +30 -0
  286. data/lib/roglew/extensions/GL_MESA_ycbcr_texture.rb +7 -0
  287. data/lib/roglew/extensions/GL_NVX_gpu_memory_info.rb +9 -0
  288. data/lib/roglew/extensions/GL_NV_bindless_texture.rb +19 -0
  289. data/lib/roglew/extensions/GL_NV_conditional_render.rb +18 -0
  290. data/lib/roglew/extensions/GL_NV_copy_depth_to_color.rb +6 -0
  291. data/lib/roglew/extensions/GL_NV_copy_image.rb +7 -0
  292. data/lib/roglew/extensions/GL_NV_depth_buffer_float.rb +19 -0
  293. data/lib/roglew/extensions/GL_NV_depth_clamp.rb +5 -0
  294. data/lib/roglew/extensions/GL_NV_depth_range_unclamped.rb +9 -0
  295. data/lib/roglew/extensions/GL_NV_evaluators.rb +45 -0
  296. data/lib/roglew/extensions/GL_NV_explicit_multisample.rb +25 -0
  297. data/lib/roglew/extensions/GL_NV_fence.rb +22 -0
  298. data/lib/roglew/extensions/GL_NV_float_buffer.rb +19 -0
  299. data/lib/roglew/extensions/GL_NV_fog_distance.rb +7 -0
  300. data/lib/roglew/extensions/GL_NV_fragment_program.rb +24 -0
  301. data/lib/roglew/extensions/GL_NV_fragment_program2.rb +9 -0
  302. data/lib/roglew/extensions/GL_NV_framebuffer_multisample_coverage.rb +17 -0
  303. data/lib/roglew/extensions/GL_NV_geometry_program4.rb +16 -0
  304. data/lib/roglew/extensions/GL_NV_gpu_program4.rb +32 -0
  305. data/lib/roglew/extensions/GL_NV_gpu_program5.rb +10 -0
  306. data/lib/roglew/extensions/GL_NV_gpu_shader5.rb +74 -0
  307. data/lib/roglew/extensions/GL_NV_half_float.rb +59 -0
  308. data/lib/roglew/extensions/GL_NV_light_max_exponent.rb +6 -0
  309. data/lib/roglew/extensions/GL_NV_multisample_coverage.rb +6 -0
  310. data/lib/roglew/extensions/GL_NV_multisample_filter_hint.rb +5 -0
  311. data/lib/roglew/extensions/GL_NV_occlusion_query.rb +23 -0
  312. data/lib/roglew/extensions/GL_NV_packed_depth_stencil.rb +6 -0
  313. data/lib/roglew/extensions/GL_NV_parameter_buffer_object.rb +20 -0
  314. data/lib/roglew/extensions/GL_NV_path_rendering.rb +191 -0
  315. data/lib/roglew/extensions/GL_NV_pixel_data_range.rb +20 -0
  316. data/lib/roglew/extensions/GL_NV_point_sprite.rb +17 -0
  317. data/lib/roglew/extensions/GL_NV_present_video.rb +24 -0
  318. data/lib/roglew/extensions/GL_NV_primitive_restart.rb +16 -0
  319. data/lib/roglew/extensions/GL_NV_register_combiners.rb +76 -0
  320. data/lib/roglew/extensions/GL_NV_register_combiners2.rb +15 -0
  321. data/lib/roglew/extensions/GL_NV_shader_buffer_load.rb +28 -0
  322. data/lib/roglew/extensions/GL_NV_tessellation_program5.rb +9 -0
  323. data/lib/roglew/extensions/GL_NV_texgen_emboss.rb +7 -0
  324. data/lib/roglew/extensions/GL_NV_texgen_reflection.rb +7 -0
  325. data/lib/roglew/extensions/GL_NV_texture_barrier.rb +7 -0
  326. data/lib/roglew/extensions/GL_NV_texture_env_combine4.rb +9 -0
  327. data/lib/roglew/extensions/GL_NV_texture_expand_normal.rb +5 -0
  328. data/lib/roglew/extensions/GL_NV_texture_multisample.rb +20 -0
  329. data/lib/roglew/extensions/GL_NV_texture_rectangle.rb +8 -0
  330. data/lib/roglew/extensions/GL_NV_texture_shader.rb +77 -0
  331. data/lib/roglew/extensions/GL_NV_texture_shader2.rb +32 -0
  332. data/lib/roglew/extensions/GL_NV_texture_shader3.rb +21 -0
  333. data/lib/roglew/extensions/GL_NV_transform_feedback.rb +48 -0
  334. data/lib/roglew/extensions/GL_NV_transform_feedback2.rb +23 -0
  335. data/lib/roglew/extensions/GL_NV_vdpau_interop.rb +26 -0
  336. data/lib/roglew/extensions/GL_NV_vertex_array_range.rb +19 -0
  337. data/lib/roglew/extensions/GL_NV_vertex_array_range2.rb +5 -0
  338. data/lib/roglew/extensions/GL_NV_vertex_attrib_integer_64bit.rb +33 -0
  339. data/lib/roglew/extensions/GL_NV_vertex_buffer_unified_memory.rb +49 -0
  340. data/lib/roglew/extensions/GL_NV_vertex_program.rb +159 -0
  341. data/lib/roglew/extensions/GL_NV_vertex_program2_option.rb +6 -0
  342. data/lib/roglew/extensions/GL_NV_vertex_program3.rb +5 -0
  343. data/lib/roglew/extensions/GL_NV_vertex_program4.rb +5 -0
  344. data/lib/roglew/extensions/GL_NV_video_capture.rb +53 -0
  345. data/lib/roglew/extensions/GL_OES_byte_coordinates.rb +5 -0
  346. data/lib/roglew/extensions/GL_OES_compressed_paletted_texture.rb +14 -0
  347. data/lib/roglew/extensions/GL_OES_read_format.rb +6 -0
  348. data/lib/roglew/extensions/GL_OES_single_precision.rb +12 -0
  349. data/lib/roglew/extensions/GL_OML_interlace.rb +6 -0
  350. data/lib/roglew/extensions/GL_OML_resample.rb +10 -0
  351. data/lib/roglew/extensions/GL_OML_subsample.rb +6 -0
  352. data/lib/roglew/extensions/GL_PGI_misc_hints.rb +24 -0
  353. data/lib/roglew/extensions/GL_PGI_vertex_hints.rb +26 -0
  354. data/lib/roglew/extensions/GL_REGAL_error_string.rb +7 -0
  355. data/lib/roglew/extensions/GL_REGAL_extension_query.rb +8 -0
  356. data/lib/roglew/extensions/GL_REGAL_log.rb +13 -0
  357. data/lib/roglew/extensions/GL_REND_screen_coordinates.rb +6 -0
  358. data/lib/roglew/extensions/GL_S3_s3tc.rb +10 -0
  359. data/lib/roglew/extensions/GL_SGIS_color_range.rb +13 -0
  360. data/lib/roglew/extensions/GL_SGIS_detail_texture.rb +8 -0
  361. data/lib/roglew/extensions/GL_SGIS_fog_function.rb +8 -0
  362. data/lib/roglew/extensions/GL_SGIS_generate_mipmap.rb +6 -0
  363. data/lib/roglew/extensions/GL_SGIS_multisample.rb +30 -0
  364. data/lib/roglew/extensions/GL_SGIS_point_line_texgen.rb +12 -0
  365. data/lib/roglew/extensions/GL_SGIS_sharpen_texture.rb +8 -0
  366. data/lib/roglew/extensions/GL_SGIS_texture4D.rb +8 -0
  367. data/lib/roglew/extensions/GL_SGIS_texture_border_clamp.rb +5 -0
  368. data/lib/roglew/extensions/GL_SGIS_texture_edge_clamp.rb +5 -0
  369. data/lib/roglew/extensions/GL_SGIS_texture_filter4.rb +8 -0
  370. data/lib/roglew/extensions/GL_SGIS_texture_lod.rb +8 -0
  371. data/lib/roglew/extensions/GL_SGIX_async.rb +19 -0
  372. data/lib/roglew/extensions/GL_SGIX_async_histogram.rb +6 -0
  373. data/lib/roglew/extensions/GL_SGIX_async_pixel.rb +10 -0
  374. data/lib/roglew/extensions/GL_SGIX_blend_alpha_minmax.rb +6 -0
  375. data/lib/roglew/extensions/GL_SGIX_convolution_accuracy.rb +5 -0
  376. data/lib/roglew/extensions/GL_SGIX_depth_texture.rb +7 -0
  377. data/lib/roglew/extensions/GL_SGIX_flush_raster.rb +7 -0
  378. data/lib/roglew/extensions/GL_SGIX_fog_offset.rb +6 -0
  379. data/lib/roglew/extensions/GL_SGIX_fog_texture.rb +16 -0
  380. data/lib/roglew/extensions/GL_SGIX_fragment_specular_lighting.rb +23 -0
  381. data/lib/roglew/extensions/GL_SGIX_framezoom.rb +8 -0
  382. data/lib/roglew/extensions/GL_SGIX_interlace.rb +5 -0
  383. data/lib/roglew/extensions/GL_SGIX_pixel_texture.rb +8 -0
  384. data/lib/roglew/extensions/GL_SGIX_reference_plane.rb +7 -0
  385. data/lib/roglew/extensions/GL_SGIX_resample.rb +8 -0
  386. data/lib/roglew/extensions/GL_SGIX_shadow_ambient.rb +5 -0
  387. data/lib/roglew/extensions/GL_SGIX_sprite.rb +10 -0
  388. data/lib/roglew/extensions/GL_SGIX_tag_sample_buffer.rb +7 -0
  389. data/lib/roglew/extensions/GL_SGIX_texture_coordinate_clamp.rb +7 -0
  390. data/lib/roglew/extensions/GL_SGIX_texture_multi_buffer.rb +5 -0
  391. data/lib/roglew/extensions/GL_SGIX_texture_range.rb +32 -0
  392. data/lib/roglew/extensions/GL_SGIX_texture_scale_bias.rb +8 -0
  393. data/lib/roglew/extensions/GL_SGIX_vertex_preclip.rb +6 -0
  394. data/lib/roglew/extensions/GL_SGIX_vertex_preclip_hint.rb +6 -0
  395. data/lib/roglew/extensions/GL_SGI_color_matrix.rb +15 -0
  396. data/lib/roglew/extensions/GL_SGI_color_table.rb +35 -0
  397. data/lib/roglew/extensions/GL_SGI_texture_color_table.rb +6 -0
  398. data/lib/roglew/extensions/GL_SUNX_constant_data.rb +15 -0
  399. data/lib/roglew/extensions/GL_SUN_convolution_border_modes.rb +5 -0
  400. data/lib/roglew/extensions/GL_SUN_global_alpha.rb +22 -0
  401. data/lib/roglew/extensions/GL_SUN_mesh_array.rb +6 -0
  402. data/lib/roglew/extensions/GL_SUN_read_video_pixels.rb +7 -0
  403. data/lib/roglew/extensions/GL_SUN_slice_accum.rb +5 -0
  404. data/lib/roglew/extensions/GL_SUN_triangle_list.rb +36 -0
  405. data/lib/roglew/extensions/GL_SUN_vertex.rb +46 -0
  406. data/lib/roglew/extensions/GL_VERSION_1_2.rb +62 -0
  407. data/lib/roglew/extensions/GL_VERSION_1_3.rb +154 -0
  408. data/lib/roglew/extensions/GL_VERSION_1_4.rb +99 -0
  409. data/lib/roglew/extensions/GL_VERSION_1_5.rb +79 -0
  410. data/lib/roglew/extensions/GL_VERSION_2_0/shader.rb +52 -0
  411. data/lib/roglew/extensions/GL_VERSION_2_0/shader_program.rb +33 -0
  412. data/lib/roglew/extensions/GL_VERSION_2_0.rb +251 -0
  413. data/lib/roglew/extensions/GL_VERSION_2_1.rb +40 -0
  414. data/lib/roglew/extensions/GL_VERSION_3_0.rb +178 -0
  415. data/lib/roglew/extensions/GL_VERSION_3_1.rb +53 -0
  416. data/lib/roglew/extensions/GL_VERSION_3_2.rb +43 -0
  417. data/lib/roglew/extensions/GL_VERSION_3_3.rb +19 -0
  418. data/lib/roglew/extensions/GL_VERSION_4_0.rb +46 -0
  419. data/lib/roglew/extensions/GL_VERSION_4_2.rb +21 -0
  420. data/lib/roglew/extensions/GL_VERSION_4_3.rb +30 -0
  421. data/lib/roglew/extensions/GL_WIN_specular_fog.rb +5 -0
  422. data/lib/roglew/extensions/GL_WIN_swap_hint.rb +7 -0
  423. data/lib/roglew/extensions/WGL_3DFX_multisample.rb +6 -0
  424. data/lib/roglew/extensions/WGL_3DL_stereo_control.rb +16 -0
  425. data/lib/roglew/extensions/WGL_AMD_gpu_association.rb +30 -0
  426. data/lib/roglew/extensions/WGL_ARB_buffer_region.rb +19 -0
  427. data/lib/roglew/extensions/WGL_ARB_create_context.rb +20 -0
  428. data/lib/roglew/extensions/WGL_ARB_create_context_profile.rb +8 -0
  429. data/lib/roglew/extensions/WGL_ARB_extensions_string.rb +7 -0
  430. data/lib/roglew/extensions/WGL_ARB_framebuffer_sRGB.rb +5 -0
  431. data/lib/roglew/extensions/WGL_ARB_make_current_read.rb +15 -0
  432. data/lib/roglew/extensions/WGL_ARB_multisample.rb +6 -0
  433. data/lib/roglew/extensions/WGL_ARB_pbuffer.rb +24 -0
  434. data/lib/roglew/extensions/WGL_ARB_pixel_format.rb +63 -0
  435. data/lib/roglew/extensions/WGL_ARB_pixel_format_float.rb +5 -0
  436. data/lib/roglew/extensions/WGL_ARB_render_texture.rb +47 -0
  437. data/lib/roglew/extensions/WGL_ATI_pixel_format_float.rb +10 -0
  438. data/lib/roglew/extensions/WGL_ATI_render_texture_rectangle.rb +5 -0
  439. data/lib/roglew/extensions/WGL_EXT_create_context_es2_profile.rb +5 -0
  440. data/lib/roglew/extensions/WGL_EXT_create_context_es_profile.rb +5 -0
  441. data/lib/roglew/extensions/WGL_EXT_depth_float.rb +5 -0
  442. data/lib/roglew/extensions/WGL_EXT_display_color_table.rb +10 -0
  443. data/lib/roglew/extensions/WGL_EXT_extensions_string.rb +7 -0
  444. data/lib/roglew/extensions/WGL_EXT_framebuffer_sRGB.rb +5 -0
  445. data/lib/roglew/extensions/WGL_EXT_make_current_read.rb +14 -0
  446. data/lib/roglew/extensions/WGL_EXT_multisample.rb +6 -0
  447. data/lib/roglew/extensions/WGL_EXT_pbuffer.rb +25 -0
  448. data/lib/roglew/extensions/WGL_EXT_pixel_format.rb +59 -0
  449. data/lib/roglew/extensions/WGL_EXT_pixel_format_packed_float.rb +5 -0
  450. data/lib/roglew/extensions/WGL_EXT_swap_control.rb +8 -0
  451. data/lib/roglew/extensions/WGL_I3D_digital_video_control.rb +17 -0
  452. data/lib/roglew/extensions/WGL_I3D_gamma.rb +17 -0
  453. data/lib/roglew/extensions/WGL_I3D_genlock.rb +32 -0
  454. data/lib/roglew/extensions/WGL_I3D_image_buffer.rb +18 -0
  455. data/lib/roglew/extensions/WGL_I3D_swap_frame_lock.rb +10 -0
  456. data/lib/roglew/extensions/WGL_I3D_swap_frame_usage.rb +10 -0
  457. data/lib/roglew/extensions/WGL_NV_DX_interop.rb +22 -0
  458. data/lib/roglew/extensions/WGL_NV_copy_image.rb +7 -0
  459. data/lib/roglew/extensions/WGL_NV_float_buffer.rb +13 -0
  460. data/lib/roglew/extensions/WGL_NV_gpu_affinity.rb +26 -0
  461. data/lib/roglew/extensions/WGL_NV_multisample_coverage.rb +6 -0
  462. data/lib/roglew/extensions/WGL_NV_present_video.rb +15 -0
  463. data/lib/roglew/extensions/WGL_NV_render_depth_texture.rb +10 -0
  464. data/lib/roglew/extensions/WGL_NV_render_texture_rectangle.rb +7 -0
  465. data/lib/roglew/extensions/WGL_NV_swap_group.rb +12 -0
  466. data/lib/roglew/extensions/WGL_NV_vertex_array_range.rb +8 -0
  467. data/lib/roglew/extensions/WGL_NV_video_capture.rb +18 -0
  468. data/lib/roglew/extensions/WGL_NV_video_output.rb +30 -0
  469. data/lib/roglew/extensions/WGL_OML_sync_control.rb +12 -0
  470. data/lib/roglew/gl_extension.rb +21 -0
  471. data/lib/roglew/gl_object.rb +32 -0
  472. data/lib/roglew/native/gdi32.rb +242 -0
  473. data/lib/roglew/native/gl.rb +906 -0
  474. data/lib/roglew/native/glx.rb +8 -0
  475. data/lib/roglew/native/kernel32.rb +9 -0
  476. data/lib/roglew/native/native_object.rb +11 -0
  477. data/lib/roglew/native/wgl.rb +138 -0
  478. data/lib/roglew/native/win32ffi.rb +27 -0
  479. data/lib/roglew/render_context.rb +229 -0
  480. data/lib/roglew/render_handle.rb +64 -0
  481. data/lib/roglew/texture2d.rb +23 -0
  482. data/lib/roglew/texture_context.rb +46 -0
  483. data/lib/roglew.rb +32 -0
  484. metadata +531 -0
@@ -0,0 +1,80 @@
1
+ module Roglew
2
+ module GL
3
+ ACTIVE_TEXTURE_ARB ||= 0x84E0
4
+ CLIENT_ACTIVE_TEXTURE_ARB ||= 0x84E1
5
+ MAX_TEXTURE_UNITS_ARB ||= 0x84E2
6
+ TEXTURE0_ARB ||= 0x84C0
7
+ TEXTURE1_ARB ||= 0x84C1
8
+ TEXTURE10_ARB ||= 0x84CA
9
+ TEXTURE11_ARB ||= 0x84CB
10
+ TEXTURE12_ARB ||= 0x84CC
11
+ TEXTURE13_ARB ||= 0x84CD
12
+ TEXTURE14_ARB ||= 0x84CE
13
+ TEXTURE15_ARB ||= 0x84CF
14
+ TEXTURE16_ARB ||= 0x84D0
15
+ TEXTURE17_ARB ||= 0x84D1
16
+ TEXTURE18_ARB ||= 0x84D2
17
+ TEXTURE19_ARB ||= 0x84D3
18
+ TEXTURE2_ARB ||= 0x84C2
19
+ TEXTURE20_ARB ||= 0x84D4
20
+ TEXTURE21_ARB ||= 0x84D5
21
+ TEXTURE22_ARB ||= 0x84D6
22
+ TEXTURE23_ARB ||= 0x84D7
23
+ TEXTURE24_ARB ||= 0x84D8
24
+ TEXTURE25_ARB ||= 0x84D9
25
+ TEXTURE26_ARB ||= 0x84DA
26
+ TEXTURE27_ARB ||= 0x84DB
27
+ TEXTURE28_ARB ||= 0x84DC
28
+ TEXTURE29_ARB ||= 0x84DD
29
+ TEXTURE3_ARB ||= 0x84C3
30
+ TEXTURE30_ARB ||= 0x84DE
31
+ TEXTURE31_ARB ||= 0x84DF
32
+ TEXTURE4_ARB ||= 0x84C4
33
+ TEXTURE5_ARB ||= 0x84C5
34
+ TEXTURE6_ARB ||= 0x84C6
35
+ TEXTURE7_ARB ||= 0x84C7
36
+ TEXTURE8_ARB ||= 0x84C8
37
+ TEXTURE9_ARB ||= 0x84C9
38
+ end
39
+ end
40
+
41
+ module GL_ARB_multitexture
42
+ module RenderContext
43
+ include Roglew::GLExtension
44
+
45
+ functions [:glActiveTextureARB, [ :uint ], :void],
46
+ [:glClientActiveTextureARB, [ :uint ], :void],
47
+ [:glMultiTexCoord1dARB, [ :uint, :double ], :void],
48
+ [:glMultiTexCoord1dvARB, [ :uint, :pointer ], :void],
49
+ [:glMultiTexCoord1fARB, [ :uint, :float ], :void],
50
+ [:glMultiTexCoord1fvARB, [ :uint, :pointer ], :void],
51
+ [:glMultiTexCoord1iARB, [ :uint, :int ], :void],
52
+ [:glMultiTexCoord1ivARB, [ :uint, :pointer ], :void],
53
+ [:glMultiTexCoord1sARB, [ :uint, :short ], :void],
54
+ [:glMultiTexCoord1svARB, [ :uint, :pointer ], :void],
55
+ [:glMultiTexCoord2dARB, [ :uint, :double, :double ], :void],
56
+ [:glMultiTexCoord2dvARB, [ :uint, :pointer ], :void],
57
+ [:glMultiTexCoord2fARB, [ :uint, :float, :float ], :void],
58
+ [:glMultiTexCoord2fvARB, [ :uint, :pointer ], :void],
59
+ [:glMultiTexCoord2iARB, [ :uint, :int, :int ], :void],
60
+ [:glMultiTexCoord2ivARB, [ :uint, :pointer ], :void],
61
+ [:glMultiTexCoord2sARB, [ :uint, :short, :short ], :void],
62
+ [:glMultiTexCoord2svARB, [ :uint, :pointer ], :void],
63
+ [:glMultiTexCoord3dARB, [ :uint, :double, :double, :double ], :void],
64
+ [:glMultiTexCoord3dvARB, [ :uint, :pointer ], :void],
65
+ [:glMultiTexCoord3fARB, [ :uint, :float, :float, :float ], :void],
66
+ [:glMultiTexCoord3fvARB, [ :uint, :pointer ], :void],
67
+ [:glMultiTexCoord3iARB, [ :uint, :int, :int, :int ], :void],
68
+ [:glMultiTexCoord3ivARB, [ :uint, :pointer ], :void],
69
+ [:glMultiTexCoord3sARB, [ :uint, :short, :short, :short ], :void],
70
+ [:glMultiTexCoord3svARB, [ :uint, :pointer ], :void],
71
+ [:glMultiTexCoord4dARB, [ :uint, :double, :double, :double, :double ], :void],
72
+ [:glMultiTexCoord4dvARB, [ :uint, :pointer ], :void],
73
+ [:glMultiTexCoord4fARB, [ :uint, :float, :float, :float, :float ], :void],
74
+ [:glMultiTexCoord4fvARB, [ :uint, :pointer ], :void],
75
+ [:glMultiTexCoord4iARB, [ :uint, :int, :int, :int, :int ], :void],
76
+ [:glMultiTexCoord4ivARB, [ :uint, :pointer ], :void],
77
+ [:glMultiTexCoord4sARB, [ :uint, :short, :short, :short, :short ], :void],
78
+ [:glMultiTexCoord4svARB, [ :uint, :pointer ], :void]
79
+ end
80
+ end
@@ -0,0 +1,24 @@
1
+ module Roglew
2
+ module GL
3
+ CURRENT_QUERY_ARB ||= 0x8865
4
+ QUERY_COUNTER_BITS_ARB ||= 0x8864
5
+ QUERY_RESULT_ARB ||= 0x8866
6
+ QUERY_RESULT_AVAILABLE_ARB ||= 0x8867
7
+ SAMPLES_PASSED_ARB ||= 0x8914
8
+ end
9
+ end
10
+
11
+ module GL_ARB_occlusion_query
12
+ module RenderContext
13
+ include Roglew::GLExtension
14
+
15
+ functions [:glBeginQueryARB, [ :uint, :uint ], :void],
16
+ [:glDeleteQueriesARB, [ :int, :pointer ], :void],
17
+ [:glEndQueryARB, [ :uint ], :void],
18
+ [:glGenQueriesARB, [ :int, :pointer ], :void],
19
+ [:glGetQueryivARB, [ :uint, :uint, :pointer ], :void],
20
+ [:glGetQueryObjectivARB, [ :uint, :uint, :pointer ], :void],
21
+ [:glGetQueryObjectuivARB, [ :uint, :uint, :pointer ], :void],
22
+ [:glIsQueryARB, [ :uint ], :uchar]
23
+ end
24
+ end
@@ -0,0 +1,5 @@
1
+ module Roglew
2
+ module GL
3
+ ANY_SAMPLES_PASSED ||= 0x8C2F
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ module Roglew
2
+ module GL
3
+ PIXEL_PACK_BUFFER_ARB ||= 0x88EB
4
+ PIXEL_PACK_BUFFER_BINDING_ARB ||= 0x88ED
5
+ PIXEL_UNPACK_BUFFER_ARB ||= 0x88EC
6
+ PIXEL_UNPACK_BUFFER_BINDING_ARB ||= 0x88EF
7
+ SAMPLES_PASSED_ARB ||= 0x8914
8
+ end
9
+ end
@@ -0,0 +1,17 @@
1
+ module Roglew
2
+ module GL
3
+ POINT_DISTANCE_ATTENUATION_ARB ||= 0x8129
4
+ POINT_FADE_THRESHOLD_SIZE_ARB ||= 0x8128
5
+ POINT_SIZE_MAX_ARB ||= 0x8127
6
+ POINT_SIZE_MIN_ARB ||= 0x8126
7
+ end
8
+ end
9
+
10
+ module GL_ARB_point_parameters
11
+ module RenderContext
12
+ include Roglew::GLExtension
13
+
14
+ functions [:glPointParameterfARB, [ :uint, :float ], :void],
15
+ [:glPointParameterfvARB, [ :uint, :pointer ], :void]
16
+ end
17
+ end
@@ -0,0 +1,6 @@
1
+ module Roglew
2
+ module GL
3
+ COORD_REPLACE_ARB ||= 0x8862
4
+ POINT_SPRITE_ARB ||= 0x8861
5
+ end
6
+ end
@@ -0,0 +1,64 @@
1
+ module Roglew
2
+ module GL
3
+ ACTIVE_RESOURCES ||= 0x92F5
4
+ ACTIVE_VARIABLES ||= 0x9305
5
+ ARRAY_SIZE ||= 0x92FB
6
+ ARRAY_STRIDE ||= 0x92FE
7
+ ATOMIC_COUNTER_BUFFER_INDEX ||= 0x9301
8
+ BLOCK_INDEX ||= 0x92FD
9
+ BUFFER_BINDING ||= 0x9302
10
+ BUFFER_DATA_SIZE ||= 0x9303
11
+ BUFFER_VARIABLE ||= 0x92E5
12
+ COMPUTE_SUBROUTINE ||= 0x92ED
13
+ COMPUTE_SUBROUTINE_UNIFORM ||= 0x92F3
14
+ FRAGMENT_SUBROUTINE ||= 0x92EC
15
+ FRAGMENT_SUBROUTINE_UNIFORM ||= 0x92F2
16
+ GEOMETRY_SUBROUTINE ||= 0x92EB
17
+ GEOMETRY_SUBROUTINE_UNIFORM ||= 0x92F1
18
+ IS_PER_PATCH ||= 0x92E7
19
+ IS_ROW_MAJOR ||= 0x9300
20
+ LOCATION ||= 0x930E
21
+ LOCATION_INDEX ||= 0x930F
22
+ MATRIX_STRIDE ||= 0x92FF
23
+ MAX_NAME_LENGTH ||= 0x92F6
24
+ MAX_NUM_ACTIVE_VARIABLES ||= 0x92F7
25
+ MAX_NUM_COMPATIBLE_SUBROUTINES ||= 0x92F8
26
+ NAME_LENGTH ||= 0x92F9
27
+ NUM_ACTIVE_VARIABLES ||= 0x9304
28
+ OFFSET ||= 0x92FC
29
+ PROGRAM_INPUT ||= 0x92E3
30
+ PROGRAM_OUTPUT ||= 0x92E4
31
+ REFERENCED_BY_COMPUTE_SHADER ||= 0x930B
32
+ REFERENCED_BY_FRAGMENT_SHADER ||= 0x930A
33
+ REFERENCED_BY_GEOMETRY_SHADER ||= 0x9309
34
+ REFERENCED_BY_TESS_CONTROL_SHADER ||= 0x9307
35
+ REFERENCED_BY_TESS_EVALUATION_SHADER ||= 0x9308
36
+ REFERENCED_BY_VERTEX_SHADER ||= 0x9306
37
+ SHADER_STORAGE_BLOCK ||= 0x92E6
38
+ TESS_CONTROL_SUBROUTINE ||= 0x92E9
39
+ TESS_CONTROL_SUBROUTINE_UNIFORM ||= 0x92EF
40
+ TESS_EVALUATION_SUBROUTINE ||= 0x92EA
41
+ TESS_EVALUATION_SUBROUTINE_UNIFORM ||= 0x92F0
42
+ TOP_LEVEL_ARRAY_SIZE ||= 0x930C
43
+ TOP_LEVEL_ARRAY_STRIDE ||= 0x930D
44
+ TRANSFORM_FEEDBACK_VARYING ||= 0x92F4
45
+ TYPE ||= 0x92FA
46
+ UNIFORM ||= 0x92E1
47
+ UNIFORM_BLOCK ||= 0x92E2
48
+ VERTEX_SUBROUTINE ||= 0x92E8
49
+ VERTEX_SUBROUTINE_UNIFORM ||= 0x92EE
50
+ end
51
+ end
52
+
53
+ module GL_ARB_program_interface_query
54
+ module RenderContext
55
+ include Roglew::GLExtension
56
+
57
+ functions [:glGetProgramInterfaceiv, [ :uint, :uint, :uint, :pointer ], :void],
58
+ [:glGetProgramResourceIndex, [ :uint, :uint, :string ], :uint],
59
+ [:glGetProgramResourceiv, [ :uint, :uint, :uint, :int, :pointer, :int, :pointer, :pointer ], :void],
60
+ [:glGetProgramResourceLocation, [ :uint, :uint, :string ], :int],
61
+ [:glGetProgramResourceLocationIndex, [ :uint, :uint, :string ], :int],
62
+ [:glGetProgramResourceName, [ :uint, :uint, :uint, :int, :pointer, :string ], :void]
63
+ end
64
+ end
@@ -0,0 +1,16 @@
1
+ module Roglew
2
+ module GL
3
+ FIRST_VERTEX_CONVENTION ||= 0x8E4D
4
+ LAST_VERTEX_CONVENTION ||= 0x8E4E
5
+ PROVOKING_VERTEX ||= 0x8E4F
6
+ QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION ||= 0x8E4C
7
+ end
8
+ end
9
+
10
+ module GL_ARB_provoking_vertex
11
+ module RenderContext
12
+ include Roglew::GLExtension
13
+
14
+ functions [:glProvokingVertex, [ :uint ], :void]
15
+ end
16
+ end
@@ -0,0 +1,38 @@
1
+ module Roglew
2
+ module GL
3
+ CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB ||= 0x00000004
4
+ GUILTY_CONTEXT_RESET_ARB ||= 0x8253
5
+ INNOCENT_CONTEXT_RESET_ARB ||= 0x8254
6
+ LOSE_CONTEXT_ON_RESET_ARB ||= 0x8252
7
+ NO_RESET_NOTIFICATION_ARB ||= 0x8261
8
+ RESET_NOTIFICATION_STRATEGY_ARB ||= 0x8256
9
+ UNKNOWN_CONTEXT_RESET_ARB ||= 0x8255
10
+ end
11
+ end
12
+
13
+ module GL_ARB_robustness
14
+ module RenderContext
15
+ include Roglew::GLExtension
16
+
17
+ functions [:glGetGraphicsResetStatusARB, [ ], :uint],
18
+ [:glGetnColorTableARB, [ :uint, :uint, :uint, :int, :pointer ], :void],
19
+ [:glGetnCompressedTexImageARB, [ :uint, :int, :int, :pointer ], :void],
20
+ [:glGetnConvolutionFilterARB, [ :uint, :uint, :uint, :int, :pointer ], :void],
21
+ [:glGetnHistogramARB, [ :uint, :uchar, :uint, :uint, :int, :pointer ], :void],
22
+ [:glGetnMapdvARB, [ :uint, :uint, :int, :pointer ], :void],
23
+ [:glGetnMapfvARB, [ :uint, :uint, :int, :pointer ], :void],
24
+ [:glGetnMapivARB, [ :uint, :uint, :int, :pointer ], :void],
25
+ [:glGetnMinmaxARB, [ :uint, :uchar, :uint, :uint, :int, :pointer ], :void],
26
+ [:glGetnPixelMapfvARB, [ :uint, :int, :pointer ], :void],
27
+ [:glGetnPixelMapuivARB, [ :uint, :int, :pointer ], :void],
28
+ [:glGetnPixelMapusvARB, [ :uint, :int, :pointer ], :void],
29
+ [:glGetnPolygonStippleARB, [ :int, :pointer ], :void],
30
+ [:glGetnSeparableFilterARB, [ :uint, :uint, :uint, :int, :pointer, :int, :pointer, :pointer ], :void],
31
+ [:glGetnTexImageARB, [ :uint, :int, :uint, :uint, :int, :pointer ], :void],
32
+ [:glGetnUniformdvARB, [ :uint, :int, :int, :pointer ], :void],
33
+ [:glGetnUniformfvARB, [ :uint, :int, :int, :pointer ], :void],
34
+ [:glGetnUniformivARB, [ :uint, :int, :int, :pointer ], :void],
35
+ [:glGetnUniformuivARB, [ :uint, :int, :int, :pointer ], :void],
36
+ [:glReadnPixelsARB, [ :int, :int, :int, :int, :uint, :uint, :int, :pointer ], :void]
37
+ end
38
+ end
@@ -0,0 +1,15 @@
1
+ module Roglew
2
+ module GL
3
+ MIN_SAMPLE_SHADING_VALUE_ARB ||= 0x8C37
4
+ SAMPLE_SHADING_ARB ||= 0x8C36
5
+ end
6
+ end
7
+
8
+ module GL_ARB_sample_shading
9
+ module RenderContext
10
+ include Roglew::GLExtension
11
+
12
+ functions [:glMinSampleShadingARB, [ :float ], :void]
13
+ end
14
+ end
15
+
@@ -0,0 +1,27 @@
1
+ module Roglew
2
+ module GL
3
+ SAMPLER_BINDING ||= 0x8919
4
+ end
5
+ end
6
+
7
+ module GL_ARB_sampler_objects
8
+ module RenderContext
9
+ include Roglew::GLExtension
10
+
11
+ functions [:glBindSampler, [ :uint, :uint ], :void],
12
+ [:glDeleteSamplers, [ :int, :pointer ], :void],
13
+ [:glGenSamplers, [ :int, :pointer ], :void],
14
+ [:glGetSamplerParameterfv, [ :uint, :uint, :pointer ], :void],
15
+ [:glGetSamplerParameterIiv, [ :uint, :uint, :pointer ], :void],
16
+ [:glGetSamplerParameterIuiv, [ :uint, :uint, :pointer ], :void],
17
+ [:glGetSamplerParameteriv, [ :uint, :uint, :pointer ], :void],
18
+ [:glIsSampler, [ :uint ], :uchar],
19
+ [:glSamplerParameterf, [ :uint, :uint, :float ], :void],
20
+ [:glSamplerParameterfv, [ :uint, :uint, :pointer ], :void],
21
+ [:glSamplerParameteri, [ :uint, :uint, :int ], :void],
22
+ [:glSamplerParameterIiv, [ :uint, :uint, :pointer ], :void],
23
+ [:glSamplerParameterIuiv, [ :uint, :uint, :pointer ], :void],
24
+ [:glSamplerParameteriv, [ :uint, :uint, :pointer ], :void]
25
+ end
26
+ end
27
+
@@ -0,0 +1,5 @@
1
+ module Roglew
2
+ module GL
3
+ TEXTURE_CUBE_MAP_SEAMLESS ||= 0x884F
4
+ end
5
+ end
@@ -0,0 +1,81 @@
1
+ module Roglew
2
+ module GL
3
+ ACTIVE_PROGRAM ||= 0x8259
4
+ ALL_SHADER_BITS ||= 0xFFFFFFFF
5
+ FRAGMENT_SHADER_BIT ||= 0x00000002
6
+ GEOMETRY_SHADER_BIT ||= 0x00000004
7
+ PROGRAM_PIPELINE_BINDING ||= 0x825A
8
+ PROGRAM_SEPARABLE ||= 0x8258
9
+ TESS_CONTROL_SHADER_BIT ||= 0x00000008
10
+ TESS_EVALUATION_SHADER_BIT ||= 0x00000010
11
+ VERTEX_SHADER_BIT ||= 0x00000001
12
+ end
13
+ end
14
+
15
+ module GL_ARB_separate_shader_objects
16
+ module RenderContext
17
+ include Roglew::GLExtension
18
+
19
+ functions [:glActiveShaderProgram, [ :uint, :uint ], :void],
20
+ [:glBindProgramPipeline, [ :uint ], :void],
21
+ [:glCreateShaderProgramv, [ :uint, :int, :pointer ], :uint],
22
+ [:glDeleteProgramPipelines, [ :int, :pointer ], :void],
23
+ [:glGenProgramPipelines, [ :int, :pointer ], :void],
24
+ [:glGetProgramPipelineInfoLog, [ :uint, :int, :pointer, :string ], :void],
25
+ [:glGetProgramPipelineiv, [ :uint, :uint, :pointer ], :void],
26
+ [:glIsProgramPipeline, [ :uint ], :uchar],
27
+ [:glProgramUniform1d, [ :uint, :int, :double ], :void],
28
+ [:glProgramUniform1dv, [ :uint, :int, :int, :pointer ], :void],
29
+ [:glProgramUniform1f, [ :uint, :int, :float ], :void],
30
+ [:glProgramUniform1fv, [ :uint, :int, :int, :pointer ], :void],
31
+ [:glProgramUniform1i, [ :uint, :int, :int ], :void],
32
+ [:glProgramUniform1iv, [ :uint, :int, :int, :pointer ], :void],
33
+ [:glProgramUniform1ui, [ :uint, :int, :uint ], :void],
34
+ [:glProgramUniform1uiv, [ :uint, :int, :int, :pointer ], :void],
35
+ [:glProgramUniform2d, [ :uint, :int, :double, :double ], :void],
36
+ [:glProgramUniform2dv, [ :uint, :int, :int, :pointer ], :void],
37
+ [:glProgramUniform2f, [ :uint, :int, :float, :float ], :void],
38
+ [:glProgramUniform2fv, [ :uint, :int, :int, :pointer ], :void],
39
+ [:glProgramUniform2i, [ :uint, :int, :int, :int ], :void],
40
+ [:glProgramUniform2iv, [ :uint, :int, :int, :pointer ], :void],
41
+ [:glProgramUniform2ui, [ :uint, :int, :uint, :uint ], :void],
42
+ [:glProgramUniform2uiv, [ :uint, :int, :int, :pointer ], :void],
43
+ [:glProgramUniform3d, [ :uint, :int, :double, :double, :double ], :void],
44
+ [:glProgramUniform3dv, [ :uint, :int, :int, :pointer ], :void],
45
+ [:glProgramUniform3f, [ :uint, :int, :float, :float, :float ], :void],
46
+ [:glProgramUniform3fv, [ :uint, :int, :int, :pointer ], :void],
47
+ [:glProgramUniform3i, [ :uint, :int, :int, :int, :int ], :void],
48
+ [:glProgramUniform3iv, [ :uint, :int, :int, :pointer ], :void],
49
+ [:glProgramUniform3ui, [ :uint, :int, :uint, :uint, :uint ], :void],
50
+ [:glProgramUniform3uiv, [ :uint, :int, :int, :pointer ], :void],
51
+ [:glProgramUniform4d, [ :uint, :int, :double, :double, :double, :double ], :void],
52
+ [:glProgramUniform4dv, [ :uint, :int, :int, :pointer ], :void],
53
+ [:glProgramUniform4f, [ :uint, :int, :float, :float, :float, :float ], :void],
54
+ [:glProgramUniform4fv, [ :uint, :int, :int, :pointer ], :void],
55
+ [:glProgramUniform4i, [ :uint, :int, :int, :int, :int, :int ], :void],
56
+ [:glProgramUniform4iv, [ :uint, :int, :int, :pointer ], :void],
57
+ [:glProgramUniform4ui, [ :uint, :int, :uint, :uint, :uint, :uint ], :void],
58
+ [:glProgramUniform4uiv, [ :uint, :int, :int, :pointer ], :void],
59
+ [:glProgramUniformMatrix2dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
60
+ [:glProgramUniformMatrix2fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
61
+ [:glProgramUniformMatrix2x3dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
62
+ [:glProgramUniformMatrix2x3fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
63
+ [:glProgramUniformMatrix2x4dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
64
+ [:glProgramUniformMatrix2x4fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
65
+ [:glProgramUniformMatrix3dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
66
+ [:glProgramUniformMatrix3fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
67
+ [:glProgramUniformMatrix3x2dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
68
+ [:glProgramUniformMatrix3x2fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
69
+ [:glProgramUniformMatrix3x4dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
70
+ [:glProgramUniformMatrix3x4fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
71
+ [:glProgramUniformMatrix4dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
72
+ [:glProgramUniformMatrix4fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
73
+ [:glProgramUniformMatrix4x2dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
74
+ [:glProgramUniformMatrix4x2fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
75
+ [:glProgramUniformMatrix4x3dv, [ :uint, :int, :int, :uchar, :pointer ], :void],
76
+ [:glProgramUniformMatrix4x3fv, [ :uint, :int, :int, :uchar, :pointer ], :void],
77
+ [:glUseProgramStages, [ :uint, :uint, :uint ], :void],
78
+ [:glValidateProgramPipeline, [ :uint ], :void]
79
+ end
80
+ end
81
+
@@ -0,0 +1,42 @@
1
+ module Roglew
2
+ module GL
3
+ ACTIVE_ATOMIC_COUNTER_BUFFERS ||= 0x92D9
4
+ ATOMIC_COUNTER_BUFFER ||= 0x92C0
5
+ ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES ||= 0x92C6
6
+ ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS ||= 0x92C5
7
+ ATOMIC_COUNTER_BUFFER_BINDING ||= 0x92C1
8
+ ATOMIC_COUNTER_BUFFER_DATA_SIZE ||= 0x92C4
9
+ ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER ||= 0x92CB
10
+ ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER ||= 0x92CA
11
+ ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER ||= 0x92C8
12
+ ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER ||= 0x92C9
13
+ ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER ||= 0x92C7
14
+ ATOMIC_COUNTER_BUFFER_SIZE ||= 0x92C3
15
+ ATOMIC_COUNTER_BUFFER_START ||= 0x92C2
16
+ MAX_ATOMIC_COUNTER_BUFFER_BINDINGS ||= 0x92DC
17
+ MAX_ATOMIC_COUNTER_BUFFER_SIZE ||= 0x92D8
18
+ MAX_COMBINED_ATOMIC_COUNTER_BUFFERS ||= 0x92D1
19
+ MAX_COMBINED_ATOMIC_COUNTERS ||= 0x92D7
20
+ MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS ||= 0x92D0
21
+ MAX_FRAGMENT_ATOMIC_COUNTERS ||= 0x92D6
22
+ MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS ||= 0x92CF
23
+ MAX_GEOMETRY_ATOMIC_COUNTERS ||= 0x92D5
24
+ MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS ||= 0x92CD
25
+ MAX_TESS_CONTROL_ATOMIC_COUNTERS ||= 0x92D3
26
+ MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS ||= 0x92CE
27
+ MAX_TESS_EVALUATION_ATOMIC_COUNTERS ||= 0x92D4
28
+ MAX_VERTEX_ATOMIC_COUNTER_BUFFERS ||= 0x92CC
29
+ MAX_VERTEX_ATOMIC_COUNTERS ||= 0x92D2
30
+ UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX ||= 0x92DA
31
+ UNSIGNED_INT_ATOMIC_COUNTER ||= 0x92DB
32
+ end
33
+ end
34
+
35
+ module GL_ARB_shader_atomic_counters
36
+ module RenderContext
37
+ include Roglew::GLExtension
38
+
39
+ functions [:glGetActiveAtomicCounterBufferiv, [ :uint, :uint, :uint, :pointer ], :void]
40
+ end
41
+ end
42
+
@@ -0,0 +1,78 @@
1
+ module Roglew
2
+ module GL
3
+ ALL_BARRIER_BITS ||= 0xFFFFFFFF
4
+ ATOMIC_COUNTER_BARRIER_BIT ||= 0x00001000
5
+ BUFFER_UPDATE_BARRIER_BIT ||= 0x00000200
6
+ COMMAND_BARRIER_BIT ||= 0x00000040
7
+ ELEMENT_ARRAY_BARRIER_BIT ||= 0x00000002
8
+ FRAMEBUFFER_BARRIER_BIT ||= 0x00000400
9
+ IMAGE_1D ||= 0x904C
10
+ IMAGE_1D_ARRAY ||= 0x9052
11
+ IMAGE_2D ||= 0x904D
12
+ IMAGE_2D_ARRAY ||= 0x9053
13
+ IMAGE_2D_MULTISAMPLE ||= 0x9055
14
+ IMAGE_2D_MULTISAMPLE_ARRAY ||= 0x9056
15
+ IMAGE_2D_RECT ||= 0x904F
16
+ IMAGE_3D ||= 0x904E
17
+ IMAGE_BINDING_ACCESS ||= 0x8F3E
18
+ IMAGE_BINDING_FORMAT ||= 0x906E
19
+ IMAGE_BINDING_LAYER ||= 0x8F3D
20
+ IMAGE_BINDING_LAYERED ||= 0x8F3C
21
+ IMAGE_BINDING_LEVEL ||= 0x8F3B
22
+ IMAGE_BINDING_NAME ||= 0x8F3A
23
+ IMAGE_BUFFER ||= 0x9051
24
+ IMAGE_CUBE ||= 0x9050
25
+ IMAGE_CUBE_MAP_ARRAY ||= 0x9054
26
+ IMAGE_FORMAT_COMPATIBILITY_BY_CLASS ||= 0x90C9
27
+ IMAGE_FORMAT_COMPATIBILITY_BY_SIZE ||= 0x90C8
28
+ IMAGE_FORMAT_COMPATIBILITY_TYPE ||= 0x90C7
29
+ INT_IMAGE_1D ||= 0x9057
30
+ INT_IMAGE_1D_ARRAY ||= 0x905D
31
+ INT_IMAGE_2D ||= 0x9058
32
+ INT_IMAGE_2D_ARRAY ||= 0x905E
33
+ INT_IMAGE_2D_MULTISAMPLE ||= 0x9060
34
+ INT_IMAGE_2D_MULTISAMPLE_ARRAY ||= 0x9061
35
+ INT_IMAGE_2D_RECT ||= 0x905A
36
+ INT_IMAGE_3D ||= 0x9059
37
+ INT_IMAGE_BUFFER ||= 0x905C
38
+ INT_IMAGE_CUBE ||= 0x905B
39
+ INT_IMAGE_CUBE_MAP_ARRAY ||= 0x905F
40
+ MAX_COMBINED_IMAGE_UNIFORMS ||= 0x90CF
41
+ MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS ||= 0x8F39
42
+ MAX_FRAGMENT_IMAGE_UNIFORMS ||= 0x90CE
43
+ MAX_GEOMETRY_IMAGE_UNIFORMS ||= 0x90CD
44
+ MAX_IMAGE_SAMPLES ||= 0x906D
45
+ MAX_IMAGE_UNITS ||= 0x8F38
46
+ MAX_TESS_CONTROL_IMAGE_UNIFORMS ||= 0x90CB
47
+ MAX_TESS_EVALUATION_IMAGE_UNIFORMS ||= 0x90CC
48
+ MAX_VERTEX_IMAGE_UNIFORMS ||= 0x90CA
49
+ PIXEL_BUFFER_BARRIER_BIT ||= 0x00000080
50
+ SHADER_IMAGE_ACCESS_BARRIER_BIT ||= 0x00000020
51
+ TEXTURE_FETCH_BARRIER_BIT ||= 0x00000008
52
+ TEXTURE_UPDATE_BARRIER_BIT ||= 0x00000100
53
+ TRANSFORM_FEEDBACK_BARRIER_BIT ||= 0x00000800
54
+ UNIFORM_BARRIER_BIT ||= 0x00000004
55
+ UNSIGNED_INT_IMAGE_1D ||= 0x9062
56
+ UNSIGNED_INT_IMAGE_1D_ARRAY ||= 0x9068
57
+ UNSIGNED_INT_IMAGE_2D ||= 0x9063
58
+ UNSIGNED_INT_IMAGE_2D_ARRAY ||= 0x9069
59
+ UNSIGNED_INT_IMAGE_2D_MULTISAMPLE ||= 0x906B
60
+ UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY ||= 0x906C
61
+ UNSIGNED_INT_IMAGE_2D_RECT ||= 0x9065
62
+ UNSIGNED_INT_IMAGE_3D ||= 0x9064
63
+ UNSIGNED_INT_IMAGE_BUFFER ||= 0x9067
64
+ UNSIGNED_INT_IMAGE_CUBE ||= 0x9066
65
+ UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY ||= 0x906A
66
+ VERTEX_ATTRIB_ARRAY_BARRIER_BIT ||= 0x00000001
67
+ end
68
+ end
69
+
70
+ module GL_ARB_shader_image_load_store
71
+ module RenderContext
72
+ include Roglew::GLExtension
73
+
74
+ functions [:glBindImageTexture, [ :uint, :uint, :int, :uchar, :int, :uint, :uint ], :void],
75
+ [:glMemoryBarrier, [ :uint ], :void]
76
+ end
77
+ end
78
+
@@ -0,0 +1,85 @@
1
+ module Roglew
2
+ module GL
3
+ BOOL_ARB ||= 0x8B56
4
+ BOOL_VEC2_ARB ||= 0x8B57
5
+ BOOL_VEC3_ARB ||= 0x8B58
6
+ BOOL_VEC4_ARB ||= 0x8B59
7
+ FLOAT_MAT2_ARB ||= 0x8B5A
8
+ FLOAT_MAT3_ARB ||= 0x8B5B
9
+ FLOAT_MAT4_ARB ||= 0x8B5C
10
+ FLOAT_VEC2_ARB ||= 0x8B50
11
+ FLOAT_VEC3_ARB ||= 0x8B51
12
+ FLOAT_VEC4_ARB ||= 0x8B52
13
+ INT_VEC2_ARB ||= 0x8B53
14
+ INT_VEC3_ARB ||= 0x8B54
15
+ INT_VEC4_ARB ||= 0x8B55
16
+ OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB ||= 0x8B87
17
+ OBJECT_ACTIVE_UNIFORMS_ARB ||= 0x8B86
18
+ OBJECT_ATTACHED_OBJECTS_ARB ||= 0x8B85
19
+ OBJECT_COMPILE_STATUS_ARB ||= 0x8B81
20
+ OBJECT_DELETE_STATUS_ARB ||= 0x8B80
21
+ OBJECT_INFO_LOG_LENGTH_ARB ||= 0x8B84
22
+ OBJECT_LINK_STATUS_ARB ||= 0x8B82
23
+ OBJECT_SHADER_SOURCE_LENGTH_ARB ||= 0x8B88
24
+ OBJECT_SUBTYPE_ARB ||= 0x8B4F
25
+ OBJECT_TYPE_ARB ||= 0x8B4E
26
+ OBJECT_VALIDATE_STATUS_ARB ||= 0x8B83
27
+ PROGRAM_OBJECT_ARB ||= 0x8B40
28
+ SAMPLER_1D_ARB ||= 0x8B5D
29
+ SAMPLER_1D_SHADOW_ARB ||= 0x8B61
30
+ SAMPLER_2D_ARB ||= 0x8B5E
31
+ SAMPLER_2D_RECT_ARB ||= 0x8B63
32
+ SAMPLER_2D_RECT_SHADOW_ARB ||= 0x8B64
33
+ SAMPLER_2D_SHADOW_ARB ||= 0x8B62
34
+ SAMPLER_3D_ARB ||= 0x8B5F
35
+ SAMPLER_CUBE_ARB ||= 0x8B60
36
+ SHADER_OBJECT_ARB ||= 0x8B48
37
+ end
38
+ end
39
+
40
+ module GL_ARB_shader_objects
41
+ module RenderContext
42
+ include Roglew::GLExtension
43
+
44
+ functions [:glAttachObjectARB, [ :uint, :uint ], :void],
45
+ [:glCompileShaderARB, [ :uint ], :void],
46
+ [:glCreateProgramObjectARB, [ ], :uint],
47
+ [:glCreateShaderObjectARB, [ :uint ], :uint],
48
+ [:glDeleteObjectARB, [ :uint ], :void],
49
+ [:glDetachObjectARB, [ :uint, :uint ], :void],
50
+ [:glGetActiveUniformARB, [ :uint, :uint, :int, :pointer, :pointer, :pointer, :string ], :void],
51
+ [:glGetAttachedObjectsARB, [ :uint, :int, :pointer, :pointer ], :void],
52
+ [:glGetHandleARB, [ :uint ], :uint],
53
+ [:glGetInfoLogARB, [ :uint, :int, :pointer, :string ], :void],
54
+ [:glGetObjectParameterfvARB, [ :uint, :uint, :pointer ], :void],
55
+ [:glGetObjectParameterivARB, [ :uint, :uint, :pointer ], :void],
56
+ [:glGetShaderSourceARB, [ :uint, :int, :pointer, :string ], :void],
57
+ [:glGetUniformfvARB, [ :uint, :int, :pointer ], :void],
58
+ [:glGetUniformivARB, [ :uint, :int, :pointer ], :void],
59
+ [:glGetUniformLocationARB, [ :uint, :string ], :int],
60
+ [:glLinkProgramARB, [ :uint ], :void],
61
+ [:glShaderSourceARB, [ :uint, :int, :pointer, :pointer ], :void],
62
+ [:glUniform1fARB, [ :int, :float ], :void],
63
+ [:glUniform1fvARB, [ :int, :int, :pointer ], :void],
64
+ [:glUniform1iARB, [ :int, :int ], :void],
65
+ [:glUniform1ivARB, [ :int, :int, :pointer ], :void],
66
+ [:glUniform2fARB, [ :int, :float, :float ], :void],
67
+ [:glUniform2fvARB, [ :int, :int, :pointer ], :void],
68
+ [:glUniform2iARB, [ :int, :int, :int ], :void],
69
+ [:glUniform2ivARB, [ :int, :int, :pointer ], :void],
70
+ [:glUniform3fARB, [ :int, :float, :float, :float ], :void],
71
+ [:glUniform3fvARB, [ :int, :int, :pointer ], :void],
72
+ [:glUniform3iARB, [ :int, :int, :int, :int ], :void],
73
+ [:glUniform3ivARB, [ :int, :int, :pointer ], :void],
74
+ [:glUniform4fARB, [ :int, :float, :float, :float, :float ], :void],
75
+ [:glUniform4fvARB, [ :int, :int, :pointer ], :void],
76
+ [:glUniform4iARB, [ :int, :int, :int, :int, :int ], :void],
77
+ [:glUniform4ivARB, [ :int, :int, :pointer ], :void],
78
+ [:glUniformMatrix2fvARB, [ :int, :int, :uchar, :pointer ], :void],
79
+ [:glUniformMatrix3fvARB, [ :int, :int, :uchar, :pointer ], :void],
80
+ [:glUniformMatrix4fvARB, [ :int, :int, :uchar, :pointer ], :void],
81
+ [:glUseProgramObjectARB, [ :uint ], :void],
82
+ [:glValidateProgramARB, [ :uint ], :void]
83
+ end
84
+ end
85
+
@@ -0,0 +1,29 @@
1
+ module Roglew
2
+ module GL
3
+ MAX_COMBINED_SHADER_OUTPUT_RESOURCES ||= 0x8F39
4
+ MAX_COMBINED_SHADER_STORAGE_BLOCKS ||= 0x90DC
5
+ MAX_COMPUTE_SHADER_STORAGE_BLOCKS ||= 0x90DB
6
+ MAX_FRAGMENT_SHADER_STORAGE_BLOCKS ||= 0x90DA
7
+ MAX_GEOMETRY_SHADER_STORAGE_BLOCKS ||= 0x90D7
8
+ MAX_SHADER_STORAGE_BLOCK_SIZE ||= 0x90DE
9
+ MAX_SHADER_STORAGE_BUFFER_BINDINGS ||= 0x90DD
10
+ MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS ||= 0x90D8
11
+ MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS ||= 0x90D9
12
+ MAX_VERTEX_SHADER_STORAGE_BLOCKS ||= 0x90D6
13
+ SHADER_STORAGE_BARRIER_BIT ||= 0x2000
14
+ SHADER_STORAGE_BUFFER ||= 0x90D2
15
+ SHADER_STORAGE_BUFFER_BINDING ||= 0x90D3
16
+ SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT ||= 0x90DF
17
+ SHADER_STORAGE_BUFFER_SIZE ||= 0x90D5
18
+ SHADER_STORAGE_BUFFER_START ||= 0x90D4
19
+ end
20
+ end
21
+
22
+ module GL_ARB_shader_storage_buffer_object
23
+ module RenderContext
24
+ include Roglew::GLExtension
25
+
26
+ functions [:glShaderStorageBlockBinding, [ :uint, :uint, :uint ], :void]
27
+ end
28
+ end
29
+