projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0728db8
)
llvmpipe: fix scene queue memory leak
author
Brian Paul
<brianp@vmware.com>
Wed, 28 Apr 2010 21:22:43 +0000
(15:22 -0600)
committer
Brian Paul
<brianp@vmware.com>
Wed, 28 Apr 2010 21:25:50 +0000
(15:25 -0600)
src/gallium/drivers/llvmpipe/lp_rast.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_rast.c
b/src/gallium/drivers/llvmpipe/lp_rast.c
index e2c1b6d5cbaccd56d5bbdf36ecb04e246f34b247..a00a592f2fe120d6fe4b7f272a1244f7eb02daef 100644
(file)
--- a/
src/gallium/drivers/llvmpipe/lp_rast.c
+++ b/
src/gallium/drivers/llvmpipe/lp_rast.c
@@
-944,6
+944,8
@@
void lp_rast_destroy( struct lp_rasterizer *rast )
/* for synchronizing rasterization threads */
pipe_barrier_destroy( &rast->barrier );
+ lp_scene_queue_destroy(rast->full_scenes);
+
FREE(rast);
}