From: Eric Anholt Date: Thu, 25 Feb 2010 22:24:36 +0000 (-0800) Subject: i965: Don't include SNB in has_negative_rhw_bug. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89cce536cbc55460bc534acc06ea9f4d9ae71016;p=mesa.git i965: Don't include SNB in has_negative_rhw_bug. --- diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 3614149966f..a512896f315 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -170,7 +170,7 @@ GLboolean brwCreateContext( const __GLcontextModes *mesaVis, brw->urb.size = 384; brw->vs_max_threads = 32; brw->wm_max_threads = 10 * 5; - } else { + } else if (intel->gen < 6) { brw->urb.size = 256; brw->vs_max_threads = 16; brw->wm_max_threads = 8 * 4;