diff options
author | marha <marha@users.sourceforge.net> | 2009-11-22 23:03:41 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-11-22 23:03:41 +0000 |
commit | ab6b8487a0ade2394c4b6c5e562c26f45fe2592d (patch) | |
tree | 399e1948a992f23c3ab65830d5ba73106dcadff6 /xorg-server/hw/xwin/glx | |
parent | ceb2059318af4dfa056652fb9d751f170bcbb6a1 (diff) | |
download | vcxsrv-ab6b8487a0ade2394c4b6c5e562c26f45fe2592d.tar.gz vcxsrv-ab6b8487a0ade2394c4b6c5e562c26f45fe2592d.tar.bz2 vcxsrv-ab6b8487a0ade2394c4b6c5e562c26f45fe2592d.zip |
It seems that wglGetPixelFormatAttribivARB may also return WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT
Diffstat (limited to 'xorg-server/hw/xwin/glx')
-rw-r--r-- | xorg-server/hw/xwin/glx/indirect.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/glx/indirect.c b/xorg-server/hw/xwin/glx/indirect.c index f574512b4..05e951e0a 100644 --- a/xorg-server/hw/xwin/glx/indirect.c +++ b/xorg-server/hw/xwin/glx/indirect.c @@ -2044,6 +2044,10 @@ glxWinCreateConfigsExt(HDC hdc, glxWinScreen *screen) case WGL_TYPE_RGBA_FLOAT_ARB: GLWIN_DEBUG_MSG("pixelFormat %d is WGL_TYPE_RGBA_FLOAT_ARB, skipping", i+1); continue; + + case WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT: + GLWIN_DEBUG_MSG("pixelFormat %d is WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT, skipping", i+1); + continue; case WGL_TYPE_RGBA_ARB: c->base.indexBits = 0; |