diff options
author | Michal Krol <[email protected]> | 2009-11-27 12:33:17 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-01 09:51:54 +0100 |
commit | 2fd1aee217988caacd5c87d76deab3c0caf1bb00 (patch) | |
tree | 227b13e47a2f074dbad687491524143a3ae7e9f3 | |
parent | 7725744433827509d1da1cf1b27cda4bc8012ef3 (diff) |
tgsi/sanity: Up MAX_REGISTERS to 1024.
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sanity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_sanity.c b/src/gallium/auxiliary/tgsi/tgsi_sanity.c index 36e27ea52f4..4d8145032b2 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sanity.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sanity.c @@ -34,7 +34,7 @@ typedef uint reg_flag; #define BITS_IN_REG_FLAG (sizeof( reg_flag ) * 8) -#define MAX_REGISTERS 256 +#define MAX_REGISTERS 1024 #define MAX_REG_FLAGS ((MAX_REGISTERS + BITS_IN_REG_FLAG - 1) / BITS_IN_REG_FLAG) struct sanity_check_ctx |