From 06c3a7bc709a717bd4f9631418ed73e6f19393de Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Fri, 18 May 2012 11:07:30 +0100 Subject: [PATCH] Fix a warning on test-gles2-context test-gles2-context was giving a warning because printf was being used without including stdio.h. This changes it to use g_print and to first check for g_test_verbose(). Reviewed-by: Robert Bragg (cherry picked from commit 9f4945e3daa693e1aa56fe4c1ce37fcc545f8558) --- tests/conform/test-gles2-context.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/conform/test-gles2-context.c b/tests/conform/test-gles2-context.c index 6d2770646..96fe6539a 100644 --- a/tests/conform/test-gles2-context.c +++ b/tests/conform/test-gles2-context.c @@ -261,8 +261,9 @@ create_gles2_framebuffer (const CoglGLES2Vtable *gles2, GL_TEXTURE_2D, texture_handle, 0); status = gles2->glCheckFramebufferStatus (GL_FRAMEBUFFER); - printf ("status for gles2 framebuffer = 0x%x %s\n", - status, status == GL_FRAMEBUFFER_COMPLETE ? "(complete)" : "(?)"); + if (cogl_test_verbose ()) + g_print ("status for gles2 framebuffer = 0x%x %s\n", + status, status == GL_FRAMEBUFFER_COMPLETE ? "(complete)" : "(?)"); gles2->glBindFramebuffer (GL_FRAMEBUFFER, 0);