i965: Fix flipped GT1 vs GT2 URB VS entry count limits.
authorEric Anholt <eric@anholt.net>
Mon, 6 Jun 2011 06:20:57 +0000 (23:20 -0700)
committerEric Anholt <eric@anholt.net>
Tue, 7 Jun 2011 07:08:42 +0000 (00:08 -0700)
src/mesa/drivers/dri/i965/brw_context.c

index 0256ab9..d6a99ab 100644 (file)
@@ -203,12 +203,12 @@ GLboolean brwCreateContext( int api,
         brw->wm_max_threads = 40;
         brw->vs_max_threads = 60;
         brw->urb.size = 64;            /* volume 5c.5 section 5.1 */
-        brw->urb.max_vs_entries = 128; /* volume 2a (see 3DSTATE_URB) */
+        brw->urb.max_vs_entries = 256; /* volume 2a (see 3DSTATE_URB) */
       } else {
         brw->wm_max_threads = 40;
         brw->vs_max_threads = 24;
         brw->urb.size = 32;            /* volume 5c.5 section 5.1 */
-        brw->urb.max_vs_entries = 256; /* volume 2a (see 3DSTATE_URB) */
+        brw->urb.max_vs_entries = 128; /* volume 2a (see 3DSTATE_URB) */
       }
    } else if (intel->gen == 5) {
       brw->urb.size = 1024;