diff options
author | Ben Widawsky <benjamin.widawsky@intel.com> | 2014-12-23 11:47:14 -0800 |
---|---|---|
committer | Ben Widawsky <benjamin.widawsky@intel.com> | 2014-12-23 11:54:24 -0800 |
commit | ea442e1e6e7c34d5724fc5c22605d8a718dd72fd (patch) | |
tree | b51cad2945319f9273670854532a987deca4a48e | |
parent | 1fee46739ade22737fd8fe8666546be8ae70467b (diff) |
i965/hsw: Limit max WM threads to physical limit
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 65942c2bac..82e4024231 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -156,7 +156,7 @@ static const struct brw_device_info brw_device_info_hsw_gt1 = { GEN7_FEATURES, .is_haswell = true, .gt = 1, .max_vs_threads = 70, .max_gs_threads = 70, - .max_wm_threads = 102, + .max_wm_threads = 70, .urb = { .size = 128, .min_vs_entries = 32, |