From bfc8b8fac59117e6fa98f87054955501538afa6b Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 20 Mar 2013 10:54:07 -0600 Subject: postprocess: silence some MSVC float/int warnings --- src/gallium/auxiliary/postprocess/pp_mlaa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gallium/auxiliary/postprocess/pp_mlaa.c') diff --git a/src/gallium/auxiliary/postprocess/pp_mlaa.c b/src/gallium/auxiliary/postprocess/pp_mlaa.c index 297f3e443c1..fcbc573c70a 100644 --- a/src/gallium/auxiliary/postprocess/pp_mlaa.c +++ b/src/gallium/auxiliary/postprocess/pp_mlaa.c @@ -91,8 +91,8 @@ pp_jimenezmlaa_run(struct pp_queue_t *ppq, struct pipe_resource *in, /* Init the pixel size constant */ if (dimensions[0] != p->framebuffer.width || dimensions[1] != p->framebuffer.height) { - constants[0] = 1.0 / p->framebuffer.width; - constants[1] = 1.0 / p->framebuffer.height; + constants[0] = 1.0f / p->framebuffer.width; + constants[1] = 1.0f / p->framebuffer.height; up_consts(p->pipe); dimensions[0] = p->framebuffer.width; -- cgit v1.2.3