armory/Shaders/blur_gaus_pass/blur_gaus_pass.frag.glsl
2018-11-27 21:34:42 +01:00

26 lines
668 B
GLSL

// Exclusive to bloom for now
#version 450
#include "compiled.inc"
uniform sampler2D tex;
uniform vec2 dir;
uniform vec2 screenSize;
in vec2 texCoord;
out vec4 fragColor;
const float weight[10] = float[] (0.132572, 0.125472, 0.106373, 0.08078, 0.05495, 0.033482, 0.018275, 0.008934, 0.003912, 0.001535);
void main() {
vec2 step = (dir / screenSize.xy) * bloomRadius;
fragColor.rgb = texture(tex, texCoord).rgb * weight[0];
for (int i = 1; i < 10; i++) {
vec2 s = step * (float(i) + 0.5);
fragColor.rgb += texture(tex, texCoord + s).rgb * weight[i];
fragColor.rgb += texture(tex, texCoord - s).rgb * weight[i];
}
fragColor.rgb *= bloomStrength / 5;
}