Re: [Mesa-dev] [PATCH 7/7] glsl: Remove ir_binop_greater and ir_binop_lequal expressions

2017-10-17 Thread Nicolai Hähnle
Good riddance! Reviewed-by: Nicolai Hähnle On 17.10.2017 20:14, Ian Romanick wrote: From: Ian Romanick NIR does not have these instructions. TGSI and Mesa IR both implement them using < and >=, repsectively. Removing them deletes a bunch

[Mesa-dev] [PATCH 7/7] glsl: Remove ir_binop_greater and ir_binop_lequal expressions

2017-10-17 Thread Ian Romanick
From: Ian Romanick NIR does not have these instructions. TGSI and Mesa IR both implement them using < and >=, repsectively. Removing them deletes a bunch of code and means I don't have to add code to the SPIR-V generator for them. v2: Rebase on 2+ years of change...