diff options
author | Brian <[email protected]> | 2007-01-15 13:58:45 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-01-15 13:58:45 -0700 |
commit | 83d3ff590d0024b63501db91c9a3137e9ec959a0 (patch) | |
tree | 90d07ce95d9727c3bf2869556c0d7797ca398759 /src/mesa/shader/slang/slang_ir.h | |
parent | c807169888c900dd303adb260c3cfeb744ed842d (diff) |
Redo the way array indexes are handled. Resolve storage location at code emit time, not codegen time.
Diffstat (limited to 'src/mesa/shader/slang/slang_ir.h')
-rw-r--r-- | src/mesa/shader/slang/slang_ir.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/slang/slang_ir.h b/src/mesa/shader/slang/slang_ir.h index baf1137e731..2589d688722 100644 --- a/src/mesa/shader/slang/slang_ir.h +++ b/src/mesa/shader/slang/slang_ir.h @@ -82,6 +82,7 @@ typedef enum IR_NOT, /* logical not */ IR_VAR, /* variable reference */ IR_VAR_DECL,/* var declaration */ + IR_ELEMENT, /* array element */ IR_TEX, /* texture lookup */ IR_TEXB, /* texture lookup with LOD bias */ IR_TEXP, /* texture lookup with projection */ |