summaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast/s_atifragshader.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2015-07-12 23:15:10 -0700
committerMatt Turner <mattst88@gmail.com>2015-07-29 09:34:52 -0700
commit04aa8b58a09e3b415916fa569111c1f76d07a8d5 (patch)
tree747ef02288043292b257b6e8efa455cec31af5be /src/mesa/swrast/s_atifragshader.c
parentc92b2a1d7b286de8641512970a87c94809fbbc3f (diff)
downloadexternal_mesa3d-04aa8b58a09e3b415916fa569111c1f76d07a8d5.zip
external_mesa3d-04aa8b58a09e3b415916fa569111c1f76d07a8d5.tar.gz
external_mesa3d-04aa8b58a09e3b415916fa569111c1f76d07a8d5.tar.bz2
swrast: Avoid double promotion.
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Diffstat (limited to 'src/mesa/swrast/s_atifragshader.c')
-rw-r--r--src/mesa/swrast/s_atifragshader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_atifragshader.c b/src/mesa/swrast/s_atifragshader.c
index 9e029db..2974dee 100644
--- a/src/mesa/swrast/s_atifragshader.c
+++ b/src/mesa/swrast/s_atifragshader.c
@@ -436,13 +436,13 @@ execute_shader(struct gl_context *ctx, const struct ati_fragment_shader *shader,
for (i = 0; i < 3; i++) {
dst[optype][i] =
(src[optype][2][i] >
- 0.5) ? src[optype][0][i] : src[optype][1][i];
+ 0.5F) ? src[optype][0][i] : src[optype][1][i];
}
}
else {
dst[optype][3] =
(src[optype][2][3] >
- 0.5) ? src[optype][0][3] : src[optype][1][3];
+ 0.5F) ? src[optype][0][3] : src[optype][1][3];
}
break;