diff options
author | Brian Paul <[email protected]> | 2009-08-13 09:38:39 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-13 12:50:56 -0600 |
commit | ba2a55ccd61d9fa5565640faefb64fd6fb0e70ab (patch) | |
tree | c726db84089e38337d003911b4e852391e059194 /src/mesa/main/texgetimage.h | |
parent | b9f67df6e72e3a33b91c7d942aaa99622efd688c (diff) |
mesa: move _mesa_Get[Compressed]TexImage() to texgetimage.c
All the glGetTexImage code is in one file now.
Diffstat (limited to 'src/mesa/main/texgetimage.h')
-rw-r--r-- | src/mesa/main/texgetimage.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/texgetimage.h b/src/mesa/main/texgetimage.h index 01f486e8f02..088d27c7e17 100644 --- a/src/mesa/main/texgetimage.h +++ b/src/mesa/main/texgetimage.h @@ -43,4 +43,13 @@ _mesa_get_compressed_teximage(GLcontext *ctx, GLenum target, GLint level, +extern void GLAPIENTRY +_mesa_GetTexImage( GLenum target, GLint level, + GLenum format, GLenum type, GLvoid *pixels ); + + +extern void GLAPIENTRY +_mesa_GetCompressedTexImageARB(GLenum target, GLint lod, GLvoid *img); + + #endif /* TEXGETIMAGE_H */ |