From: Keith Whitwell Date: Fri, 27 Aug 2010 12:40:23 +0000 (+0100) Subject: llvmpipe: use util_iround in place of round X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=55f4eab93cf964a2ffa540fef9485b6f737a6f41;p=mesa.git llvmpipe: use util_iround in place of round Fix mingw build. --- diff --git a/src/gallium/drivers/llvmpipe/lp_setup_line.c b/src/gallium/drivers/llvmpipe/lp_setup_line.c index cf770f521de..ce2da55cf49 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_line.c +++ b/src/gallium/drivers/llvmpipe/lp_setup_line.c @@ -280,7 +280,7 @@ lp_setup_line( struct lp_setup_context *setup, int nr_planes = 4; /* linewidth should be interpreted as integer */ - int fixed_width = subpixel_snap(round(width)); + int fixed_width = util_iround(width) * FIXED_ONE; float x_offset=0; float y_offset=0;