2011-02-19 10:57:28 +00:00
|
|
|
#ifdef SHADER_MODEL // make safe to include in resource file to enforce dependency
|
2011-07-25 11:16:01 +00:00
|
|
|
|
2011-02-19 10:57:28 +00:00
|
|
|
Texture2D Texture;
|
|
|
|
SamplerState Sampler;
|
|
|
|
|
|
|
|
cbuffer cb0
|
|
|
|
{
|
|
|
|
float2 ZrH;
|
|
|
|
float hH;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PS_INPUT
|
|
|
|
{
|
|
|
|
float4 p : SV_Position;
|
|
|
|
float2 t : TEXCOORD0;
|
|
|
|
};
|
|
|
|
|
|
|
|
float4 ps_main0(PS_INPUT input) : SV_Target0
|
|
|
|
{
|
|
|
|
clip(frac(input.t.y * hH) - 0.5);
|
|
|
|
|
|
|
|
return Texture.Sample(Sampler, input.t);
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 ps_main1(PS_INPUT input) : SV_Target0
|
|
|
|
{
|
|
|
|
clip(0.5 - frac(input.t.y * hH));
|
|
|
|
|
|
|
|
return Texture.Sample(Sampler, input.t);
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 ps_main2(PS_INPUT input) : SV_Target0
|
|
|
|
{
|
|
|
|
float4 c0 = Texture.Sample(Sampler, input.t - ZrH);
|
|
|
|
float4 c1 = Texture.Sample(Sampler, input.t);
|
|
|
|
float4 c2 = Texture.Sample(Sampler, input.t + ZrH);
|
|
|
|
|
|
|
|
return (c0 + c1 * 2 + c2) / 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 ps_main3(PS_INPUT input) : SV_Target0
|
|
|
|
{
|
|
|
|
return Texture.Sample(Sampler, input.t);
|
|
|
|
}
|
|
|
|
#endif
|