diff options
author | Ben Skeggs <[email protected]> | 2010-04-07 15:06:59 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2010-04-07 15:06:59 +1000 |
commit | 841b327a51a5bc5968a8ddb0e867b6c552ac67c7 (patch) | |
tree | 67f878f59da3a360c2ced44710c2da2d75ee27b7 /src/gallium/drivers | |
parent | c60a161cc5c92b495007cbd3f709a5b9405e019a (diff) |
nv50: fix assertion that caused piglit texturing/texrect-many to fail
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_program.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |