put _mesa prefix on some functions

This commit is contained in:
Brian Paul
2000-03-27 17:54:17 +00:00
parent d25df35154
commit 021a525616
4 changed files with 27 additions and 23 deletions

View File

@@ -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] );
}
}
}