gallium: plug in a select_destroy() function (fixes segfault on exit)

This commit is contained in:
Brian Paul 2008-04-17 11:31:14 -06:00
parent ce454d2192
commit 211170c192

View file

@ -238,6 +238,12 @@ select_reset_stipple_counter( struct draw_stage *stage )
/* no-op */
}
static void
select_destroy( struct draw_stage *stage )
{
/* no-op */
}
/**
* Create GL selection mode drawing stage.
@ -254,6 +260,7 @@ draw_glselect_stage(GLcontext *ctx, struct draw_context *draw)
fs->stage.tri = select_tri;
fs->stage.flush = select_flush;
fs->stage.reset_stipple_counter = select_reset_stipple_counter;
fs->stage.destroy = select_destroy;
fs->ctx = ctx;
return &fs->stage;