diff options
author | Brian Paul <[email protected]> | 2000-03-27 17:54:17 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-03-27 17:54:17 +0000 |
commit | 021a525616bef2bafc8f60edc193b975ed2b0efa (patch) | |
tree | b013b8f898703b9d2e0dc0d35a313dbe7ff5ea3f /src/mesa/main/teximage.h | |
parent | d25df3515477d28b7f61d07b2f6a1e17668bcba5 (diff) |
put _mesa prefix on some functions
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r-- | src/mesa/main/teximage.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index 3dfafe29160..9aa3a0714be 100644 --- a/src/mesa/main/teximage.h +++ b/src/mesa/main/teximage.h @@ -1,4 +1,4 @@ -/* $Id: teximage.h,v 1.5 2000/03/23 16:23:14 brianp Exp $ */ +/* $Id: teximage.h,v 1.6 2000/03/27 17:54:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -40,13 +40,17 @@ _mesa_base_tex_format( GLint format ); extern struct gl_texture_image * -gl_alloc_texture_image( void ); +_mesa_alloc_texture_image( void ); extern void -gl_free_texture_image( struct gl_texture_image *teximage ); +_mesa_free_texture_image( struct gl_texture_image *teximage ); +extern void +_mesa_get_teximage_from_driver( GLcontext *ctx, GLenum target, GLint level, + const struct gl_texture_object *texObj ); + /*** API entry point functions ***/ |