meta: add 'f' suffix to floats to silence some MSVC warnings
authorBrian Paul <brianp@vmware.com>
Wed, 16 Jan 2013 15:25:43 +0000 (08:25 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 17 Jan 2013 00:06:17 +0000 (17:06 -0700)
src/mesa/drivers/common/meta.c

index e25481e1a85e49587ff3fca0463fc666d25ef1e6..4e32b50667533c98f1db2da2b3f0c105df4c6e32 100644 (file)
@@ -4126,7 +4126,7 @@ _mesa_meta_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z,
       const GLfloat x1 = x + width;
       const GLfloat y1 = y + height;
 
-      z = CLAMP(z, 0.0, 1.0);
+      z = CLAMP(z, 0.0f, 1.0f);
       z = invert_z(z);
 
       verts[0].x = x;