diff options
author | Brian Paul <[email protected]> | 2009-09-29 18:51:49 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-29 18:51:49 -0600 |
commit | 3c794e45b02c66ce3f52fe359f733e4d7d2ce315 (patch) | |
tree | 316bc4383957085f61fd19bb04661526553c8e70 /src/mesa/shader/slang/slang_emit.c | |
parent | 5f1faf4a21c2af693208c9b46ff93eda899d839d (diff) |
glsl: add support for CMP instruction
Diffstat (limited to 'src/mesa/shader/slang/slang_emit.c')
-rw-r--r-- | src/mesa/shader/slang/slang_emit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index 3f455e0640b..3af301eacdf 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -2287,6 +2287,7 @@ emit(slang_emit_info *emitInfo, slang_ir_node *n) case IR_POW: /* trinary operators */ case IR_LRP: + case IR_CMP: return emit_arith(emitInfo, n); case IR_EQUAL: |