diff options
author | Alex Deucher <[email protected]> | 2011-11-14 11:01:00 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-11-14 11:01:00 -0500 |
commit | ebecbbc2e68673a49c3d0394c2f591f7a605110f (patch) | |
tree | 062a698f0d6b7a6b6ae4420b4f18dc780917423b /src | |
parent | c32ca6d9c1328339a9e6341d875142acd23bc9c1 (diff) |
r600g: set max max tex/vtx instructions count to 16 for cayman
Cayman is 16 as well.
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 8d0a04da8fb..add1276e5dc 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -1368,10 +1368,8 @@ static unsigned r600_bytecode_num_tex_and_vtx_instructions(const struct r600_byt case R700: case EVERGREEN: - return 16; - case CAYMAN: - return 64; + return 16; default: R600_ERR("Unknown chip class %d.\n", bc->chip_class); |