summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.xyz>2017-09-16 03:28:38 +0200
committerNiklas Haas <git@haasn.xyz>2017-09-21 15:01:22 +0200
commite92effb14feab6b189a4e6fbc75504834328c48e (patch)
tree9ebb054221957a6914eeee5438bc3ed6b9b9d90b /video
parentcee764849e4fe22b00fb3f31838a63906e2e0d54 (diff)
downloadmpv-e92effb14feab6b189a4e6fbc75504834328c48e.tar.bz2
mpv-e92effb14feab6b189a4e6fbc75504834328c48e.tar.xz
vo_gpu: describe the plane merging pass
This can get left unknown if something hooks NATIVE
Diffstat (limited to 'video')
-rw-r--r--video/out/gpu/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gpu/video.c b/video/out/gpu/video.c
index e36fde60e8..e0ca6c4ffb 100644
--- a/video/out/gpu/video.c
+++ b/video/out/gpu/video.c
@@ -2145,7 +2145,7 @@ static void pass_read_video(struct gl_video *p)
}
// All planes are of the same size and properly aligned at this point
- GLSLF("// combining planes\n");
+ pass_describe(p, "combining planes");
int coord = 0;
for (int i = 0; i < 4; i++) {
if (tex[i].type != PLANE_NONE)