summaryrefslogtreecommitdiffstats
path: root/video/out
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-18 20:58:37 +0100
committerwm4 <wm4@nowhere>2014-12-18 20:58:37 +0100
commitda997db09504767de63d434f0a6a6773827e670b (patch)
tree60a43b1b8f9307f17056e66a052f43c79b7d2d5d /video/out
parenteec4b86bbc18926ca4a9d0b25c1b93a0e2924ae3 (diff)
downloadmpv-da997db09504767de63d434f0a6a6773827e670b.tar.bz2
mpv-da997db09504767de63d434f0a6a6773827e670b.tar.xz
vo_opengl, x11: make legacy context warning not an error
Really, this doesn't actually matter. It's printed as error only because it was once thought to be an mostly unneeded fallback, but it turned out this is still frequently needed, and users are getting confused.
Diffstat (limited to 'video/out')
-rw-r--r--video/out/gl_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_x11.c b/video/out/gl_x11.c
index 7226813e43..5fe43e54f7 100644
--- a/video/out/gl_x11.c
+++ b/video/out/gl_x11.c
@@ -109,7 +109,7 @@ static bool create_context_x11_gl3(struct MPGLContext *ctx, bool debug)
glx_ctx->fbc, 0, True,
context_attribs);
if (!context) {
- MP_ERR(vo, "Could not create GL3 context. Retrying with legacy context.\n");
+ MP_INFO(vo, "Could not create GL3 context. Retrying with legacy context.\n");
return false;
}