2015-05-12 09:18:09 +02:00
|
|
|
// license:BSD-3-Clause
|
2016-01-09 16:15:45 +01:00
|
|
|
// copyright-holders:Ryan Holtz,ImJezze
|
2011-05-18 02:35:16 +02:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Deconvergence Effect
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2015-12-31 16:32:35 +01:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Sampler Definitions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2011-05-18 02:35:16 +02:00
|
|
|
texture Diffuse;
|
|
|
|
|
|
|
|
sampler DiffuseSampler = sampler_state
|
|
|
|
{
|
|
|
|
Texture = <Diffuse>;
|
2011-05-28 01:24:53 +02:00
|
|
|
MipFilter = LINEAR;
|
|
|
|
MinFilter = LINEAR;
|
|
|
|
MagFilter = LINEAR;
|
2011-05-18 02:35:16 +02:00
|
|
|
AddressU = CLAMP;
|
|
|
|
AddressV = CLAMP;
|
|
|
|
AddressW = CLAMP;
|
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Vertex Definitions
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
struct VS_OUTPUT
|
|
|
|
{
|
|
|
|
float4 Position : POSITION;
|
|
|
|
float4 Color : COLOR0;
|
2016-01-09 16:15:45 +01:00
|
|
|
float3 TexCoordX : TEXCOORD0;
|
|
|
|
float3 TexCoordY : TEXCOORD1;
|
2011-05-18 02:35:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VS_INPUT
|
|
|
|
{
|
|
|
|
float4 Position : POSITION;
|
|
|
|
float4 Color : COLOR0;
|
|
|
|
float2 TexCoord : TEXCOORD0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PS_INPUT
|
|
|
|
{
|
|
|
|
float4 Color : COLOR0;
|
2016-01-09 16:15:45 +01:00
|
|
|
float3 TexCoordX : TEXCOORD0;
|
|
|
|
float3 TexCoordY : TEXCOORD1;
|
2011-05-18 02:35:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Deconvergence Vertex Shader
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2013-08-28 02:36:02 +02:00
|
|
|
uniform float2 ScreenDims;
|
2016-01-09 16:15:45 +01:00
|
|
|
uniform float2 TargetDims;
|
2011-05-18 02:35:16 +02:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
uniform float3 ConvergeX = float3(0.0f, 0.0f, 0.0f);
|
|
|
|
uniform float3 ConvergeY = float3(0.0f, 0.0f, 0.0f);
|
2011-06-12 01:46:24 +02:00
|
|
|
uniform float3 RadialConvergeX = float3(0.0f, 0.0f, 0.0f);
|
|
|
|
uniform float3 RadialConvergeY = float3(0.0f, 0.0f, 0.0f);
|
2011-05-18 02:35:16 +02:00
|
|
|
|
|
|
|
VS_OUTPUT vs_main(VS_INPUT Input)
|
|
|
|
{
|
|
|
|
VS_OUTPUT Output = (VS_OUTPUT)0;
|
2015-12-26 12:27:07 +01:00
|
|
|
|
2011-05-18 02:35:16 +02:00
|
|
|
Output.Position = float4(Input.Position.xyz, 1.0f);
|
2013-08-28 02:36:02 +02:00
|
|
|
Output.Position.xy /= ScreenDims;
|
2016-01-09 16:15:45 +01:00
|
|
|
Output.Position.y = 1.0f - Output.Position.y; // flip y
|
|
|
|
Output.Position.xy -= 0.5f; // center
|
2016-03-12 16:03:28 +01:00
|
|
|
Output.Position.xy *= 2.0f; // zoom
|
2016-01-09 16:15:45 +01:00
|
|
|
|
2016-03-12 16:03:28 +01:00
|
|
|
float2 TexCoord = Input.TexCoord;
|
2016-01-09 16:15:45 +01:00
|
|
|
TexCoord += 0.5f / TargetDims; // half texel offset correction (DX9)
|
2016-02-20 21:58:56 +01:00
|
|
|
|
|
|
|
// imaginary texel dimensions independed from screen dimension, but ratio
|
2016-03-12 16:03:28 +01:00
|
|
|
float2 TexelDims = (1.0f / 1024);
|
2016-01-09 16:15:45 +01:00
|
|
|
|
|
|
|
Output.TexCoordX = TexCoord.xxx;
|
|
|
|
Output.TexCoordY = TexCoord.yyy;
|
|
|
|
|
|
|
|
// center coordinates
|
2016-03-12 16:03:28 +01:00
|
|
|
Output.TexCoordX -= 0.5f;
|
|
|
|
Output.TexCoordY -= 0.5f;
|
2016-01-09 16:15:45 +01:00
|
|
|
|
|
|
|
// radial converge offset to "translate" the most outer pixel as thay would be translated by the linar converge with the same amount
|
2016-03-12 16:03:28 +01:00
|
|
|
float2 radialConvergeOffset = 2.0f;
|
2011-05-18 02:35:16 +02:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
// radial converge
|
2016-03-12 16:03:28 +01:00
|
|
|
Output.TexCoordX *= 1.0f + RadialConvergeX * TexelDims.xxx * radialConvergeOffset.xxx;
|
|
|
|
Output.TexCoordY *= 1.0f + RadialConvergeY * TexelDims.yyy * radialConvergeOffset.yyy;
|
2016-02-20 21:58:56 +01:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
// un-center coordinates
|
2016-03-12 16:03:28 +01:00
|
|
|
Output.TexCoordX += 0.5f;
|
|
|
|
Output.TexCoordY += 0.5f;
|
2013-05-19 18:21:26 +02:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
// linear converge
|
2016-03-12 16:03:28 +01:00
|
|
|
Output.TexCoordX += ConvergeX * TexelDims.xxx;
|
|
|
|
Output.TexCoordY += ConvergeY * TexelDims.yyy;
|
2016-02-20 21:58:56 +01:00
|
|
|
|
|
|
|
Output.Color = Input.Color;
|
2011-05-30 23:10:23 +02:00
|
|
|
|
2011-05-18 02:35:16 +02:00
|
|
|
return Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Deconvergence Pixel Shader
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
float4 ps_main(PS_INPUT Input) : COLOR
|
|
|
|
{
|
2023-01-28 17:59:25 +01:00
|
|
|
float2 ra = tex2D(DiffuseSampler, float2(Input.TexCoordX.x, Input.TexCoordY.x)).ra;
|
|
|
|
float2 ga = tex2D(DiffuseSampler, float2(Input.TexCoordX.y, Input.TexCoordY.y)).ga;
|
|
|
|
float2 ba = tex2D(DiffuseSampler, float2(Input.TexCoordX.z, Input.TexCoordY.z)).ba;
|
2015-12-26 12:27:07 +01:00
|
|
|
|
2023-01-28 17:59:25 +01:00
|
|
|
return float4(ra.x, ga.x, ba.x, ra.y + ga.y + ba.y);
|
2011-05-18 02:35:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2015-12-31 16:32:35 +01:00
|
|
|
// Deconvergence Technique
|
2011-05-18 02:35:16 +02:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2015-12-31 16:32:35 +01:00
|
|
|
technique DefaultTechnique
|
2011-05-18 02:35:16 +02:00
|
|
|
{
|
|
|
|
pass Pass0
|
|
|
|
{
|
|
|
|
Lighting = FALSE;
|
|
|
|
|
|
|
|
VertexShader = compile vs_3_0 vs_main();
|
|
|
|
PixelShader = compile ps_3_0 ps_main();
|
|
|
|
}
|
|
|
|
}
|