Mesa (master): nir: Avoid double promotion.

Matt Turner mattst88 at kemper.freedesktop.org
Wed Jul 29 16:32:06 UTC 2015


Module: Mesa
Branch: master
Commit: 4251ccb47b79c719918e7c372aebb6b2d9719922
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=4251ccb47b79c719918e7c372aebb6b2d9719922

Author: Matt Turner <mattst88 at gmail.com>
Date:   Sun Jul 12 12:37:00 2015 -0700

nir: Avoid double promotion.

Reviewed-by: Iago Toral Quiroga <itoral at igalia.com>

---

 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.




More information about the mesa-commit mailing list