From 9087d0f8378be24ecd2a2489eaae0b7d0c550ec7 Mon Sep 17 00:00:00 2001 From: samuncle Date: Mon, 27 Jul 2015 02:00:34 +0200 Subject: [PATCH] Increase the strenght of the lens dust --- data/shaders/bloomblend.frag | 1 + 1 file changed, 1 insertion(+) diff --git a/data/shaders/bloomblend.frag b/data/shaders/bloomblend.frag index 1ae388562..b62030a1a 100644 --- a/data/shaders/bloomblend.frag +++ b/data/shaders/bloomblend.frag @@ -16,6 +16,7 @@ void main() /* Lens dust effect ---- */ vec4 col2 = texture(tex_128, uv); col2 += col2; + col2 += col2; //float dustMask = max(col2.r,max(col2.g,col2.b)); col += texture(tex_dust, uv) * col2;