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/texobj.c | |
parent | d25df3515477d28b7f61d07b2f6a1e17668bcba5 (diff) |
put _mesa prefix on some functions
Diffstat (limited to 'src/mesa/main/texobj.c')
-rw-r--r-- | src/mesa/main/texobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index 02de5a30794..726c107a193 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -1,4 +1,4 @@ -/* $Id: texobj.c,v 1.15 2000/03/21 17:42:27 brianp Exp $ */ +/* $Id: texobj.c,v 1.16 2000/03/27 17:55:19 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -149,7 +149,7 @@ void gl_free_texture_object( struct gl_shared_state *shared, GLuint i; for (i=0;i<MAX_TEXTURE_LEVELS;i++) { if (t->Image[i]) { - gl_free_texture_image( t->Image[i] ); + _mesa_free_texture_image( t->Image[i] ); } } } |