Mesa (master): i965: Treat Haswell as 75 in the surface format table.

Kenneth Graunke kwg at kemper.freedesktop.org
Sat Dec 14 05:13:08 UTC 2013


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

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Wed May  8 14:38:25 2013 -0700

i965: Treat Haswell as 75 in the surface format table.

Much like we do for G45.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Matt Turner <mattst88 at gmail.com>

---

 src/mesa/drivers/dri/i965/brw_surface_formats.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_surface_formats.c b/src/mesa/drivers/dri/i965/brw_surface_formats.c
index 7afca79..90e43a7 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++) {




More information about the mesa-commit mailing list