From: Keith Whitwell Date: Wed, 19 Mar 2008 17:35:42 +0000 (+0000) Subject: gallium: explict float casts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4f03d0c98674c83d06edfa767a7898eca5d4ef8;p=mesa.git gallium: explict float casts --- diff --git a/src/gallium/auxiliary/util/u_blit.c b/src/gallium/auxiliary/util/u_blit.c index 123304fe68e..d05dae3af8f 100644 --- a/src/gallium/auxiliary/util/u_blit.c +++ b/src/gallium/auxiliary/util/u_blit.c @@ -254,7 +254,11 @@ util_blit_pixels(struct blit_state *ctx, cso_set_framebuffer(ctx->cso, &fb); /* draw quad */ - util_draw_texquad(pipe, dstX0, dstY0, dstX1, dstY1, z); + util_draw_texquad(pipe, + (float)dstX0, + (float)dstY0, + (float)dstX1, + (float)dstY1, z); /* restore state we changed */ cso_restore_blend(ctx->cso);