diff options
author | Kenneth Graunke <[email protected]> | 2016-11-15 00:15:02 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-11-15 10:45:47 -0800 |
commit | 341fc0073a3c05fd43e9c7a33613bcb881f25f33 (patch) | |
tree | 3a83f4f5060b217f1a510bc582788522eb858d5e /src | |
parent | 0c73a3b7d0cceb4ba06274b7bd3cf50fb73d48f1 (diff) |
intel: Set min_ds_entries on Broxton.
This was missing.
Cc: [email protected]
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ben Widawsky <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/common/gen_device_info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/common/gen_device_info.c b/src/intel/common/gen_device_info.c index 1dc17690dc1..c7b8e5650a0 100644 --- a/src/intel/common/gen_device_info.c +++ b/src/intel/common/gen_device_info.c @@ -391,6 +391,7 @@ static const struct gen_device_info gen_device_info_bxt = { .urb = { .size = 192, .min_vs_entries = 34, + .min_ds_entries = 34, .max_vs_entries = 704, .max_tcs_entries = 256, .max_tes_entries = 416, @@ -413,6 +414,7 @@ static const struct gen_device_info gen_device_info_bxt_2x6 = { .urb = { .size = 128, .min_vs_entries = 34, + .min_ds_entries = 34, .max_vs_entries = 352, .max_tcs_entries = 128, .max_tes_entries = 208, |