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

Author: Dave Airlie <[email protected]>
Date:   Fri May  3 12:53:56 2019 +1000

spirv: fix SpvOpBitSize return value.

The spir-v spec says this returns a bool.

Reviewed-by: Jason Ekstrand <[email protected]>

---

 src/compiler/spirv/vtn_alu.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/compiler/spirv/vtn_alu.c b/src/compiler/spirv/vtn_alu.c
index d8ffc18d495..6d4347887cd 100644
--- a/src/compiler/spirv/vtn_alu.c
+++ b/src/compiler/spirv/vtn_alu.c
@@ -646,9 +646,7 @@ vtn_handle_alu(struct vtn_builder *b, SpvOp opcode,
          val->ssa->def =
             nir_ishr(&b->nb, src[0], nir_imm_int(&b->nb, src_bit_size - 1));
 
-      if (src_bit_size != 32)
-         val->ssa->def = nir_u2u32(&b->nb, val->ssa->def);
-
+      val->ssa->def = nir_i2b(&b->nb, val->ssa->def);
       break;
    }
 

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to