From: Alex Deucher Date: Mon, 14 Nov 2011 16:01:00 +0000 (-0500) Subject: r600g: set max max tex/vtx instructions count to 16 for cayman X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ebecbbc2e68673a49c3d0394c2f591f7a605110f;p=mesa.git r600g: set max max tex/vtx instructions count to 16 for cayman Cayman is 16 as well. Signed-off-by: Alex Deucher --- 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);