Authors: Charles Vaughn <charlesv@mfos.org>, Lionel Ulmer <lionel.ulmer@free.fr>

- added support for glMTexCoord2fSGIS
- updated to latest OpenGL extensions
This commit is contained in:
Alexandre Julliard 2002-03-20 00:58:40 +00:00
parent e00aca0298
commit c4a336a04d
2 changed files with 1904 additions and 7 deletions

View File

@ -281,7 +281,12 @@ $pseudo_to_opengl{"IglooParameterSGIX"} = "GLint";
# #
%norm_functions = (); %norm_functions = ();
%ext_functions = %ext_functions =
( "glMultiTexCoord1dSGIS" => [ "glMultiTexCoord1dSGIS", "void", [ [ "GLenum", "target" ], ( "glMTexCoord2fSGIS" => [ "glMTexCoord2fSGIS", "void", [ [ "GLenum", "target" ],
[ "GLfloat", "s" ],
[ "GLfloat", "t" ] ], "glMTexCoord2fSGIS" ],
"glMTexCoord2fvSGIS" => [ "glMTexCoord2fvSGIS", "void", [ [ "GLenum", "target" ],
[ "GLfloat *", "v" ] ], "glMTexCoord2fvSGIS" ],
"glMultiTexCoord1dSGIS" => [ "glMultiTexCoord1dSGIS", "void", [ [ "GLenum", "target" ],
[ "GLdouble", "s" ] ], "glMultiTexCoord1dSGIS" ], [ "GLdouble", "s" ] ], "glMultiTexCoord1dSGIS" ],
"glMultiTexCoord1dvSGIS" => [ "glMultiTexCoord1dvSGIS", "void", [ [ "GLenum", "target" ], "glMultiTexCoord1dvSGIS" => [ "glMultiTexCoord1dvSGIS", "void", [ [ "GLenum", "target" ],
[ "GLdouble *", "v" ] ], "glMultiTexCoord1dvSGIS" ], [ "GLdouble *", "v" ] ], "glMultiTexCoord1dvSGIS" ],
@ -549,11 +554,11 @@ print NORM "
#include \"config.h\" #include \"config.h\"
#include \"wine_gl.h\" #include \"wine_gl.h\"
#include \"debugtools.h\" #include \"wine/debug.h\"
typedef const GLubyte * GLstring; typedef const GLubyte * GLstring;
DEFAULT_DEBUG_CHANNEL(opengl); WINE_DEFAULT_DEBUG_CHANNEL(opengl);
"; ";
foreach (sort keys %norm_functions) { foreach (sort keys %norm_functions) {
@ -572,13 +577,13 @@ print EXT "
#include \"config.h\" #include \"config.h\"
#include \"wine_gl.h\" #include \"wine_gl.h\"
#include \"debugtools.h\" #include \"wine/debug.h\"
typedef const GLubyte * GLstring; typedef const GLubyte * GLstring;
#include \"opengl_ext.h\" #include \"opengl_ext.h\"
DEFAULT_DEBUG_CHANNEL(opengl); WINE_DEFAULT_DEBUG_CHANNEL(opengl);
"; ";

File diff suppressed because it is too large Load Diff