Create/Update assets for version 1.7.7

This commit is contained in:
InventiveBot
2017-02-18 13:38:09 +00:00
parent edd2521bab
commit 5a601dfb10
1649 changed files with 130231 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#version 120
uniform sampler2D DiffuseSampler;
varying vec2 texCoord;
varying vec2 oneTexel;
uniform vec2 InSize;
uniform vec2 BlurDir;
uniform float Radius;
void main() {
vec4 blurred = vec4(0.0);
float totalStrength = 0.0;
for(float r = -Radius; r <= Radius; r += 1.0) {
float strength = abs(1.0 - r / Radius);
strength = strength * strength;
totalStrength = totalStrength + strength;
blurred = blurred + texture2D(DiffuseSampler, texCoord + oneTexel * r * BlurDir) * strength;
}
gl_FragColor = vec4(blurred.rgb / totalStrength, texture2D(DiffuseSampler, texCoord).a);
}