diff options
author | Adam Jackson <ajax@redhat.com> | 2016-03-22 14:37:19 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-03-30 10:47:55 -0400 |
commit | f95645c6f70019316f8ad77b7beb84530fc0505f (patch) | |
tree | 0e449b820cd14e9e0ba4a0937d60998c046a82cc /glx/extension_string.c | |
parent | 410aec82556def5395f51299bcefbeb7d0bda604 (diff) |
glx: Don't enable EXT_texture_from_pixmap unconditionally
Not all backend servers implement this. Those that don't happen to not
use __glXInitExtensionEnableBits, but we'd like that to change, so fix
it up before we switch them over.
Reviewed-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'glx/extension_string.c')
-rw-r--r-- | glx/extension_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glx/extension_string.c b/glx/extension_string.c index 616c7932e..30c341646 100644 --- a/glx/extension_string.c +++ b/glx/extension_string.c @@ -86,7 +86,7 @@ static const struct extension_info known_glx_extensions[] = { { GLX(EXT_framebuffer_sRGB), VER(0,0), N, }, { GLX(EXT_import_context), VER(0,0), Y, }, { GLX(EXT_stereo_tree), VER(0,0), N, }, - { GLX(EXT_texture_from_pixmap), VER(0,0), Y, }, + { GLX(EXT_texture_from_pixmap), VER(0,0), N, }, { GLX(EXT_visual_info), VER(0,0), Y, }, { GLX(EXT_visual_rating), VER(0,0), Y, }, |