summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/egl_helpers.c
diff options
context:
space:
mode:
authorAnton Kindestam <antonki@kth.se>2018-02-18 23:51:10 +0100
committerKevin Mitchell <kevmitch@gmail.com>2018-02-26 23:56:13 -0800
commitbb07b22d4248492c859d2e4c0d2ff2941db1db86 (patch)
tree1aef02d4ab06d04794f3eb691462bd29585ba749 /video/out/opengl/egl_helpers.c
parent4d6601924a4d2df557f78f3192236d84f7a4274e (diff)
downloadmpv-bb07b22d4248492c859d2e4c0d2ff2941db1db86.tar.bz2
mpv-bb07b22d4248492c859d2e4c0d2ff2941db1db86.tar.xz
egl_helpers: mpegl_cb can now signal an error condition
This can be used by client code that needs to fail when it cannot find a suitable EGLConfig.
Diffstat (limited to 'video/out/opengl/egl_helpers.c')
-rw-r--r--video/out/opengl/egl_helpers.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/video/out/opengl/egl_helpers.c b/video/out/opengl/egl_helpers.c
index 55bf376973..2de02b3eb4 100644
--- a/video/out/opengl/egl_helpers.c
+++ b/video/out/opengl/egl_helpers.c
@@ -108,6 +108,11 @@ static bool create_context(struct ra_ctx *ctx, EGLDisplay display,
int chosen = 0;
if (cb.refine_config)
chosen = cb.refine_config(cb.user_data, configs, num_configs);
+ if (chosen < 0) {
+ talloc_free(configs);
+ MP_MSG(ctx, msgl, "Could not choose EGLConfig!\n");
+ return false;
+ }
EGLConfig config = configs[chosen];
talloc_free(configs);