diff options
author | Thomas Hellstrom <[email protected]> | 2017-08-09 11:19:18 +0200 |
---|---|---|
committer | Thomas Hellstrom <[email protected]> | 2017-08-10 09:15:33 +0200 |
commit | 48bd91785a5231fcadfcfccd0b193c142bc24a40 (patch) | |
tree | aa69e437785951d78bb16acdc7f4b33c5306a4c9 /src/glx/dri_common.c | |
parent | fe4aae0e6ad395ef48c2f710c3deb51a0b769000 (diff) |
glx: Fix swap method config matching
Due to bugs in dri swap method reporting, neither the fbconfigs received from
the server nor the value reported from driconfigs were correct. Now that's been
fixed and we can enable config swapmethod matching again.
Signed-off-by: Thomas Hellstrom <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/glx/dri_common.c')
-rw-r--r-- | src/glx/dri_common.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/glx/dri_common.c b/src/glx/dri_common.c index 854733a5bea..0f8f7134b4a 100644 --- a/src/glx/dri_common.c +++ b/src/glx/dri_common.c @@ -242,10 +242,8 @@ static const struct __ATTRIB(__DRI_ATTRIB_MAX_PBUFFER_PIXELS, maxPbufferPixels), __ATTRIB(__DRI_ATTRIB_OPTIMAL_PBUFFER_WIDTH, optimalPbufferWidth), __ATTRIB(__DRI_ATTRIB_OPTIMAL_PBUFFER_HEIGHT, optimalPbufferHeight), -#if 0 __ATTRIB(__DRI_ATTRIB_SWAP_METHOD, swapMethod), -#endif -__ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGB, bindToTextureRgb), + __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGB, bindToTextureRgb), __ATTRIB(__DRI_ATTRIB_BIND_TO_TEXTURE_RGBA, bindToTextureRgba), __ATTRIB(__DRI_ATTRIB_BIND_TO_MIPMAP_TEXTURE, bindToMipmapTexture), |