summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
diff options
context:
space:
mode:
authormichal <michal@michal-laptop.(none)>2007-10-26 17:25:09 +0100
committermichal <michal@michal-laptop.(none)>2007-10-27 19:01:11 +0100
commit6961769cb23c8b9ed2fb56d8ce6e649848412357 (patch)
tree1944b5907079b103f227c9eed4107963701e7598 /src/mesa/pipe/softpipe/sp_quad_alpha_test.c
parentdee9406e4847f98b346f0fff72d16df46e9584a4 (diff)
Define destroy method called by softpipe's destructor.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_quad_alpha_test.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_quad_alpha_test.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_quad_alpha_test.c b/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
index 4f28414b0e..d9b914d896 100644
--- a/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
+++ b/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
@@ -88,6 +88,12 @@ static void alpha_test_begin(struct quad_stage *qs)
}
+static void alpha_test_destroy(struct quad_stage *qs)
+{
+ free( qs );
+}
+
+
struct quad_stage *
sp_quad_alpha_test_stage( struct softpipe_context *softpipe )
{
@@ -96,6 +102,7 @@ sp_quad_alpha_test_stage( struct softpipe_context *softpipe )
stage->softpipe = softpipe;
stage->begin = alpha_test_begin;
stage->run = alpha_test_quad;
+ stage->destroy = alpha_test_destroy;
return stage;
}