diff options
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/imports.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index e16e95cb0b..3dc793d7ba 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -383,8 +383,8 @@ static INLINE int ifloor(float f) af = (3 << 22) + 0.5 + (double)f; bf = (3 << 22) + 0.5 - (double)f; - u.f = af; ai = u.i; - u.f = bf; bi = u.i; + u.f = (float) af; ai = u.i; + u.f = (float) bf; bi = u.i; return (ai - bi) >> 1; } #define IFLOOR(x) ifloor(x) |