1uniform sampler2D Texture0;
2varying vec2 TextureCoord;
3
4void main(void)
5{
6    vec4 result;
7
8    $CONVOLUTION$
9
10    gl_FragColor = vec4(result.xyz, 1.0);
11}
12
13