light_world.lua/lib/shaders/postshaders/blurv.glsl
SpaVec 378586c406 Added compatibility with android
Added util.loadShader - loads shaders and sets uniform variables
Fixed implicit type conversions in shaders
2017-07-17 23:01:13 +02:00

13 lines
527 B
GLSL

extern float steps = 2.0;
vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 pixel_coords) {
vec2 pSize = vec2(1.0 / love_ScreenSize.x, 1.0 / love_ScreenSize.y);
vec4 col = Texel(texture, texture_coords);
for(int i = 1; i <= int(steps); i++) {
col = col + Texel(texture, vec2(texture_coords.x - pSize.x * float(i), texture_coords.y));
col = col + Texel(texture, vec2(texture_coords.x + pSize.x * float(i), texture_coords.y));
}
col = col / (steps * 2.0 + 1.0);
return vec4(col.r, col.g, col.b, 1.0);
}