armory/Shaders/motion_blur_veloc_pass/motion_blur_veloc_pass.frag.glsl

51 lines
1.7 KiB
Plaintext
Raw Normal View History

2016-07-31 23:25:33 +02:00
// Per-Object Motion Blur
// http://john-chapman-graphics.blogspot.com/2013/01/per-object-motion-blur.html
#version 450
2017-12-13 14:21:42 +01:00
#include "compiled.glsl"
2016-07-31 23:25:33 +02:00
uniform sampler2D gbuffer0;
2016-08-01 10:55:13 +02:00
uniform sampler2D sveloc;
2016-07-31 23:25:33 +02:00
uniform sampler2D tex;
2016-08-11 22:24:45 +02:00
// uniform vec2 texStep;
2017-12-26 01:58:40 +01:00
uniform float frameScale;
2016-07-31 23:25:33 +02:00
2016-08-01 10:55:13 +02:00
in vec2 texCoord;
2016-10-12 17:52:27 +02:00
out vec4 fragColor;
2016-07-31 23:25:33 +02:00
void main() {
2017-12-26 01:58:40 +01:00
vec2 velocity = texture(sveloc, texCoord).rg * motionBlurIntensity * frameScale;
2016-07-31 23:25:33 +02:00
2017-03-12 17:29:22 +01:00
fragColor.rgb = texture(tex, texCoord).rgb;
2016-08-01 10:55:13 +02:00
2016-07-31 23:25:33 +02:00
// Do not blur masked objects
if (texture(gbuffer0, texCoord).a == 1.0) {
return;
}
2016-08-01 10:55:13 +02:00
// float speed = length(velocity / texStep);
// const int MAX_SAMPLES = 8;
// int samples = clamp(int(speed), 1, MAX_SAMPLES);
const int samples = 8;
// for (int i = 1; i < samples; ++i) {
vec2 offset = velocity * (float(0) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
//
offset = velocity * (float(1) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
offset = velocity * (float(2) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
offset = velocity * (float(3) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
offset = velocity * (float(4) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
offset = velocity * (float(5) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
offset = velocity * (float(6) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-08-01 10:55:13 +02:00
offset = velocity * (float(7) / float(samples - 1) - 0.5);
2017-03-12 17:29:22 +01:00
fragColor.rgb += texture(tex, texCoord + offset).rgb;
2016-07-31 23:25:33 +02:00
// }
2017-03-12 17:29:22 +01:00
fragColor.rgb /= float(samples + 1);
2016-07-31 23:25:33 +02:00
}