diff options
author | Adam Jackson <[email protected]> | 2019-08-29 12:15:22 -0400 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-08-30 17:50:45 -0400 |
commit | da5ebe30105f70e3520ce3ae145793b755552569 (patch) | |
tree | 135a28dfd2d786c11e3a308fa1c8afeeed2d952a /src/glx | |
parent | 9087cf70153ebc412982dc38db3829adf27ebb39 (diff) |
Revert "glx: Unset the direct_support bit for GLX_EXT_import_context"
The GLX extension strings are independent of any context, so abusing the
direct_support bit to control this extension's visibility is wrong.
This reverts commit 079d0717fc896bc8086b037d0ed22642274986c7.
Reported-by: Michel Dänzer <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/glxextensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c index a6fcc5f744b..f6a7a31a219 100644 --- a/src/glx/glxextensions.c +++ b/src/glx/glxextensions.c @@ -146,7 +146,7 @@ static const struct extension_info known_glx_extensions[] = { { GLX(EXT_create_context_es_profile), VER(0,0), Y, N, N, N }, { GLX(EXT_fbconfig_packed_float), VER(0,0), Y, Y, N, N }, { GLX(EXT_framebuffer_sRGB), VER(0,0), Y, Y, N, N }, - { GLX(EXT_import_context), VER(0,0), Y, N, N, N }, + { GLX(EXT_import_context), VER(0,0), Y, Y, N, N }, { GLX(EXT_texture_from_pixmap), VER(0,0), Y, N, N, N }, { GLX(EXT_visual_info), VER(0,0), Y, Y, N, N }, { GLX(EXT_visual_rating), VER(0,0), Y, Y, N, N }, |