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;
|
2013-08-29 02:56:33 +02:00
|
|
|
uniform float2 SourceDims;
|
|
|
|
uniform float2 SourceRect;
|
2016-01-09 16:15:45 +01:00
|
|
|
uniform float2 TargetDims;
|
|
|
|
uniform float2 QuadDims;
|
|
|
|
|
|
|
|
uniform bool SwapXY = false;
|
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
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
float2 HalfSourceRect = SourceRect * 0.5f;
|
|
|
|
|
|
|
|
float2 QuadRatio =
|
|
|
|
float2(1.0f, SwapXY
|
|
|
|
? QuadDims.y / QuadDims.x
|
|
|
|
: QuadDims.x / QuadDims.y);
|
|
|
|
|
|
|
|
// imaginary texel dimensions independed from quad dimensions, but dependend on quad ratio
|
|
|
|
float2 FixedTexelDims = (1.0f / 1024.0) * SourceRect * QuadRatio;
|
|
|
|
|
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
|
|
|
|
Output.Position.xy *= 2.0f; // toom
|
|
|
|
|
2011-05-21 08:47:56 +02:00
|
|
|
float2 TexCoord = Input.TexCoord;
|
2016-01-09 16:15:45 +01:00
|
|
|
TexCoord += 0.5f / TargetDims; // half texel offset correction (DX9)
|
|
|
|
|
|
|
|
Output.Color = Input.Color;
|
|
|
|
|
|
|
|
Output.TexCoordX = TexCoord.xxx;
|
|
|
|
Output.TexCoordY = TexCoord.yyy;
|
|
|
|
|
|
|
|
// center coordinates
|
|
|
|
Output.TexCoordX -= HalfSourceRect.xxx;
|
|
|
|
Output.TexCoordY -= HalfSourceRect.yyy;
|
|
|
|
|
|
|
|
// radial converge offset to "translate" the most outer pixel as thay would be translated by the linar converge with the same amount
|
|
|
|
float2 radialConvergeOffset = 2.0f / SourceRect;
|
2011-05-18 02:35:16 +02:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
// radial converge
|
|
|
|
Output.TexCoordX *= 1.0f + RadialConvergeX * FixedTexelDims.xxx * radialConvergeOffset.xxx;
|
|
|
|
Output.TexCoordY *= 1.0f + RadialConvergeY * FixedTexelDims.yyy * radialConvergeOffset.yyy;
|
|
|
|
|
|
|
|
// un-center coordinates
|
|
|
|
Output.TexCoordX += HalfSourceRect.xxx;
|
|
|
|
Output.TexCoordY += HalfSourceRect.yyy;
|
2013-05-19 18:21:26 +02:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
// linear converge
|
|
|
|
Output.TexCoordX += ConvergeX * FixedTexelDims.xxx;
|
|
|
|
Output.TexCoordY += ConvergeY * FixedTexelDims.yyy;
|
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
|
|
|
|
{
|
2016-01-09 16:15:45 +01:00
|
|
|
float r = tex2D(DiffuseSampler, float2(Input.TexCoordX.x, Input.TexCoordY.x)).r;
|
|
|
|
float g = tex2D(DiffuseSampler, float2(Input.TexCoordX.y, Input.TexCoordY.y)).g;
|
|
|
|
float b = tex2D(DiffuseSampler, float2(Input.TexCoordX.z, Input.TexCoordY.z)).b;
|
2015-12-26 12:27:07 +01:00
|
|
|
|
2016-01-09 16:15:45 +01:00
|
|
|
return float4(r, g, b, 1.0f);
|
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();
|
|
|
|
}
|
|
|
|
}
|