diff options
author | Brian <brian@yutani.localnet.net> | 2007-03-07 11:26:47 -0700 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-03-07 11:26:47 -0700 |
commit | 5b5a80d011d143f1bbd9be39dc4ca6a0af4bad7c (patch) | |
tree | afd256ae5d4dadda81c54547e08ac5de50c04b7d /src/mesa/shader/slang/slang_compile_operation.h | |
parent | ab673c852724e81365ab9d979881da7464131854 (diff) |
s/equal/EQUAL/, fix bugs in logical or/and code.
Diffstat (limited to 'src/mesa/shader/slang/slang_compile_operation.h')
-rw-r--r-- | src/mesa/shader/slang/slang_compile_operation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/slang/slang_compile_operation.h b/src/mesa/shader/slang/slang_compile_operation.h index 4adcd2ab0e..02f677f813 100644 --- a/src/mesa/shader/slang/slang_compile_operation.h +++ b/src/mesa/shader/slang/slang_compile_operation.h @@ -77,8 +77,8 @@ typedef enum slang_operation_type_ SLANG_OPER_NOTEQUAL, /* [expr] "!=" [expr] */ SLANG_OPER_LESS, /* [expr] "<" [expr] */ SLANG_OPER_GREATER, /* [expr] ">" [expr] */ - SLANG_OPER_LESSequal, /* [expr] "<=" [expr] */ - SLANG_OPER_GREATERequal, /* [expr] ">=" [expr] */ + SLANG_OPER_LESSEQUAL, /* [expr] "<=" [expr] */ + SLANG_OPER_GREATEREQUAL, /* [expr] ">=" [expr] */ /*SLANG_OPER_LSHIFT, */ /*SLANG_OPER_RSHIFT, */ SLANG_OPER_ADD, /* [expr] "+" [expr] */ |