diff options
author | Brian Paul <[email protected]> | 2009-02-12 10:08:25 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-12 10:11:55 -0700 |
commit | 1a2f4dd8768703fbc1b2a0d5be342345644805b4 (patch) | |
tree | 4b3015001998370edd8df9dcd3c7eaed6f2f7f42 /src/mesa/state_tracker/st_context.c | |
parent | 19dff5efc1e348d037b1b3cdfb9ac91020ecde4d (diff) |
mesa: consistantly use mesa memory-functions in gallium state tracker
Use _mesa_malloc(), _mesa_free(), etc everywhere, not malloc(), free(), etc.
Still using CALLOC_STRUCT() at this point.
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index e584a6ceeac..34f76d44625 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -217,7 +217,7 @@ static void st_destroy_context_priv( struct st_context *st ) st->default_texture = NULL; } - free( st ); + _mesa_free( st ); } @@ -245,7 +245,7 @@ void st_destroy_context( struct st_context *st ) pipe->destroy( pipe ); - free(ctx); + _mesa_free(ctx); } |