opengl 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +1 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +2 -1
- data/.travis.yml +19 -0
- data/History.rdoc +26 -0
- data/Manifest.txt +3 -23
- data/README.rdoc +43 -37
- data/Rakefile +6 -62
- data/examples/NeHe/nehe_lesson02.rb +3 -2
- data/examples/NeHe/nehe_lesson03.rb +3 -2
- data/examples/NeHe/nehe_lesson04.rb +3 -1
- data/examples/NeHe/nehe_lesson05.rb +4 -1
- data/examples/NeHe/nehe_lesson06.rb +9 -6
- data/examples/NeHe/nehe_lesson07.rb +9 -6
- data/examples/NeHe/nehe_lesson08.rb +9 -6
- data/examples/NeHe/nehe_lesson09.rb +10 -6
- data/examples/NeHe/nehe_lesson11.rb +9 -6
- data/examples/NeHe/nehe_lesson12.rb +9 -6
- data/examples/NeHe/nehe_lesson16.rb +50 -47
- data/examples/NeHe/nehe_lesson19.rb +10 -7
- data/examples/NeHe/nehe_lesson36.rb +234 -229
- data/examples/OrangeBook/brick.rb +227 -225
- data/examples/OrangeBook/particle.rb +233 -231
- data/examples/RedBook/aapoly.rb +71 -70
- data/examples/RedBook/aargb.rb +54 -52
- data/examples/RedBook/accanti.rb +96 -94
- data/examples/RedBook/accpersp.rb +106 -104
- data/examples/RedBook/alpha.rb +54 -52
- data/examples/RedBook/alpha3D.rb +90 -88
- data/examples/RedBook/bezcurve.rb +48 -46
- data/examples/RedBook/bezmesh.rb +71 -69
- data/examples/RedBook/checker.rb +57 -55
- data/examples/RedBook/clip.rb +41 -39
- data/examples/RedBook/colormat.rb +72 -70
- data/examples/RedBook/cube.rb +39 -37
- data/examples/RedBook/depthcue.rb +37 -35
- data/examples/RedBook/dof.rb +110 -109
- data/examples/RedBook/double.rb +40 -38
- data/examples/RedBook/drawf.rb +30 -28
- data/examples/RedBook/feedback.rb +79 -77
- data/examples/RedBook/fog.rb +90 -89
- data/examples/RedBook/font.rb +78 -76
- data/examples/RedBook/hello.rb +29 -27
- data/examples/RedBook/image.rb +57 -55
- data/examples/RedBook/jitter.rb +131 -131
- data/examples/RedBook/light.rb +2 -1
- data/examples/RedBook/lines.rb +70 -68
- data/examples/RedBook/list.rb +48 -46
- data/examples/RedBook/material.rb +200 -199
- data/examples/RedBook/mipmap.rb +84 -82
- data/examples/RedBook/model.rb +55 -53
- data/examples/RedBook/movelight.rb +52 -50
- data/examples/RedBook/pickdepth.rb +103 -101
- data/examples/RedBook/planet.rb +46 -44
- data/examples/RedBook/quadric.rb +97 -95
- data/examples/RedBook/robot.rb +55 -53
- data/examples/RedBook/select.rb +118 -116
- data/examples/RedBook/smooth.rb +35 -33
- data/examples/RedBook/stencil.rb +96 -94
- data/examples/RedBook/stroke.rb +75 -73
- data/examples/RedBook/surface.rb +93 -91
- data/examples/RedBook/teaambient.rb +71 -69
- data/examples/RedBook/teapots.rb +105 -103
- data/examples/RedBook/tess.rb +96 -94
- data/examples/RedBook/texbind.rb +79 -77
- data/examples/RedBook/texgen.rb +88 -86
- data/examples/RedBook/texturesurf.rb +57 -55
- data/examples/RedBook/varray.rb +85 -83
- data/examples/RedBook/wrap.rb +76 -74
- data/examples/misc/OGLBench.rb +114 -113
- data/examples/misc/anisotropic.rb +154 -152
- data/examples/misc/fbo_test.rb +37 -36
- data/examples/misc/font-glut.rb +47 -46
- data/examples/misc/glfwtest.rb +16 -16
- data/examples/misc/plane.rb +13 -13
- data/examples/misc/readpixel.rb +66 -65
- data/examples/misc/sdltest.rb +21 -19
- data/examples/misc/trislam.rb +548 -547
- data/ext/opengl/common.h +16 -38
- data/ext/opengl/conv.h +39 -41
- data/ext/opengl/extconf.rb +4 -31
- data/ext/opengl/funcdef.h +126 -124
- data/ext/opengl/gl-1.0-1.1.c +1917 -1917
- data/ext/opengl/gl-1.2.c +4 -667
- data/ext/opengl/gl-1.3.c +9 -9
- data/ext/opengl/gl-1.4.c +8 -8
- data/ext/opengl/gl-1.5.c +1 -1
- data/ext/opengl/gl-2.0.c +392 -388
- data/ext/opengl/gl-3.0.c +493 -0
- data/ext/opengl/gl-enums.c +1523 -5
- data/ext/opengl/gl-enums.h +4679 -122
- data/ext/opengl/gl-error.c +7 -7
- data/ext/opengl/gl-error.h +4 -4
- data/ext/opengl/gl-ext-arb.c +468 -464
- data/ext/opengl/gl-ext-ext.c +18 -18
- data/ext/opengl/gl-ext-nv.c +15 -15
- data/ext/opengl/gl.c +2 -0
- data/ext/opengl/gl_buffer.c +92 -92
- data/ext/opengl/opengl.c +1 -7
- data/lib/opengl.rb +23 -59
- data/lib/opengl/test_case.rb +1 -2
- data/test/dummy.xorg.conf +140 -0
- data/test/test_gl.rb +18 -22
- data/test/test_gl_10_11.rb +220 -220
- data/test/test_gl_12.rb +11 -122
- data/test/test_gl_13.rb +202 -210
- data/test/test_gl_14.rb +16 -19
- data/test/test_gl_15.rb +2 -4
- data/test/test_gl_20.rb +45 -58
- data/test/test_gl_21.rb +46 -163
- data/test/test_gl_ext_arb.rb +54 -72
- data/test/test_gl_ext_ati.rb +0 -2
- data/test/test_gl_ext_ext.rb +66 -66
- data/test/test_gl_ext_gremedy.rb +8 -15
- data/test/test_gl_ext_nv.rb +109 -112
- data/test/test_opengl_buffer.rb +8 -25
- data/utils/README +0 -5
- data/utils/enumgen.rb +72 -76
- data/utils/extlistgen.rb +55 -55
- metadata +87 -66
- metadata.gz.sig +2 -0
- data/Rakefile.cross +0 -107
- data/docs/build_install.txt +0 -119
- data/docs/extensions.txt.in +0 -348
- data/docs/history.txt +0 -66
- data/docs/requirements_and_design.txt +0 -117
- data/docs/roadmap.txt +0 -28
- data/docs/scientific_use.txt +0 -35
- data/docs/supplies/page_template.html +0 -71
- data/docs/thanks.txt +0 -29
- data/docs/tutorial.txt +0 -469
- data/ext/opengl/glu-enums.c +0 -164
- data/ext/opengl/glu-enums.h +0 -463
- data/ext/opengl/glu.c +0 -1534
- data/ext/opengl/glut.c +0 -1145
- data/ext/opengl/glut_callbacks.c +0 -845
- data/lib/glu.rb +0 -1
- data/lib/glut.rb +0 -1
- data/test/test_glu.rb +0 -309
- data/utils/mkdn2html.rb +0 -59
- data/utils/post-mkdn2html.rb +0 -91
- data/website/images/ogl.jpg +0 -0
- data/website/images/tab_bottom.gif +0 -0
- data/website/style.css +0 -198
metadata.gz.sig
ADDED
data/Rakefile.cross
DELETED
@@ -1,107 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# -*- ruby -*-
|
3
|
-
|
4
|
-
require 'rubygems'
|
5
|
-
require 'hoe'
|
6
|
-
require 'rake/extensiontask'
|
7
|
-
require 'rake/extensioncompiler'
|
8
|
-
require 'uri'
|
9
|
-
require 'rbconfig'
|
10
|
-
require 'pathname'
|
11
|
-
|
12
|
-
ENV['RUBY_CC_VERSION'] ||= '1.9.3'
|
13
|
-
|
14
|
-
# Cross-compilation constants
|
15
|
-
COMPILE_HOME = Pathname( "build" ).expand_path
|
16
|
-
STATIC_SOURCESDIR = COMPILE_HOME + 'sources'
|
17
|
-
STATIC_BUILDDIR = COMPILE_HOME + 'builds'
|
18
|
-
STATIC_INSTALLDIR = COMPILE_HOME + 'install'
|
19
|
-
RUBY_BUILD = RbConfig::CONFIG["host"]
|
20
|
-
CROSS_PREFIX = begin
|
21
|
-
Rake::ExtensionCompiler.mingw_host
|
22
|
-
rescue => err
|
23
|
-
$stderr.puts "Cross-compilation disabled -- %s" % [ err.message ]
|
24
|
-
'unknown'
|
25
|
-
end
|
26
|
-
|
27
|
-
NUM_CPUS = if File.exist?('/proc/cpuinfo')
|
28
|
-
File.read('/proc/cpuinfo').scan('processor').length
|
29
|
-
elsif RUBY_PLATFORM.include?( 'darwin' )
|
30
|
-
`system_profiler SPHardwareDataType | grep 'Cores' | awk '{print $5}'`.chomp
|
31
|
-
else
|
32
|
-
1
|
33
|
-
end
|
34
|
-
|
35
|
-
|
36
|
-
# Fetch libfreeglut tarball
|
37
|
-
LIBFREEGLUT_VERSION = ENV['LIBFREEGLUT_VERSION'] || '2.8.0'
|
38
|
-
LIBFREEGLUT_SOURCE_URI = URI( "http://downloads.sourceforge.net/project/freeglut/freeglut/#{LIBFREEGLUT_VERSION}/freeglut-#{LIBFREEGLUT_VERSION}.tar.gz" )
|
39
|
-
LIBFREEGLUT_TARBALL = STATIC_SOURCESDIR + File.basename( LIBFREEGLUT_SOURCE_URI.path )
|
40
|
-
STATIC_LIBFREEGLUT_BUILDDIR = STATIC_BUILDDIR + LIBFREEGLUT_TARBALL.basename(".tar.gz")
|
41
|
-
LIBFREEGLUT_MAKEFILE = STATIC_LIBFREEGLUT_BUILDDIR + 'Makefile'
|
42
|
-
LIBFREEGLUT_A = STATIC_INSTALLDIR + 'lib' + 'libglut.a'
|
43
|
-
|
44
|
-
|
45
|
-
# clean intermediate files and folders
|
46
|
-
CLEAN.include( STATIC_BUILDDIR.to_s )
|
47
|
-
|
48
|
-
#####################################################################
|
49
|
-
### C R O S S - C O M P I L A T I O N - T A S K S
|
50
|
-
#####################################################################
|
51
|
-
|
52
|
-
|
53
|
-
directory STATIC_SOURCESDIR.to_s
|
54
|
-
|
55
|
-
#
|
56
|
-
# Static libfreeglut build tasks
|
57
|
-
#
|
58
|
-
directory STATIC_LIBFREEGLUT_BUILDDIR.to_s
|
59
|
-
|
60
|
-
# libfreeglut source file should be stored there
|
61
|
-
file LIBFREEGLUT_TARBALL => STATIC_SOURCESDIR do |t|
|
62
|
-
# download the source file using wget or curl
|
63
|
-
chdir File.dirname(t.name) do
|
64
|
-
sh "wget '#{LIBFREEGLUT_SOURCE_URI}' -O #{LIBFREEGLUT_TARBALL}"
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
# Extract the libfreeglut builds
|
69
|
-
file STATIC_LIBFREEGLUT_BUILDDIR => LIBFREEGLUT_TARBALL do |t|
|
70
|
-
sh 'tar', '-xzf', LIBFREEGLUT_TARBALL.to_s, '-C', STATIC_LIBFREEGLUT_BUILDDIR.parent.to_s
|
71
|
-
end
|
72
|
-
|
73
|
-
LIBFREEGLUT_ENV = [
|
74
|
-
"'CPPFLAGS=-I#{STATIC_INSTALLDIR}/include'",
|
75
|
-
"'LDFLAGS=-L#{STATIC_INSTALLDIR}/lib'",
|
76
|
-
]
|
77
|
-
# generate the makefile in a clean build location
|
78
|
-
file LIBFREEGLUT_MAKEFILE => [STATIC_LIBFREEGLUT_BUILDDIR] do |t|
|
79
|
-
Dir.chdir( STATIC_LIBFREEGLUT_BUILDDIR ) do
|
80
|
-
options = [
|
81
|
-
"--target=#{CROSS_PREFIX}",
|
82
|
-
"--host=#{CROSS_PREFIX}",
|
83
|
-
"--build=#{RUBY_BUILD}",
|
84
|
-
"--prefix=#{STATIC_INSTALLDIR}",
|
85
|
-
"--enable-static",
|
86
|
-
]
|
87
|
-
|
88
|
-
configure_path = STATIC_LIBFREEGLUT_BUILDDIR + 'configure'
|
89
|
-
sh "env #{[LIBFREEGLUT_ENV, configure_path.to_s, *options].join(" ")}"
|
90
|
-
end
|
91
|
-
end
|
92
|
-
|
93
|
-
# generate the makefile in a clean build location
|
94
|
-
task LIBFREEGLUT_A => [LIBFREEGLUT_MAKEFILE] do |t|
|
95
|
-
Dir.chdir( STATIC_LIBFREEGLUT_BUILDDIR ) do
|
96
|
-
sh "make -j#{NUM_CPUS} install"
|
97
|
-
(STATIC_INSTALLDIR + "lib" + "libglut.dll.a").unlink
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
desc "compile static libraries"
|
102
|
-
task :static_libs => [ LIBFREEGLUT_A ]
|
103
|
-
|
104
|
-
desc 'cross compile required libs for win32'
|
105
|
-
task :cross => [ :static_libs ] do
|
106
|
-
ENV['CROSS_COMPILING'] = 'yes'
|
107
|
-
end
|
data/docs/build_install.txt
DELETED
@@ -1,119 +0,0 @@
|
|
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
|
data/docs/extensions.txt.in
DELETED
@@ -1,348 +0,0 @@
|
|
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
|