diff options
author | Brian Paul <[email protected]> | 2009-03-07 11:32:18 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-03-07 11:32:18 -0700 |
commit | 0f04a1d3f8989b0a391e6dad80abf06ce151d1f1 (patch) | |
tree | 51ec7f3666cb8f97d243c5de3a8654d5c7c976a4 /src/mesa/drivers/dri/swrast | |
parent | b125af1d2587d8e69218010ebba0b748467158a9 (diff) |
mesa: remove last of _mesa_unreference_framebuffer() calls
Diffstat (limited to 'src/mesa/drivers/dri/swrast')
-rw-r--r-- | src/mesa/drivers/dri/swrast/swrast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/swrast/swrast.c b/src/mesa/drivers/dri/swrast/swrast.c index 2e7f11327e6..fbfa49c99d0 100644 --- a/src/mesa/drivers/dri/swrast/swrast.c +++ b/src/mesa/drivers/dri/swrast/swrast.c @@ -476,7 +476,7 @@ driDestroyDrawable(__DRIdrawable *buf) _mesa_free(buf->row); fb->DeletePending = GL_TRUE; - _mesa_unreference_framebuffer(&fb); + _mesa_reference_framebuffer(&fb, NULL); } } |