mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 20:18:12 +02:00
r600: rv670 use at least 16es/gs threads
This is specified in the docs for rv670 to work properly.
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Cc: "10.6 11.0 11.1" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
(cherry picked from commit 04efcc6c7a)
This commit is contained in:
parent
8e3fbb90a9
commit
dd37db0c80
1 changed files with 5 additions and 4 deletions
|
|
@ -2213,10 +2213,11 @@ void r600_init_atom_start_cs(struct r600_context *rctx)
|
|||
num_temp_gprs = 4;
|
||||
num_gs_gprs = 0;
|
||||
num_es_gprs = 0;
|
||||
num_ps_threads = 136;
|
||||
num_vs_threads = 48;
|
||||
num_gs_threads = 4;
|
||||
num_es_threads = 4;
|
||||
/* use limits 40 VS and at least 16 ES/GS */
|
||||
num_ps_threads = 120;
|
||||
num_vs_threads = 40;
|
||||
num_gs_threads = 16;
|
||||
num_es_threads = 16;
|
||||
num_ps_stack_entries = 40;
|
||||
num_vs_stack_entries = 40;
|
||||
num_gs_stack_entries = 32;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue