mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
mesa/st: Fix compiler warnings from INTEL_shader_integer_functions.
Fixes: 1d165b0548 ("glsl: Add new expressions for INTEL_shader_integer_functions2")
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3539>
This commit is contained in:
parent
096921c878
commit
527a8c345b
1 changed files with 7 additions and 0 deletions
|
|
@ -2388,6 +2388,13 @@ glsl_to_tgsi_visitor::visit_expression(ir_expression* ir, st_src_reg *op)
|
|||
case ir_unop_ssbo_unsized_array_length:
|
||||
case ir_unop_atan:
|
||||
case ir_binop_atan2:
|
||||
case ir_unop_clz:
|
||||
case ir_binop_add_sat:
|
||||
case ir_binop_sub_sat:
|
||||
case ir_binop_abs_sub:
|
||||
case ir_binop_avg:
|
||||
case ir_binop_avg_round:
|
||||
case ir_binop_mul_32x16:
|
||||
/* This operation is not supported, or should have already been handled.
|
||||
*/
|
||||
assert(!"Invalid ir opcode in glsl_to_tgsi_visitor::visit()");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue