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.
This commit is contained in:
Brian Paul
2009-02-12 10:08:25 -07:00
parent 19dff5efc1
commit 1a2f4dd876
14 changed files with 37 additions and 37 deletions

View File

@@ -87,7 +87,7 @@ st_DeleteQuery(GLcontext *ctx, struct gl_query_object *q)
stq->pq = NULL;
}
FREE(stq);
_mesa_free(stq);
}