diff options
author | Michal Krol <[email protected]> | 2009-11-02 09:41:40 +0000 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-11-02 09:44:20 +0000 |
commit | aa2b2e5d7d53ddd08425536edddec509a8834bfc (patch) | |
tree | 77692fb342290a0cc4a1c0fe515e375d217b7ea8 /src/gallium/auxiliary/tgsi/tgsi_exec.h | |
parent | 0a7d50ed7e7608eaccba8e9648685e740065c384 (diff) |
tgsi: Update for gallium interface changes.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h index c72f76809d4..08df15ec6a0 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h @@ -168,7 +168,12 @@ struct tgsi_exec_labels #define TGSI_EXEC_TEMP_ADDR (TGSI_EXEC_NUM_TEMPS + 8) #define TGSI_EXEC_NUM_ADDRS 1 -#define TGSI_EXEC_NUM_TEMP_EXTRAS 9 + +/* predicate register */ +#define TGSI_EXEC_TEMP_P0 (TGSI_EXEC_NUM_TEMPS + 9) +#define TGSI_EXEC_NUM_PREDS 1 + +#define TGSI_EXEC_NUM_TEMP_EXTRAS 10 |