Torque3D/Templates/Modules/PostFXPack/Shaders/zoomBlurP.hlsl
Areloch f1777016b8 GFX card profile config file logging moved to debug only
WIP mode of guiSliderCtrl to be a filled rectangle instead of a textured UI
Fixed bug with guiTextEditCtrl losing focus updating history passing malformed strings
Updated WIP options menu
Editor/Project settings WIP
Updated editor theme to be consistent, and feed off the editor settings
Updated popup menus to reference renamed profiles
Added more in-progress modules for examples/stress testing
2019-06-17 02:30:45 -05:00

25 lines
No EOL
562 B
HLSL

#include "shaders/common/postFx/postFx.hlsl"
#include "../../torque.hlsl"
uniform float amount;
uniform float samples;
TORQUE_UNIFORM_SAMPLER2D(backBuffer, 0);
float4 main(PFXVertToPix IN) : TORQUE_TARGET0
{
float b = 0;
float4 base = TORQUE_TEX2D(backBuffer, IN.uv0);
float2 uv = IN.uv0;
[loop] for (int i = 1; i <= samples; i++)
{
uv -= b;
uv *= amount;
b = (1-(1*pow(abs(amount), i))) / 2;
uv += b;
base += TORQUE_TEX2DLOD(backBuffer, float4(uv.x, uv.y, 0, 0));
}
return base / (samples + 1);
}