From: Kenneth Graunke Date: Wed, 8 May 2013 21:38:25 +0000 (-0700) Subject: i965: Treat Haswell as 75 in the surface format table. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35f0aafaa4781cc0ad0cc9092cca7af79b3f9743;p=mesa.git i965: Treat Haswell as 75 in the surface format table. Much like we do for G45. Signed-off-by: Kenneth Graunke Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_surface_formats.c b/src/mesa/drivers/dri/i965/brw_surface_formats.c index 7afca79819a..90e43a71add 100644 --- a/src/mesa/drivers/dri/i965/brw_surface_formats.c +++ b/src/mesa/drivers/dri/i965/brw_surface_formats.c @@ -535,7 +535,7 @@ brw_init_surface_formats(struct brw_context *brw) memset(&ctx->TextureFormatSupported, 0, sizeof(ctx->TextureFormatSupported)); gen = brw->gen * 10; - if (brw->is_g4x) + if (brw->is_g4x || brw->is_haswell) gen += 5; for (format = MESA_FORMAT_NONE + 1; format < MESA_FORMAT_COUNT; format++) {