summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texcompress.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2012-09-22 18:45:33 -0600
committerIan Romanick <ian.d.romanick@intel.com>2012-10-16 14:57:20 -0700
commit99940eef48980b795b10e43ac388b7435b8defbc (patch)
tree968fb41e8c9deb635e617311f9b3fd8e2d2e09a3 /src/mesa/main/texcompress.h
parent198fa6452bf4cb7e5468263af5447932537c5314 (diff)
downloadexternal_mesa3d-99940eef48980b795b10e43ac388b7435b8defbc.zip
external_mesa3d-99940eef48980b795b10e43ac388b7435b8defbc.tar.gz
external_mesa3d-99940eef48980b795b10e43ac388b7435b8defbc.tar.bz2
mesa: remove #if _HAVE_FULL_GL checks
This is basically more of the "remove FEATURE_x" clean-up. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/texcompress.h')
-rw-r--r--src/mesa/main/texcompress.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/texcompress.h b/src/mesa/main/texcompress.h
index 34f4fae..359b916 100644
--- a/src/mesa/main/texcompress.h
+++ b/src/mesa/main/texcompress.h
@@ -31,8 +31,6 @@
struct gl_context;
-#if _HAVE_FULL_GL
-
extern GLenum
_mesa_gl_compressed_format_base_format(GLenum format);
@@ -55,13 +53,4 @@ _mesa_decompress_image(gl_format format, GLuint width, GLuint height,
const GLubyte *src, GLint srcRowStride,
GLfloat *dest);
-#else /* _HAVE_FULL_GL */
-
-/* no-op macros */
-#define _mesa_get_compressed_formats( c, f ) 0
-#define _mesa_compressed_image_address(c, r, i, f, w, i2 ) 0
-#define _mesa_compress_teximage( c, w, h, sF, s, sRS, dF, d, drs ) ((void)0)
-
-#endif /* _HAVE_FULL_GL */
-
#endif /* TEXCOMPRESS_H */