diff options
author | José Fonseca <[email protected]> | 2011-02-11 11:14:44 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-02-11 11:24:54 +0000 |
commit | 7ac2db893a87684641f298b40e25a3b2d9991b53 (patch) | |
tree | fb6594891dd23921c0add7cd2bf7aa95406ec9da | |
parent | 151faa2258be40abbce017b65d95c52003053d2b (diff) |
llvmpipe: Use u_math's round.
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_main.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_main.c b/src/gallium/drivers/llvmpipe/lp_test_main.c index 149ee6f1256..d229c620310 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_main.c +++ b/src/gallium/drivers/llvmpipe/lp_test_main.c @@ -35,24 +35,13 @@ #include "util/u_cpu_detect.h" +#include "util/u_math.h" #include "gallivm/lp_bld_const.h" #include "gallivm/lp_bld_init.h" #include "lp_test.h" -#ifdef PIPE_CC_MSVC -static INLINE double -round(double x) -{ - if (x >= 0.0) - return floor(x + 0.5); - else - return ceil(x - 0.5); -} -#endif - - void dump_type(FILE *fp, struct lp_type type) |