diff options
author | Brian Paul <[email protected]> | 1999-10-10 13:04:17 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-10-10 13:04:17 +0000 |
commit | 567a1de66606ebbb3e54140925a84f5095101532 (patch) | |
tree | 2dad4375920fc4ae149c8b933dc08ca99af65608 /src/mesa/main/texobj.c | |
parent | 60a249d009acec34bd61e12f01caf7bdf87e895c (diff) |
now using GL_MALLOC, GL_FREE
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 b95911613b4..e46b318a44b 100644 --- a/src/mesa/main/texobj.c +++ b/src/mesa/main/texobj.c @@ -1,4 +1,4 @@ -/* $Id: texobj.c,v 1.4 1999/10/09 20:17:07 brianp Exp $ */ +/* $Id: texobj.c,v 1.5 1999/10/10 13:04:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -159,7 +159,7 @@ void gl_free_texture_object( struct gl_shared_state *shared, } } /* free this object */ - free( t ); + GL_FREE( t ); } |