diff options
author | Brian Paul <[email protected]> | 2001-11-26 23:45:36 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-11-26 23:45:36 +0000 |
commit | c132ca977433de46996553f23e32e40f4499b525 (patch) | |
tree | 87a1540b8960da9632e886712a45b8dc04df089a /src/mesa | |
parent | 8ca1772d4a7a40418a886f9abdce4db6b99d77b5 (diff) |
don't directly call glSecondaryColor*EXT() or glFogCoord*EXT()
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/vtxfmt_tmp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/main/vtxfmt_tmp.h b/src/mesa/main/vtxfmt_tmp.h index 028e6dd9da7..bb242dfaacf 100644 --- a/src/mesa/main/vtxfmt_tmp.h +++ b/src/mesa/main/vtxfmt_tmp.h @@ -1,8 +1,8 @@ -/* $Id: vtxfmt_tmp.h,v 1.4 2001/03/12 00:48:39 gareth Exp $ */ +/* $Id: vtxfmt_tmp.h,v 1.4.2.1 2001/11/26 23:45:36 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.0.1 * * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * @@ -136,13 +136,13 @@ static void TAG(EvalPoint2)( GLint a, GLint b ) static void TAG(FogCoordfEXT)( GLfloat a ) { PRE_LOOPBACK( FogCoordfEXT ); - glFogCoordfEXT( a ); + _glapi_Dispatch->FogCoordfEXT( a ); } static void TAG(FogCoordfvEXT)( const GLfloat *v ) { PRE_LOOPBACK( FogCoordfvEXT ); - glFogCoordfvEXT( v ); + _glapi_Dispatch->FogCoordfvEXT( v ); } static void TAG(Indexi)( GLint a ) @@ -228,25 +228,25 @@ static void TAG(Normal3fv)( const GLfloat *v ) static void TAG(SecondaryColor3fEXT)( GLfloat a, GLfloat b, GLfloat c ) { PRE_LOOPBACK( SecondaryColor3fEXT ); - glSecondaryColor3fEXT( a, b, c ); + _glapi_Dispatch->SecondaryColor3fEXT( a, b, c ); } static void TAG(SecondaryColor3fvEXT)( const GLfloat *v ) { PRE_LOOPBACK( SecondaryColor3fvEXT ); - glSecondaryColor3fvEXT( v ); + _glapi_Dispatch->SecondaryColor3fvEXT( v ); } static void TAG(SecondaryColor3ubEXT)( GLubyte a, GLubyte b, GLubyte c ) { PRE_LOOPBACK( SecondaryColor3ubEXT ); - glSecondaryColor3ubEXT( a, b, c ); + _glapi_Dispatch->SecondaryColor3ubEXT( a, b, c ); } static void TAG(SecondaryColor3ubvEXT)( const GLubyte *v ) { PRE_LOOPBACK( SecondaryColor3ubvEXT ); - glSecondaryColor3ubvEXT( v ); + _glapi_Dispatch->SecondaryColor3ubvEXT( v ); } static void TAG(TexCoord1f)( GLfloat a ) |