diff options
author | Brian Paul <[email protected]> | 1999-10-10 12:51:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-10-10 12:51:29 +0000 |
commit | 60a249d009acec34bd61e12f01caf7bdf87e895c (patch) | |
tree | 004e343be3579ba143ef172130047e60e1cfbbe2 /src/mesa/main/extensions.c | |
parent | 375853e86734ea5735aa64af3a7aa0129bc551d5 (diff) |
now using GL_MALLOC, GL_FREE
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 803b650ce6a..08d524f3519 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -1,4 +1,4 @@ -/* $Id: extensions.c,v 1.5 1999/10/08 09:27:10 keithw Exp $ */ +/* $Id: extensions.c,v 1.6 1999/10/10 12:54:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -33,7 +33,6 @@ #define MAX_EXT_NAMELEN 80 -#define MALLOC_STRUCT(T) (struct T *) malloc( sizeof(struct T) ) struct extension { struct extension *next, *prev; @@ -83,7 +82,7 @@ int gl_extensions_add( GLcontext *ctx, if (ctx->Extensions.ext_string == 0) { - struct extension *t = MALLOC_STRUCT(extension); + struct extension *t = GL_ALLOC_STRUCT(extension); t->enabled = state; strncpy(t->name, name, MAX_EXT_NAMELEN); t->name[MAX_EXT_NAMELEN] = 0; @@ -135,17 +134,17 @@ void gl_extensions_dtr( GLcontext *ctx ) struct extension *i, *nexti; if (ctx->Extensions.ext_string) { - free( ctx->Extensions.ext_string ); + GL_FREE( ctx->Extensions.ext_string ); ctx->Extensions.ext_string = 0; } if (ctx->Extensions.ext_list) { foreach_s( i, nexti, ctx->Extensions.ext_list ) { remove_from_list( i ); - free( i ); + GL_FREE( i ); } - free(ctx->Extensions.ext_list); + GL_FREE(ctx->Extensions.ext_list); ctx->Extensions.ext_list = 0; } } @@ -156,7 +155,7 @@ void gl_extensions_ctr( GLcontext *ctx ) GLuint i; ctx->Extensions.ext_string = 0; - ctx->Extensions.ext_list = MALLOC_STRUCT(extension); + ctx->Extensions.ext_list = GL_ALLOC_STRUCT(extension); make_empty_list( ctx->Extensions.ext_list ); for (i = 0 ; i < Elements(default_extensions) ; i++) { @@ -182,7 +181,7 @@ const char *gl_extensions_get_string( GLcontext *ctx ) if (len == 0) return ""; - str = (char *)malloc(len * sizeof(char)); + str = (char *)GL_ALLOC(len * sizeof(char)); ctx->Extensions.ext_string = str; foreach (i, ctx->Extensions.ext_list) |