diff options
author | Jordan Justen <[email protected]> | 2014-04-03 11:30:41 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2014-04-07 09:52:32 -0700 |
commit | 70285f607ce2a0680c3e51b3717fed6a8dd19e72 (patch) | |
tree | 991e80c2879542283cb535bbc0a9562ff51c38af /src | |
parent | d3ef6f542797ff36df9cfd2f22221694f8144005 (diff) |
i965: initialize more device info fields for Cherryview
The intent in 9b6b084eb7b10d006b44e3cd22585fc3e39e0c00 was
for urb .size and .min_vs_entries fields to use the values
from the GEN8_FEATURES macro.
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 7625c742faa..bf3c62e8171 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -231,6 +231,8 @@ static const struct brw_device_info brw_device_info_chv = { .max_gs_threads = 70, .max_wm_threads = 102, .urb = { + .size = 128, + .min_vs_entries = 64, .max_vs_entries = 640, .max_gs_entries = 256, } |