summaryrefslogtreecommitdiffstats
path: root/src/util/format_r11g11b10f.h
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2016-08-03 11:06:19 -0700
committerJason Ekstrand <[email protected]>2016-08-05 09:07:06 -0700
commit21f357b66e5638e3640cf3b3fbaa992dc764c49f (patch)
tree089a018327fd8ecaf783bc9b2ea895ccb008b382 /src/util/format_r11g11b10f.h
parentffcf8e1049f300b3a890bdd1ce778c8436aee049 (diff)
util/r11g11b10f: Whitespace cleanups
Signed-off-by: Jason Ekstrand <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/util/format_r11g11b10f.h')
-rw-r--r--src/util/format_r11g11b10f.h21
1 files changed, 7 insertions, 14 deletions
diff --git a/src/util/format_r11g11b10f.h b/src/util/format_r11g11b10f.h
index 5fe2e510d22..c9e967cf31a 100644
--- a/src/util/format_r11g11b10f.h
+++ b/src/util/format_r11g11b10f.h
@@ -86,8 +86,7 @@ static inline uint32_t f32_to_uf11(float val)
* converted to 65024."
*/
uf11 = UF11(30, 63);
- }
- else if (exponent > -15) { /* Representable value */
+ } else if (exponent > -15) { /* Representable value */
exponent += UF11_EXPONENT_BIAS;
mantissa >>= UF11_MANTISSA_SHIFT;
uf11 = exponent << UF11_EXPONENT_SHIFT | mantissa;
@@ -113,17 +112,14 @@ static inline float uf11_to_f32(uint16_t val)
const float scale = 1.0 / (1 << 20);
f32.f = scale * mantissa;
}
- }
- else if (exponent == 31) {
+ } else if (exponent == 31) {
f32.ui = F32_INFINITY | mantissa;
- }
- else {
+ } else {
float scale, decimal;
exponent -= 15;
if (exponent < 0) {
scale = 1.0f / (1 << -exponent);
- }
- else {
+ } else {
scale = (float) (1 << exponent);
}
decimal = 1.0f + (float) mantissa / 64;
@@ -172,8 +168,7 @@ static inline uint32_t f32_to_uf10(float val)
* converted to 64512."
*/
uf10 = UF10(30, 31);
- }
- else if (exponent > -15) { /* Representable value */
+ } else if (exponent > -15) { /* Representable value */
exponent += UF10_EXPONENT_BIAS;
mantissa >>= UF10_MANTISSA_SHIFT;
uf10 = exponent << UF10_EXPONENT_SHIFT | mantissa;
@@ -199,11 +194,9 @@ static inline float uf10_to_f32(uint16_t val)
const float scale = 1.0 / (1 << 20);
f32.f = scale * mantissa;
}
- }
- else if (exponent == 31) {
+ } else if (exponent == 31) {
f32.ui = F32_INFINITY | mantissa;
- }
- else {
+ } else {
float scale, decimal;
exponent -= 15;
if (exponent < 0) {