diff options
author | Brian <[email protected]> | 2007-03-07 11:26:47 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-07 11:26:47 -0700 |
commit | 5b5a80d011d143f1bbd9be39dc4ca6a0af4bad7c (patch) | |
tree | afd256ae5d4dadda81c54547e08ac5de50c04b7d /src/mesa/shader/slang/slang_compile.c | |
parent | ab673c852724e81365ab9d979881da7464131854 (diff) |
s/equal/EQUAL/, fix bugs in logical or/and code.
Diffstat (limited to 'src/mesa/shader/slang/slang_compile.c')
-rw-r--r-- | src/mesa/shader/slang/slang_compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/slang/slang_compile.c b/src/mesa/shader/slang/slang_compile.c index 4609de684a0..e1837520253 100644 --- a/src/mesa/shader/slang/slang_compile.c +++ b/src/mesa/shader/slang/slang_compile.c @@ -1037,12 +1037,12 @@ parse_expression(slang_parse_ctx * C, slang_output_ctx * O, return 0; break; case OP_LESSEQUAL: - op->type = SLANG_OPER_LESSequal; + op->type = SLANG_OPER_LESSEQUAL; if (!handle_nary_expression(C, op, &ops, &num_ops, 2)) return 0; break; case OP_GREATEREQUAL: - op->type = SLANG_OPER_GREATERequal; + op->type = SLANG_OPER_GREATEREQUAL; if (!handle_nary_expression(C, op, &ops, &num_ops, 2)) return 0; break; |