summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texcompress.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-10-24 11:41:25 -0600
committerBrian Paul <brianp@vmware.com>2009-10-24 11:41:25 -0600
commit1ad9671db7bd60fa84266f30f46555b4e45bcb08 (patch)
tree78d45add5e42855e0686f2b620c50a91d6c681ea /src/mesa/main/texcompress.h
parent2c3787f5130f79c3adbb9e8e1ace8935c919876f (diff)
downloadexternal_mesa3d-1ad9671db7bd60fa84266f30f46555b4e45bcb08.zip
external_mesa3d-1ad9671db7bd60fa84266f30f46555b4e45bcb08.tar.gz
external_mesa3d-1ad9671db7bd60fa84266f30f46555b4e45bcb08.tar.bz2
mesa: s/GLuint/gl_format/
Diffstat (limited to 'src/mesa/main/texcompress.h')
-rw-r--r--src/mesa/main/texcompress.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/main/texcompress.h b/src/mesa/main/texcompress.h
index 44f3338..13af148 100644
--- a/src/mesa/main/texcompress.h
+++ b/src/mesa/main/texcompress.h
@@ -26,6 +26,7 @@
#define TEXCOMPRESS_H
#include "mtypes.h"
+#include "formats.h"
#if _HAVE_FULL_GL
@@ -35,7 +36,7 @@ _mesa_get_compressed_formats(GLcontext *ctx, GLint *formats, GLboolean all);
extern GLuint
_mesa_compressed_texture_size( GLcontext *ctx,
GLsizei width, GLsizei height, GLsizei depth,
- GLuint mesaFormat );
+ gl_format mesaFormat );
extern GLuint
_mesa_compressed_texture_size_glenum(GLcontext *ctx,
@@ -43,12 +44,12 @@ _mesa_compressed_texture_size_glenum(GLcontext *ctx,
GLsizei depth, GLenum glformat);
extern GLint
-_mesa_compressed_row_stride(GLuint mesaFormat, GLsizei width);
+_mesa_compressed_row_stride(gl_format mesaFormat, GLsizei width);
extern GLubyte *
_mesa_compressed_image_address(GLint col, GLint row, GLint img,
- GLuint mesaFormat,
+ gl_format mesaFormat,
GLsizei width, const GLubyte *image);