]> git.tdb.fi Git - libs/gl.git/blob - builtin_data/_bloom_combine.glsl
641459bec38b2379bf06c190632f4cf7fe39e3b0
[libs/gl.git] / builtin_data / _bloom_combine.glsl
1 import postprocess;
2 import _bloom;
3
4 #pragma MSP stage(fragment)
5 void main()
6 {
7         frag_color = mix(texture(source, texcoord), texture(blurred, texcoord), strength);
8 }