summaryrefslogtreecommitdiff
path: root/progs/xdemos
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-09-06 03:47:34 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-09-06 03:47:34 +0000
commit28bc6cb4791dd0bb87dd27df1d5950f7e61b606e (patch)
tree7377e619e4037bc87fed35c311964b502d892a86 /progs/xdemos
parent2f7ef5fae8303ad312434e83620a9fbf43ad8e60 (diff)
minor updates to sync with XFree86
Diffstat (limited to 'progs/xdemos')
-rw-r--r--progs/xdemos/glxinfo.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/xdemos/glxinfo.c b/progs/xdemos/glxinfo.c
index 32866ca1fc..799b0c1e1e 100644
--- a/progs/xdemos/glxinfo.c
+++ b/progs/xdemos/glxinfo.c
@@ -1,4 +1,4 @@
-/* $Id: glxinfo.c,v 1.17 2002/09/06 03:35:43 brianp Exp $ */
+/* $Id: glxinfo.c,v 1.18 2002/09/06 03:47:34 brianp Exp $ */
/*
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
@@ -29,6 +29,7 @@
* -v print verbose information
* -display DisplayName specify the X display to interogate
* -b only print ID of "best" visual on screen 0
+ * -i use indirect rendering connection only
* -l print interesting OpenGL limits (added 5 Sep 2002)
*
* Brian Paul 26 January 2000
@@ -473,6 +474,8 @@ print_visual_attribs_short(const struct visual_attribs *attribs)
caveat = "Slow";
else if (attribs->visualCaveat == GLX_NON_CONFORMANT_VISUAL_EXT)
caveat = "Ncon";
+ else
+ caveat = "None";
#else
caveat = "None";
#endif