From: Brian Paul Date: Tue, 17 Jun 2008 22:57:02 +0000 (-0600) Subject: gallium: more FEATURE_x tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=414b535134256dbe9e4d4a92068143f054e13720;p=mesa.git gallium: more FEATURE_x tests --- diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 1b3b9997141..d394562febc 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -164,10 +164,14 @@ static void st_destroy_context_priv( struct st_context *st ) st_destroy_atoms( st ); st_destroy_draw( st ); st_destroy_generate_mipmap(st); - st_destroy_bitmap(st); +#if FEATURE_EXT_framebuffer_blit st_destroy_blit(st); +#endif st_destroy_clear(st); +#if FEATURE_drawpix + st_destroy_bitmap(st); st_destroy_drawpix(st); +#endif _vbo_DestroyContext(st->ctx);