diff options
author | Brian Paul <brianp@vmware.com> | 2010-05-19 11:23:26 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-05-21 09:58:39 -0600 |
commit | 3bd58885840f895a64cbdafcd90de51ab4a8c733 (patch) | |
tree | adf55345a52834a2d251f9a916d883872c76846b /progs | |
parent | b7f8f176f1475ded837ba1dca22238855a1be817 (diff) |
progs/tests: print more info in copypixrate.c
Diffstat (limited to 'progs')
-rw-r--r-- | progs/tests/copypixrate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/tests/copypixrate.c b/progs/tests/copypixrate.c index f63d59f3ce..e7d8343721 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; } |