diff options
author | Ville Syrjälä <[email protected]> | 2015-01-19 16:08:31 +0200 |
---|---|---|
committer | Ville Syrjälä <[email protected]> | 2015-03-06 11:50:49 +0200 |
commit | 970dc2360372a7859691d690bd2f1976c3c97fb0 (patch) | |
tree | 102b8f9461870c6a361cecbe0241b5233d7bd4d4 | |
parent | ced9425327be6cb557a4a1217a1dac29b18d1a09 (diff) |
i965: Fix URB size for CHV
Increase the device info .urb.size for CHV to match the default URB
size (192kB).
Reviewed-by: Kenneth Graunke <[email protected]>
Signed-off-by: Ville Syrjälä <[email protected]>
-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 ec4e22ed927..c4350b4efcc 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -275,7 +275,7 @@ static const struct brw_device_info brw_device_info_chv = { .max_gs_threads = 80, .max_wm_threads = 128, .urb = { - .size = 128, + .size = 192, .min_vs_entries = 34, .max_vs_entries = 640, .max_hs_entries = 80, |