diff options
author | Brian Paul <[email protected]> | 2008-12-17 10:55:29 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-12-17 10:58:23 -0700 |
commit | 6b88d9606f5cc8147b9ef13c70a9416313c52205 (patch) | |
tree | 57c6e49a7e7f5808dd5ecafdfd3207c80a90586f /src/gallium/winsys | |
parent | ca284fde53dbbc7c525188c7918b356687b3dbc2 (diff) |
winsys: fix depth buffer size when using stencil
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/xlib/fakeglx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/winsys/xlib/fakeglx.c b/src/gallium/winsys/xlib/fakeglx.c index a56e63572a7..fd2d222c859 100644 --- a/src/gallium/winsys/xlib/fakeglx.c +++ b/src/gallium/winsys/xlib/fakeglx.c @@ -304,6 +304,9 @@ save_glx_visual( Display *dpy, XVisualInfo *vinfo, return NULL; } + if (stencil_size > 0 && depth_size > 0) + depth_size = 24; + /* Comparing IDs uses less memory but sometimes fails. */ /* XXX revisit this after 3.0 is finished. */ if (_mesa_getenv("MESA_GLX_VISUAL_HACK")) |