From: Brian Date: Tue, 27 Feb 2007 18:09:28 +0000 (-0700) Subject: assert that fb->RefCount==0 in _mesa_free_framebuffer_data() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f30e31276304696558abffdd9a6e3df21d41c0f5;p=mesa.git assert that fb->RefCount==0 in _mesa_free_framebuffer_data() --- diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index d061d22d9b8..3fe70f449c2 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c @@ -216,6 +216,7 @@ _mesa_free_framebuffer_data(struct gl_framebuffer *fb) GLuint i; assert(fb); + assert(fb->RefCount == 0); _glthread_DESTROY_MUTEX(fb->Mutex);