opengl 0.7.0.pre1-x86-mingw32

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 (141) hide show
  1. data/.gemtest +0 -0
  2. data/.gitignore +8 -0
  3. data/History.txt +36 -0
  4. data/MIT-LICENSE +18 -0
  5. data/Manifest.txt +140 -0
  6. data/README.rdoc +51 -0
  7. data/Rakefile +129 -0
  8. data/Rakefile.cross +104 -0
  9. data/doc/build_install.txt +119 -0
  10. data/doc/extensions.txt.in +348 -0
  11. data/doc/history.txt +66 -0
  12. data/doc/requirements_and_design.txt +117 -0
  13. data/doc/roadmap.txt +28 -0
  14. data/doc/scientific_use.txt +35 -0
  15. data/doc/supplies/page_template.html +71 -0
  16. data/doc/thanks.txt +29 -0
  17. data/doc/tutorial.txt +469 -0
  18. data/examples/NeHe/nehe_lesson02.rb +117 -0
  19. data/examples/NeHe/nehe_lesson03.rb +122 -0
  20. data/examples/NeHe/nehe_lesson04.rb +133 -0
  21. data/examples/NeHe/nehe_lesson05.rb +186 -0
  22. data/examples/NeHe/nehe_lesson36.rb +303 -0
  23. data/examples/OrangeBook/3Dlabs-License.txt +33 -0
  24. data/examples/OrangeBook/brick.frag +36 -0
  25. data/examples/OrangeBook/brick.rb +376 -0
  26. data/examples/OrangeBook/brick.vert +41 -0
  27. data/examples/OrangeBook/particle.frag +17 -0
  28. data/examples/OrangeBook/particle.rb +406 -0
  29. data/examples/OrangeBook/particle.vert +38 -0
  30. data/examples/README +16 -0
  31. data/examples/RedBook/aapoly.rb +142 -0
  32. data/examples/RedBook/aargb.rb +119 -0
  33. data/examples/RedBook/accanti.rb +162 -0
  34. data/examples/RedBook/accpersp.rb +215 -0
  35. data/examples/RedBook/alpha.rb +123 -0
  36. data/examples/RedBook/alpha3D.rb +158 -0
  37. data/examples/RedBook/bezcurve.rb +105 -0
  38. data/examples/RedBook/bezmesh.rb +137 -0
  39. data/examples/RedBook/checker.rb +124 -0
  40. data/examples/RedBook/clip.rb +95 -0
  41. data/examples/RedBook/colormat.rb +135 -0
  42. data/examples/RedBook/cube.rb +69 -0
  43. data/examples/RedBook/depthcue.rb +99 -0
  44. data/examples/RedBook/dof.rb +205 -0
  45. data/examples/RedBook/double.rb +105 -0
  46. data/examples/RedBook/drawf.rb +91 -0
  47. data/examples/RedBook/feedback.rb +145 -0
  48. data/examples/RedBook/fog.rb +167 -0
  49. data/examples/RedBook/font.rb +151 -0
  50. data/examples/RedBook/hello.rb +79 -0
  51. data/examples/RedBook/image.rb +137 -0
  52. data/examples/RedBook/jitter.rb +207 -0
  53. data/examples/RedBook/lines.rb +128 -0
  54. data/examples/RedBook/list.rb +111 -0
  55. data/examples/RedBook/material.rb +275 -0
  56. data/examples/RedBook/mipmap.rb +156 -0
  57. data/examples/RedBook/model.rb +113 -0
  58. data/examples/RedBook/movelight.rb +132 -0
  59. data/examples/RedBook/pickdepth.rb +179 -0
  60. data/examples/RedBook/planet.rb +108 -0
  61. data/examples/RedBook/quadric.rb +158 -0
  62. data/examples/RedBook/robot.rb +115 -0
  63. data/examples/RedBook/select.rb +196 -0
  64. data/examples/RedBook/smooth.rb +95 -0
  65. data/examples/RedBook/stencil.rb +163 -0
  66. data/examples/RedBook/stroke.rb +167 -0
  67. data/examples/RedBook/surface.rb +166 -0
  68. data/examples/RedBook/teaambient.rb +132 -0
  69. data/examples/RedBook/teapots.rb +182 -0
  70. data/examples/RedBook/tess.rb +183 -0
  71. data/examples/RedBook/texbind.rb +147 -0
  72. data/examples/RedBook/texgen.rb +169 -0
  73. data/examples/RedBook/texturesurf.rb +128 -0
  74. data/examples/RedBook/varray.rb +159 -0
  75. data/examples/RedBook/wrap.rb +148 -0
  76. data/examples/misc/OGLBench.rb +337 -0
  77. data/examples/misc/anisotropic.rb +194 -0
  78. data/examples/misc/fbo_test.rb +356 -0
  79. data/examples/misc/font-glut.rb +46 -0
  80. data/examples/misc/glfwtest.rb +30 -0
  81. data/examples/misc/plane.rb +161 -0
  82. data/examples/misc/readpixel.rb +65 -0
  83. data/examples/misc/sdltest.rb +34 -0
  84. data/examples/misc/trislam.rb +828 -0
  85. data/ext/common/common.h +448 -0
  86. data/ext/common/conv.h +234 -0
  87. data/ext/common/funcdef.h +280 -0
  88. data/ext/common/gl-enums.h +10031 -0
  89. data/ext/common/gl-error.h +23 -0
  90. data/ext/common/gl-types.h +67 -0
  91. data/ext/common/glu-enums.h +463 -0
  92. data/ext/gl/extconf.rb +43 -0
  93. data/ext/gl/gl-1.0-1.1.c +2811 -0
  94. data/ext/gl/gl-1.2.c +814 -0
  95. data/ext/gl/gl-1.3.c +443 -0
  96. data/ext/gl/gl-1.4.c +348 -0
  97. data/ext/gl/gl-1.5.c +225 -0
  98. data/ext/gl/gl-2.0.c +657 -0
  99. data/ext/gl/gl-2.1.c +57 -0
  100. data/ext/gl/gl-enums.c +3354 -0
  101. data/ext/gl/gl-error.c +104 -0
  102. data/ext/gl/gl-ext-3dfx.c +27 -0
  103. data/ext/gl/gl-ext-arb.c +866 -0
  104. data/ext/gl/gl-ext-ati.c +41 -0
  105. data/ext/gl/gl-ext-ext.c +889 -0
  106. data/ext/gl/gl-ext-gremedy.c +41 -0
  107. data/ext/gl/gl-ext-nv.c +679 -0
  108. data/ext/gl/gl.c +216 -0
  109. data/ext/glu/extconf.rb +51 -0
  110. data/ext/glu/glu-enums.c +164 -0
  111. data/ext/glu/glu.c +1530 -0
  112. data/ext/glut/extconf.rb +67 -0
  113. data/ext/glut/glut.c +1624 -0
  114. data/lib/opengl.rb +89 -0
  115. data/test/README +10 -0
  116. data/test/tc_common.rb +98 -0
  117. data/test/tc_ext_arb.rb +467 -0
  118. data/test/tc_ext_ati.rb +33 -0
  119. data/test/tc_ext_ext.rb +551 -0
  120. data/test/tc_ext_gremedy.rb +36 -0
  121. data/test/tc_ext_nv.rb +357 -0
  122. data/test/tc_func_10_11.rb +1281 -0
  123. data/test/tc_func_12.rb +186 -0
  124. data/test/tc_func_13.rb +229 -0
  125. data/test/tc_func_14.rb +197 -0
  126. data/test/tc_func_15.rb +270 -0
  127. data/test/tc_func_20.rb +346 -0
  128. data/test/tc_func_21.rb +541 -0
  129. data/test/tc_glu.rb +310 -0
  130. data/test/tc_include_gl.rb +35 -0
  131. data/test/tc_misc.rb +54 -0
  132. data/test/tc_require_gl.rb +34 -0
  133. data/utils/README +11 -0
  134. data/utils/enumgen.rb +112 -0
  135. data/utils/extlistgen.rb +90 -0
  136. data/utils/mkdn2html.rb +59 -0
  137. data/utils/post-mkdn2html.rb +91 -0
  138. data/website/images/ogl.jpg +0 -0
  139. data/website/images/tab_bottom.gif +0 -0
  140. data/website/style.css +198 -0
  141. metadata +274 -0
@@ -0,0 +1,119 @@
1
+ Building ruby-opengl
2
+ ====================
3
+
4
+ Pre-requisites
5
+ --------------
6
+
7
+ General
8
+ --------------
9
+ * C compiler (not needed for binary install on Windows)
10
+ * ruby 1.8.5+ or ruby 1.9.0+
11
+ * rake
12
+ * mkrf 0.2.0+ (0.2.3+ for ruby 1.9)
13
+ * rubygems 0.9.1+
14
+ * OpenGL headers for OpenGL version 1.1 or later (not needed for binary install on Windows)
15
+ * GLUT 3.7+ or API-compatible implementation (freeglut,OpenGLUT)
16
+
17
+ Linux
18
+ --------------
19
+ On Ubuntu or Debian systems, aside from Ruby you'll need ruby and
20
+ some extra ruby related packages:
21
+
22
+ * `ruby rdoc ri ruby1.8-dev`
23
+
24
+ For OpenGL related headers you'll need the following packages:
25
+
26
+ * `libgl1-mesa-dri libglu1-mesa freeglut3`
27
+ * `libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev`
28
+
29
+ On older Gentoo, Debian and Ubuntu, rubygems 0.9.0 will be installed by default
30
+ in the packages. This version of rubygems is INCOMPATIBLE with ruby-opengl.
31
+ You'll need to install rubygems 0.9.1+ from source.
32
+
33
+ On some distributions you may need 'xorg-dev' developer package.
34
+
35
+ Mac OS X
36
+ --------------
37
+ On OS X, you will need to install your own version of Ruby as the
38
+ version that ships with OS X has known problems with properly building
39
+ ruby-opengl bindings. You'll also need XCode for gcc and tools. Macports
40
+ or fink should handle this cleanly.
41
+
42
+ * To compile under Mac OS X you MUST install your own version of Ruby
43
+ as the version included with Tiger (1.8.2) has a broken rbconfig
44
+ and will fail to build the project properly. Try either [MacPorts][],
45
+ [Fink][], or [building your own from source][].
46
+
47
+ [Macports]: http://www.macports.org/
48
+ [Fink]: http://finkproject.org/
49
+ [building your own from source]: http://www.ruby-lang.org/en/downloads/
50
+
51
+ Windows
52
+ --------------
53
+ For manual build on Windows you need to have platform SDK and compiler that *must* match the one which was used for compiling ruby binary (for One-click ruby installer it is MSVC 6.0).
54
+ You may also need 'glut.h' in SDK include directory, as the One-click ruby
55
+ installer is missing it. You can copy the file from glut package at [glut homepage][].
56
+ Alternatively, you can install the precompiled binary gem (see bellow).
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
+
62
+ [glut homepage]: http://www.xmission.com/~nate/glut.html
63
+
64
+ Build and installation
65
+ --------------
66
+
67
+ Installing from rubygems
68
+ -------------------
69
+
70
+ ruby-opengl should support being installed via gems now. Just
71
+ try 'gem install -y ruby-opengl' and it should pull down the gem
72
+ and try to build the bindings for you automatically.
73
+
74
+ For windows there is also pre-built binary windows gem available
75
+ (i386-mswin32) which is compatible with the ruby one-click installer and does not need
76
+ compiler or other mentioned tools installed.
77
+
78
+ Manual Build instructions for all platforms (see above for platform-specific notes)
79
+ ------------------
80
+ 1. Make sure you have working ruby with rubygems installed
81
+ and (if needed) appropriate developer packages (ruby-dev,ruby1.8-dev,...).
82
+ 2. Make sure you have working C compiler
83
+ 3. Install rake either from package or by running 'gem install rake'
84
+ 4. Install mkrf (0.2.0+) either from package or by running 'gem install mkrf'
85
+ 5. Make sure you have working OpenGL installation, this includes libGL,libGLU,
86
+ glut and (if needed) appropriate -dev or -devel packages.
87
+ 6. Run 'rake' at the top level of the project
88
+ 7. (OPTIONAL) Run 'rake test' to run unit tests to verify it works properly
89
+
90
+ Installing manually built extensions
91
+ ------------------
92
+ 1. Run 'rake clean' to clean out the project
93
+ 2. Run 'rake gem' to create source gem from project
94
+ 3. Run 'gem install pkg/ruby-opengl-(version).gem' to compile and install the gem
95
+ 4. Done.
96
+
97
+ Building binary gem (useful only for binary distribution of the project)
98
+ ------------------
99
+ 1. Run 'rake binary_gem'
100
+ 2. Binary gem will be generated in pkg/ directory
101
+
102
+ Testing
103
+ -----------------
104
+
105
+ To run unit tests:
106
+
107
+ $ rake test
108
+
109
+ Note that the tests have the adverse effect of testing the underlying OpenGL
110
+ implementation, so depending on your GL provider,drivers or OS, the tests may
111
+ fail, crash, or not run at all, without affecting your ability to use the
112
+ bindings.
113
+
114
+ Running programs and examples
115
+ -----------------
116
+ To run a sample file, make sure the ruby-opengl gem is installed then:
117
+
118
+ $ cd examples
119
+ $ ruby -rubygems plane.rb
@@ -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