From: Brian Paul Date: Fri, 4 Jul 2008 15:55:48 +0000 (-0600) Subject: mesa: remove incorrect assertion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b931a0c1d9128b7fb402915089e1fd2496f65349;p=mesa.git mesa: remove incorrect assertion --- diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 6ef90578c12..4190a95e419 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -180,7 +180,6 @@ _mesa_remove_attachment(GLcontext *ctx, struct gl_renderbuffer_attachment *att) ASSERT(!att->Texture); } if (att->Type == GL_TEXTURE || att->Type == GL_RENDERBUFFER_EXT) { - ASSERT(att->Renderbuffer); ASSERT(!att->Texture); _mesa_reference_renderbuffer(&att->Renderbuffer, NULL); /* unbind */ ASSERT(!att->Renderbuffer);