diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-18 18:03:04 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-10-18 18:03:04 +0000 |
commit | ef31f60b12abc2109568fb8d9a2aaa70ec5c71cc (patch) | |
tree | 7f35cbee92127a0e1b06b9a95656bf8cfcb46550 /src/mesa/main/teximage.h | |
parent | 53d30c56eb1a0865a6a88cf05c4c74673d41b2a4 (diff) |
new _mesa_max_texture_levels() helper function - not used everywhere yet
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index 03b052c414..8cbc0d6615 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -1,4 +1,4 @@ -/* $Id: teximage.h,v 1.21 2002/06/15 03:03:09 brianp Exp $ */ +/* $Id: teximage.h,v 1.22 2002/10/18 18:03:07 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -70,6 +70,9 @@ _mesa_select_tex_image(GLcontext *ctx, const struct gl_texture_unit *texUnit, GLenum target, GLint level); +extern GLint +_mesa_max_texture_levels(GLcontext *ctx, GLenum target); + /*** API entry point functions ***/ |