From: Brian Paul Date: Mon, 23 Jul 2001 16:08:59 +0000 (+0000) Subject: fix some Win32 warnings (Gerk Huisma) X-Git-Tag: 062012170305~26992 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c03f3232dcd490b76b3e73d92f1039e4366d7b5;p=profile%2Fivi%2Fmesa.git fix some Win32 warnings (Gerk Huisma) --- diff --git a/src/mesa/tnl/t_imm_dlist.c b/src/mesa/tnl/t_imm_dlist.c index 1708905..7e98f6a 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.23 2001/07/17 21:44:37 keithw Exp $ */ +/* $Id: t_imm_dlist.c,v 1.24 2001/07/23 16:08:59 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -556,14 +556,14 @@ static void loopback_compiled_cassette( GLcontext *ctx, struct immediate *IM ) GLuint orflag = IM->OrFlag; GLuint j; void (*vertex)( const GLfloat * ); - void (*texcoordfv[MAX_TEXTURE_UNITS])( GLuint, const GLfloat * ); + void (*texcoordfv[MAX_TEXTURE_UNITS])( GLenum, const GLfloat * ); GLuint maxtex = 0; GLuint p, length, prim = 0; if (orflag & VERT_OBJ_234) - vertex = glVertex4fv; + vertex = (void (*)(const GLfloat *)) glVertex4fv; else - vertex = glVertex3fv; + vertex = (void (*)(const GLfloat *)) glVertex3fv; if (orflag & VERT_TEX_ANY) { for (j = 0 ; j < ctx->Const.MaxTextureUnits ; j++) {