summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2013-07-27 12:03:45 -0700
committerIan Romanick <[email protected]>2013-08-06 12:18:29 -0700
commit0c3dbd689b3269c605ee07589a35af9147db5fe0 (patch)
tree953a8f6a956abe3f358acaf7d439215eea74674f
parent4a9522a5a0c11b6e162188337fd5938f9e2695fd (diff)
mesa: Remove stray debug printfs in attachment completeness code
Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Cc: "9.1 9.2" [email protected]
-rw-r--r--src/mesa/main/fbobject.c2
1 files changed, 0 insertions, 2 deletions
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;
}