summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texcompress_etc.c
Commit message (Collapse)AuthorAgeFilesLines
* mesa: Add function for decoding ETC1 texturesChad Versace2012-07-161-0/+32
| | | | | | | | | Add function _mesa_etc1_unpack_rgba8888. It is intended to be used by glCompressedTexSubImage2D to decode ETC1 textures into RGBA. CC: Chia-I <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Signed-off-by: Chad Versace <[email protected]>
* swrast: s/Data/Map/ in swrast_texture_imageBrian Paul2012-01-241-1/+1
| | | | To indicate that it points to mapped texture memory.
* mesa: add ETC1 decoding routinesChia-I Wu2011-12-021-0/+71
The format is defined by GL_OES_compressed_ETC1_RGB8_texture. These routines will be used in the following commit. Reviewed-by: Brian Paul <[email protected]>