ruby-opengl 0.50.0 → 0.60.0

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 (118) hide show
  1. data/Rakefile +15 -11
  2. data/doc/build_install.txt +10 -6
  3. data/doc/extensions.txt.in +348 -0
  4. data/doc/history.txt +4 -0
  5. data/doc/roadmap.txt +4 -6
  6. data/doc/scientific_use.txt +7 -0
  7. data/doc/supplies/page_template.html +2 -1
  8. data/doc/thanks.txt +5 -0
  9. data/doc/tutorial.txt +431 -121
  10. data/examples/NeHe/nehe_lesson02.rb +1 -1
  11. data/examples/NeHe/nehe_lesson03.rb +1 -1
  12. data/examples/NeHe/nehe_lesson04.rb +1 -1
  13. data/examples/NeHe/nehe_lesson05.rb +1 -1
  14. data/examples/NeHe/nehe_lesson36.rb +1 -1
  15. data/examples/OrangeBook/brick.rb +3 -15
  16. data/examples/OrangeBook/particle.rb +2 -20
  17. data/examples/RedBook/aapoly.rb +1 -1
  18. data/examples/RedBook/aargb.rb +2 -2
  19. data/examples/RedBook/accanti.rb +1 -1
  20. data/examples/RedBook/accpersp.rb +1 -1
  21. data/examples/RedBook/alpha.rb +2 -2
  22. data/examples/RedBook/alpha3D.rb +1 -1
  23. data/examples/RedBook/bezcurve.rb +1 -1
  24. data/examples/RedBook/bezmesh.rb +1 -1
  25. data/examples/RedBook/checker.rb +1 -1
  26. data/examples/RedBook/clip.rb +1 -1
  27. data/examples/RedBook/colormat.rb +1 -1
  28. data/examples/RedBook/cube.rb +1 -1
  29. data/examples/RedBook/depthcue.rb +1 -1
  30. data/examples/RedBook/dof.rb +1 -1
  31. data/examples/RedBook/double.rb +1 -1
  32. data/examples/RedBook/drawf.rb +1 -1
  33. data/examples/RedBook/feedback.rb +1 -1
  34. data/examples/RedBook/fog.rb +1 -1
  35. data/examples/RedBook/font.rb +2 -2
  36. data/examples/RedBook/hello.rb +1 -1
  37. data/examples/RedBook/image.rb +4 -4
  38. data/examples/RedBook/lines.rb +1 -1
  39. data/examples/RedBook/list.rb +1 -1
  40. data/examples/RedBook/material.rb +1 -1
  41. data/examples/RedBook/mipmap.rb +1 -1
  42. data/examples/RedBook/model.rb +1 -1
  43. data/examples/RedBook/movelight.rb +1 -1
  44. data/examples/RedBook/pickdepth.rb +1 -1
  45. data/examples/RedBook/planet.rb +5 -5
  46. data/examples/RedBook/quadric.rb +1 -1
  47. data/examples/RedBook/robot.rb +5 -5
  48. data/examples/RedBook/select.rb +1 -1
  49. data/examples/RedBook/smooth.rb +1 -1
  50. data/examples/RedBook/stencil.rb +1 -1
  51. data/examples/RedBook/stroke.rb +2 -2
  52. data/examples/RedBook/surface.rb +1 -1
  53. data/examples/RedBook/teaambient.rb +1 -1
  54. data/examples/RedBook/teapots.rb +1 -1
  55. data/examples/RedBook/tess.rb +1 -1
  56. data/examples/RedBook/texbind.rb +1 -1
  57. data/examples/RedBook/texgen.rb +5 -5
  58. data/examples/RedBook/texturesurf.rb +1 -1
  59. data/examples/RedBook/varray.rb +1 -1
  60. data/examples/RedBook/wrap.rb +5 -5
  61. data/examples/misc/OGLBench.rb +337 -0
  62. data/examples/misc/anisotropic.rb +1 -1
  63. data/examples/misc/fbo_test.rb +356 -0
  64. data/examples/misc/font-glut.rb +1 -1
  65. data/examples/misc/glfwtest.rb +30 -0
  66. data/examples/misc/md2model.rb +15 -0
  67. data/examples/misc/plane.rb +1 -1
  68. data/examples/misc/readpixel.rb +1 -1
  69. data/examples/misc/sdltest.rb +34 -0
  70. data/examples/misc/trislam.rb +828 -0
  71. data/ext/common/common.h +126 -218
  72. data/ext/common/conv.h +244 -0
  73. data/ext/common/funcdef.h +280 -0
  74. data/ext/common/gl-error.h +23 -0
  75. data/ext/common/gl-types.h +14 -0
  76. data/ext/gl/gl-1.0-1.1.c +497 -1255
  77. data/ext/gl/gl-1.2.c +121 -304
  78. data/ext/gl/gl-1.3.c +78 -339
  79. data/ext/gl/gl-1.4.c +102 -164
  80. data/ext/gl/gl-1.5.c +42 -173
  81. data/ext/gl/gl-2.0.c +273 -1039
  82. data/ext/gl/gl-2.1.c +15 -19
  83. data/ext/gl/gl-enums.c +3 -2
  84. data/ext/gl/gl-error.c +104 -0
  85. data/ext/gl/gl-ext-3dfx.c +27 -0
  86. data/ext/gl/gl-ext-arb.c +812 -12
  87. data/ext/gl/gl-ext-ati.c +41 -0
  88. data/ext/gl/gl-ext-ext.c +791 -119
  89. data/ext/gl/gl-ext-gremedy.c +41 -0
  90. data/ext/gl/gl-ext-nv.c +679 -0
  91. data/ext/gl/gl.c +48 -28
  92. data/ext/gl/mkrf_conf.rb +13 -10
  93. data/ext/glu/glu-enums.c +3 -2
  94. data/ext/glu/glu.c +136 -41
  95. data/ext/glu/mkrf_conf.rb +15 -12
  96. data/ext/glut/glut.c +37 -80
  97. data/ext/glut/mkrf_conf.rb +17 -13
  98. data/lib/opengl.rb +29 -53
  99. data/test/tc_common.rb +9 -3
  100. data/test/tc_ext_arb.rb +397 -3
  101. data/test/tc_ext_ati.rb +33 -0
  102. data/test/tc_ext_ext.rb +479 -2
  103. data/test/tc_ext_gremedy.rb +36 -0
  104. data/test/tc_ext_nv.rb +357 -0
  105. data/test/tc_func_10_11.rb +93 -67
  106. data/test/tc_func_12.rb +11 -11
  107. data/test/tc_func_13.rb +38 -18
  108. data/test/tc_func_14.rb +2 -2
  109. data/test/tc_func_15.rb +10 -10
  110. data/test/tc_func_20.rb +20 -20
  111. data/test/tc_func_21.rb +53 -22
  112. data/test/tc_glu.rb +9 -4
  113. data/test/tc_misc.rb +15 -2
  114. metadata +22 -8
  115. data/doc/extensions.txt +0 -361
  116. data/examples/RedBook/aaindex.rb +0 -97
  117. data/examples/misc/smooth.rb +0 -42
  118. data/examples/misc/test.rb +0 -65
@@ -34,8 +34,21 @@ class Test_misc < Test::Unit::TestCase
34
34
 
35
35
  def test_isavailable
36
36
  assert_equal(is_available?(1.1),true)
37
- assert_equal(is_available?("glTexImage3D"),true)
38
37
  assert_equal(is_available?("GL_ARB_multitexture"),true)
39
38
  assert_equal(is_available?("GL_NON_EXISTENT"),false)
40
39
  end
41
- end
40
+
41
+ def test_errorchecking
42
+ Gl.disable_error_checking
43
+ assert_equal(Gl.is_error_checking_enabled?,false)
44
+ Gl.enable_error_checking
45
+ assert_equal(Gl.is_error_checking_enabled?,true)
46
+ begin
47
+ glEnable(0)
48
+ rescue Gl::Error => err
49
+ assert_equal(err.id,GL_INVALID_ENUM)
50
+ else
51
+ assert(false) # error not detected
52
+ end
53
+ end
54
+ end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: ruby-opengl
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.50.0
7
- date: 2007-10-23 00:00:00 +09:00
6
+ version: 0.60.0
7
+ date: 2008-01-06 00:00:00 +09:00
8
8
  summary: OpenGL Interface for Ruby
9
9
  require_paths:
10
10
  - lib
@@ -46,6 +46,11 @@ files:
46
46
  - ext/gl/gl-1.0-1.1.c
47
47
  - ext/gl/gl-ext-ext.c
48
48
  - ext/gl/gl-ext-arb.c
49
+ - ext/gl/gl-ext-3dfx.c
50
+ - ext/gl/gl-ext-ati.c
51
+ - ext/gl/gl-ext-nv.c
52
+ - ext/gl/gl-error.c
53
+ - ext/gl/gl-ext-gremedy.c
49
54
  - ext/glu
50
55
  - ext/glu/glu.c
51
56
  - ext/glu/mkrf_conf.rb
@@ -58,6 +63,9 @@ files:
58
63
  - ext/common/common.h
59
64
  - ext/common/glu-enums.h
60
65
  - ext/common/gl-types.h
66
+ - ext/common/gl-error.h
67
+ - ext/common/funcdef.h
68
+ - ext/common/conv.h
61
69
  - doc/supplies
62
70
  - doc/supplies/page_template.html
63
71
  - doc/thanks.txt
@@ -67,7 +75,7 @@ files:
67
75
  - doc/tutorial.txt
68
76
  - doc/requirements_and_design.txt
69
77
  - doc/build_install.txt
70
- - doc/extensions.txt
78
+ - doc/extensions.txt.in
71
79
  - examples/README
72
80
  - examples/NeHe
73
81
  - examples/NeHe/nehe_lesson02.rb
@@ -94,7 +102,6 @@ files:
94
102
  - examples/RedBook/varray.rb
95
103
  - examples/RedBook/font.rb
96
104
  - examples/RedBook/stroke.rb
97
- - examples/RedBook/aaindex.rb
98
105
  - examples/RedBook/smooth.rb
99
106
  - examples/RedBook/pickdepth.rb
100
107
  - examples/RedBook/list.rb
@@ -134,9 +141,13 @@ files:
134
141
  - examples/misc/readpixel.rb
135
142
  - examples/misc/font-glut.rb
136
143
  - examples/misc/plane.rb
137
- - examples/misc/test.rb
138
- - examples/misc/smooth.rb
139
144
  - examples/misc/anisotropic.rb
145
+ - examples/misc/md2model.rb
146
+ - examples/misc/glfwtest.rb
147
+ - examples/misc/OGLBench.rb
148
+ - examples/misc/sdltest.rb
149
+ - examples/misc/fbo_test.rb
150
+ - examples/misc/trislam.rb
140
151
  - test/tc_include_gl.rb
141
152
  - test/README
142
153
  - test/tc_require_gl.rb
@@ -145,13 +156,16 @@ files:
145
156
  - test/tc_func_10_11.rb
146
157
  - test/tc_func_20.rb
147
158
  - test/tc_func_12.rb
148
- - test/tc_func_21.rb
149
159
  - test/tc_func_13.rb
150
- - test/tc_func_14.rb
151
160
  - test/tc_func_15.rb
152
161
  - test/tc_glu.rb
153
162
  - test/tc_ext_ext.rb
154
163
  - test/tc_ext_arb.rb
164
+ - test/tc_func_21.rb
165
+ - test/tc_ext_ati.rb
166
+ - test/tc_ext_nv.rb
167
+ - test/tc_ext_gremedy.rb
168
+ - test/tc_func_14.rb
155
169
  test_files: []
156
170
 
157
171
  rdoc_options: []
@@ -1,361 +0,0 @@
1
- <pre>
2
- ruby-opengl extensions support status in trunk (SVN):
3
-
4
- [X] - supported
5
- [ ] - not supported yet
6
- [N] - no plans for now, platform specific or other (GLX,WGL,GLU,GLUT..)
7
- [I] - implicitly supported with no additional test code required
8
- [O] - obsolete; extension drafted but not implemented by vendor, etc.
9
-
10
- [code][testcase]
11
- ARB:
12
- [ ][ ] 1. GL_ARB_multitexture
13
- [N][N] 2. GLX_ARB_get_proc_address
14
- [X][X] 3. GL_ARB_transpose_matrix
15
- [N][N] 4. WGL_ARB_buffer_region
16
- [X][X] 5. GL_ARB_multisample
17
- [N][N] GLX_ARB_multisample
18
- [N][N] WGL_ARB_multisample
19
- [X][I] 6. GL_ARB_texture_env_add
20
- [X][I] 7. GL_ARB_texture_cube_map
21
- [N][N] 8. WGL_ARB_extensions_string
22
- [N][N] 9. WGL_ARB_pixel_format
23
- [N][N] 10. WGL_ARB_make_current_read
24
- [N][N] 11. WGL_ARB_pbuffer
25
- [ ][ ] 12. GL_ARB_texture_compression
26
- [X][I] 13. GL_ARB_texture_border_clamp
27
- [ ][ ] 14. GL_ARB_point_parameters
28
- [ ][ ] 15. GL_ARB_vertex_blend
29
- [ ][ ] 16. GL_ARB_matrix_palette
30
- [X][I] 17. GL_ARB_texture_env_combine
31
- [X][I] 18. GL_ARB_texture_env_crossbar
32
- [X][I] 19. GL_ARB_texture_env_dot3
33
- [N][N] 20. WGL_ARB_render_texture
34
- [X][I] 21. GL_ARB_texture_mirrored_repeat
35
- [X][I] 22. GL_ARB_depth_texture
36
- [X][I] 23. GL_ARB_shadow
37
- [X][I] 24. GL_ARB_shadow_ambient
38
- [ ][ ] 25. GL_ARB_window_pos
39
- [ ][ ] 26. GL_ARB_vertex_program
40
- [ ][ ] 27. GL_ARB_fragment_program
41
- [ ][ ] 28. GL_ARB_vertex_buffer_object
42
- [ ][ ] 29. GL_ARB_occlusion_query
43
- [ ][ ] 30. GL_ARB_shader_objects
44
- [ ][ ] 31. GL_ARB_vertex_shader
45
- [ ][ ] 32. GL_ARB_fragment_shader
46
- [X][I] 33. GL_ARB_shading_language_100
47
- [X][I] 34. GL_ARB_texture_non_power_of_two
48
- [X][I] 35. GL_ARB_point_sprite
49
- [X][I] 36. GL_ARB_fragment_program_shadow
50
- [X][I] 37. GL_ARB_draw_buffers
51
- [X][I] 38. GL_ARB_texture_rectangle
52
- [X][X] 39. GL_ARB_color_buffer_float
53
- [N][N] WGL_ARB_pixel_format_float
54
- [N][N] GLX_ARB_fbconfig_float
55
- [X][I] 40. GL_ARB_half_float_pixel
56
- [X][I] 41. GL_ARB_texture_float
57
- [X][I] 42. GL_ARB_pixel_buffer_object
58
-
59
- Other:
60
- [X][I] 1. GL_EXT_abgr
61
- [ ][ ] 2. GL_EXT_blend_color
62
- [ ][ ] 3. GL_EXT_polygon_offset
63
- [X][I] 4. GL_EXT_texture
64
- [X][I] 6. GL_EXT_texture3D
65
- [ ][ ] 7. GL_SGIS_texture_filter4
66
- [ ][ ] 9. GL_EXT_subtexture
67
- [ ][ ] 10. GL_EXT_copy_texture
68
- [ ][ ] 11. GL_EXT_histogram
69
- [ ][ ] 12. GL_EXT_convolution
70
- [X][I] 13. GL_SGI_color_matrix
71
- [ ][ ] 14. GL_SGI_color_table
72
- [ ][ ] 15. GL_SGIS_pixel_texture
73
- [ ][ ] 16. GL_SGIX_pixel_texture
74
- [ ][ ] 16. GL_SGIS_texture4D
75
- [X][I] 17. GL_SGI_texture_color_table
76
- [X][I] 18. GL_EXT_cmyka
77
- [ ][ ] 20. GL_EXT_texture_object
78
- [ ][ ] 21. GL_SGIS_detail_texture
79
- [ ][ ] 22. GL_SGIS_sharpen_texture
80
- [X][I] 23. GL_EXT_packed_pixels
81
- [X][I] 24. GL_SGIS_texture_lod
82
- [ ][ ] 25. GL_SGIS_multisample
83
- [N][N] GLX_SGIS_multisample
84
- [X][I] 27. GL_EXT_rescale_normal
85
- [N][N] 28. GLX_EXT_visual_info
86
- [ ][ ] 30. GL_EXT_vertex_array
87
- [X][I] 31. GL_EXT_misc_attribute
88
- [X][I] 32. GL_SGIS_generate_mipmap
89
- [X][I] 33. GL_SGIX_clipmap
90
- [X][I] 34. GL_SGIX_shadow
91
- [X][I] 35. GL_SGIS_texture_edge_clamp
92
- [X][I] 36. GL_SGIS_texture_border_clamp
93
- [ ][ ] 37. GL_EXT_blend_minmax
94
- [X][I] 38. GL_EXT_blend_subtract
95
- [X][I] 39. GL_EXT_blend_logic_op
96
- [N][N] 40. GLX_SGI_swap_control
97
- [N][N] 41. GLX_SGI_video_sync
98
- [N][N] 42. GLX_SGI_make_current_read
99
- [N][N] 43. GLX_SGIX_video_source
100
- [N][N] 44. GLX_EXT_visual_rating
101
- [X][I] 45. GL_SGIX_interlace
102
- [N][N] 47. GLX_EXT_import_context
103
- [N][N] 49. GLX_SGIX_fbconfig
104
- [N][N] 50. GLX_SGIX_pbuffer
105
- [X][I] 51. GL_SGIS_texture_select
106
- [ ][ ] 52. GL_SGIX_sprite
107
- [X][I] 53. GL_SGIX_texture_multi_buffer
108
- [ ][ ] 54. GL_EXT_point_parameters
109
- [ ][ ] 55. GL_SGIX_instruments
110
- [X][I] 56. GL_SGIX_texture_scale_bias
111
- [ ][ ] 57. GL_SGIX_framezoom
112
- [ ][ ] 58. GL_SGIX_tag_sample_buffer
113
- [ ][ ] 60. GL_SGIX_reference_plane
114
- [ ][ ] 61. GL_SGIX_flush_raster
115
- [N][N] 62. GLX_SGI_cushion
116
- [X][I] 63. GL_SGIX_depth_texture
117
- [ ][ ] 64. GL_SGIS_fog_function
118
- [X][I] 65. GL_SGIX_fog_offset
119
- [ ][ ] 66. GL_HP_image_transform
120
- [X][I] 67. GL_HP_convolution_border_modes
121
- [X][I] 69. GL_SGIX_texture_add_env
122
- [ ][ ] 74. GL_EXT_color_subtable
123
- [N][N] 75. GLU_EXT_object_space_tess
124
- [X][I] 76. GL_PGI_vertex_hints
125
- [ ][ ] 77. GL_PGI_misc_hints
126
- [ ][ ] 78. GL_EXT_paletted_texture
127
- [X][I] 79. GL_EXT_clip_volume_hint
128
- [ ][ ] 80. GL_SGIX_list_priority
129
- [X][I] 81. GL_SGIX_ir_instrument1
130
- [N][N] 83. GLX_SGIX_video_resize
131
- [X][I] 84. GL_SGIX_texture_lod_bias
132
- [N][N] 85. GLU_SGI_filter4_parameters
133
- [N][N] 86. GLX_SGIX_dm_buffer
134
- [X][I] 90. GL_SGIX_shadow_ambient
135
- [N][N] 91. GLX_SGIX_swap_group
136
- [N][N] 92. GLX_SGIX_swap_barrier
137
- [X][I] 93. GL_EXT_index_texture
138
- [ ][ ] 94. GL_EXT_index_material
139
- [ ][ ] 95. GL_EXT_index_func
140
- [X][I] 96. GL_EXT_index_array_formats
141
- [ ][ ] 97. GL_EXT_compiled_vertex_array
142
- [ ][ ] 98. GL_EXT_cull_vertex
143
- [N][N] 100. GLU_EXT_nurbs_tessellator
144
- [X][I] 101. GL_SGIX_ycrcb
145
- [ ][ ] 102. GL_EXT_fragment_lighting
146
- [X][I] 110. GL_IBM_rasterpos_clip
147
- [X][I] 111. GL_HP_texture_lighting
148
- [ ][ ] 112. GL_EXT_draw_range_elements
149
- [X][I] 113. GL_WIN_phong_shading
150
- [X][I] 114. GL_WIN_specular_fog
151
- [N][N] 115. GLX_SGIS_color_range
152
- [N][N] GL_SGIS_color_range
153
- [ ][ ] 117. GL_EXT_light_texture
154
- [X][I] 119. GL_SGIX_blend_alpha_minmax
155
- [N][N] 120. GL_EXT_scene_marker
156
- [N][N] GLX_EXT_scene_marker
157
- [X][I] 127. GL_SGIX_pixel_texture_bits
158
- [X][I] 129. GL_EXT_bgra
159
- [ ][ ] 132. GL_SGIX_async
160
- [X][I] 133. GL_SGIX_async_pixel
161
- [X][I] 134. GL_SGIX_async_histogram
162
- [O][O] 135. GL_INTEL_texture_scissor
163
- [ ][ ] 136. GL_INTEL_parallel_arrays
164
- [O][O] 137. GL_HP_occlusion_test
165
- [ ][ ] 138. GL_EXT_pixel_transform
166
- [X][I] 139. GL_EXT_pixel_transform_color_table
167
- [X][I] 141. GL_EXT_shared_texture_palette
168
- [N][N] 142. GLX_SGIS_blended_overlay
169
- [X][I] 144. GL_EXT_separate_specular_color
170
- [ ][ ] 145. GL_EXT_secondary_color
171
- [O][O] 146. GL_EXT_texture_env
172
- [ ][ ] 147. GL_EXT_texture_perturb_normal
173
- [ ][ ] 148. GL_EXT_multi_draw_arrays
174
- [ ][ ] GL_SUN_multi_draw_arrays
175
- [ ][ ] 149. GL_EXT_fog_coord
176
- [X][I] 155. GL_REND_screen_coordinates
177
- [ ][ ] 156. GL_EXT_coordinate_frame
178
- [X][I] 158. GL_EXT_texture_env_combine
179
- [X][I] 159. GL_APPLE_specular_vector
180
- [X][I] 160. GL_APPLE_transform_hint
181
- [ ][ ] 163. GL_SUNX_constant_data
182
- [ ][ ] 164. GL_SUN_global_alpha
183
- [ ][ ] 165. GL_SUN_triangle_list
184
- [ ][ ] 166. GL_SUN_vertex
185
- [N][N] 167. WGL_EXT_display_color_table
186
- [N][N] 168. WGL_EXT_extensions_string
187
- [N][N] 169. WGL_EXT_make_current_read
188
- [N][N] 170. WGL_EXT_pixel_format
189
- [N][N] 171. WGL_EXT_pbuffer
190
- [N][N] 172. WGL_EXT_swap_control
191
- [ ][ ] 173. GL_EXT_blend_func_separate
192
- [X][I] 174. GL_INGR_color_clamp
193
- [X][I] 175. GL_INGR_interlace_read
194
- [X][I] 176. GL_EXT_stencil_wrap
195
- [N][N] 177. WGL_EXT_depth_float
196
- [X][I] 178. GL_EXT_422_pixels
197
- [X][I] 179. GL_NV_texgen_reflection
198
- [X][I] 181. GL_SGIX_texture_range
199
- [X][I] 182. GL_SUN_convolution_border_modes
200
- [N][N] 183. GLX_SUN_get_transparent_index
201
- [X][I] 185. GL_EXT_texture_env_add
202
- [X][I] 186. GL_EXT_texture_lod_bias
203
- [X][I] 187. GL_EXT_texture_filter_anisotropic
204
- [ ][ ] 188. GL_EXT_vertex_weighting
205
- [X][I] 189. GL_NV_light_max_exponent
206
- [ ][ ] 190. GL_NV_vertex_array_range
207
- [ ][ ] 191. GL_NV_register_combiners
208
- [X][I] 192. GL_NV_fog_distance
209
- [X][I] 193. GL_NV_texgen_emboss
210
- [X][I] 194. GL_NV_blend_square
211
- [X][I] 195. GL_NV_texture_env_combine4
212
- [N][N] 196. GL_MESA_resize_buffers
213
- [N][N] 197. GL_MESA_window_pos
214
- [X][I] 198. GL_EXT_texture_compression_s3tc
215
- [X][I] 199. GL_IBM_cull_vertex
216
- [ ][ ] 200. GL_IBM_multimode_draw_arrays
217
- [ ][ ] 201. GL_IBM_vertex_array_lists
218
- [X][I] 206. GL_3DFX_texture_compression_FXT1
219
- [N][N] 207. GL_3DFX_multisample
220
- [ ][ ] 208. GL_3DFX_tbuffer
221
- [N][N] 209. WGL_EXT_multisample
222
- [N][N] GL_EXT_multisample
223
- [X][I] 210. GL_SGIX_vertex_preclip
224
- [X][I] GL_SGIX_vertex_preclip_hint
225
- [X][I] 212. GL_SGIX_resample
226
- [ ][ ] 214. GL_SGIS_texture_color_mask
227
- [N][N] 215. GLX_MESA_copy_sub_buffer
228
- [N][N] 216. GLX_MESA_pixmap_colormap
229
- [N][N] 217. GLX_MESA_release_buffers
230
- [N][N] 218. GLX_MESA_set_3dfx_mode
231
- [X][I] 220. GL_EXT_texture_env_dot3
232
- [X][I] 221. GL_ATI_texture_mirror_once
233
- [ ][ ] 222. GL_NV_fence
234
- [ ][ ] 223. GL_IBM_static_data
235
- [X][I] 224. GL_IBM_texture_mirrored_repeat
236
- [O][O] 225. GL_NV_evaluators
237
- [X][I] 226. GL_NV_packed_depth_stencil
238
- [ ][ ] 227. GL_NV_register_combiners2
239
- [X][I] 228. GL_NV_texture_compression_vtc
240
- [X][I] 229. GL_NV_texture_rectangle
241
- [X][I] 230. GL_NV_texture_shader
242
- [X][I] 231. GL_NV_texture_shader2
243
- [X][I] 232. GL_NV_vertex_array_range2
244
- [ ][ ] 233. GL_NV_vertex_program
245
- [N][N] 234. GLX_SGIX_visual_select_group
246
- [X][I] 235. GL_SGIX_texture_coordinate_clamp
247
- [N][N] 237. GLX_OML_swap_method
248
- [N][N] 238. GLX_OML_sync_control
249
- [X][I] 239. GL_OML_interlace
250
- [X][I] 240. GL_OML_subsample
251
- [X][I] 241. GL_OML_resample
252
- [N][N] 242. WGL_OML_sync_control
253
- [X][I] 243. GL_NV_copy_depth_to_color
254
- [ ][ ] 244. GL_ATI_envmap_bumpmap
255
- [ ][ ] 245. GL_ATI_fragment_shader
256
- [ ][ ] 246. GL_ATI_pn_triangles
257
- [ ][ ] 247. GL_ATI_vertex_array_object
258
- [ ][ ] 248. GL_EXT_vertex_shader
259
- [ ][ ] 249. GL_ATI_vertex_streams
260
- [N][N] 250. WGL_I3D_digital_video_control
261
- [N][N] 251. WGL_I3D_gamma
262
- [N][N] 252. WGL_I3D_genlock
263
- [N][N] 253. WGL_I3D_image_buffer
264
- [N][N] 254. WGL_I3D_swap_frame_lock
265
- [N][N] 255. WGL_I3D_swap_frame_usage
266
- [ ][ ] 256. GL_ATI_element_array
267
- [ ][ ] 257. GL_SUN_mesh_array
268
- [X][I] 258. GL_SUN_slice_accum
269
- [X][I] 259. GL_NV_multisample_filter_hint
270
- [X][I] 260. GL_NV_depth_clamp
271
- [ ][ ] 261. GL_NV_occlusion_query
272
- [ ][ ] 262. GL_NV_point_sprite
273
- [N][N] 263. WGL_NV_render_depth_texture
274
- [N][N] 264. WGL_NV_render_texture_rectangle
275
- [X][I] 265. GL_NV_texture_shader3
276
- [X][I] 266. GL_NV_vertex_program1_1
277
- [X][I] 267. GL_EXT_shadow_funcs
278
- [ ][ ] 268. GL_EXT_stencil_two_side
279
- [X][I] 269. GL_ATI_text_fragment_shader
280
- [X][I] 270. GL_APPLE_client_storage
281
- [ ][ ] 271. GL_APPLE_element_array
282
- [ ][ ] 272. GL_APPLE_fence
283
- [ ][ ] 273. GL_APPLE_vertex_array_object
284
- [ ][ ] 274. GL_APPLE_vertex_array_range
285
- [X][I] 275. GL_APPLE_ycbcr_422
286
- [O][O] 276. GL_S3_s3tc
287
- [ ][ ] 277. GL_ATI_draw_buffers
288
- [N][N] 278. WGL_ATI_pixel_format_float
289
- [X][I] 279. GL_ATI_texture_env_combine3
290
- [X][I] 280. GL_ATI_texture_float
291
- [X][I] 281. GL_NV_float_buffer
292
- [N][N] WGL_NV_float_buffer
293
- [ ][ ] 282. GL_NV_fragment_program
294
- [ ][ ] 283. GL_NV_half_float
295
- [ ][ ] 284. GL_NV_pixel_data_range
296
- [ ][ ] 285. GL_NV_primitive_restart
297
- [X][I] 286. GL_NV_texture_expand_normal
298
- [X][I] 287. GL_NV_vertex_program2
299
- [ ][ ] 288. GL_ATI_map_object_buffer
300
- [ ][ ] 289. GL_ATI_separate_stencil
301
- [ ][ ] 290. GL_ATI_vertex_attrib_array_object
302
- [X][I] 291. GL_OES_byte_coordinates
303
- [ ][ ] 292. GL_OES_fixed_point
304
- [ ][ ] 293. GL_OES_single_precision
305
- [X][I] 294. GL_OES_compressed_paletted_texture
306
- [X][I] 295. GL_OES_read_format
307
- [ ][ ] 296. GL_OES_query_matrix
308
- [ ][ ] 297. GL_EXT_depth_bounds_test
309
- [X][I] 298. GL_EXT_texture_mirror_clamp
310
- [ ][ ] 299. GL_EXT_blend_equation_separate
311
- [X][I] 300. GL_MESA_pack_invert
312
- [X][I] 301. GL_MESA_ycbcr_texture
313
- [X][I] 302. GL_EXT_pixel_buffer_object
314
- [X][I] 303. GL_NV_fragment_program_option
315
- [X][I] 304. GL_NV_fragment_program2
316
- [X][I] 305. GL_NV_vertex_program2_option
317
- [X][I] 306. GL_NV_vertex_program3
318
- [N][N] 307. GLX_SGIX_hyperpipe
319
- [N][N] 308. GLX_MESA_agp_offset
320
- [X][I] 309. GL_EXT_texture_compression_dxt1
321
- [X][X] 310. GL_EXT_framebuffer_object
322
- [ ][ ] 311. GL_GREMEDY_string_marker
323
- [X][I] 312. GL_EXT_packed_depth_stencil
324
- [N][N] 313. WGL_3DL_stereo_control
325
- [ ][ ] 314. GL_EXT_stencil_clear_tag
326
- [X][I] 315. GL_EXT_texture_sRGB
327
- [ ][ ] 316. GL_EXT_framebuffer_blit
328
- [ ][ ] 317. GL_EXT_framebuffer_multisample
329
- [X][I] 318. GL_MESAX_texture_stack
330
- [ ][ ] 319. GL_EXT_timer_query
331
- [ ][ ] 320. GL_EXT_gpu_program_parameters
332
- [ ][ ] 321. GL_APPLE_flush_buffer_range
333
- [ ][ ] 322. GL_NV_gpu_program4
334
- [ ][ ] 323. GL_NV_geometry_program4
335
- [ ][ ] 324. GL_EXT_geometry_shader4
336
- [ ][ ] 325. GL_NV_vertex_program4
337
- [ ][ ] 326. GL_EXT_gpu_shader4
338
- [ ][ ] 327. GL_EXT_draw_instanced
339
- [X][I] 328. GL_EXT_packed_float
340
- [N][N] WGL_EXT_pixel_format_packed_float
341
- [N][N] GLX_EXT_fbconfig_packed_float
342
- [ ][ ] 329. GL_EXT_texture_array
343
- [ ][ ] 330. GL_EXT_texture_buffer_object
344
- [X][I] 331. GL_EXT_texture_compression_latc
345
- [X][I] 332. GL_EXT_texture_compression_rgtc
346
- [X][I] 333. GL_EXT_texture_shared_exponent
347
- [ ][ ] 334. GL_NV_depth_buffer_float
348
- [X][I] 335. GL_NV_fragment_program4
349
- [ ][ ] 336. GL_NV_framebuffer_multisample_coverage
350
- [X][I] 337. GL_EXT_framebuffer_sRGB
351
- [N][N] GLX_EXT_framebuffer_sRGB
352
- [N][N] WGL_EXT_framebuffer_sRGB
353
- [X][I] 338. GL_NV_geometry_shader4
354
- [ ][ ] 339. GL_NV_parameter_buffer_object
355
- [ ][ ] 340. GL_EXT_draw_buffers2
356
- [ ][ ] 341. GL_NV_transform_feedback
357
- [ ][ ] 342. GL_EXT_bindable_uniform
358
- [ ][ ] 343. GL_EXT_texture_integer
359
- [N][N] 344. GLX_EXT_texture_from_pixmap
360
-
361
- </pre>