diff options
author | Marek Olšák <[email protected]> | 2010-08-28 07:51:55 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-08-28 18:17:30 +0200 |
commit | 97cbb563f82f9242a4d7588e502eb2d289eb1b36 (patch) | |
tree | 1ee04606049f2fe50bd73752b0f8e557fa776808 /src/gallium/drivers | |
parent | f7579f2f28999e585ee9a51635c38d57d25c6193 (diff) |
r300g: set the correct value in PVS_NUM_CNTLRS
As per docs.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/r300/r300_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index 58d7e4ffe93..232259e21d1 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -909,7 +909,7 @@ void r300_emit_vs_state(struct r300_context* r300, unsigned size, void* state) unsigned pvs_num_slots = MIN3(vtx_mem_size / input_count, vtx_mem_size / output_count, 10); - unsigned pvs_num_controllers = MIN2(vtx_mem_size / temp_count, 6); + unsigned pvs_num_controllers = MIN2(vtx_mem_size / temp_count, 5); unsigned imm_first = vs->externals_count; unsigned imm_end = vs->code.constants.Count; |