opengl-definitions 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. checksums.yaml +5 -5
  2. data/lib/opengl-definitions/extensions/GLX_EXT_libglvnd.rb +3 -0
  3. data/lib/opengl-definitions/extensions/GLX_NV_robustness_video_memory_purge.rb +3 -0
  4. data/lib/opengl-definitions/extensions/GL_AMD_framebuffer_sample_positions.rb +13 -0
  5. data/lib/opengl-definitions/extensions/GL_AMD_gpu_shader_half_float.rb +15 -0
  6. data/lib/opengl-definitions/extensions/GL_ARB_direct_state_access.rb +1 -1
  7. data/lib/opengl-definitions/extensions/GL_EXT_clear_texture.rb +6 -0
  8. data/lib/opengl-definitions/extensions/GL_EXT_clip_cull_distance.rb +13 -0
  9. data/lib/opengl-definitions/extensions/GL_EXT_draw_transform_feedback.rb +6 -0
  10. data/lib/opengl-definitions/extensions/GL_EXT_protected_textures.rb +4 -0
  11. data/lib/opengl-definitions/extensions/GL_EXT_shader_pixel_local_storage2.rb +11 -0
  12. data/lib/opengl-definitions/extensions/GL_EXT_window_rectangles.rb +12 -0
  13. data/lib/opengl-definitions/extensions/GL_IMG_bindless_texture.rb +10 -0
  14. data/lib/opengl-definitions/extensions/GL_IMG_framebuffer_downsample.rb +11 -0
  15. data/lib/opengl-definitions/extensions/GL_IMG_texture_filter_cubic.rb +5 -0
  16. data/lib/opengl-definitions/extensions/GL_INTEL_conservative_rasterization.rb +3 -0
  17. data/lib/opengl-definitions/extensions/GL_NV_clip_space_w_scaling.rb +9 -0
  18. data/lib/opengl-definitions/extensions/GL_NV_conservative_raster_pre_snap_triangles.rb +9 -0
  19. data/lib/opengl-definitions/extensions/GL_NV_robustness_video_memory_purge.rb +3 -0
  20. data/lib/opengl-definitions/extensions/GL_NV_viewport_swizzle.rb +18 -0
  21. data/lib/opengl-definitions/extensions/GL_OES_viewport_array.rb +25 -0
  22. data/lib/opengl-definitions/extensions/GL_OVR_multiview.rb +1 -0
  23. data/lib/opengl-definitions/extensions/GL_OVR_multiview_multisampled_render_to_texture.rb +5 -0
  24. data/lib/opengl-definitions/extensions/WGL_EXT_colorspace.rb +5 -0
  25. data/lib/opengl-definitions/typedefs.rb +37 -37
  26. data/lib/opengl-definitions/version.rb +1 -1
  27. data/lib/opengl-definitions/versions/GL_VERSION_4_4.rb +8 -6
  28. data/lib/opengl-definitions/versions/GL_VERSION_4_5.rb +6 -0
  29. data/lib/opengl-definitions/versions/GL_VERSION_4_6.rb +15 -0
  30. metadata +31 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 466a660d22830ea9eb5264073aefb5878a30a8fb
4
- data.tar.gz: 5573e181eecf668d983f9c93bc93ffc0a46193fe
2
+ SHA256:
3
+ metadata.gz: 5a601b7863798dc76d7fc897693e77ca840072965ddb3bb455cf035a7ed82e36
4
+ data.tar.gz: b628cf2ec9a8d7c75460c0d6a7e526e3cf83b999db3a9f47fa3c53f176a5faac
5
5
  SHA512:
6
- metadata.gz: c8a05a18207a9011be05fa1ae04466b420d1ece40322468763e16e6323069db5d5e5a991a11f4f858fca0e3a9d1a8dbb660925ee90d7dc204256e5fc1a17b4d3
7
- data.tar.gz: 193cae8315b6a8254c54e00002ba4c98812fad02eebd9fdc04dc2fd3736f2c67d1be422bf36abcf85379cf529d287a4ecec62e8b90fc8891f622f2423bbac65c
6
+ metadata.gz: a0c8ffb0fd2fc1923aa50cb96f8bdbd34caceff3f8f7860ca47c2d5989dea2d0b54390739424beb899669516a1cff3b705004a59bc198a2a956568ad7a68d792
7
+ data.tar.gz: a2df25c978a4431477f846169a32aa54a6c53698ad86f607698dc3adb90513b4112921b031ec44581965498986c080edc0fbd92e0d618e5758880d2c1b6094f4
@@ -0,0 +1,3 @@
1
+ module GLX_EXT_libglvnd
2
+ GLX_VENDOR_NAMES_EXT = 0x20F6
3
+ end
@@ -0,0 +1,3 @@
1
+ module GLX_NV_robustness_video_memory_purge
2
+ GLX_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV = 0x20F7
3
+ end
@@ -0,0 +1,13 @@
1
+ module GL_AMD_framebuffer_sample_positions
2
+ GL_SUBSAMPLE_DISTANCE_AMD = 0x883F
3
+ GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD = 0x91AE
4
+ GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD = 0x91AF
5
+ GL_ALL_PIXELS_AMD = 0xFFFFFFFF
6
+
7
+ @functions = {
8
+ glFramebufferSamplePositionsfvAMD: [ :void, :GLenum, :GLuint, :GLuint, :pointer ].freeze,
9
+ glNamedFramebufferSamplePositionsfvAMD: [ :void, :GLuint, :GLuint, :GLuint, :pointer ].freeze,
10
+ glGetFramebufferParameterfvAMD: [ :void, :GLenum, :GLenum, :GLuint, :GLuint, :GLsizei, :pointer ].freeze,
11
+ glGetNamedFramebufferParameterfvAMD: [ :void, :GLenum, :GLenum, :GLuint, :GLuint, :GLsizei, :pointer ].freeze,
12
+ }.freeze
13
+ end
@@ -0,0 +1,15 @@
1
+ module GL_AMD_gpu_shader_half_float
2
+ GL_FLOAT16_NV = 0x8FF8
3
+ GL_FLOAT16_VEC2_NV = 0x8FF9
4
+ GL_FLOAT16_VEC3_NV = 0x8FFA
5
+ GL_FLOAT16_VEC4_NV = 0x8FFB
6
+ GL_FLOAT16_MAT2_AMD = 0x91C5
7
+ GL_FLOAT16_MAT3_AMD = 0x91C6
8
+ GL_FLOAT16_MAT4_AMD = 0x91C7
9
+ GL_FLOAT16_MAT2x3_AMD = 0x91C8
10
+ GL_FLOAT16_MAT2x4_AMD = 0x91C9
11
+ GL_FLOAT16_MAT3x2_AMD = 0x91CA
12
+ GL_FLOAT16_MAT3x4_AMD = 0x91CB
13
+ GL_FLOAT16_MAT4x2_AMD = 0x91CC
14
+ GL_FLOAT16_MAT4x3_AMD = 0x91CD
15
+ end
@@ -48,7 +48,7 @@ module GL_ARB_direct_state_access
48
48
  glClearNamedFramebufferiv: [ :void, :GLuint, :GLenum, :GLint, :pointer ].freeze,
49
49
  glClearNamedFramebufferuiv: [ :void, :GLuint, :GLenum, :GLint, :pointer ].freeze,
50
50
  glClearNamedFramebufferfv: [ :void, :GLuint, :GLenum, :GLint, :pointer ].freeze,
51
- glClearNamedFramebufferfi: [ :void, :GLuint, :GLenum, :GLfloat, :GLint ].freeze,
51
+ glClearNamedFramebufferfi: [ :void, :GLuint, :GLenum, :GLint, :GLfloat, :GLint ].freeze,
52
52
  glBlitNamedFramebuffer: [ :void, :GLuint, :GLuint, :GLint, :GLint, :GLint, :GLint, :GLint, :GLint, :GLint, :GLint, :GLbitfield, :GLenum ].freeze,
53
53
  glCheckNamedFramebufferStatus: [ :GLenum, :GLuint, :GLenum ].freeze,
54
54
  glGetNamedFramebufferParameteriv: [ :void, :GLuint, :GLenum, :pointer ].freeze,
@@ -0,0 +1,6 @@
1
+ module GL_EXT_clear_texture
2
+ @functions = {
3
+ glClearTexImageEXT: [ :void, :GLuint, :GLint, :GLenum, :GLenum, :pointer ].freeze,
4
+ glClearTexSubImageEXT: [ :void, :GLuint, :GLint, :GLint, :GLint, :GLint, :GLsizei, :GLsizei, :GLsizei, :GLenum, :GLenum, :pointer ].freeze,
5
+ }.freeze
6
+ end
@@ -0,0 +1,13 @@
1
+ module GL_EXT_clip_cull_distance
2
+ GL_MAX_CLIP_DISTANCES_EXT = 0x0D32
3
+ GL_MAX_CULL_DISTANCES_EXT = 0x82F9
4
+ GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT = 0x82FA
5
+ GL_CLIP_DISTANCE0_EXT = 0x3000
6
+ GL_CLIP_DISTANCE1_EXT = 0x3001
7
+ GL_CLIP_DISTANCE2_EXT = 0x3002
8
+ GL_CLIP_DISTANCE3_EXT = 0x3003
9
+ GL_CLIP_DISTANCE4_EXT = 0x3004
10
+ GL_CLIP_DISTANCE5_EXT = 0x3005
11
+ GL_CLIP_DISTANCE6_EXT = 0x3006
12
+ GL_CLIP_DISTANCE7_EXT = 0x3007
13
+ end
@@ -0,0 +1,6 @@
1
+ module GL_EXT_draw_transform_feedback
2
+ @functions = {
3
+ glDrawTransformFeedbackEXT: [ :void, :GLenum, :GLuint ].freeze,
4
+ glDrawTransformFeedbackInstancedEXT: [ :void, :GLenum, :GLuint, :GLsizei ].freeze,
5
+ }.freeze
6
+ end
@@ -0,0 +1,4 @@
1
+ module GL_EXT_protected_textures
2
+ GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT = 0x00000010
3
+ GL_TEXTURE_PROTECTED_EXT = 0x8BFA
4
+ end
@@ -0,0 +1,11 @@
1
+ module GL_EXT_shader_pixel_local_storage2
2
+ GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT = 0x9650
3
+ GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT = 0x9651
4
+ GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT = 0x9652
5
+
6
+ @functions = {
7
+ glFramebufferPixelLocalStorageSizeEXT: [ :void, :GLuint, :GLsizei ].freeze,
8
+ glGetFramebufferPixelLocalStorageSizeEXT: [ :GLsizei, :GLuint ].freeze,
9
+ glClearPixelLocalStorageuiEXT: [ :void, :GLsizei, :GLsizei, :pointer ].freeze,
10
+ }.freeze
11
+ end
@@ -0,0 +1,12 @@
1
+ module GL_EXT_window_rectangles
2
+ GL_INCLUSIVE_EXT = 0x8F10
3
+ GL_EXCLUSIVE_EXT = 0x8F11
4
+ GL_WINDOW_RECTANGLE_EXT = 0x8F12
5
+ GL_WINDOW_RECTANGLE_MODE_EXT = 0x8F13
6
+ GL_MAX_WINDOW_RECTANGLES_EXT = 0x8F14
7
+ GL_NUM_WINDOW_RECTANGLES_EXT = 0x8F15
8
+
9
+ @functions = {
10
+ glWindowRectanglesEXT: [ :void, :GLenum, :GLsizei, :pointer ].freeze,
11
+ }.freeze
12
+ end
@@ -0,0 +1,10 @@
1
+ module GL_IMG_bindless_texture
2
+ @functions = {
3
+ glGetTextureHandleIMG: [ :GLuint64, :GLuint ].freeze,
4
+ glGetTextureSamplerHandleIMG: [ :GLuint64, :GLuint, :GLuint ].freeze,
5
+ glUniformHandleui64IMG: [ :void, :GLint, :GLuint64 ].freeze,
6
+ glUniformHandleui64vIMG: [ :void, :GLint, :GLsizei, :pointer ].freeze,
7
+ glProgramUniformHandleui64IMG: [ :void, :GLuint, :GLint, :GLuint64 ].freeze,
8
+ glProgramUniformHandleui64vIMG: [ :void, :GLuint, :GLint, :GLsizei, :pointer ].freeze,
9
+ }.freeze
10
+ end
@@ -0,0 +1,11 @@
1
+ module GL_IMG_framebuffer_downsample
2
+ GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_AND_DOWNSAMPLE_IMG = 0x913C
3
+ GL_NUM_DOWNSAMPLE_SCALES_IMG = 0x913D
4
+ GL_DOWNSAMPLE_SCALES_IMG = 0x913E
5
+ GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG = 0x913F
6
+
7
+ @functions = {
8
+ glFramebufferTexture2DDownsampleIMG: [ :void, :GLenum, :GLenum, :GLenum, :GLuint, :GLint, :GLint, :GLint ].freeze,
9
+ glFramebufferTextureLayerDownsampleIMG: [ :void, :GLenum, :GLenum, :GLuint, :GLint, :GLint, :GLint, :GLint ].freeze,
10
+ }.freeze
11
+ end
@@ -0,0 +1,5 @@
1
+ module GL_IMG_texture_filter_cubic
2
+ GL_CUBIC_IMG = 0x9139
3
+ GL_CUBIC_MIPMAP_NEAREST_IMG = 0x913A
4
+ GL_CUBIC_MIPMAP_LINEAR_IMG = 0x913B
5
+ end
@@ -0,0 +1,3 @@
1
+ module GL_INTEL_conservative_rasterization
2
+ GL_CONSERVATIVE_RASTERIZATION_INTEL = 0x83FE
3
+ end
@@ -0,0 +1,9 @@
1
+ module GL_NV_clip_space_w_scaling
2
+ GL_VIEWPORT_POSITION_W_SCALE_NV = 0x937C
3
+ GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV = 0x937D
4
+ GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV = 0x937E
5
+
6
+ @functions = {
7
+ glViewportPositionWScaleNV: [ :void, :GLuint, :GLfloat, :GLfloat ].freeze,
8
+ }.freeze
9
+ end
@@ -0,0 +1,9 @@
1
+ module GL_NV_conservative_raster_pre_snap_triangles
2
+ GL_CONSERVATIVE_RASTER_MODE_NV = 0x954D
3
+ GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV = 0x954E
4
+ GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV = 0x954F
5
+
6
+ @functions = {
7
+ glConservativeRasterParameteriNV: [ :void, :GLenum, :GLint ].freeze,
8
+ }.freeze
9
+ end
@@ -0,0 +1,3 @@
1
+ module GL_NV_robustness_video_memory_purge
2
+ GL_PURGED_CONTEXT_RESET_NV = 0x92BB
3
+ end
@@ -0,0 +1,18 @@
1
+ module GL_NV_viewport_swizzle
2
+ GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV = 0x9350
3
+ GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV = 0x9351
4
+ GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV = 0x9352
5
+ GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV = 0x9353
6
+ GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV = 0x9354
7
+ GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV = 0x9355
8
+ GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV = 0x9356
9
+ GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV = 0x9357
10
+ GL_VIEWPORT_SWIZZLE_X_NV = 0x9358
11
+ GL_VIEWPORT_SWIZZLE_Y_NV = 0x9359
12
+ GL_VIEWPORT_SWIZZLE_Z_NV = 0x935A
13
+ GL_VIEWPORT_SWIZZLE_W_NV = 0x935B
14
+
15
+ @functions = {
16
+ glViewportSwizzleNV: [ :void, :GLuint, :GLenum, :GLenum, :GLenum, :GLenum ].freeze,
17
+ }.freeze
18
+ end
@@ -0,0 +1,25 @@
1
+ module GL_OES_viewport_array
2
+ GL_SCISSOR_BOX = 0x0C10
3
+ GL_VIEWPORT = 0x0BA2
4
+ GL_DEPTH_RANGE = 0x0B70
5
+ GL_SCISSOR_TEST = 0x0C11
6
+ GL_MAX_VIEWPORTS_OES = 0x825B
7
+ GL_VIEWPORT_SUBPIXEL_BITS_OES = 0x825C
8
+ GL_VIEWPORT_BOUNDS_RANGE_OES = 0x825D
9
+ GL_VIEWPORT_INDEX_PROVOKING_VERTEX_OES = 0x825F
10
+
11
+ @functions = {
12
+ glViewportArrayvOES: [ :void, :GLuint, :GLsizei, :pointer ].freeze,
13
+ glViewportIndexedfOES: [ :void, :GLuint, :GLfloat, :GLfloat, :GLfloat, :GLfloat ].freeze,
14
+ glViewportIndexedfvOES: [ :void, :GLuint, :pointer ].freeze,
15
+ glScissorArrayvOES: [ :void, :GLuint, :GLsizei, :pointer ].freeze,
16
+ glScissorIndexedOES: [ :void, :GLuint, :GLint, :GLint, :GLsizei, :GLsizei ].freeze,
17
+ glScissorIndexedvOES: [ :void, :GLuint, :pointer ].freeze,
18
+ glDepthRangeArrayfvOES: [ :void, :GLuint, :GLsizei, :pointer ].freeze,
19
+ glDepthRangeIndexedfOES: [ :void, :GLuint, :GLfloat, :GLfloat ].freeze,
20
+ glGetFloati_vOES: [ :void, :GLenum, :GLuint, :pointer ].freeze,
21
+ glEnableiOES: [ :void, :GLenum, :GLuint ].freeze,
22
+ glDisableiOES: [ :void, :GLenum, :GLuint ].freeze,
23
+ glIsEnablediOES: [ :GLboolean, :GLenum, :GLuint ].freeze,
24
+ }.freeze
25
+ end
@@ -2,6 +2,7 @@ module GL_OVR_multiview
2
2
  GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR = 0x9630
3
3
  GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR = 0x9632
4
4
  GL_MAX_VIEWS_OVR = 0x9631
5
+ GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR = 0x9633
5
6
 
6
7
  @functions = {
7
8
  glFramebufferTextureMultiviewOVR: [ :void, :GLenum, :GLenum, :GLuint, :GLint, :GLint, :GLsizei ].freeze,
@@ -0,0 +1,5 @@
1
+ module GL_OVR_multiview_multisampled_render_to_texture
2
+ @functions = {
3
+ glFramebufferTextureMultisampleMultiviewOVR: [ :void, :GLenum, :GLenum, :GLuint, :GLint, :GLsizei, :GLint, :GLsizei ].freeze,
4
+ }.freeze
5
+ end
@@ -0,0 +1,5 @@
1
+ module WGL_EXT_colorspace
2
+ WGL_COLORSPACE_EXT = 0x3087
3
+ WGL_COLORSPACE_SRGB_EXT = 0x3089
4
+ WGL_COLORSPACE_LINEAR_EXT = 0x308A
5
+ end
@@ -1,38 +1,38 @@
1
- module GL
2
- TYPEDEFS = {
3
- GLbitfield: :uint,
4
- GLboolean: :uchar,
5
- GLbyte: :char,
6
- GLchar: :char,
7
- GLcharARB: :char,
8
- GLclampd: :double,
9
- GLclampf: :float,
10
- GLclampx: :int,
11
- GLdouble: :double,
12
- GLeglImageOES: :pointer, # void *
13
- GLenum: :uint,
14
- GLfixed: :int32, # Must be 32 bits
15
- GLfloat: :float,
16
- GLhalf: :ushort,
17
- GLhalfARB: :ushort,
18
- GLhalfNV: :ushort,
19
- GLhandleARB: :uint, # at least 32 bits
20
- GLint: :int,
21
- GLint64: :int64,
22
- GLint64EXT: :int64,
23
- GLintptr: :ptrdiff_t,
24
- GLintptrARB: :ptrdiff_t,
25
- GLshort: :short,
26
- GLsizei: :int,
27
- GLsizeiptr: :ptrdiff_t,
28
- GLsizeiptrARB: :ptrdiff_t,
29
- GLsync: :pointer, # struct __GLsync *
30
- GLubyte: :uchar,
31
- GLuint: :uint,
32
- GLuint64: :uint64,
33
- GLuint64EXT: :uint64,
34
- GLushort: :ushort,
35
- GLvdpauSurfaceNV: :ptrdiff_t,
36
- GLvoid: :void
37
- }
1
+ module GL
2
+ TYPEDEFS = {
3
+ GLbitfield: :uint,
4
+ GLboolean: :uchar,
5
+ GLbyte: :char,
6
+ GLchar: :char,
7
+ GLcharARB: :char,
8
+ GLclampd: :double,
9
+ GLclampf: :float,
10
+ GLclampx: :int,
11
+ GLdouble: :double,
12
+ GLeglImageOES: :pointer, # void *
13
+ GLenum: :uint,
14
+ GLfixed: :int32, # Must be 32 bits
15
+ GLfloat: :float,
16
+ GLhalf: :ushort,
17
+ GLhalfARB: :ushort,
18
+ GLhalfNV: :ushort,
19
+ GLhandleARB: :uint, # at least 32 bits
20
+ GLint: :int,
21
+ GLint64: :int64,
22
+ GLint64EXT: :int64,
23
+ GLintptr: :ptrdiff_t,
24
+ GLintptrARB: :ptrdiff_t,
25
+ GLshort: :short,
26
+ GLsizei: :int,
27
+ GLsizeiptr: :ptrdiff_t,
28
+ GLsizeiptrARB: :ptrdiff_t,
29
+ GLsync: :pointer, # struct __GLsync *
30
+ GLubyte: :uchar,
31
+ GLuint: :uint,
32
+ GLuint64: :uint64,
33
+ GLuint64EXT: :uint64,
34
+ GLushort: :ushort,
35
+ GLvdpauSurfaceNV: :ptrdiff_t,
36
+ GLvoid: :void
37
+ }
38
38
  end
@@ -1,5 +1,5 @@
1
1
  module GL
2
2
  module Definitions
3
- VERSION = '0.0.4'
3
+ VERSION = '0.0.5'
4
4
  end
5
5
  end
@@ -4,11 +4,13 @@ module GL_VERSION_4_4
4
4
  GL_TEXTURE_BUFFER_BINDING = 0x8C2A
5
5
 
6
6
  @extensions = [
7
- :GL_ARB_clip_control,
8
- :GL_ARB_direct_state_access,
9
- :GL_ARB_ES3_1_compatibility,
10
- :GL_ARB_get_texture_sub_image,
11
- :GL_ARB_texture_barrier,
12
- :GL_KHR_robustness
7
+ :GL_ARB_buffer_storage,
8
+ :GL_ARB_clear_texture,
9
+ :GL_ARB_enhanced_layouts,
10
+ :GL_ARB_multi_bind,
11
+ :GL_ARB_query_buffer_object,
12
+ :GL_ARB_texture_mirror_clamp_to_edge,
13
+ :GL_ARB_texture_stencil8,
14
+ :GL_ARB_vertex_type_10f_11f_11f_rev
13
15
  ].freeze
14
16
  end
@@ -1,9 +1,15 @@
1
1
  module GL_VERSION_4_5
2
2
  @extensions = [
3
+ :GL_ARB_clip_control,
4
+ :GL_ARB_conditional_render_inverted,
5
+ :GL_ARB_cull_distance,
6
+ :GL_ARB_derivative_control,
3
7
  :GL_ARB_direct_state_access,
4
8
  :GL_ARB_ES3_1_compatibility,
5
9
  :GL_ARB_get_texture_sub_image,
10
+ :GL_ARB_shader_texture_image_samples,
6
11
  :GL_ARB_texture_barrier,
12
+ :GL_KHR_context_flush_control,
7
13
  :GL_KHR_robustness
8
14
  ].freeze
9
15
  end
@@ -0,0 +1,15 @@
1
+ module GL_VERSION_4_6
2
+ @extensions = [
3
+ :GL_ARB_gl_spirv,
4
+ :GL_ARB_indirect_parameters,
5
+ :GL_ARB_pipeline_statistics_query,
6
+ :GL_ARB_polygon_offset_clamp,
7
+ :GL_ARB_shader_atomic_counter_ops,
8
+ :GL_ARB_shader_draw_parameters,
9
+ :GL_ARB_shader_group_vote,
10
+ :GL_ARB_spirv_extensions,
11
+ :GL_ARB_texture_filter_anisotropic,
12
+ :GL_ARB_transform_feedback_overflow_query,
13
+ :GL_KHR_no_error
14
+ ].freeze
15
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opengl-definitions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Silver Phoenix
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-10 00:00:00.000000000 Z
11
+ date: 2018-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: oga
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: '2'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.3'
26
+ version: '2'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: erubis
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '2.7'
33
+ version: '2'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '2.7'
40
+ version: '2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rspec
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '3'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '3'
55
55
  description: Opengl definitions for Ruby. Supports up to GL 4.5.
56
56
  email:
57
57
  - silver.phoenix99@gmail.com
@@ -79,6 +79,7 @@ files:
79
79
  - lib/opengl-definitions/extensions/GLX_EXT_fbconfig_packed_float.rb
80
80
  - lib/opengl-definitions/extensions/GLX_EXT_framebuffer_sRGB.rb
81
81
  - lib/opengl-definitions/extensions/GLX_EXT_import_context.rb
82
+ - lib/opengl-definitions/extensions/GLX_EXT_libglvnd.rb
82
83
  - lib/opengl-definitions/extensions/GLX_EXT_stereo_tree.rb
83
84
  - lib/opengl-definitions/extensions/GLX_EXT_swap_control.rb
84
85
  - lib/opengl-definitions/extensions/GLX_EXT_swap_control_tear.rb
@@ -98,6 +99,7 @@ files:
98
99
  - lib/opengl-definitions/extensions/GLX_NV_float_buffer.rb
99
100
  - lib/opengl-definitions/extensions/GLX_NV_multisample_coverage.rb
100
101
  - lib/opengl-definitions/extensions/GLX_NV_present_video.rb
102
+ - lib/opengl-definitions/extensions/GLX_NV_robustness_video_memory_purge.rb
101
103
  - lib/opengl-definitions/extensions/GLX_NV_swap_group.rb
102
104
  - lib/opengl-definitions/extensions/GLX_NV_video_capture.rb
103
105
  - lib/opengl-definitions/extensions/GLX_NV_video_out.rb
@@ -129,6 +131,8 @@ files:
129
131
  - lib/opengl-definitions/extensions/GL_AMD_debug_output.rb
130
132
  - lib/opengl-definitions/extensions/GL_AMD_depth_clamp_separate.rb
131
133
  - lib/opengl-definitions/extensions/GL_AMD_draw_buffers_blend.rb
134
+ - lib/opengl-definitions/extensions/GL_AMD_framebuffer_sample_positions.rb
135
+ - lib/opengl-definitions/extensions/GL_AMD_gpu_shader_half_float.rb
132
136
  - lib/opengl-definitions/extensions/GL_AMD_gpu_shader_int64.rb
133
137
  - lib/opengl-definitions/extensions/GL_AMD_interleaved_elements.rb
134
138
  - lib/opengl-definitions/extensions/GL_AMD_multi_draw_indirect.rb
@@ -345,6 +349,8 @@ files:
345
349
  - lib/opengl-definitions/extensions/GL_EXT_blend_minmax.rb
346
350
  - lib/opengl-definitions/extensions/GL_EXT_blend_subtract.rb
347
351
  - lib/opengl-definitions/extensions/GL_EXT_buffer_storage.rb
352
+ - lib/opengl-definitions/extensions/GL_EXT_clear_texture.rb
353
+ - lib/opengl-definitions/extensions/GL_EXT_clip_cull_distance.rb
348
354
  - lib/opengl-definitions/extensions/GL_EXT_clip_volume_hint.rb
349
355
  - lib/opengl-definitions/extensions/GL_EXT_cmyka.rb
350
356
  - lib/opengl-definitions/extensions/GL_EXT_color_buffer_half_float.rb
@@ -367,6 +373,7 @@ files:
367
373
  - lib/opengl-definitions/extensions/GL_EXT_draw_elements_base_vertex.rb
368
374
  - lib/opengl-definitions/extensions/GL_EXT_draw_instanced.rb
369
375
  - lib/opengl-definitions/extensions/GL_EXT_draw_range_elements.rb
376
+ - lib/opengl-definitions/extensions/GL_EXT_draw_transform_feedback.rb
370
377
  - lib/opengl-definitions/extensions/GL_EXT_fog_coord.rb
371
378
  - lib/opengl-definitions/extensions/GL_EXT_framebuffer_blit.rb
372
379
  - lib/opengl-definitions/extensions/GL_EXT_framebuffer_multisample.rb
@@ -401,6 +408,7 @@ files:
401
408
  - lib/opengl-definitions/extensions/GL_EXT_polygon_offset.rb
402
409
  - lib/opengl-definitions/extensions/GL_EXT_polygon_offset_clamp.rb
403
410
  - lib/opengl-definitions/extensions/GL_EXT_primitive_bounding_box.rb
411
+ - lib/opengl-definitions/extensions/GL_EXT_protected_textures.rb
404
412
  - lib/opengl-definitions/extensions/GL_EXT_provoking_vertex.rb
405
413
  - lib/opengl-definitions/extensions/GL_EXT_pvrtc_sRGB.rb
406
414
  - lib/opengl-definitions/extensions/GL_EXT_raster_multisample.rb
@@ -416,6 +424,7 @@ files:
416
424
  - lib/opengl-definitions/extensions/GL_EXT_shader_framebuffer_fetch.rb
417
425
  - lib/opengl-definitions/extensions/GL_EXT_shader_image_load_store.rb
418
426
  - lib/opengl-definitions/extensions/GL_EXT_shader_pixel_local_storage.rb
427
+ - lib/opengl-definitions/extensions/GL_EXT_shader_pixel_local_storage2.rb
419
428
  - lib/opengl-definitions/extensions/GL_EXT_shadow_samplers.rb
420
429
  - lib/opengl-definitions/extensions/GL_EXT_shared_texture_palette.rb
421
430
  - lib/opengl-definitions/extensions/GL_EXT_sparse_texture.rb
@@ -466,6 +475,7 @@ files:
466
475
  - lib/opengl-definitions/extensions/GL_EXT_vertex_attrib_64bit.rb
467
476
  - lib/opengl-definitions/extensions/GL_EXT_vertex_shader.rb
468
477
  - lib/opengl-definitions/extensions/GL_EXT_vertex_weighting.rb
478
+ - lib/opengl-definitions/extensions/GL_EXT_window_rectangles.rb
469
479
  - lib/opengl-definitions/extensions/GL_EXT_x11_sync_object.rb
470
480
  - lib/opengl-definitions/extensions/GL_FJ_shader_binary_GCCSO.rb
471
481
  - lib/opengl-definitions/extensions/GL_GREMEDY_frame_terminator.rb
@@ -480,6 +490,8 @@ files:
480
490
  - lib/opengl-definitions/extensions/GL_IBM_static_data.rb
481
491
  - lib/opengl-definitions/extensions/GL_IBM_texture_mirrored_repeat.rb
482
492
  - lib/opengl-definitions/extensions/GL_IBM_vertex_array_lists.rb
493
+ - lib/opengl-definitions/extensions/GL_IMG_bindless_texture.rb
494
+ - lib/opengl-definitions/extensions/GL_IMG_framebuffer_downsample.rb
483
495
  - lib/opengl-definitions/extensions/GL_IMG_multisampled_render_to_texture.rb
484
496
  - lib/opengl-definitions/extensions/GL_IMG_program_binary.rb
485
497
  - lib/opengl-definitions/extensions/GL_IMG_read_format.rb
@@ -487,10 +499,12 @@ files:
487
499
  - lib/opengl-definitions/extensions/GL_IMG_texture_compression_pvrtc.rb
488
500
  - lib/opengl-definitions/extensions/GL_IMG_texture_compression_pvrtc2.rb
489
501
  - lib/opengl-definitions/extensions/GL_IMG_texture_env_enhanced_fixed_function.rb
502
+ - lib/opengl-definitions/extensions/GL_IMG_texture_filter_cubic.rb
490
503
  - lib/opengl-definitions/extensions/GL_IMG_user_clip_plane.rb
491
504
  - lib/opengl-definitions/extensions/GL_INGR_blend_func_separate.rb
492
505
  - lib/opengl-definitions/extensions/GL_INGR_color_clamp.rb
493
506
  - lib/opengl-definitions/extensions/GL_INGR_interlace_read.rb
507
+ - lib/opengl-definitions/extensions/GL_INTEL_conservative_rasterization.rb
494
508
  - lib/opengl-definitions/extensions/GL_INTEL_framebuffer_CMAA.rb
495
509
  - lib/opengl-definitions/extensions/GL_INTEL_map_texture.rb
496
510
  - lib/opengl-definitions/extensions/GL_INTEL_parallel_arrays.rb
@@ -515,11 +529,13 @@ files:
515
529
  - lib/opengl-definitions/extensions/GL_NV_bindless_texture.rb
516
530
  - lib/opengl-definitions/extensions/GL_NV_blend_equation_advanced.rb
517
531
  - lib/opengl-definitions/extensions/GL_NV_blend_equation_advanced_coherent.rb
532
+ - lib/opengl-definitions/extensions/GL_NV_clip_space_w_scaling.rb
518
533
  - lib/opengl-definitions/extensions/GL_NV_command_list.rb
519
534
  - lib/opengl-definitions/extensions/GL_NV_compute_program5.rb
520
535
  - lib/opengl-definitions/extensions/GL_NV_conditional_render.rb
521
536
  - lib/opengl-definitions/extensions/GL_NV_conservative_raster.rb
522
537
  - lib/opengl-definitions/extensions/GL_NV_conservative_raster_dilate.rb
538
+ - lib/opengl-definitions/extensions/GL_NV_conservative_raster_pre_snap_triangles.rb
523
539
  - lib/opengl-definitions/extensions/GL_NV_copy_buffer.rb
524
540
  - lib/opengl-definitions/extensions/GL_NV_copy_depth_to_color.rb
525
541
  - lib/opengl-definitions/extensions/GL_NV_copy_image.rb
@@ -569,6 +585,7 @@ files:
569
585
  - lib/opengl-definitions/extensions/GL_NV_read_buffer.rb
570
586
  - lib/opengl-definitions/extensions/GL_NV_register_combiners.rb
571
587
  - lib/opengl-definitions/extensions/GL_NV_register_combiners2.rb
588
+ - lib/opengl-definitions/extensions/GL_NV_robustness_video_memory_purge.rb
572
589
  - lib/opengl-definitions/extensions/GL_NV_sRGB_formats.rb
573
590
  - lib/opengl-definitions/extensions/GL_NV_sample_locations.rb
574
591
  - lib/opengl-definitions/extensions/GL_NV_shader_buffer_load.rb
@@ -602,6 +619,7 @@ files:
602
619
  - lib/opengl-definitions/extensions/GL_NV_vertex_program4.rb
603
620
  - lib/opengl-definitions/extensions/GL_NV_video_capture.rb
604
621
  - lib/opengl-definitions/extensions/GL_NV_viewport_array.rb
622
+ - lib/opengl-definitions/extensions/GL_NV_viewport_swizzle.rb
605
623
  - lib/opengl-definitions/extensions/GL_OES_EGL_image.rb
606
624
  - lib/opengl-definitions/extensions/GL_OES_EGL_image_external.rb
607
625
  - lib/opengl-definitions/extensions/GL_OES_blend_equation_separate.rb
@@ -658,10 +676,12 @@ files:
658
676
  - lib/opengl-definitions/extensions/GL_OES_vertex_array_object.rb
659
677
  - lib/opengl-definitions/extensions/GL_OES_vertex_half_float.rb
660
678
  - lib/opengl-definitions/extensions/GL_OES_vertex_type_10_10_10_2.rb
679
+ - lib/opengl-definitions/extensions/GL_OES_viewport_array.rb
661
680
  - lib/opengl-definitions/extensions/GL_OML_interlace.rb
662
681
  - lib/opengl-definitions/extensions/GL_OML_resample.rb
663
682
  - lib/opengl-definitions/extensions/GL_OML_subsample.rb
664
683
  - lib/opengl-definitions/extensions/GL_OVR_multiview.rb
684
+ - lib/opengl-definitions/extensions/GL_OVR_multiview_multisampled_render_to_texture.rb
665
685
  - lib/opengl-definitions/extensions/GL_PGI_misc_hints.rb
666
686
  - lib/opengl-definitions/extensions/GL_PGI_vertex_hints.rb
667
687
  - lib/opengl-definitions/extensions/GL_QCOM_alpha_test.rb
@@ -757,6 +777,7 @@ files:
757
777
  - lib/opengl-definitions/extensions/WGL_ARB_robustness_application_isolation.rb
758
778
  - lib/opengl-definitions/extensions/WGL_ARB_robustness_share_group_isolation.rb
759
779
  - lib/opengl-definitions/extensions/WGL_ATI_pixel_format_float.rb
780
+ - lib/opengl-definitions/extensions/WGL_EXT_colorspace.rb
760
781
  - lib/opengl-definitions/extensions/WGL_EXT_create_context_es2_profile.rb
761
782
  - lib/opengl-definitions/extensions/WGL_EXT_create_context_es_profile.rb
762
783
  - lib/opengl-definitions/extensions/WGL_EXT_depth_float.rb
@@ -813,6 +834,7 @@ files:
813
834
  - lib/opengl-definitions/versions/GL_VERSION_4_3.rb
814
835
  - lib/opengl-definitions/versions/GL_VERSION_4_4.rb
815
836
  - lib/opengl-definitions/versions/GL_VERSION_4_5.rb
837
+ - lib/opengl-definitions/versions/GL_VERSION_4_6.rb
816
838
  - lib/opengl-definitions/versions/compatibility/GL_VERSION_1_0.rb
817
839
  - lib/opengl-definitions/versions/compatibility/GL_VERSION_1_1.rb
818
840
  - lib/opengl-definitions/versions/compatibility/GL_VERSION_1_3.rb
@@ -838,7 +860,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
838
860
  version: '0'
839
861
  requirements: []
840
862
  rubyforge_project:
841
- rubygems_version: 2.4.8
863
+ rubygems_version: 2.7.7
842
864
  signing_key:
843
865
  specification_version: 4
844
866
  summary: Opengl definitions for Ruby.