summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-05-13 14:51:14 +0200
committerwm4 <wm4@nowhere>2016-05-13 15:39:11 +0200
commitf7c81c03b2e2eda45e547b98cd508b82da37c775 (patch)
treecd5f9554e5d8fb04702c1bf350ead613dd0c10d2
parent5bd6b76f5c23a433382ae021f0229c5b6bfcffb0 (diff)
downloadmpv-f7c81c03b2e2eda45e547b98cd508b82da37c775.tar.bz2
mpv-f7c81c03b2e2eda45e547b98cd508b82da37c775.tar.xz
vo_opengl: angle: log extension string
-rw-r--r--video/out/opengl/context_angle.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/out/opengl/context_angle.c b/video/out/opengl/context_angle.c
index ef498f27eb..aeb3e672fc 100644
--- a/video/out/opengl/context_angle.c
+++ b/video/out/opengl/context_angle.c
@@ -200,6 +200,10 @@ static int angle_init(struct MPGLContext *ctx, int flags)
mpgl_load_functions(ctx->gl, get_proc_address, NULL, vo->log);
+ const char *exts = eglQueryString(p->egl_display, EGL_EXTENSIONS);
+ if (exts)
+ MP_DBG(ctx->vo, "EGL extensions: %s\n", exts);
+
return 0;
fail: