diff options
author | Brian Paul <[email protected]> | 2001-04-20 16:46:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-04-20 16:46:04 +0000 |
commit | 1c85aa33321821b44bea83d3dee702ab4e05f406 (patch) | |
tree | 567f84afc974e718489a64860e7625eb18dcf0f2 /src/mesa/main/texstore.h | |
parent | 3518a7950f3d1d57edb0a5d346c28bccade6fb61 (diff) |
Fixed a texture conversion problem: sometimes need to produce an intermediate
texture image in the base internal format between user->Mesa format
conversion. See comments in texstore.c
Diffstat (limited to 'src/mesa/main/texstore.h')
-rw-r--r-- | src/mesa/main/texstore.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.h b/src/mesa/main/texstore.h index d876df54d33..ba868341606 100644 --- a/src/mesa/main/texstore.h +++ b/src/mesa/main/texstore.h @@ -1,4 +1,4 @@ -/* $Id: texstore.h,v 1.6 2001/04/04 21:54:21 brianp Exp $ */ +/* $Id: texstore.h,v 1.7 2001/04/20 16:46:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -39,6 +39,7 @@ extern void _mesa_transfer_teximage(GLcontext *ctx, GLuint dimensions, + GLenum baseInternalFormat, const struct gl_texture_format *texDestFormat, GLvoid *texDestAddr, GLint srcWidth, GLint srcHeight, GLint srcDepth, |