diff options
author | Brian <[email protected]> | 2007-07-23 16:51:03 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-23 16:51:03 -0600 |
commit | bd4817ca544883884bc8340d638bace58821dbd1 (patch) | |
tree | 10f7c98798ddd897820be68aac79e742bd7cffb7 | |
parent | 005eea249c2565cd33bb7c5f599040ead1ef99a5 (diff) |
fix GLX_STEREO handling (bug 11705)
-rw-r--r-- | src/mesa/drivers/x11/fakeglx.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/mesa/drivers/x11/fakeglx.c b/src/mesa/drivers/x11/fakeglx.c index 86a4deabc67..50cfd99e1a7 100644 --- a/src/mesa/drivers/x11/fakeglx.c +++ b/src/mesa/drivers/x11/fakeglx.c @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.5.2 + * Version: 7.0.1 * - * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -295,6 +295,11 @@ save_glx_visual( Display *dpy, XVisualInfo *vinfo, } } + if (stereoFlag) { + /* stereo not supported */ + return NULL; + } + /* Comparing IDs uses less memory but sometimes fails. */ /* XXX revisit this after 3.0 is finished. */ if (_mesa_getenv("MESA_GLX_VISUAL_HACK")) @@ -1078,7 +1083,7 @@ choose_visual( Display *dpy, int screen, const int *list, GLboolean fbConfig ) else { stereo_flag = GL_TRUE; } - return NULL; /* stereo not supported */ + break; case GLX_AUX_BUFFERS: parselist++; numAux = *parselist++; |