[Mesa-dev] [PATCH 39/47] glsl: Add a lowering pass for 64-bit float gequal()

Elie Tournier tournier.elie at gmail.com
Wed Aug 23 11:08:09 UTC 2017


Signed-off-by: Elie Tournier <elie.tournier at collabora.com>
---
 src/compiler/glsl/lower_64bit.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/compiler/glsl/lower_64bit.cpp b/src/compiler/glsl/lower_64bit.cpp
index 4978759eb9..07d39de79d 100644
--- a/src/compiler/glsl/lower_64bit.cpp
+++ b/src/compiler/glsl/lower_64bit.cpp
@@ -417,7 +417,8 @@ lower_64bit::lower_op_to_function_call(ir_instruction *base_ir,
 
       body.emit(c);
 
-      if (ir->operation == ir_unop_d2b)
+      if (ir->operation == ir_unop_d2b ||
+          ir->operation == ir_binop_gequal)
          body.emit(assign(dst[i], logic_not(dst[i])));
    }
 
@@ -624,6 +625,7 @@ lower_64bit_visitor::handle_rvalue(ir_rvalue **rvalue)
       }
       break;
 
+   case ir_binop_gequal:
    case ir_binop_less:
       if (lowering(LT64)) {
          if (ir->operands[0]->type->base_type == GLSL_TYPE_DOUBLE)
-- 
2.14.1



More information about the mesa-dev mailing list