minor tweak to visual setup for accum buffers

This commit is contained in:
Brian Paul 2001-03-23 21:37:05 +00:00
parent 4672b2d88c
commit 6d62d7f321
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $Id: fakeglx.c,v 1.47 2001/03/08 15:23:46 brianp Exp $ */
/* $Id: fakeglx.c,v 1.48 2001/03/23 21:37:05 brianp Exp $ */
/*
* Mesa 3-D graphics library
@ -1081,14 +1081,14 @@ Fake_glXChooseVisual( Display *dpy, int screen, int *list )
/* we only support one size of stencil and accum buffers. */
if (stencil_size > 0)
stencil_size = STENCIL_BITS;
if (accumRedSize > 0)
if (accumRedSize > 0 || accumGreenSize > 0 || accumBlueSize > 0 ||
accumAlphaSize > 0) {
accumRedSize = ACCUM_BITS;
if (accumGreenSize > 0)
accumGreenSize = ACCUM_BITS;
if (accumBlueSize > 0)
accumBlueSize = ACCUM_BITS;
if (accumAlphaSize > 0)
accumAlphaSize = ACCUM_BITS;
accumAlphaSize = alpha_flag ? ACCUM_BITS : 0;
}
if (!save_glx_visual( dpy, vis, rgb_flag, alpha_flag, double_flag,
stereo_flag, depth_size, stencil_size,
accumRedSize, accumGreenSize,