From ae115bd8d8535bd4d40438d1bf7c380a6731d6a4 Mon Sep 17 00:00:00 2001 From: Anton Kindestam Date: Tue, 16 Oct 2018 17:51:47 +0200 Subject: opengl: Support GL_ARB_sync style fences on OpenGL ES 3.0 OpenGL ES 3.0 and up has suppport for for GL_ARB_sync style fences. Make sure that mpv can use them. --- video/out/opengl/common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/video/out/opengl/common.c b/video/out/opengl/common.c index 00692f0350..86d0eec404 100644 --- a/video/out/opengl/common.c +++ b/video/out/opengl/common.c @@ -262,6 +262,7 @@ static const struct gl_functions gl_functions[] = { }, { .ver_core = 320, + .ver_es_core = 300, .extension = "GL_ARB_sync", .functions = (const struct gl_function[]) { DEF_FN(FenceSync), -- cgit v1.2.3