util: fix MSVC double/float conversion warning in u_format_r11g11b10f.h
authorBrian Paul <brianp@vmware.com>
Wed, 17 Oct 2012 00:32:57 +0000 (18:32 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 17 Oct 2012 16:13:30 +0000 (10:13 -0600)
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/gallium/auxiliary/util/u_format_r11g11b10f.h

index bd64b2896b479ba8a243d1f644e016ddfc264aef..b883b318e03601f5cbfa68fb6644445f5a42167d 100644 (file)
@@ -205,7 +205,7 @@ static INLINE float uf10_to_f32(uint16_t val)
       float scale, decimal;
       exponent -= 15;
       if (exponent < 0) {
-         scale = 1.0 / (1 << -exponent);
+         scale = 1.0f / (1 << -exponent);
       }
       else {
          scale = (float) (1 << exponent);