diff options
author | Eric Anholt <[email protected]> | 2012-07-27 11:34:07 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-07-27 11:42:19 -0700 |
commit | fbf86c7f0f1f12e52b927e3870535073879d0a4d (patch) | |
tree | 5d44cb3d79594201bc47a3d067834439f0e4ceb5 /src | |
parent | cbcf750d5f2c4695c39766938b4cd9d8942d850b (diff) |
i965/gen7: Reduce GT1 WM thread count according to updated BSpec.
Acked-by: Kenneth Graunke <[email protected]>
https://bugs.freedesktop.org/show_bug.cgi?id=52382
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index e23e22443bb..a5711e4a58d 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -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; |