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

Author: Kenneth Graunke <[email protected]>
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 <[email protected]>
Reviewed-by: Matt Turner <[email protected]>

---

 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++) {

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to