mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
mesa: add missing IR_LOG2 case
This commit is contained in:
parent
9d43e387a3
commit
178726ebce
1 changed files with 3 additions and 2 deletions
|
|
@ -1658,6 +1658,9 @@ emit(slang_emit_info *emitInfo, slang_ir_node *n)
|
|||
case IR_COS:
|
||||
case IR_DDX:
|
||||
case IR_DDY:
|
||||
case IR_EXP:
|
||||
case IR_EXP2:
|
||||
case IR_LOG2:
|
||||
case IR_NOISE1:
|
||||
case IR_NOISE2:
|
||||
case IR_NOISE3:
|
||||
|
|
@ -1678,8 +1681,6 @@ emit(slang_emit_info *emitInfo, slang_ir_node *n)
|
|||
case IR_SLE:
|
||||
case IR_SLT:
|
||||
case IR_POW:
|
||||
case IR_EXP:
|
||||
case IR_EXP2:
|
||||
/* trinary operators */
|
||||
case IR_LRP:
|
||||
return emit_arith(emitInfo, n);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue