mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 00:08:09 +02:00
i965/gen7: Reduce GT1 WM thread count according to updated BSpec.
Acked-by: Kenneth Graunke <kenneth@whitecape.org> https://bugs.freedesktop.org/show_bug.cgi?id=52382
This commit is contained in:
parent
cbcf750d5f
commit
fbf86c7f0f
1 changed files with 1 additions and 1 deletions
|
|
@ -238,7 +238,7 @@ brwCreateContext(int api,
|
|||
/* WM maximum threads is number of EUs times number of threads per EU. */
|
||||
if (intel->gen >= 7) {
|
||||
if (intel->gt == 1) {
|
||||
brw->max_wm_threads = 86;
|
||||
brw->max_wm_threads = 48;
|
||||
brw->max_vs_threads = 36;
|
||||
brw->max_gs_threads = 36;
|
||||
brw->urb.size = 128;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue