Mesa (master): i965: Fix min_vs_entries for CHV

Ville Syrjala vsyrjala at kemper.freedesktop.org
Fri Jan 23 10:10:32 UTC 2015


Module: Mesa
Branch: master
Commit: f4b31d29d7669d5267f58fe24569978005896d20
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f4b31d29d7669d5267f58fe24569978005896d20

Author: Ville Syrjälä <ville.syrjala at linux.intel.com>
Date:   Mon Jan 19 16:09:10 2015 +0200

i965: Fix min_vs_entries for CHV

According to BSpec the correct number for min_vs_entries is 34 for CHV.

Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
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 8c180a8..3c3c564 100644
--- a/src/mesa/drivers/dri/i965/brw_device_info.c
+++ b/src/mesa/drivers/dri/i965/brw_device_info.c
@@ -242,7 +242,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,
    }




More information about the mesa-commit mailing list