diff options
author | Martijn Kaijser <martijn@xbmc.org> | 2016-12-25 12:01:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-25 12:01:32 +0100 |
commit | 60883bebf604ca14de72240612630f2025203729 (patch) | |
tree | b63ef7aca50f26f370ae4c30f8065df2d31e6912 /system | |
parent | 27085c731ebb9783c9fc4dbc305a2bacceef892b (diff) | |
parent | 41af35fe7f9bbe8e9af61d921a9e4008fb221e82 (diff) |
Merge pull request #11256 from fritsch/kryptonbackports
Kryptonbackports: Shader 6x6 and FFmpeg
Diffstat (limited to 'system')
-rw-r--r-- | system/shaders/convolution-6x6.glsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/shaders/convolution-6x6.glsl b/system/shaders/convolution-6x6.glsl index 68c53661dd..7c568c16ec 100644 --- a/system/shaders/convolution-6x6.glsl +++ b/system/shaders/convolution-6x6.glsl @@ -106,7 +106,7 @@ vec4 process() vec3 xpos1 = vec3(xystart.x, xystart.x + stepxy.x, xystart.x + stepxy.x * 2.0); vec3 xpos2 = vec3(xystart.x + stepxy.x * 3.0, xystart.x + stepxy.x * 4.0, xystart.x + stepxy.x * 5.0); - rgb = + rgb.rgb = line(xystart.y , xpos1, xpos2, linetaps1, linetaps2) * columntaps1.r + line(xystart.y + stepxy.y , xpos1, xpos2, linetaps1, linetaps2) * columntaps2.r + line(xystart.y + stepxy.y * 2.0, xpos1, xpos2, linetaps1, linetaps2) * columntaps1.g + |