diff options
author | Vadim Girlin <[email protected]> | 2011-10-15 05:47:49 +0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-11-14 10:59:53 -0500 |
commit | c32ca6d9c1328339a9e6341d875142acd23bc9c1 (patch) | |
tree | 01ab2b23db47caa3fb422a8849c70fe1371d7b31 /src/gallium/drivers/r600 | |
parent | 8f55f5b77b1f3f6b5777d0e75ba390b67c7a0901 (diff) |
r600g: set max tex/vtx instructions count to 16 for evergreen
According to evergreen-isa doc 16 is max value for evergreen.
More than 16 doesn't work for me.
Signed-off-by: Vadim Girlin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index f923c622f0b..8d0a04da8fb 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -1367,9 +1367,9 @@ static unsigned r600_bytecode_num_tex_and_vtx_instructions(const struct r600_byt return 8; case R700: + case EVERGREEN: return 16; - case EVERGREEN: case CAYMAN: return 64; |