diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-05-24 14:04:06 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-05-24 14:04:06 +0000 |
commit | aea66b135eaa5a5f2bc8c652fa7a1a42cca2fe83 (patch) | |
tree | fa954627d893033955ef365a576c08ad72386cb5 /src/mesa/main/teximage.h | |
parent | 98b88b3e70c079ce2b98221f7ef155af6417daf8 (diff) |
more work on GL_ARB_texture_compression
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index bbf1836eab..02d6ee1bcb 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -1,4 +1,4 @@ -/* $Id: teximage.h,v 1.9 2000/05/23 20:10:50 brianp Exp $ */ +/* $Id: teximage.h,v 1.10 2000/05/24 14:04:06 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -36,7 +36,7 @@ extern GLint -_mesa_base_tex_format( GLint format ); +_mesa_base_tex_format( GLcontext *ctx, GLint format ); extern struct gl_texture_image * @@ -47,6 +47,11 @@ extern void _mesa_free_texture_image( struct gl_texture_image *teximage ); +extern GLuint +_mesa_compressed_image_size(GLenum internalFormat, + GLint width, GLint height, GLint depth); + + extern struct gl_texture_object * _mesa_select_tex_object(GLcontext *ctx, struct gl_texture_unit *texUnit, GLenum target); |