From: Brian Paul Date: Wed, 19 May 2010 17:23:26 +0000 (-0600) Subject: progs/tests: print more info in copypixrate.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3bd58885840f895a64cbdafcd90de51ab4a8c733;p=mesa.git progs/tests: print more info in copypixrate.c --- diff --git a/progs/tests/copypixrate.c b/progs/tests/copypixrate.c index f63d59f3cec..e7d83437214 100644 --- a/progs/tests/copypixrate.c +++ b/progs/tests/copypixrate.c @@ -270,6 +270,9 @@ main(int argc, char *argv[]) printf("Draw Buffer: %s\n", (Buffer == GL_BACK) ? "Back" : "Front"); Init(); + printf("Mode: %s\n", (UseBlit ? "glBlitFramebuffer" : "glCopyPixels")); + printf("Alpha Test: %s\n", (AlphaTest ? "yes" : "no")); + glutMainLoop(); return 0; }