From f15e652dd40a27ec000b4dcfe2b5fff90a3ac36a Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 27 Jul 2015 23:27:49 +0200 Subject: vo_opengl: framebuffers work under GLES 2 They are not entirely full-featured in GLES 2, but they appear to provide all we need. Thus we can enable them. --- video/out/gl_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video/out/gl_common.c b/video/out/gl_common.c index 5f898b3c46..517281f578 100644 --- a/video/out/gl_common.c +++ b/video/out/gl_common.c @@ -191,7 +191,7 @@ static const struct gl_functions gl_functions[] = { // Framebuffers, extension in GL 2.x, core in GL 3.x core. { .ver_core = 300, - .ver_es_core = 300, + .ver_es_core = 200, .extension = "GL_ARB_framebuffer_object", .provides = MPGL_CAP_FB, .functions = (const struct gl_function[]) { -- cgit v1.2.3