projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6128c93
)
unref const buffers during context destroy
author
Brian
<brian.paul@tungstengraphics.com>
Wed, 26 Dec 2007 14:16:41 +0000
(07:16 -0700)
committer
Brian
<brian.paul@tungstengraphics.com>
Tue, 1 Jan 2008 17:21:21 +0000
(10:21 -0700)
src/mesa/pipe/softpipe/sp_context.c
patch
|
blob
|
history
diff --git
a/src/mesa/pipe/softpipe/sp_context.c
b/src/mesa/pipe/softpipe/sp_context.c
index
52672a9
..
c7af63c
100644
(file)
--- a/
src/mesa/pipe/softpipe/sp_context.c
+++ b/
src/mesa/pipe/softpipe/sp_context.c
@@
-127,6
+127,7
@@
softpipe_unmap_surfaces(struct softpipe_context *sp)
static void softpipe_destroy( struct pipe_context *pipe )
{
struct softpipe_context *softpipe = softpipe_context( pipe );
+ struct pipe_winsys *ws = pipe->winsys;
uint i;
draw_destroy( softpipe->draw );
@@
-152,6
+153,12
@@
static void softpipe_destroy( struct pipe_context *pipe )
for (i = 0; i < PIPE_MAX_SAMPLERS; i++)
sp_destroy_tile_cache(softpipe->tex_cache[i]);
+ for (i = 0; i < Elements(softpipe->constants); i++) {
+ if (softpipe->constants[i].buffer) {
+ ws->buffer_reference(ws, &softpipe->constants[i].buffer, NULL);
+ }
+ }
+
FREE( softpipe );
}