wgl: Add missing WGL_STEREO_ARB to ConvertAttribWGLtoGLX.

This commit is contained in:
Roderick Colenbrander 2008-03-31 22:59:11 +00:00 committed by Alexandre Julliard
parent 616ac380f9
commit 8a5838274b
1 changed files with 5 additions and 0 deletions

View File

@ -664,6 +664,11 @@ static int ConvertAttribWGLtoGLX(const int* iWGLAttr, int* oGLXAttr, Wine_GLPBuf
TRACE("pAttr[%d] = GLX_DOUBLEBUFFER: %d\n", cur, pop);
doublebuf = pop;
break;
case WGL_STEREO_ARB:
pop = iWGLAttr[++cur];
PUSH2(oGLXAttr, GLX_STEREO, pop);
TRACE("pAttr[%d] = GLX_STEREO: %d\n", cur, pop);
break;
case WGL_PIXEL_TYPE_ARB:
pop = iWGLAttr[++cur];