diff options
author | Marek Olšák <[email protected]> | 2011-05-29 02:53:01 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-06-01 01:26:31 +0200 |
commit | 224ed851ed72335de9f4c424eb023fd4c929bfcf (patch) | |
tree | 9a3bf740e0dbb9296d91e2848ae67854b63eab00 /src/gallium | |
parent | b531e75cc53803ed4588edfdb235a37c88d4087e (diff) |
tgsi/ureg: bump the limit of immediates
Lowered indirect addressing can create lots of immediates.
Fixes piglit/glsl-fs-uniform-array-7 on r300g.
NOTE: This is a candidate for the 7.10 branch.
Reviewed-by: Brian Paul <[email protected]>
(cherry picked from commit ff038170ff9042c0ee535be7c2837d200e06b0c0)
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/tgsi_ureg.c index 7d13a17bdbc..08a860077c1 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.c @@ -71,7 +71,7 @@ struct ureg_tokens { #define UREG_MAX_SYSTEM_VALUE PIPE_MAX_ATTRIBS #define UREG_MAX_OUTPUT PIPE_MAX_ATTRIBS #define UREG_MAX_CONSTANT_RANGE 32 -#define UREG_MAX_IMMEDIATE 32 +#define UREG_MAX_IMMEDIATE 256 #define UREG_MAX_TEMP 256 #define UREG_MAX_ADDR 2 #define UREG_MAX_PRED 1 |