summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texcompress.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-10-18 17:41:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-10-18 17:41:45 +0000
commit2ce0654ebabc7fc6a2881f51e496e4e1f7533087 (patch)
treec459068fd937c29f58cd4d34de647c9977773e93 /src/mesa/main/texcompress.h
parent8eaa2902162e145cd07a9427ec99ab0ca85aa35a (diff)
downloadexternal_mesa3d-2ce0654ebabc7fc6a2881f51e496e4e1f7533087.zip
external_mesa3d-2ce0654ebabc7fc6a2881f51e496e4e1f7533087.tar.gz
external_mesa3d-2ce0654ebabc7fc6a2881f51e496e4e1f7533087.tar.bz2
implement auto mipmap generation for compressed textures
Diffstat (limited to 'src/mesa/main/texcompress.h')
-rw-r--r--src/mesa/main/texcompress.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/texcompress.h b/src/mesa/main/texcompress.h
index 5357167..c1377a8 100644
--- a/src/mesa/main/texcompress.h
+++ b/src/mesa/main/texcompress.h
@@ -1,4 +1,4 @@
-/* $Id: texcompress.h,v 1.1 2002/09/27 02:45:38 brianp Exp $ */
+/* $Id: texcompress.h,v 1.2 2002/10/18 17:41:45 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -50,9 +50,9 @@ _mesa_compressed_image_address(GLint col, GLint row, GLint img,
extern void
_mesa_compress_teximage( GLcontext *ctx, GLsizei width, GLsizei height,
- GLenum srcFormat,
- const GLchan *source, GLint srcRowStride,
- GLenum dstformat, GLubyte *dest, GLint dstRowStride );
-
+ GLenum srcFormat, const GLchan *source,
+ GLint srcRowStride,
+ const struct gl_texture_format *dstFormat,
+ GLubyte *dest, GLint dstRowStride );
#endif /* TEXCOMPRESS_H */