mesa: added _mesa_free_display_list_data()

This commit is contained in:
Brian Paul
2009-10-07 16:32:25 -06:00
parent fc995c7298
commit 15f05e97aa
3 changed files with 10 additions and 0 deletions
+1
View 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 );
+7
View 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)
{
}
+2
View 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 */