diff options
author | Kenneth Graunke <[email protected]> | 2016-11-14 23:45:16 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-11-19 11:39:45 -0800 |
commit | 58c09e72b15768524e5b76b55eae506391b663d8 (patch) | |
tree | 2010b211a1d2fdca23a19829ce94d2db26698396 /src/intel/common/gen_device_info.h | |
parent | 2acfd364798fcefe09acffabb106c9732d403e6c (diff) |
intel: Convert devinfo->urb.max_*_entries into an array.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/common/gen_device_info.h')
-rw-r--r-- | src/intel/common/gen_device_info.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/intel/common/gen_device_info.h b/src/intel/common/gen_device_info.h index 10324e6d857..445addc0838 100644 --- a/src/intel/common/gen_device_info.h +++ b/src/intel/common/gen_device_info.h @@ -136,11 +136,12 @@ struct gen_device_info */ unsigned size; unsigned min_vs_entries; - unsigned max_vs_entries; - unsigned max_tcs_entries; unsigned min_ds_entries; - unsigned max_tes_entries; - unsigned max_gs_entries; + + /** + * The maximum number of URB entries. See the 3DSTATE_URB_<XS> docs. + */ + unsigned max_entries[4]; } urb; /** @} */ }; |