diff options
author | Adam Jackson <[email protected]> | 2017-12-05 11:10:09 -0500 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2018-08-09 12:33:14 -0400 |
commit | 63a6b719d98fb1ad58ae93c2de859e6d4bfa8b8b (patch) | |
tree | b95b89a449a98ec574ac8a188463d17f63497654 /src/glx | |
parent | fcf259ef97fef9d52e7f82ef90fb2383438743b3 (diff) |
glx: GLX_MESA_multithread_makecurrent is direct-only
This extension is not defined for indirect contexts. Marking it as
"client only", as the old code did here, would make the extension
available in indirect contexts, even though the server would certainly
not have it in its extension list.
Cc: <[email protected]>
Signed-off-by: Adam Jackson <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Emil Velikov <[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 a575862670f..e85a8c92846 100644 --- a/src/glx/glxextensions.c +++ b/src/glx/glxextensions.c @@ -152,7 +152,7 @@ static const struct extension_info known_glx_extensions[] = { { GLX(ATI_pixel_format_float), VER(0,0), N, N, N, N }, { GLX(INTEL_swap_event), VER(0,0), Y, N, N, N }, { GLX(MESA_copy_sub_buffer), VER(0,0), Y, N, N, N }, - { GLX(MESA_multithread_makecurrent),VER(0,0), Y, N, Y, N }, + { GLX(MESA_multithread_makecurrent),VER(0,0), Y, N, N, Y }, { GLX(MESA_query_renderer), VER(0,0), Y, N, N, Y }, { GLX(MESA_swap_control), VER(0,0), Y, N, N, Y }, { GLX(NV_float_buffer), VER(0,0), N, N, N, N }, |