diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_main.c | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/src/gallium/drivers/llvmpipe/lp_test_main.c b/src/gallium/drivers/llvmpipe/lp_test_main.c index d4767ff52b..82fada5a35 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_main.c +++ b/src/gallium/drivers/llvmpipe/lp_test_main.c @@ -40,6 +40,18 @@  #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) | 
