[Mesa-dev] [PATCH 3/6] i965: Remove bad assert on isl_format

Chad Versace chad at kiwitree.net
Wed May 31 23:43:55 UTC 2017


translate_tex_format() asserted that isl_format != 0. But 0 is a valid
format, ISL_FORMAT_R32G32B32A32_FLOAT.
---
 src/mesa/drivers/dri/i965/brw_surface_formats.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_surface_formats.c b/src/mesa/drivers/dri/i965/brw_surface_formats.c
index 155146c..52d3acb 100644
--- a/src/mesa/drivers/dri/i965/brw_surface_formats.c
+++ b/src/mesa/drivers/dri/i965/brw_surface_formats.c
@@ -575,7 +575,6 @@ translate_tex_format(struct brw_context *brw,
    }
 
    default:
-      assert(brw_isl_format_for_mesa_format(mesa_format) != 0);
       return brw_isl_format_for_mesa_format(mesa_format);
    }
 }
-- 
2.9.3



More information about the mesa-dev mailing list