From: Kenneth Graunke Date: Thu, 19 Dec 2013 23:15:01 +0000 (-0800) Subject: i965: Enable native ETC texture support on Broadwell. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8618407d15ead94358ccd691f598ca1c76c46385;p=mesa.git i965: Enable native ETC texture support on Broadwell. Broadwell, like Baytrail, has native ETC texture support. Signed-off-by: Kenneth Graunke Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c index 0818226f3c4..ea929d4e83f 100644 --- a/src/mesa/drivers/dri/i965/intel_mipmap_tree.c +++ b/src/mesa/drivers/dri/i965/intel_mipmap_tree.c @@ -501,7 +501,7 @@ intel_miptree_create(struct brw_context *brw, gl_format etc_format = MESA_FORMAT_NONE; GLuint total_width, total_height; - if (!brw->is_baytrail) { + if (brw->gen < 8 && !brw->is_baytrail) { switch (format) { case MESA_FORMAT_ETC1_RGB8: format = MESA_FORMAT_RGBX8888_REV;