diff options
author | Brian Paul <[email protected]> | 2000-10-16 23:43:12 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-16 23:43:12 +0000 |
commit | 1873b567b28a3e3f4d94d0eacb27ffd235ec9529 (patch) | |
tree | 95b50aad327e2451c43649041f381844dcf5c811 /src/mesa/main/teximage.h | |
parent | 1100b4daa30ba6604a4d01aa6d46780dd8ef256b (diff) |
added _mesa_get_teximages_from_driver()
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index c7dbbae343f..585c95f0020 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -1,4 +1,4 @@ -/* $Id: teximage.h,v 1.13 2000/09/05 15:41:25 brianp Exp $ */ +/* $Id: teximage.h,v 1.14 2000/10/16 23:43:12 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -65,8 +65,14 @@ _mesa_select_tex_image(GLcontext *ctx, const struct gl_texture_unit *texUnit, extern void -_mesa_get_teximage_from_driver( GLcontext *ctx, GLenum target, GLint level, - const struct gl_texture_object *texObj ); +_mesa_get_teximage_from_driver(GLcontext *ctx, GLenum target, GLint level, + const struct gl_texture_object *texObj); + + +extern GLboolean +_mesa_get_teximages_from_driver(GLcontext *ctx, + struct gl_texture_object *texObj); + /*** API entry point functions ***/ |