summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-07-15 16:04:26 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-07-15 16:41:35 -0600
commit716f70d7826c15cfaf09653ae525286f3eb59a07 (patch)
tree3c67c0f96480e729f4c1a3f7e68451e18eb9c418 /src
parentb0d173f4053ee006717fb1c04cf12d1d687052e6 (diff)
downloadmesa-716f70d7826c15cfaf09653ae525286f3eb59a07.tar.gz
mesa: add missing IR_LOG2 case
Diffstat (limited to 'src')
-rw-r--r--src/mesa/shader/slang/slang_emit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c
index b087483b020..f025b15de9d 100644
--- a/src/mesa/shader/slang/slang_emit.c
+++ b/src/mesa/shader/slang/slang_emit.c
@@ -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);