diff options
author | Brian Paul <[email protected]> | 2000-09-28 18:30:39 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-09-28 18:30:39 +0000 |
commit | 37a6211795cfd0a4431bdb7c676acf54f29df994 (patch) | |
tree | f4d0bf75f657bed5608e94bdd5f329ee3c10abc6 /src/mesa/main/dd.h | |
parent | 574c456a5ac6ca13f293a2884c3a90fd28edd4e1 (diff) |
new params for SpecificCompressedTexFormat() (Bill White)
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 0341c50accb..a94e21d4b2a 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1,4 +1,4 @@ -/* $Id: dd.h,v 1.32 2000/09/14 23:13:51 brianp Exp $ */ +/* $Id: dd.h,v 1.33 2000/09/28 18:30:39 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -699,8 +699,15 @@ struct dd_function_table { */ GLint (*SpecificCompressedTexFormat)(GLcontext *ctx, - GLint internalFormat, - GLint numDimensions); + GLint internalFormat, + GLint numDimensions, + GLint *levelp, + GLsizei *widthp, + GLsizei *heightp, + GLsizei *depthp, + GLint *borderp, + GLenum *formatp, + GLenum *typep); /* Called to turn a generic texture format into a specific * texture format. For example, if a driver implements * GL_3DFX_texture_compression_FXT1, this would map |