diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2010-04-09 10:58:48 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-04-12 21:42:14 -0700 |
commit | 1760d2bef9f5b248cb2332f6ebf0220eb02bab42 (patch) | |
tree | d1384cc21f57558d6c24370e28581a3696c60270 /glx/glxdri2.c | |
parent | ab60975fe28cb135b4183c57b7f50d3615921c1f (diff) |
glx: Set the pbuffer bit for dri2 fbconfigs
They've been implemented for a while, but we never advertised them. All we
need to do is set the GLX_PBUFFER_BIT in the drawable type fbconfig
field when we're using DRI2.
https://bugs.freedesktop.org/show_bug.cgi?id=26581
Signed-off-by: Kristian Høgsberg <krh@bitplanet.net>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glx/glxdri2.c')
-rw-r--r-- | glx/glxdri2.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/glx/glxdri2.c b/glx/glxdri2.c index e791bf6bf..4c9f381c6 100644 --- a/glx/glxdri2.c +++ b/glx/glxdri2.c @@ -748,7 +748,10 @@ __glXDRIscreenProbe(ScreenPtr pScreen) initializeExtensions(screen); - screen->base.fbconfigs = glxConvertConfigs(screen->core, driConfigs); + screen->base.fbconfigs = glxConvertConfigs(screen->core, driConfigs, + GLX_WINDOW_BIT | + GLX_PIXMAP_BIT | + GLX_PBUFFER_BIT); __glXScreenInit(&screen->base, pScreen); |