[Mesa-dev] [PATCH 2/3] i965: Fix min_vs_entries for CHV
ville.syrjala at linux.intel.com
ville.syrjala at linux.intel.com
Wed Jan 21 10:17:35 PST 2015
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
According to BSpec the correct number for min_vs_entries is 34 for CHV.
Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
---
src/mesa/drivers/dri/i965/brw_device_info.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c
index 2c3af66..bdef42b 100644
--- a/src/mesa/drivers/dri/i965/brw_device_info.c
+++ b/src/mesa/drivers/dri/i965/brw_device_info.c
@@ -244,7 +244,7 @@ static const struct brw_device_info brw_device_info_chv = {
.max_wm_threads = 128,
.urb = {
.size = 128,
- .min_vs_entries = 64,
+ .min_vs_entries = 34,
.max_vs_entries = 640,
.max_gs_entries = 256,
}
--
2.0.5
More information about the mesa-dev
mailing list