summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorNiklas Haas <git@haasn.xyz>2017-08-17 09:12:28 +0200
committerNiklas Haas <git@haasn.xyz>2017-08-17 09:12:28 +0200
commitb74067bc741fda96c358e6d5bfaf423417762592 (patch)
treea68841ae188396ede590c568992711d88dcb9e1c /video
parent158768513c6590ef875e8dfc9185ddb5d1448306 (diff)
downloadmpv-b74067bc741fda96c358e6d5bfaf423417762592.tar.bz2
mpv-b74067bc741fda96c358e6d5bfaf423417762592.tar.xz
vo_opengl: remove redundant #defines in unsharp_hook
These are no longer valid anyway, and the code doesn't use them.
Diffstat (limited to 'video')
-rw-r--r--video/out/opengl/video.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c
index 19b13d9349..a9c64c338f 100644
--- a/video/out/opengl/video.c
+++ b/video/out/opengl/video.c
@@ -1806,9 +1806,6 @@ static void unsharp_hook(struct gl_video *p, struct img_tex tex,
struct gl_transform *trans, void *priv)
{
pass_describe(p, "unsharp masking");
- GLSLF("#define tex HOOKED\n");
- GLSLF("#define pos HOOKED_pos\n");
- GLSLF("#define pt HOOKED_pt\n");
pass_sample_unsharp(p->sc, p->opts.unsharp);
}