diff options
author | wm4 <wm4@nowhere> | 2016-05-13 14:51:14 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-05-13 15:39:11 +0200 |
commit | f7c81c03b2e2eda45e547b98cd508b82da37c775 (patch) | |
tree | cd5f9554e5d8fb04702c1bf350ead613dd0c10d2 /video/out/opengl | |
parent | 5bd6b76f5c23a433382ae021f0229c5b6bfcffb0 (diff) | |
download | mpv-f7c81c03b2e2eda45e547b98cd508b82da37c775.tar.bz2 mpv-f7c81c03b2e2eda45e547b98cd508b82da37c775.tar.xz |
vo_opengl: angle: log extension string
Diffstat (limited to 'video/out/opengl')
-rw-r--r-- | video/out/opengl/context_angle.c | 4 |
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: |