2013-03-07 18:51:57 +00:00
|
|
|
void main()
|
2009-08-09 21:40:54 +00:00
|
|
|
{
|
2014-05-21 03:53:37 +00:00
|
|
|
//variables
|
|
|
|
float internalresolution = 1278.0;
|
2014-07-29 17:08:57 +00:00
|
|
|
float4 c0 = Sample();
|
2014-05-21 03:53:37 +00:00
|
|
|
|
|
|
|
//blur
|
|
|
|
float4 blurtotal = float4(0.0, 0.0, 0.0, 0.0);
|
|
|
|
float blursize = 1.5;
|
2014-07-29 17:08:57 +00:00
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2(-blursize, -blursize) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2(-blursize, blursize) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2( blursize, -blursize) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2( blursize, blursize) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2(-blursize, 0.0) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2( blursize, 0.0) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2( 0.0, -blursize) * GetInvResolution());
|
|
|
|
blurtotal += SampleLocation(GetCoordinates() + float2( 0.0, blursize) * GetInvResolution());
|
2014-05-21 03:53:37 +00:00
|
|
|
blurtotal *= 0.125;
|
|
|
|
c0 = blurtotal;
|
|
|
|
|
|
|
|
//greyscale
|
|
|
|
float grey = ((0.3 * c0.r) + (0.4 * c0.g) + (0.3 * c0.b));
|
|
|
|
|
|
|
|
// brighten
|
|
|
|
grey = grey * 0.5 + 0.7;
|
|
|
|
|
|
|
|
// darken edges
|
2014-07-29 17:08:57 +00:00
|
|
|
float x = GetCoordinates().x * GetResolution().x;
|
|
|
|
float y = GetCoordinates().y * GetResolution().y;
|
2014-05-21 03:53:37 +00:00
|
|
|
if (x > internalresolution/2.0)
|
|
|
|
x = internalresolution-x;
|
|
|
|
if (y > internalresolution/2.0)
|
|
|
|
y = internalresolution-y;
|
|
|
|
if (x > internalresolution/2.0*0.95)
|
|
|
|
x = internalresolution/2.0*0.95;
|
|
|
|
if (y > internalresolution/2.0*0.95)
|
|
|
|
y = internalresolution/2.0*0.95;
|
|
|
|
x = -x+641.0;
|
|
|
|
y = -y+641.0;
|
|
|
|
|
|
|
|
/*****inline square root routines*****/
|
|
|
|
// bit of a performance bottleneck.
|
|
|
|
// neccessary to make the darkened area rounded
|
|
|
|
// instead of rhombus-shaped.
|
|
|
|
float sqrt = x / 10.0;
|
2014-05-21 04:10:07 +00:00
|
|
|
|
|
|
|
while ((sqrt*sqrt) < x)
|
|
|
|
sqrt+=0.1;
|
2014-05-21 03:53:37 +00:00
|
|
|
x = sqrt;
|
|
|
|
sqrt = y / 10.0;
|
2014-05-21 04:10:07 +00:00
|
|
|
while ((sqrt*sqrt) < y)
|
|
|
|
sqrt+=0.1;
|
2014-05-21 03:53:37 +00:00
|
|
|
y = sqrt;
|
|
|
|
|
|
|
|
x *= 2.0;
|
|
|
|
y *= 2.0;
|
|
|
|
grey -= x / 200.0;
|
|
|
|
grey -= y / 200.0;
|
|
|
|
|
|
|
|
// output
|
2014-07-29 17:08:57 +00:00
|
|
|
SetOutput(float4(0.0, grey, 0.0, 1.0));
|
2014-05-05 20:59:49 +00:00
|
|
|
}
|