mesa: added _mesa_free_display_list_data()
authorBrian Paul <brianp@vmware.com>
Wed, 7 Oct 2009 22:32:25 +0000 (16:32 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 7 Oct 2009 22:32:25 +0000 (16:32 -0600)
src/mesa/main/context.c
src/mesa/main/dlist.c
src/mesa/main/dlist.h

index ae91bf5..4d222cb 100644 (file)
@@ -971,6 +971,7 @@ _mesa_free_context_data( GLcontext *ctx )
    _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._TexEnvProgram, NULL);
 
    _mesa_free_attrib_data(ctx);
+   _mesa_free_display_list_data(ctx);
    _mesa_free_lighting_data( ctx );
    _mesa_free_eval_data( ctx );
    _mesa_free_texture_data( ctx );
index c1890bc..cec7d87 100644 (file)
@@ -9463,3 +9463,10 @@ _mesa_init_display_list(GLcontext *ctx)
    _mesa_save_vtxfmt_init(&ctx->ListState.ListVtxfmt);
 #endif
 }
+
+
+void
+_mesa_free_display_list_data(GLcontext *ctx)
+{
+
+}
index 589cbc5..f37a93a 100644 (file)
@@ -106,5 +106,7 @@ _mesa_init_dlist_dispatch(struct _glapi_table *disp)
 
 extern void _mesa_init_display_list( GLcontext * ctx );
 
+extern void _mesa_free_display_list_data(GLcontext *ctx);
+
 
 #endif /* DLIST_H */