Module: Mesa Branch: master Commit: 4251ccb47b79c719918e7c372aebb6b2d9719922 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=4251ccb47b79c719918e7c372aebb6b2d9719922
Author: Matt Turner <[email protected]> Date: Sun Jul 12 12:37:00 2015 -0700 nir: Avoid double promotion. Reviewed-by: Iago Toral Quiroga <[email protected]> --- src/glsl/nir/nir_opcodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/glsl/nir/nir_opcodes.py b/src/glsl/nir/nir_opcodes.py index 56e96d9..df5b7e2 100644 --- a/src/glsl/nir/nir_opcodes.py +++ b/src/glsl/nir/nir_opcodes.py @@ -474,10 +474,10 @@ else """) opcode("ldexp", 0, tfloat, [0, 0], [tfloat, tint], "", """ -dst = ldexp(src0, src1); +dst = ldexpf(src0, src1); /* flush denormals to zero. */ if (!isnormal(dst)) - dst = copysign(0.0f, src0); + dst = copysignf(0.0f, src0); """) # Combines the first component of each input to make a 2-component vector. _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
