summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-11-27 00:05:35 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-11-27 00:05:35 +0000
commit2f3d6203989e3a9843a548796b2c2062f470517e (patch)
tree6afd2e41b5d078906f361dde81e4782275178b7e /src/mesa
parent70c05e67814a25c5a61b359e78323eea9b6f512f (diff)
don't directly call glSecondaryColor*EXT() or glFogCoord*EXT()
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/vtxfmt_tmp.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/main/vtxfmt_tmp.h b/src/mesa/main/vtxfmt_tmp.h
index 890d15d958..010ebc46c7 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.5 2001/11/18 22:48:13 brianp Exp $ */
+/* $Id: vtxfmt_tmp.h,v 1.6 2001/11/27 00:05:35 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 3.5
+ * Version: 4.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 )