[Mesa-dev] [PATCH 21/27] intel: Enable support for GL_COMPRESSED_RG11_EAC textures
Anuj Phogat
anuj.phogat at gmail.com
Fri Oct 19 16:28:56 PDT 2012
Signed-off-by: Anuj Phogat <anuj.phogat at gmail.com>
---
src/mesa/drivers/dri/i965/brw_wm_surface_state.c | 1 +
src/mesa/drivers/dri/intel/intel_mipmap_tree.c | 5 +++++
2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
index ad2f3fc..f5c22c5 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
@@ -566,6 +566,7 @@ brw_init_surface_formats(struct brw_context *brw)
ctx->TextureFormatSupported[MESA_FORMAT_ETC2_RGBA8_EAC] = true;
ctx->TextureFormatSupported[MESA_FORMAT_ETC2_SRGB8_ALPHA8_EAC] = true;
ctx->TextureFormatSupported[MESA_FORMAT_ETC2_R11_EAC] = true;
+ ctx->TextureFormatSupported[MESA_FORMAT_ETC2_RG11_EAC] = true;
}
bool
diff --git a/src/mesa/drivers/dri/intel/intel_mipmap_tree.c b/src/mesa/drivers/dri/intel/intel_mipmap_tree.c
index d041784..2ca6c60 100644
--- a/src/mesa/drivers/dri/intel/intel_mipmap_tree.c
+++ b/src/mesa/drivers/dri/intel/intel_mipmap_tree.c
@@ -226,6 +226,11 @@ intel_miptree_create(struct intel_context *intel,
wraps_etc2 = true;
format = MESA_FORMAT_R16;
break;
+ case MESA_FORMAT_ETC2_RG11_EAC:
+ etc2_format = format;
+ wraps_etc2 = true;
+ format = MESA_FORMAT_RG1616;
+ break;
default:
/* Non ETC1 / ETC2 format */
break;
--
1.7.7.6
More information about the mesa-dev
mailing list