Apply alpha buffer control fix to accum buffer too.

This commit is contained in:
Karl Schultz 2002-04-23 18:39:09 +00:00
parent e694a8765a
commit dc2270b461
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: wmesa.c,v 1.27 2002/04/23 18:23:33 kschultz Exp $ */
/* $Id: wmesa.c,v 1.28 2002/04/23 18:39:09 kschultz Exp $ */
/*
* Windows (Win32) device driver for Mesa 3.4
@ -1331,7 +1331,8 @@ WMesaContext WMesaCreateContext( HWND hWnd, HPALETTE* Pal,
0, /* index bits */
16, /* depth_bits */
8, /* stencil_bits */
16,16,16,16,/* accum_bits */
16,16,16,/* accum_bits */
alpha_flag ? 16 : 0, /* alpha accum */
1);
if (!c->gl_visual) {