summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-07-27 23:18:19 +0200
committerwm4 <wm4@nowhere>2015-07-27 23:18:19 +0200
commit2cfd87ab1572698b79dcb665538a2c518905dfad (patch)
tree29493d3f11e4f81f4f15ecee1e9ceed08bd4797f
parentb3468d53c71594f7e29e0ac736dc3b82b92446a3 (diff)
downloadmpv-2cfd87ab1572698b79dcb665538a2c518905dfad.tar.bz2
mpv-2cfd87ab1572698b79dcb665538a2c518905dfad.tar.xz
vo_opengl: slightly more informative message when disabling scalers
-rw-r--r--video/out/gl_video.c8
1 files 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);
}
}
}