From 09154c274c720815b642970bf3861413d0fbef92 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 16 Jan 2013 08:25:43 -0700 Subject: [PATCH] meta: add 'f' suffix to floats to silence some MSVC warnings --- src/mesa/drivers/common/meta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index e25481e1a85..4e32b506675 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -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; -- 2.30.2