From: Brian Paul Date: Mon, 15 Sep 2008 15:07:32 +0000 (-0600) Subject: mesa: remove some assertions that are invalid during context tear-down X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d36f4ef16b338f42342cac5a7f2ec55e17fc0893;p=mesa.git mesa: remove some assertions that are invalid during context tear-down --- diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 1b58f5e96af..918e87246f9 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -205,11 +205,14 @@ _mesa_reference_buffer_object(GLcontext *ctx, if (deleteFlag) { /* some sanity checking: don't delete a buffer still in use */ +#if 0 + /* unfortunately, these tests are invalid during context tear-down */ ASSERT(ctx->Array.ArrayBufferObj != bufObj); ASSERT(ctx->Array.ElementArrayBufferObj != bufObj); ASSERT(ctx->Array.ArrayObj->Vertex.BufferObj != bufObj); - ASSERT(ctx->Driver.DeleteBuffer); +#endif + ASSERT(ctx->Driver.DeleteBuffer); ctx->Driver.DeleteBuffer(ctx, oldObj); }