diff options
author | wm4 <wm4@nowhere> | 2017-07-30 09:43:41 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-07-30 09:43:41 +0200 |
commit | 5429dbf2a25ecdab2330aa8a24c788e1a2e4f6ed (patch) | |
tree | 555c6d53c0ce4f803aa739e58b5d703d84476eaf | |
parent | ab1ffa138296ddf3ae791e72588fae45c17e2953 (diff) |
vo_opengl: fix dither texture filter
Should be GL_NEAREST, not GL_LINEAR.
-rw-r--r-- | video/out/opengl/video.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c index 0b777f2c53..cbf3663adc 100644 --- a/video/out/opengl/video.c +++ b/video/out/opengl/video.c @@ -2629,7 +2629,6 @@ static void pass_dither(struct gl_video *p) .d = 1, .format = fmt, .render_src = true, - .src_linear = true, .src_repeat = true, .initial_data = tex_data, }; |