diff options
author | George Staplin <gstaplin@apple.com> | 2009-01-09 16:08:26 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-01-10 01:00:24 -0800 |
commit | 0d8184de591c75794083c8a8ca3fb8459e9394bc (patch) | |
tree | 77d63caf30aa56f7f31154a832cb187cbc362b08 /hw/xquartz/GL | |
parent | 9c3975d63e129ad7230cae585f08a962d45fb861 (diff) |
XQuartz: GL: Set the __GLXconfig renderType to GLX_RGBA_BIT.
(cherry picked from commit 3c14546f58f8a138fe67c9cacc3bd0b7fa90c29a)
Diffstat (limited to 'hw/xquartz/GL')
-rw-r--r-- | hw/xquartz/GL/indirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/GL/indirect.c b/hw/xquartz/GL/indirect.c index fbf13cecf..afaa957d9 100644 --- a/hw/xquartz/GL/indirect.c +++ b/hw/xquartz/GL/indirect.c @@ -1137,7 +1137,7 @@ static __GLXconfig *CreateConfigs(int *numConfigsPtr, int screenNumber) { /* SGIX_fbconfig / GLX 1.3 */ c->drawableType = GLX_WINDOW_BIT | GLX_PIXMAP_BIT; - c->renderType = /*FIXME*/ GL_TRUE; + c->renderType = GLX_RGBA_BIT; c->xRenderable = GL_TRUE; c->fbconfigID = -1; |