diff options
author | Brian Paul <[email protected]> | 1999-11-08 15:28:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-11-08 15:28:08 +0000 |
commit | 99f16d01dd508ccac9d37488bf83a7aed5c05832 (patch) | |
tree | 27f8875a375f92a39d82ac822a92894cdcc21db4 /src/mesa/main/attrib.c | |
parent | 19f90e35ff1419169a2d3522e55e4de05b7ab14c (diff) |
changes to silence MSVC warnings
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 669c4c2f749..e346538eead 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,4 +1,4 @@ -/* $Id: attrib.c,v 1.9 1999/11/08 07:36:43 brianp Exp $ */ +/* $Id: attrib.c,v 1.10 1999/11/08 15:28:08 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -581,10 +581,10 @@ void gl_PopAttrib( GLcontext* ctx ) break; case GL_FOG_BIT: { - GLboolean anyChange = (memcmp( &ctx->Fog, attr->data, sizeof(struct gl_fog_attrib) ) != 0); + GLboolean anyChange = (GLboolean) (memcmp( &ctx->Fog, attr->data, sizeof(struct gl_fog_attrib) ) != 0); MEMCPY( &ctx->Fog, attr->data, sizeof(struct gl_fog_attrib) ); if (anyChange && ctx->Driver.Fogfv) { - const GLfloat mode = ctx->Fog.Mode; + const GLfloat mode = (GLfloat) ctx->Fog.Mode; const GLfloat density = ctx->Fog.Density; const GLfloat start = ctx->Fog.Start; const GLfloat end = ctx->Fog.End; |