diff options
author | Brian Paul <[email protected]> | 2009-02-09 08:30:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-09 14:00:47 -0700 |
commit | d52294439c80c99a4bfa2c7ecc65efa67f095a3f (patch) | |
tree | 54dc7657ad474b56b2270e13bbffd98122d01c9a /src/mesa/main/fbobject.c | |
parent | 60b3fe6c19eb881f6193ba46450c0c9f559a10e5 (diff) |
mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer()
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index d08ad339026..f5e17c76750 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -1268,7 +1268,7 @@ _mesa_DeleteFramebuffersEXT(GLsizei n, const GLuint *framebuffers) /* But the object will not be freed until it's no longer * bound in any context. */ - _mesa_unreference_framebuffer(&fb); + _mesa_reference_framebuffer(&fb, NULL); } } } |