summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-18 20:58:37 +0100
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-01-25 17:00:08 +0900
commit99cca56a99d15966c17accfe20a5fd077f7f2c70 (patch)
tree435fa013f92c87b676f9a52a3139813505496beb /video
parent676457256a17fd26ca5d0fcd3effa9d923dbd3e2 (diff)
downloadmpv-99cca56a99d15966c17accfe20a5fd077f7f2c70.tar.bz2
mpv-99cca56a99d15966c17accfe20a5fd077f7f2c70.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')
-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;
}