ruby-opengl 0.50.0 → 0.60.0

Sign up to get free protection for your applications and to get access to all the features.
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
data/Rakefile CHANGED
@@ -13,15 +13,6 @@
13
13
  # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
14
14
  # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
15
 
16
- # This Rakefile currently only deals with generating docs and uploading
17
- # the web site. The actual modules are build using mkrf and, for now,
18
- # the top-level build.sh script.
19
-
20
- #====================================================================
21
- # Generate html docs from the markdown source and upload to the site.
22
- # All doc files that are destined for the website have filenames that
23
- # end in .txt.
24
-
25
16
  begin
26
17
  require 'rubygems'
27
18
  rescue LoadError
@@ -35,9 +26,16 @@ require 'rake/testtask'
35
26
 
36
27
  require 'mkrf/rakehelper'
37
28
 
29
+ # Generate html docs from the markdown source and upload to the site.
30
+ # All doc files that are destined for the website have filenames that
31
+ # end in .txt.
32
+
38
33
  WEBSITE_MKDN = FileList['./doc/*.txt'] << 'README.txt'
39
34
  NICE_HTML_DOCS = WEBSITE_MKDN.ext('html')
40
35
 
36
+ # defines columns in the HTML extension list
37
+ GLEXT_VERSIONS = ["svn","0.60","0.50"]
38
+
41
39
  CLEAN.include("ext/gl*/Rakefile", "ext/*/mkrf.log", "ext/*/*.so",
42
40
  "ext/**/*.bundle", "lib/*.so", "lib/*.bundle", "ext/*/*.o{,bj}",
43
41
  "ext/*/*.lib", "ext/*/*.exp", "ext/*/*.pdb",
@@ -46,6 +44,7 @@ CLOBBER.include("*.plain", "doc/*.plain", "doc/*.snip", "*.html",
46
44
  "doc/*.html", "website/*.html", "website/images/*")
47
45
  # Make sure these files aren't deleted in a clobber op
48
46
  CLOBBER.exclude("website/images/tab_bottom.gif")
47
+ CLOBBER.exclude("website/images/*.jpg")
49
48
 
50
49
  setup_extension('gl', 'gl')
51
50
  setup_extension('glu', 'glu')
@@ -84,8 +83,13 @@ task :explain_website do
84
83
  end
85
84
  end
86
85
 
86
+ desc 'Generate supported extension list.'
87
+ task :gen_glext_list do
88
+ sh "./utils/extlistgen.rb doc/extensions.txt.in doc/extensions.txt " + GLEXT_VERSIONS.join(" ")
89
+ end
90
+
87
91
  desc 'Generate website html.'
88
- task :gen_website => NICE_HTML_DOCS do
92
+ task :gen_website => [:gen_glext_list] + NICE_HTML_DOCS do
89
93
  # Now that the website docs have been generated, copy them to ./website.
90
94
  puts
91
95
  sh "cp README.html website/index.html"
@@ -135,7 +139,7 @@ gem_files = gem_files.exclude("**/*.so", "**/*.o{,bj}", "ext/**/*.log", "ext/gl*
135
139
 
136
140
  spec = Gem::Specification.new do |s|
137
141
  s.name = "ruby-opengl"
138
- s.version = "0.50.0"
142
+ s.version = "0.60.0"
139
143
  s.authors = [ "Alain Hoang", "Jan Dvorak", "Minh Thu Vo", "James Adam" ]
140
144
  s.homepage = "http://ruby-opengl.rubyforge.org"
141
145
  s.platform = Gem::Platform::RUBY
@@ -6,12 +6,12 @@ Pre-requisites
6
6
 
7
7
  General
8
8
  --------------
9
- * C compiler
10
- * ruby 1.8.5+
9
+ * C compiler (not needed for binary install on Windows)
10
+ * ruby 1.8.5+ or ruby 1.9.0+
11
11
  * rake
12
- * mkrf 0.2.0+
12
+ * mkrf 0.2.0+ (0.2.3+ for ruby 1.9)
13
13
  * rubygems 0.9.1+
14
- * OpenGL headers for OpenGL version 1.1 or later
14
+ * OpenGL headers for OpenGL version 1.1 or later (not needed for binary install on Windows)
15
15
  * GLUT 3.7+ or API-compatible implementation (freeglut,OpenGLUT)
16
16
 
17
17
  Linux
@@ -55,6 +55,10 @@ You may also need 'glut.h' in SDK include directory, as the One-click ruby
55
55
  installer is missing it. You can copy the file from glut package at [glut homepage][].
56
56
  Alternatively, you can install the precompiled binary gem (see bellow).
57
57
 
58
+ <b>Important note:</b> If you are using the One-click installer version 1.8.6-25 or earlier,
59
+ you must delete or rename files 'opengl.so' and 'glut.so' in
60
+ C:/ruby/lib/ruby/site_ruby/1.8/i386-msvcrt
61
+
58
62
  [glut homepage]: http://www.xmission.com/~nate/glut.html
59
63
 
60
64
  Build and installation
@@ -87,7 +91,7 @@ Installing manually built extensions
87
91
  ------------------
88
92
  1. Run 'rake clean' to clean out the project
89
93
  2. Run 'rake gem' to create source gem from project
90
- 3. Run 'gem install pkg/ruby-opengl-<version>.gem' to compile and install the gem
94
+ 3. Run 'gem install pkg/ruby-opengl-(version).gem' to compile and install the gem
91
95
  4. Done.
92
96
 
93
97
  Building binary gem (useful only for binary distribution of the project)
@@ -95,7 +99,7 @@ Building binary gem (useful only for binary distribution of the project)
95
99
  1. Run 'gem install gembuilder' to install the gembuilder package
96
100
  2. Run 'rake clean' to clean out the project
97
101
  3. Run 'rake gem' to build source gem
98
- 4. Run 'gembuilder pkg/ruby-opengl-<version>.gem' to compile the binary gem
102
+ 4. Run 'gembuilder pkg/ruby-opengl-(version).gem' to compile the binary gem
99
103
 
100
104
 
101
105
  Testing
@@ -0,0 +1,348 @@
1
+ # extension name, [Supported/Unsupported/NonGL], first supported in ruby-opengl version x.y.z
2
+ GL_ARB_multitexture,Unsupported,N/A
3
+ GLX_ARB_get_proc_address,NonGL,N/A
4
+ GL_ARB_transpose_matrix,Supported,0.50
5
+ WGL_ARB_buffer_region,NonGL,N/A
6
+ GL_ARB_multisample,Supported,0.50
7
+ GLX_ARB_multisample,NonGL,N/A
8
+ WGL_ARB_multisample,NonGL,N/A
9
+ GL_ARB_texture_env_add,Supported,0.50
10
+ GL_ARB_texture_cube_map,Supported,0.50
11
+ WGL_ARB_extensions_string,NonGL,N/A
12
+ WGL_ARB_pixel_format,NonGL,N/A
13
+ WGL_ARB_make_current_read,NonGL,N/A
14
+ WGL_ARB_pbuffer,NonGL,N/A
15
+ GL_ARB_texture_compression,Unsupported,N/A
16
+ GL_ARB_texture_border_clamp,Supported,0.50
17
+ GL_ARB_point_parameters,Supported,0.60
18
+ GL_ARB_vertex_blend,Unsupported,N/A
19
+ GL_ARB_matrix_palette,Unsupported,N/A
20
+ GL_ARB_texture_env_combine,Supported,0.50
21
+ GL_ARB_texture_env_crossbar,Supported,0.50
22
+ GL_ARB_texture_env_dot3,Supported,0.50
23
+ WGL_ARB_render_texture,NonGL,N/A
24
+ GL_ARB_texture_mirrored_repeat,Supported,0.50
25
+ GL_ARB_depth_texture,Supported,0.50
26
+ GL_ARB_shadow,Supported,0.50
27
+ GL_ARB_shadow_ambient,Supported,0.50
28
+ GL_ARB_window_pos,Supported,0.60
29
+ GL_ARB_vertex_program,Supported,0.60
30
+ GL_ARB_fragment_program,Supported,0.60
31
+ GL_ARB_vertex_buffer_object,Unsupported,N/A
32
+ GL_ARB_occlusion_query,Supported,0.60
33
+ GL_ARB_shader_objects,Supported,0.60
34
+ GL_ARB_vertex_shader,Supported,0.60
35
+ GL_ARB_fragment_shader,Supported,0.60
36
+ GL_ARB_shading_language_100,Supported,0.50
37
+ GL_ARB_texture_non_power_of_two,Supported,0.50
38
+ GL_ARB_point_sprite,Supported,0.50
39
+ GL_ARB_fragment_program_shadow,Supported,0.50
40
+ GL_ARB_draw_buffers,Supported,0.50
41
+ GL_ARB_texture_rectangle,Supported,0.50
42
+ GL_ARB_color_buffer_float,Supported,0.50
43
+ WGL_ARB_pixel_format_float,NonGL,N/A
44
+ GLX_ARB_fbconfig_float,NonGL,N/A
45
+ GL_ARB_half_float_pixel,Supported,0.50
46
+ GL_ARB_texture_float,Supported,0.50
47
+ GL_ARB_pixel_buffer_object,Supported,0.50
48
+ GL_EXT_abgr,Supported,0.50
49
+ GL_EXT_blend_color,Supported,0.60
50
+ GL_EXT_polygon_offset,Supported,0.60
51
+ GL_EXT_texture,Supported,0.50
52
+ GL_EXT_texture3D,Supported,0.50
53
+ GL_SGIS_texture_filter4,Unsupported,N/A
54
+ GL_EXT_subtexture,Unsupported,N/A
55
+ GL_EXT_copy_texture,Unsupported,N/A
56
+ GL_EXT_histogram,Unsupported,N/A
57
+ GL_EXT_convolution,Unsupported,N/A
58
+ GL_SGI_color_matrix,Supported,0.50
59
+ GL_SGI_color_table,Unsupported,N/A
60
+ GL_SGIS_pixel_texture,Unsupported,N/A
61
+ GL_SGIX_pixel_texture,Unsupported,N/A
62
+ GL_SGIS_texture4D,Unsupported,N/A
63
+ GL_SGI_texture_color_table,Supported,0.50
64
+ GL_EXT_cmyka,Supported,0.50
65
+ GL_EXT_texture_object,Supported,0.60
66
+ GL_SGIS_detail_texture,Unsupported,N/A
67
+ GL_SGIS_sharpen_texture,Unsupported,N/A
68
+ GL_EXT_packed_pixels,Supported,0.50
69
+ GL_SGIS_texture_lod,Supported,0.50
70
+ GL_SGIS_multisample,Unsupported,N/A
71
+ GLX_SGIS_multisample,NonGL,N/A
72
+ GL_EXT_rescale_normal,Supported,0.50
73
+ GLX_EXT_visual_info,NonGL,N/A
74
+ GL_EXT_vertex_array,Unsupported,N/A
75
+ GL_EXT_misc_attribute,Supported,0.50
76
+ GL_SGIS_generate_mipmap,Supported,0.50
77
+ GL_SGIX_clipmap,Supported,0.50
78
+ GL_SGIX_shadow,Supported,0.50
79
+ GL_SGIS_texture_edge_clamp,Supported,0.50
80
+ GL_SGIS_texture_border_clamp,Supported,0.50
81
+ GL_EXT_blend_minmax,Supported,0.60
82
+ GL_EXT_blend_subtract,Supported,0.50
83
+ GL_EXT_blend_logic_op,Supported,0.50
84
+ GLX_SGI_swap_control,NonGL,N/A
85
+ GLX_SGI_video_sync,NonGL,N/A
86
+ GLX_SGI_make_current_read,NonGL,N/A
87
+ GLX_SGIX_video_source,NonGL,N/A
88
+ GLX_EXT_visual_rating,NonGL,N/A
89
+ GL_SGIX_interlace,Supported,0.50
90
+ GLX_EXT_import_context,NonGL,N/A
91
+ GLX_SGIX_fbconfig,NonGL,N/A
92
+ GLX_SGIX_pbuffer,NonGL,N/A
93
+ GL_SGIS_texture_select,Supported,0.50
94
+ GL_SGIX_sprite,Unsupported,N/A
95
+ GL_SGIX_texture_multi_buffer,Supported,0.50
96
+ GL_EXT_point_parameters,Supported,0.60
97
+ GL_SGIX_instruments,Unsupported,N/A
98
+ GL_SGIX_texture_scale_bias,Supported,0.50
99
+ GL_SGIX_framezoom,Unsupported,N/A
100
+ GL_SGIX_tag_sample_buffer,Unsupported,N/A
101
+ GL_SGIX_reference_plane,Unsupported,N/A
102
+ GL_SGIX_flush_raster,Unsupported,N/A
103
+ GLX_SGI_cushion,NonGL,N/A
104
+ GL_SGIX_depth_texture,Supported,0.50
105
+ GL_SGIS_fog_function,Unsupported,N/A
106
+ GL_SGIX_fog_offset,Supported,0.50
107
+ GL_HP_image_transform,Unsupported,N/A
108
+ GL_HP_convolution_border_modes,Supported,0.50
109
+ GL_SGIX_texture_add_env,Supported,0.50
110
+ GL_EXT_color_subtable,Unsupported,N/A
111
+ GLU_EXT_object_space_tess,NonGL,N/A
112
+ GL_PGI_vertex_hints,Supported,0.50
113
+ GL_PGI_misc_hints,Unsupported,N/A
114
+ GL_EXT_paletted_texture,Unsupported,N/A
115
+ GL_EXT_clip_volume_hint,Supported,0.50
116
+ GL_SGIX_list_priority,Unsupported,N/A
117
+ GL_SGIX_ir_instrument1,Supported,0.50
118
+ GLX_SGIX_video_resize,NonGL,N/A
119
+ GL_SGIX_texture_lod_bias,Supported,0.50
120
+ GLU_SGI_filter4_parameters,NonGL,N/A
121
+ GLX_SGIX_dm_buffer,NonGL,N/A
122
+ GL_SGIX_shadow_ambient,Supported,0.50
123
+ GLX_SGIX_swap_group,NonGL,N/A
124
+ GLX_SGIX_swap_barrier,NonGL,N/A
125
+ GL_EXT_index_texture,Supported,0.50
126
+ GL_EXT_index_material,Unsupported,N/A
127
+ GL_EXT_index_func,Unsupported,N/A
128
+ GL_EXT_index_array_formats,Supported,0.50
129
+ GL_EXT_compiled_vertex_array,Supported,0.60
130
+ GL_EXT_cull_vertex,Unsupported,N/A
131
+ GLU_EXT_nurbs_tessellator,NonGL,N/A
132
+ GL_SGIX_ycrcb,Supported,0.50
133
+ GL_EXT_fragment_lighting,Unsupported,N/A
134
+ GL_IBM_rasterpos_clip,Supported,0.50
135
+ GL_HP_texture_lighting,Supported,0.50
136
+ GL_EXT_draw_range_elements,Supported,0.60
137
+ GL_WIN_phong_shading,Supported,0.50
138
+ GL_WIN_specular_fog,Supported,0.50
139
+ GL_SGIS_color_range,NonGL,N/A
140
+ GLX_SGIS_color_range,NonGL,N/A
141
+ GL_EXT_light_texture,Unsupported,N/A
142
+ GL_SGIX_blend_alpha_minmax,Supported,0.50
143
+ GL_EXT_scene_marker,NonGL,N/A
144
+ GLX_EXT_scene_marker,NonGL,N/A
145
+ GL_SGIX_pixel_texture_bits,Supported,0.50
146
+ GL_EXT_bgra,Supported,0.50
147
+ GL_SGIX_async,Unsupported,N/A
148
+ GL_SGIX_async_pixel,Supported,0.50
149
+ GL_SGIX_async_histogram,Supported,0.50
150
+ GL_INTEL_texture_scissor,Other,N/A
151
+ GL_INTEL_parallel_arrays,Unsupported,N/A
152
+ GL_HP_occlusion_test,Other,N/A
153
+ GL_EXT_pixel_transform,Unsupported,N/A
154
+ GL_EXT_pixel_transform_color_table,Supported,0.50
155
+ GL_EXT_shared_texture_palette,Supported,0.50
156
+ GLX_SGIS_blended_overlay,NonGL,N/A
157
+ GL_EXT_separate_specular_color,Supported,0.50
158
+ GL_EXT_secondary_color,Supported,0.60
159
+ GL_EXT_texture_env,Other,N/A
160
+ GL_EXT_texture_perturb_normal,Unsupported,N/A
161
+ GL_EXT_multi_draw_arrays,Supported,0.60
162
+ GL_SUN_multi_draw_arrays,Supported,0.60
163
+ GL_EXT_fog_coord,Supported,0.60
164
+ GL_REND_screen_coordinates,Supported,0.50
165
+ GL_EXT_coordinate_frame,Unsupported,N/A
166
+ GL_EXT_texture_env_combine,Supported,0.50
167
+ GL_APPLE_specular_vector,Supported,0.50
168
+ GL_APPLE_transform_hint,Supported,0.50
169
+ GL_SUNX_constant_data,Unsupported,N/A
170
+ GL_SUN_global_alpha,Unsupported,N/A
171
+ GL_SUN_triangle_list,Unsupported,N/A
172
+ GL_SUN_vertex,Unsupported,N/A
173
+ WGL_EXT_display_color_table,NonGL,N/A
174
+ WGL_EXT_extensions_string,NonGL,N/A
175
+ WGL_EXT_make_current_read,NonGL,N/A
176
+ WGL_EXT_pixel_format,NonGL,N/A
177
+ WGL_EXT_pbuffer,NonGL,N/A
178
+ WGL_EXT_swap_control,NonGL,N/A
179
+ GL_EXT_blend_func_separate,Supported,0.60
180
+ GL_INGR_color_clamp,Supported,0.50
181
+ GL_INGR_interlace_read,Supported,0.50
182
+ GL_EXT_stencil_wrap,Supported,0.50
183
+ WGL_EXT_depth_float,NonGL,N/A
184
+ GL_EXT_422_pixels,Supported,0.50
185
+ GL_NV_texgen_reflection,Supported,0.50
186
+ GL_SGIX_texture_range,Supported,0.50
187
+ GL_SUN_convolution_border_modes,Supported,0.50
188
+ GLX_SUN_get_transparent_index,NonGL,N/A
189
+ GL_EXT_texture_env_add,Supported,0.50
190
+ GL_EXT_texture_lod_bias,Supported,0.50
191
+ GL_EXT_texture_filter_anisotropic,Supported,0.50
192
+ GL_EXT_vertex_weighting,Unsupported,N/A
193
+ GL_NV_light_max_exponent,Supported,0.50
194
+ GL_NV_vertex_array_range,Unsupported,N/A
195
+ GL_NV_register_combiners,Unsupported,N/A
196
+ GL_NV_fog_distance,Supported,0.50
197
+ GL_NV_texgen_emboss,Supported,0.50
198
+ GL_NV_blend_square,Supported,0.50
199
+ GL_NV_texture_env_combine4,Supported,0.50
200
+ GL_MESA_resize_buffers,NonGL,N/A
201
+ GL_MESA_window_pos,NonGL,N/A
202
+ GL_EXT_texture_compression_s3tc,Supported,0.50
203
+ GL_IBM_cull_vertex,Supported,0.50
204
+ GL_IBM_multimode_draw_arrays,Unsupported,N/A
205
+ GL_IBM_vertex_array_lists,Unsupported,N/A
206
+ GL_3DFX_texture_compression_FXT1,Supported,0.50
207
+ GL_3DFX_multisample,NonGL,N/A
208
+ GL_3DFX_tbuffer,Supported,0.60
209
+ GL_EXT_multisample,NonGL,N/A
210
+ WGL_EXT_multisample,NonGL,N/A
211
+ GL_SGIX_vertex_preclip,Supported,0.50
212
+ GL_SGIX_vertex_preclip_hint,Supported,0.50
213
+ GL_SGIX_resample,Supported,0.50
214
+ GL_SGIS_texture_color_mask,Unsupported,N/A
215
+ GLX_MESA_copy_sub_buffer,NonGL,N/A
216
+ GLX_MESA_pixmap_colormap,NonGL,N/A
217
+ GLX_MESA_release_buffers,NonGL,N/A
218
+ GLX_MESA_set_3dfx_mode,NonGL,N/A
219
+ GL_EXT_texture_env_dot3,Supported,0.50
220
+ GL_ATI_texture_mirror_once,Supported,0.50
221
+ GL_NV_fence,Supported,0.60
222
+ GL_IBM_static_data,Unsupported,N/A
223
+ GL_IBM_texture_mirrored_repeat,Supported,0.50
224
+ GL_NV_evaluators,Other,N/A
225
+ GL_NV_packed_depth_stencil,Supported,0.50
226
+ GL_NV_register_combiners2,Unsupported,N/A
227
+ GL_NV_texture_compression_vtc,Supported,0.50
228
+ GL_NV_texture_rectangle,Supported,0.50
229
+ GL_NV_texture_shader,Supported,0.50
230
+ GL_NV_texture_shader2,Supported,0.50
231
+ GL_NV_vertex_array_range2,Supported,0.50
232
+ GL_NV_vertex_program,Supported,0.60
233
+ GLX_SGIX_visual_select_group,NonGL,N/A
234
+ GL_SGIX_texture_coordinate_clamp,Supported,0.50
235
+ GLX_OML_swap_method,NonGL,N/A
236
+ GLX_OML_sync_control,NonGL,N/A
237
+ GL_OML_interlace,Supported,0.50
238
+ GL_OML_subsample,Supported,0.50
239
+ GL_OML_resample,Supported,0.50
240
+ WGL_OML_sync_control,NonGL,N/A
241
+ GL_NV_copy_depth_to_color,Supported,0.50
242
+ GL_ATI_envmap_bumpmap,Unsupported,N/A
243
+ GL_ATI_fragment_shader,Unsupported,N/A
244
+ GL_ATI_pn_triangles,Unsupported,N/A
245
+ GL_ATI_vertex_array_object,Unsupported,N/A
246
+ GL_EXT_vertex_shader,Unsupported,N/A
247
+ GL_ATI_vertex_streams,Unsupported,N/A
248
+ WGL_I3D_digital_video_control,NonGL,N/A
249
+ WGL_I3D_gamma,NonGL,N/A
250
+ WGL_I3D_genlock,NonGL,N/A
251
+ WGL_I3D_image_buffer,NonGL,N/A
252
+ WGL_I3D_swap_frame_lock,NonGL,N/A
253
+ WGL_I3D_swap_frame_usage,NonGL,N/A
254
+ GL_ATI_element_array,Unsupported,N/A
255
+ GL_SUN_mesh_array,Unsupported,N/A
256
+ GL_SUN_slice_accum,Supported,0.50
257
+ GL_NV_multisample_filter_hint,Supported,0.50
258
+ GL_NV_depth_clamp,Supported,0.50
259
+ GL_NV_occlusion_query,Supported,0.60
260
+ GL_NV_point_sprite,Supported,0.60
261
+ WGL_NV_render_depth_texture,NonGL,N/A
262
+ WGL_NV_render_texture_rectangle,NonGL,N/A
263
+ GL_NV_texture_shader3,Supported,0.50
264
+ GL_NV_vertex_program1_1,Supported,0.50
265
+ GL_EXT_shadow_funcs,Supported,0.50
266
+ GL_EXT_stencil_two_side,Supported,0.60
267
+ GL_ATI_text_fragment_shader,Supported,0.50
268
+ GL_APPLE_client_storage,Supported,0.50
269
+ GL_APPLE_element_array,Unsupported,N/A
270
+ GL_APPLE_fence,Unsupported,N/A
271
+ GL_APPLE_vertex_array_object,Unsupported,N/A
272
+ GL_APPLE_vertex_array_range,Unsupported,N/A
273
+ GL_APPLE_ycbcr_422,Supported,0.50
274
+ GL_S3_s3tc,Other,N/A
275
+ GL_ATI_draw_buffers,Supported,0.60
276
+ WGL_ATI_pixel_format_float,NonGL,N/A
277
+ GL_ATI_texture_env_combine3,Supported,0.50
278
+ GL_ATI_texture_float,Supported,0.50
279
+ GL_NV_float_buffer,Supported,0.50
280
+ WGL_NV_float_buffer,NonGL,N/A
281
+ GL_NV_fragment_program,Supported,0.60
282
+ GL_NV_half_float,Unsupported,N/A
283
+ GL_NV_pixel_data_range,Unsupported,N/A
284
+ GL_NV_primitive_restart,Supported,0.60
285
+ GL_NV_texture_expand_normal,Supported,0.50
286
+ GL_NV_vertex_program2,Supported,0.50
287
+ GL_ATI_map_object_buffer,Unsupported,N/A
288
+ GL_ATI_separate_stencil,Unsupported,N/A
289
+ GL_ATI_vertex_attrib_array_object,Unsupported,N/A
290
+ GL_OES_byte_coordinates,Supported,0.50
291
+ GL_OES_fixed_point,Unsupported,N/A
292
+ GL_OES_single_precision,Unsupported,N/A
293
+ GL_OES_compressed_paletted_texture,Supported,0.50
294
+ GL_OES_read_format,Supported,0.50
295
+ GL_OES_query_matrix,Unsupported,N/A
296
+ GL_EXT_depth_bounds_test,Supported,0.60
297
+ GL_EXT_texture_mirror_clamp,Supported,0.50
298
+ GL_EXT_blend_equation_separate,Supported,0.60
299
+ GL_MESA_pack_invert,Supported,0.50
300
+ GL_MESA_ycbcr_texture,Supported,0.50
301
+ GL_EXT_pixel_buffer_object,Supported,0.50
302
+ GL_NV_fragment_program_option,Supported,0.50
303
+ GL_NV_fragment_program2,Supported,0.50
304
+ GL_NV_vertex_program2_option,Supported,0.50
305
+ GL_NV_vertex_program3,Supported,0.50
306
+ GLX_SGIX_hyperpipe,NonGL,N/A
307
+ GLX_MESA_agp_offset,NonGL,N/A
308
+ GL_EXT_texture_compression_dxt1,Supported,0.50
309
+ GL_EXT_framebuffer_object,Supported,0.50
310
+ GL_GREMEDY_string_marker,Supported,0.60
311
+ GL_EXT_packed_depth_stencil,Supported,0.50
312
+ WGL_3DL_stereo_control,NonGL,N/A
313
+ GL_EXT_stencil_clear_tag,Supported,0.60
314
+ GL_EXT_texture_sRGB,Supported,0.50
315
+ GL_EXT_framebuffer_blit,Supported,0.60
316
+ GL_EXT_framebuffer_multisample,Supported,0.60
317
+ GL_MESAX_texture_stack,Supported,0.50
318
+ GL_EXT_timer_query,Supported,0.60
319
+ GL_EXT_gpu_program_parameters,Supported,0.60
320
+ GL_APPLE_flush_buffer_range,Unsupported,N/A
321
+ GL_NV_gpu_program4,Supported,0.60
322
+ GL_NV_geometry_program4,Supported,0.60
323
+ GL_EXT_geometry_shader4,Supported,0.60
324
+ GL_NV_vertex_program4,Supported,0.60
325
+ GL_EXT_gpu_shader4,Supported,0.60
326
+ GL_EXT_draw_instanced,Supported,0.60
327
+ GL_EXT_packed_float,Supported,0.50
328
+ WGL_EXT_pixel_format_packed_float,NonGL,N/A
329
+ GLX_EXT_fbconfig_packed_float,NonGL,N/A
330
+ GL_EXT_texture_array,Supported,0.60
331
+ GL_EXT_texture_buffer_object,Supported,0.60
332
+ GL_EXT_texture_compression_latc,Supported,0.50
333
+ GL_EXT_texture_compression_rgtc,Supported,0.50
334
+ GL_EXT_texture_shared_exponent,Supported,0.50
335
+ GL_NV_depth_buffer_float,Supported,0.60
336
+ GL_NV_fragment_program4,Supported,0.50
337
+ GL_NV_framebuffer_multisample_coverage,Supported,0.60
338
+ GL_EXT_framebuffer_sRGB,Supported,0.50
339
+ GLX_EXT_framebuffer_sRGB,NonGL,N/A
340
+ WGL_EXT_framebuffer_sRGB,NonGL,N/A
341
+ GL_NV_geometry_shader4,Supported,0.50
342
+ GL_NV_parameter_buffer_object,Unsupported,N/A
343
+ GL_EXT_draw_buffers2,Unsupported,N/A
344
+ GL_NV_transform_feedback,Unsupported,N/A
345
+ GL_EXT_bindable_uniform,Unsupported,N/A
346
+ GL_EXT_texture_integer,Supported,0.60
347
+ GLX_EXT_texture_from_pixmap,NonGL,N/A
348
+ GL_GREMEDY_frame_terminator,Supported,0.60