mesa: remove warning message in _mesa_reference_renderbuffer_()

We were warning when there was no current context and we're about
to delete a renderbuffer, but that happens fairly often and isn't
really a problem.

Fixes http://bugs.freedesktop.org/show_bug.cgi?id=57754

Note: This is a candidate for the stable branches.

Tested-by: Ian Romanick <ian.d.romanick@intel.com>
(cherry picked from commit 006918c0db)
This commit is contained in:
Brian Paul 2012-12-01 10:52:42 -07:00 committed by Andreas Boll
parent 5fdc42fb87
commit d4fc90c129

View file

@ -160,10 +160,7 @@ _mesa_reference_renderbuffer_(struct gl_renderbuffer **ptr,
if (deleteFlag) {
GET_CURRENT_CONTEXT(ctx);
if (ctx)
oldRb->Delete(ctx, oldRb);
else
_mesa_problem(NULL, "Unable to delete renderbuffer, no context");
oldRb->Delete(ctx, oldRb);
}
*ptr = NULL;