summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_device_info.h
diff options
context:
space:
mode:
authorChris Forbes <chrisf@ijw.co.nz>2014-09-09 21:28:46 +1200
committerKenneth Graunke <kenneth@whitecape.org>2015-02-17 17:33:27 -0800
commiteda3dd00760039493fa2afc00193aa47b6ce8c58 (patch)
treeaaaaf6ef8c65e668a47dacc250724a880e434e60 /src/mesa/drivers/dri/i965/brw_device_info.h
parente8e4437ed0660b3f1d1912f53d997cf5e25f486d (diff)
downloadexternal_mesa3d-eda3dd00760039493fa2afc00193aa47b6ce8c58.zip
external_mesa3d-eda3dd00760039493fa2afc00193aa47b6ce8c58.tar.gz
external_mesa3d-eda3dd00760039493fa2afc00193aa47b6ce8c58.tar.bz2
i965: Add device limits for tess threads & URB entries
This should cover all platforms prior to Skylake. Signed-off-by: Chris Forbes <chrisf@ijw.co.nz> Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Acked-by: Ben Widawsky <ben@bwidawsk.net>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_device_info.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_device_info.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.h b/src/mesa/drivers/dri/i965/brw_device_info.h
index e506beb..7c9f5d0 100644
--- a/src/mesa/drivers/dri/i965/brw_device_info.h
+++ b/src/mesa/drivers/dri/i965/brw_device_info.h
@@ -66,6 +66,8 @@ struct brw_device_info
* @{
*/
unsigned max_vs_threads;
+ unsigned max_hs_threads;
+ unsigned max_ds_threads;
unsigned max_gs_threads;
unsigned max_wm_threads;
@@ -73,6 +75,8 @@ struct brw_device_info
unsigned size;
unsigned min_vs_entries;
unsigned max_vs_entries;
+ unsigned max_hs_entries;
+ unsigned max_ds_entries;
unsigned max_gs_entries;
} urb;
/** @} */