From: Ben Skeggs Date: Wed, 7 Apr 2010 05:06:59 +0000 (+1000) Subject: nv50: fix assertion that caused piglit texturing/texrect-many to fail X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=841b327a51a5bc5968a8ddb0e867b6c552ac67c7;p=mesa.git nv50: fix assertion that caused piglit texturing/texrect-many to fail --- diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c index d7e06c93272..2f61888ed99 100644 --- a/src/gallium/drivers/nv50/nv50_program.c +++ b/src/gallium/drivers/nv50/nv50_program.c @@ -4546,7 +4546,7 @@ nv50_fp_linkage_validate(struct nv50_context *nv50) so = so_new(10, 54, 0); n = (m + 3) / 4; - assert(m <= 32); + assert(m <= 64); if (vp->type == PIPE_SHADER_GEOMETRY) { so_method(so, tesla, NV50TCL_GP_RESULT_MAP_SIZE, 1); so_data (so, m);