summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c
index 96809cd03f5..55da60a18c7 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -915,9 +915,9 @@ micro_rcc(union tgsi_exec_channel *dst,
float recip = 1.0f / src->f[i];
if (recip > 0.0f)
- dst->f[i] = CLAMP(recip, 5.42101e-020f, 1.884467e+019f);
+ dst->f[i] = CLAMP(recip, 5.42101e-020f, 1.84467e+019f);
else
- dst->f[i] = CLAMP(recip, -1.884467e+019f, -5.42101e-020f);
+ dst->f[i] = CLAMP(recip, -1.84467e+019f, -5.42101e-020f);
}
}