From 2cfd87ab1572698b79dcb665538a2c518905dfad Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 27 Jul 2015 23:18:19 +0200 Subject: vo_opengl: slightly more informative message when disabling scalers --- video/out/gl_video.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/video/out/gl_video.c b/video/out/gl_video.c index cf9703de3c..a1d100f4dc 100644 --- a/video/out/gl_video.c +++ b/video/out/gl_video.c @@ -2416,14 +2416,14 @@ static void check_gl_features(struct gl_video *p) if (kernel) { char *reason = NULL; if (!test_fbo(p, &have_fbo)) - reason = "scaler (FBOs missing)"; + reason = "(FBOs missing)"; if (!have_float_tex) - reason = "scaler (float tex. missing)"; + reason = "(float tex. missing)"; if (!have_1d_tex && kernel->polar) - reason = "scaler (1D tex. missing)"; + reason = "(1D tex. missing)"; if (reason) { p->opts.scaler[n].kernel.name = "bilinear"; - MP_WARN(p, "Disabling %s.\n", reason); + MP_WARN(p, "Disabling scaler #%d %s.\n", n, reason); } } } -- cgit v1.2.3