summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-07-26 16:04:10 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-07-26 16:04:10 +0000
commite2df5de01cbaf73c7f2b52459b318f9951f1e85a (patch)
treee04859a53a1eb6e2a33753ad6d6bb5423866943b /src/mesa/tnl
parentd4cff4f2fa43b22effdd5c339bd48508669a0a42 (diff)
use GLAPIENTRY when declaring a couple function pointers (Gerk Huisma)
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r--src/mesa/tnl/t_imm_dlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_imm_dlist.c b/src/mesa/tnl/t_imm_dlist.c
index 7e98f6add0..c74a76fe16 100644
--- a/src/mesa/tnl/t_imm_dlist.c
+++ b/src/mesa/tnl/t_imm_dlist.c
@@ -1,4 +1,4 @@
-/* $Id: t_imm_dlist.c,v 1.24 2001/07/23 16:08:59 brianp Exp $ */
+/* $Id: t_imm_dlist.c,v 1.25 2001/07/26 16:04:10 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -555,8 +555,8 @@ static void loopback_compiled_cassette( GLcontext *ctx, struct immediate *IM )
GLuint *flags = IM->Flag;
GLuint orflag = IM->OrFlag;
GLuint j;
- void (*vertex)( const GLfloat * );
- void (*texcoordfv[MAX_TEXTURE_UNITS])( GLenum, const GLfloat * );
+ void (GLAPIENTRY *vertex)( const GLfloat * );
+ void (GLAPIENTRY *texcoordfv[MAX_TEXTURE_UNITS])( GLenum, const GLfloat * );
GLuint maxtex = 0;
GLuint p, length, prim = 0;