diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-02-05 07:50:56 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-02-05 07:50:56 -0700 |
commit | 45b18c51c0f49731cb8fc0144d678da5fa814992 (patch) | |
tree | 607294705de13512716186623d656c6685d0e7d6 /src/mesa/pipe | |
parent | 5db1593c78192b764ad2ef7bdc5182d8ec4aed7c (diff) |
gallium: Use align_free to free aligned memory.
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r-- | src/mesa/pipe/draw/draw_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/draw/draw_context.c b/src/mesa/pipe/draw/draw_context.c index 87f4969983..b15f57c824 100644 --- a/src/mesa/pipe/draw/draw_context.c +++ b/src/mesa/pipe/draw/draw_context.c @@ -106,7 +106,7 @@ void draw_destroy( struct draw_context *draw ) if (draw->pipeline.rasterize) draw->pipeline.rasterize->destroy( draw->pipeline.rasterize ); tgsi_exec_machine_free_data(&draw->machine); - FREE( draw->vcache.vertex[0] ); /* Frees all the vertices. */ + align_free( draw->vcache.vertex[0] ); /* Frees all the vertices. */ FREE( draw ); } |