mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
llvmpipe: Grab a ref when the fb is set.
Based on softpipe commit a77226071f.
This commit is contained in:
parent
5687053480
commit
9871521b30
2 changed files with 9 additions and 4 deletions
|
|
@ -107,11 +107,16 @@ static void llvmpipe_destroy( struct pipe_context *pipe )
|
|||
if (llvmpipe->draw)
|
||||
draw_destroy( llvmpipe->draw );
|
||||
|
||||
for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++)
|
||||
for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
|
||||
lp_destroy_tile_cache(llvmpipe->cbuf_cache[i]);
|
||||
pipe_surface_reference(&llvmpipe->framebuffer.cbufs[i], NULL);
|
||||
}
|
||||
pipe_surface_reference(&llvmpipe->framebuffer.zsbuf, NULL);
|
||||
|
||||
for (i = 0; i < PIPE_MAX_SAMPLERS; i++)
|
||||
for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
|
||||
lp_destroy_tex_tile_cache(llvmpipe->tex_cache[i]);
|
||||
pipe_texture_reference(&llvmpipe->texture[i], NULL);
|
||||
}
|
||||
|
||||
for (i = 0; i < Elements(llvmpipe->constants); i++) {
|
||||
if (llvmpipe->constants[i].buffer) {
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ llvmpipe_set_framebuffer_state(struct pipe_context *pipe,
|
|||
lp_flush_tile_cache(lp->cbuf_cache[i]);
|
||||
|
||||
/* assign new */
|
||||
lp->framebuffer.cbufs[i] = fb->cbufs[i];
|
||||
pipe_surface_reference(&lp->framebuffer.cbufs[i], fb->cbufs[i]);
|
||||
|
||||
/* update cache */
|
||||
lp_tile_cache_set_surface(lp->cbuf_cache[i], fb->cbufs[i]);
|
||||
|
|
@ -81,7 +81,7 @@ llvmpipe_set_framebuffer_state(struct pipe_context *pipe,
|
|||
}
|
||||
|
||||
/* assign new */
|
||||
lp->framebuffer.zsbuf = fb->zsbuf;
|
||||
pipe_surface_reference(&lp->framebuffer.zsbuf, fb->zsbuf);
|
||||
|
||||
/* Tell draw module how deep the Z/depth buffer is */
|
||||
if (lp->framebuffer.zsbuf) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue