diff options
author | Grigori Goronzy <[email protected]> | 2017-08-03 20:07:58 +0200 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-03-12 19:12:21 -0400 |
commit | acfd88204e886e671da97b895fd2d1ee39b61256 (patch) | |
tree | 811416e4fb64af31378e621ba06ee9e37d299378 /src/glx/glxextensions.c | |
parent | ae77f1236862e73c1ac250898924c648d481bda4 (diff) |
glx: add support for GLX_ARB_create_context_no_error (v3)
v2: Only reject no-error contexts for too-old GL if we're actually
trying to create a no-error context (Adam Jackson)
v3: Fix share contexts (Adam Jackson)
Reviewed-by: Adam Jackson <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/glx/glxextensions.c')
-rw-r--r-- | src/glx/glxextensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c index e85a8c92846..f6a7a31a219 100644 --- a/src/glx/glxextensions.c +++ b/src/glx/glxextensions.c @@ -134,6 +134,7 @@ struct extension_info static const struct extension_info known_glx_extensions[] = { { GLX(ARB_context_flush_control), VER(0,0), Y, N, N, N }, { GLX(ARB_create_context), VER(0,0), Y, N, N, N }, + { GLX(ARB_create_context_no_error), VER(1,4), Y, N, N, N }, { GLX(ARB_create_context_profile), VER(0,0), Y, N, N, N }, { GLX(ARB_create_context_robustness), VER(0,0), Y, N, N, N }, { GLX(ARB_fbconfig_float), VER(0,0), Y, Y, N, N }, |