From da997db09504767de63d434f0a6a6773827e670b Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 18 Dec 2014 20:58:37 +0100 Subject: 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. --- video/out/gl_x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/out/gl_x11.c') 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; } -- cgit v1.2.3