diff options
author | Brian <[email protected]> | 2009-01-31 11:57:22 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2009-01-31 12:11:28 -0700 |
commit | 446abc2799a143c32c4c48472f3f964f9288a623 (patch) | |
tree | e7bef7068075a563bffd28f464320a362cefc7ff /src/mesa/main/context.c | |
parent | 7721bf267b64ef28376f07daae7713814e91af35 (diff) |
mesa: display list clean-ups
Rename some structs and fields to be more consistant with the rest of mesa.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 7d616b2325e..608942979f4 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -581,7 +581,7 @@ static void delete_displaylist_cb(GLuint id, void *data, void *userData) { #if FEATURE_dlist - struct mesa_display_list *list = (struct mesa_display_list *) data; + struct gl_display_list *list = (struct gl_display_list *) data; GLcontext *ctx = (GLcontext *) userData; _mesa_delete_list(ctx, list); #endif |