diff options
author | Dave Airlie <airlied@redhat.com> | 2010-05-02 19:35:34 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-05-03 16:17:25 +1000 |
commit | 26a9b7e4c737c89b47844303bb7413ceab0280a5 (patch) | |
tree | ba44e652bbf2c7e37512104d1b43c7be1f8af0d2 | |
parent | d2b6ed7c4daf094bfe3fa4e0318133d0a8ea3cf6 (diff) |
glx: fix regression with GLX_USE_GL
update for fbconfig_style_tags
-rw-r--r-- | src/glx/glxext.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/glx/glxext.c b/src/glx/glxext.c index 82d3a56f37..0e148edf8e 100644 --- a/src/glx/glxext.c +++ b/src/glx/glxext.c @@ -584,6 +584,9 @@ __glXInitializeVisualConfigFromTags(__GLcontextModes * config, int count, config->yInverted = *bp++; break; #endif + case GLX_USE_GL: + if (fbconfig_style_tags) *bp++; + break; case None: i = count; break; |