From: Brian Paul Date: Sat, 8 Dec 2012 22:19:44 +0000 (-0700) Subject: mesa: add compressed_fetch_func typedef X-Git-Tag: mesa-9.1-rc1~818 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2037a06da94bc0e14a0732c50c7d7044d9a29da0;p=platform%2Fupstream%2Fmesa.git mesa: add compressed_fetch_func typedef This is a first step in removing the swrast-related code in core Mesa's texture compression files. --- diff --git a/src/mesa/main/texcompress.h b/src/mesa/main/texcompress.h index 359b916..7e3de0e 100644 --- a/src/mesa/main/texcompress.h +++ b/src/mesa/main/texcompress.h @@ -48,6 +48,15 @@ _mesa_compressed_image_address(GLint col, GLint row, GLint img, gl_format mesaFormat, GLsizei width, const GLubyte *image); + +/** A function to fetch one texel from a compressed texture */ +typedef void (*compressed_fetch_func)(const GLubyte *map, + const GLuint imageOffsets[], + GLint rowStride, + GLint i, GLint j, GLint k, + GLfloat *texel); + + extern void _mesa_decompress_image(gl_format format, GLuint width, GLuint height, const GLubyte *src, GLint srcRowStride,