From: Ian Romanick Date: Sat, 27 Jul 2013 19:03:45 +0000 (-0700) Subject: mesa: Remove stray debug printfs in attachment completeness code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c3dbd689b3269c605ee07589a35af9147db5fe0;p=mesa.git mesa: Remove stray debug printfs in attachment completeness code Signed-off-by: Ian Romanick Reviewed-by: Kenneth Graunke Cc: "9.1 9.2" mesa-stable@lists.freedesktop.org --- diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 8fdeff5827d..dd3e8ae2d41 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -703,8 +703,6 @@ test_attachment_completeness(const struct gl_context *ctx, GLenum format, } if (texImage->Width < 1 || texImage->Height < 1) { att_incomplete("teximage width/height=0"); - printf("texobj = %u\n", texObj->Name); - printf("level = %d\n", att->TextureLevel); att->Complete = GL_FALSE; return; }