diff options
author | Brian <[email protected]> | 2007-07-26 16:42:05 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-26 16:42:05 -0600 |
commit | 0fb0d9715c9bcdcc3437a64a0f03c1c1153e9f29 (patch) | |
tree | dc03ae297ea7d28c29cfa16c191c4ffabec9dafd /src/mesa/shader/slang/slang_compile_operation.h | |
parent | e3cef5887540016a6d198598cb50bebe09e3f4cf (diff) |
fix-up inlined/non-inlined function inconsistencies
Diffstat (limited to 'src/mesa/shader/slang/slang_compile_operation.h')
-rw-r--r-- | src/mesa/shader/slang/slang_compile_operation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_compile_operation.h b/src/mesa/shader/slang/slang_compile_operation.h index d497b6f66f7..d5cbe779a6c 100644 --- a/src/mesa/shader/slang/slang_compile_operation.h +++ b/src/mesa/shader/slang/slang_compile_operation.h @@ -93,7 +93,7 @@ typedef enum slang_operation_type_ SLANG_OPER_NOT, /* "!" [expr] */ SLANG_OPER_SUBSCRIPT, /* [expr] "[" [expr] "]" */ SLANG_OPER_CALL, /* [func name] [param] [param] [...] */ - SLANG_OPER_INLINED_CALL, /* inlined function call */ + SLANG_OPER_NON_INLINED_CALL, /* a real function call */ SLANG_OPER_FIELD, /* i.e.: ".next" or ".xzy" or ".xxx" etc */ SLANG_OPER_POSTINCREMENT, /* [var] "++" */ SLANG_OPER_POSTDECREMENT /* [var] "--" */ |