diff options
author | Anuj Phogat <[email protected]> | 2012-10-22 13:34:30 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-12-07 16:29:49 -0800 |
commit | 883efbf6daa02cfe8a5ce78ed87aaa06bec7c995 (patch) | |
tree | 47800b266c28cb5b3520ab9fb369adff4e9f1b8e /src/mesa/swrast | |
parent | 75211f4367cab6477890111211d3437bf469670b (diff) |
mesa: Add decoding functions for GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2
Data in GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 format is decoded and stored
in MESA_FORMAT_RGBA8888_REV.
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_texfetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texfetch.c b/src/mesa/swrast/s_texfetch.c index 054f5e5b1fb..579dd5c5fc1 100644 --- a/src/mesa/swrast/s_texfetch.c +++ b/src/mesa/swrast/s_texfetch.c @@ -1079,7 +1079,7 @@ texfetch_funcs[] = { MESA_FORMAT_ETC2_RGB8_PUNCHTHROUGH_ALPHA1, NULL, - NULL /* _mesa_fetch_texel_2d_f_etc2_rgb8_punchthrough_alpha1 -- not implemented yet */, + _mesa_fetch_texel_2d_f_etc2_rgb8_punchthrough_alpha1, NULL }, { |