video/egl_helpers: log error for eglCreateContext

This commit is contained in:
sfan5 2024-03-20 22:46:01 +01:00
parent 91489c9466
commit b3ca600acb
1 changed files with 2 additions and 1 deletions

View File

@ -203,7 +203,8 @@ static bool create_context(struct ra_ctx *ctx, EGLDisplay display,
}
if (!egl_ctx) {
MP_MSG(ctx, msgl, "Could not create EGL context for %s!\n", name);
MP_MSG(ctx, msgl, "Could not create EGL context for %s (error=%d)!\n",
name, eglGetError());
return false;
}