From aa2bdec26cf2544cffa4b2613086f226127e2ea8 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Thu, 6 Jul 2017 11:27:24 +0200 Subject: vo_opengl: also expose NAME_mul for user shaders This is exposed so that bjin/mpv-prescalers can use textureGatherOffset for performance. Since there are now quite a lot of parameters where it isn't quite clear why they're all defined, add a paragraph to the man page that explains them a bit. --- video/out/opengl/video.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'video/out/opengl/video.c') diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c index f2f5260c74..876da267a3 100644 --- a/video/out/opengl/video.c +++ b/video/out/opengl/video.c @@ -1171,10 +1171,11 @@ static void hook_prelude(struct gl_video *p, const char *name, int id, GLSLHF("#define %s_size texture_size%d\n", name, id); GLSLHF("#define %s_rot texture_rot%d\n", name, id); GLSLHF("#define %s_pt pixel_size%d\n", name, id); + GLSLHF("#define %s_mul %f\n", name, tex.multiplier); // Set up the sampling functions - GLSLHF("#define %s_tex(pos) (%f * vec4(texture(%s_raw, pos)).%s)\n", - name, tex.multiplier, name, get_tex_swizzle(&tex)); + GLSLHF("#define %s_tex(pos) (%s_mul * vec4(texture(%s_raw, pos)).%s)\n", + name, name, name, get_tex_swizzle(&tex)); // Since the extra matrix multiplication impacts performance, // skip it unless the texture was actually rotated -- cgit v1.2.3