diff options
author | Brian Paul <[email protected]> | 2002-09-06 03:47:34 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-09-06 03:47:34 +0000 |
commit | 28bc6cb4791dd0bb87dd27df1d5950f7e61b606e (patch) | |
tree | 7377e619e4037bc87fed35c311964b502d892a86 /progs/xdemos/glxinfo.c | |
parent | 2f7ef5fae8303ad312434e83620a9fbf43ad8e60 (diff) |
minor updates to sync with XFree86
Diffstat (limited to 'progs/xdemos/glxinfo.c')
-rw-r--r-- | progs/xdemos/glxinfo.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/progs/xdemos/glxinfo.c b/progs/xdemos/glxinfo.c index 32866ca1fca..799b0c1e1e0 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 |