projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18906b7
)
minor changes
author
Brian Paul
<brian.paul@tungstengraphics.com>
Thu, 5 Jun 2008 21:37:17 +0000
(15:37 -0600)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Thu, 5 Jun 2008 21:37:17 +0000
(15:37 -0600)
progs/osdemos/ostest1.c
patch
|
blob
|
history
diff --git
a/progs/osdemos/ostest1.c
b/progs/osdemos/ostest1.c
index 2c7adfc3537aeb8d0a422e462c892e8d61333db6..000b8c4a78150c79584a04f3887735ba9b732deb 100644
(file)
--- a/
progs/osdemos/ostest1.c
+++ b/
progs/osdemos/ostest1.c
@@
-407,7
+407,10
@@
test(GLenum type, GLint bits, const char *filename)
glGetIntegerv(GL_ALPHA_BITS, &cBits);
assert(cBits == bits);
- printf("Rendering %d bit/channel image: %s\n", bits, filename);
+ if (WriteFiles)
+ printf("Rendering %d bit/channel image: %s\n", bits, filename);
+ else
+ printf("Rendering %d bit/channel image\n", bits);
OSMesaColorClamp(GL_TRUE);
@@
-458,6
+461,8
@@
main( int argc, char *argv[] )
{
int i;
+ printf("Use -f to write image files\n");
+
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-f") == 0)
WriteFiles = GL_TRUE;