Mesa (master): mesa: added _mesa_free_display_list_data()

Brian Paul brianp at kemper.freedesktop.org
Wed Oct 7 22:57:21 UTC 2009


Module: Mesa
Branch: master
Commit: 15f05e97aac46ffcf8a7765b0072535718833622
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=15f05e97aac46ffcf8a7765b0072535718833622

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Oct  7 16:32:25 2009 -0600

mesa: added _mesa_free_display_list_data()

---

 src/mesa/main/context.c |    1 +
 src/mesa/main/dlist.c   |    7 +++++++
 src/mesa/main/dlist.h   |    2 ++
 3 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index ae91bf5..4d222cb 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -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 );
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index c1890bc..cec7d87 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -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)
+{
+
+}
diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h
index 589cbc5..f37a93a 100644
--- a/src/mesa/main/dlist.h
+++ b/src/mesa/main/dlist.h
@@ -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 */




More information about the mesa-commit mailing list