summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-10-08 23:57:13 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-10-08 23:57:13 +0000
commit5fd1cc2e0e3d0bd529c3f0e347b73517bb7f162d (patch)
tree60980cdb77494e3b2b6e8db4795d27dda0dc664d /src
parentd3f6b0559f1465fa87b67e2e7f47e7ea9e95450f (diff)
s/glVertexAttrib4fNV/_glapi->Dispatch->VertexAttrib4fNV/
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/vtxfmt_tmp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/vtxfmt_tmp.h b/src/mesa/main/vtxfmt_tmp.h
index e946a85987..f476827a5f 100644
--- a/src/mesa/main/vtxfmt_tmp.h
+++ b/src/mesa/main/vtxfmt_tmp.h
@@ -1,4 +1,4 @@
-/* $Id: vtxfmt_tmp.h,v 1.8 2001/12/14 02:55:08 brianp Exp $ */
+/* $Id: vtxfmt_tmp.h,v 1.9 2002/10/08 23:57:13 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -394,13 +394,13 @@ static void TAG(EvalMesh2)( GLenum mode, GLint i1, GLint i2,
static void TAG(VertexAttrib4fNV)( GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w )
{
PRE_LOOPBACK( VertexAttrib4fNV );
- glVertexAttrib4fNV( index, x, y, z, w );
+ _glapi->Dispatch->VertexAttrib4fNV( index, x, y, z, w );
}
static void TAG(VertexAttrib4fvNV)( GLuint index, const GLfloat *v )
{
PRE_LOOPBACK( VertexAttrib4fNV );
- glVertexAttrib4fvNV( index, v );
+ _glapi_Dispatch->VertexAttrib4fvNV( index, v );
}