diff options
author | Brian Paul <[email protected]> | 2001-07-27 19:09:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-07-27 19:09:58 +0000 |
commit | 616f470629487f303979c7e878062d66658ac812 (patch) | |
tree | d77c79ad6efb6da8aa5b4fae3188b6cec483d882 /src/mesa/tnl | |
parent | 2f65b316ffec94e65fcc6497cdb8d46e19d85946 (diff) |
more GLAPIENTRY fixes (Karl Schultz)
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_imm_dlist.c | 6 |
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 c74a76fe166..4a055b2d87b 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.25 2001/07/26 16:04:10 brianp Exp $ */ +/* $Id: t_imm_dlist.c,v 1.26 2001/07/27 19:09:58 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -561,9 +561,9 @@ static void loopback_compiled_cassette( GLcontext *ctx, struct immediate *IM ) GLuint p, length, prim = 0; if (orflag & VERT_OBJ_234) - vertex = (void (*)(const GLfloat *)) glVertex4fv; + vertex = (void (GLAPIENTRY *)(const GLfloat *)) glVertex4fv; else - vertex = (void (*)(const GLfloat *)) glVertex3fv; + vertex = (void (GLAPIENTRY *)(const GLfloat *)) glVertex3fv; if (orflag & VERT_TEX_ANY) { for (j = 0 ; j < ctx->Const.MaxTextureUnits ; j++) { |