mirror of https://github.com/PCSX2/pcsx2.git
509 lines
8.2 KiB
HLSL
509 lines
8.2 KiB
HLSL
cbuffer cb0
|
|
{
|
|
float4 VertexScale;
|
|
float4 VertexOffset;
|
|
float2 TextureScale;
|
|
};
|
|
|
|
struct VS_INPUT
|
|
{
|
|
uint2 p : POSITION0;
|
|
uint z : POSITION1;
|
|
float2 t : TEXCOORD0;
|
|
float q : TEXCOORD1;
|
|
float4 c : COLOR0;
|
|
float4 f : COLOR1;
|
|
};
|
|
|
|
struct VS_OUTPUT
|
|
{
|
|
float4 p : SV_Position;
|
|
float4 t : TEXCOORD0;
|
|
float4 c : COLOR0;
|
|
};
|
|
|
|
#ifndef VS_BPP
|
|
#define VS_BPP 0
|
|
#define VS_BPPZ 0
|
|
#define VS_TME 1
|
|
#define VS_FST 1
|
|
#define VS_PRIM 0
|
|
#endif
|
|
|
|
VS_OUTPUT vs_main(VS_INPUT input)
|
|
{
|
|
if(VS_BPPZ == 1) // 24
|
|
{
|
|
input.z = input.z & 0xffffff;
|
|
}
|
|
else if(VS_BPPZ == 2) // 16
|
|
{
|
|
input.z = input.z & 0xffff;
|
|
}
|
|
|
|
if(VS_PRIM == 6) // sprite
|
|
{
|
|
//input.p.xy = (input.p.xy + 15) & ~15; // HACK
|
|
}
|
|
|
|
VS_OUTPUT output;
|
|
|
|
output.p = float4(input.p, input.z, 0) * VertexScale - VertexOffset;
|
|
|
|
if(VS_TME == 1)
|
|
{
|
|
if(VS_FST == 1)
|
|
{
|
|
output.t.xy = input.t * TextureScale;
|
|
output.t.w = 1.0f;
|
|
}
|
|
else
|
|
{
|
|
output.t.xy = input.t;
|
|
output.t.w = input.q;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
output.t.xy = 0;
|
|
output.t.w = 1.0f;
|
|
}
|
|
|
|
output.c = input.c;
|
|
output.t.z = input.f.a;
|
|
|
|
return output;
|
|
}
|
|
|
|
#ifndef IIP
|
|
#define IIP 0
|
|
#define PRIM 3
|
|
#endif
|
|
|
|
#if PRIM == 0
|
|
|
|
[maxvertexcount(1)]
|
|
void gs_main(point VS_OUTPUT input[1], inout PointStream<VS_OUTPUT> stream)
|
|
{
|
|
stream.Append(input[0]);
|
|
}
|
|
|
|
#elif PRIM == 1
|
|
|
|
[maxvertexcount(2)]
|
|
void gs_main(line VS_OUTPUT input[2], inout LineStream<VS_OUTPUT> stream)
|
|
{
|
|
#if IIP == 0
|
|
input[0].c = input[1].c;
|
|
#endif
|
|
|
|
stream.Append(input[0]);
|
|
stream.Append(input[1]);
|
|
}
|
|
|
|
#elif PRIM == 2
|
|
|
|
[maxvertexcount(3)]
|
|
void gs_main(triangle VS_OUTPUT input[3], inout TriangleStream<VS_OUTPUT> stream)
|
|
{
|
|
#if IIP == 0
|
|
input[0].c = input[2].c;
|
|
input[1].c = input[2].c;
|
|
#endif
|
|
|
|
stream.Append(input[0]);
|
|
stream.Append(input[1]);
|
|
stream.Append(input[2]);
|
|
}
|
|
|
|
#elif PRIM == 3
|
|
|
|
[maxvertexcount(4)]
|
|
void gs_main(line VS_OUTPUT input[2], inout TriangleStream<VS_OUTPUT> stream)
|
|
{
|
|
input[0].p.z = input[1].p.z;
|
|
input[0].t.zw = input[1].t.zw;
|
|
|
|
#if IIP == 0
|
|
input[0].c = input[1].c;
|
|
#endif
|
|
|
|
VS_OUTPUT lb = input[1];
|
|
|
|
lb.p.x = input[0].p.x;
|
|
lb.t.x = input[0].t.x;
|
|
|
|
VS_OUTPUT rt = input[1];
|
|
|
|
rt.p.y = input[0].p.y;
|
|
rt.t.y = input[0].t.y;
|
|
|
|
stream.Append(input[0]);
|
|
stream.Append(lb);
|
|
stream.Append(rt);
|
|
stream.Append(input[1]);
|
|
}
|
|
|
|
#endif
|
|
|
|
Texture2D<float4> Texture;
|
|
Texture2D<float> Palette;
|
|
SamplerState TextureSampler;
|
|
SamplerState PaletteSampler;
|
|
|
|
cbuffer cb1
|
|
{
|
|
float3 FogColor;
|
|
float AREF;
|
|
float4 HalfTexel;
|
|
float2 WH;
|
|
float2 TA;
|
|
float4 MinMax;
|
|
float4 MinMaxF;
|
|
uint4 MskFix;
|
|
};
|
|
|
|
struct PS_INPUT
|
|
{
|
|
float4 p : SV_Position;
|
|
float4 t : TEXCOORD0;
|
|
float4 c : COLOR0;
|
|
};
|
|
|
|
struct PS_OUTPUT
|
|
{
|
|
float4 c0 : SV_Target0;
|
|
float4 c1 : SV_Target1;
|
|
};
|
|
|
|
#ifndef FST
|
|
#define FST 0
|
|
#define WMS 3
|
|
#define WMT 3
|
|
#define BPP 0
|
|
#define AEM 0
|
|
#define TFX 0
|
|
#define TCC 1
|
|
#define ATE 0
|
|
#define ATST 4
|
|
#define FOG 0
|
|
#define CLR1 0
|
|
#define FBA 0
|
|
#define AOUT 0
|
|
#define LTF 1
|
|
#endif
|
|
|
|
float4 Normalize16(float4 f)
|
|
{
|
|
return f / float4(0x001f, 0x03e0, 0x7c00, 0x8000);
|
|
}
|
|
|
|
float4 Extract16(uint i)
|
|
{
|
|
float4 f;
|
|
|
|
f.r = i & 0x001f;
|
|
f.g = i & 0x03e0;
|
|
f.b = i & 0x7c00;
|
|
f.a = i & 0x8000;
|
|
|
|
return f;
|
|
}
|
|
|
|
float4 wrapuv(float4 uv)
|
|
{
|
|
if(WMS == WMT)
|
|
{
|
|
if(WMS == 0)
|
|
{
|
|
uv = frac(uv);
|
|
}
|
|
else if(WMS == 1)
|
|
{
|
|
uv = saturate(uv);
|
|
}
|
|
else if(WMS == 2)
|
|
{
|
|
uv = clamp(uv, MinMax.xyxy, MinMax.zwzw);
|
|
}
|
|
else if(WMS == 3)
|
|
{
|
|
uv = (float4)(((int4)(uv * WH.xyxy) & MskFix.xyxy) | MskFix.zwzw) / WH.xyxy;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(WMS == 0)
|
|
{
|
|
uv.xz = frac(uv.xz);
|
|
}
|
|
else if(WMS == 1)
|
|
{
|
|
uv.xz = saturate(uv.xz);
|
|
}
|
|
else if(WMS == 2)
|
|
{
|
|
uv.xz = clamp(uv.xz, MinMax.xx, MinMax.zz);
|
|
}
|
|
else if(WMS == 3)
|
|
{
|
|
uv.xz = (float2)(((int2)(uv * WH.xyxy).xz & MskFix.xx) | MskFix.zz) / WH;
|
|
}
|
|
|
|
if(WMT == 0)
|
|
{
|
|
uv.yw = frac(uv.yw);
|
|
}
|
|
else if(WMT == 1)
|
|
{
|
|
uv.yw = saturate(uv.yw);
|
|
}
|
|
else if(WMT == 2)
|
|
{
|
|
uv.yw = clamp(uv.yw, MinMax.yy, MinMax.ww);
|
|
}
|
|
else if(WMT == 3)
|
|
{
|
|
uv.yw = (float2)(((int2)(uv * WH.xyxy).yw & MskFix.yy) | MskFix.ww) / WH;
|
|
}
|
|
}
|
|
|
|
return uv;
|
|
}
|
|
|
|
float2 clampuv(float2 uv)
|
|
{
|
|
if(WMS == 2 && WMT == 2)
|
|
{
|
|
uv = clamp(uv, MinMaxF.xy, MinMaxF.zw);
|
|
}
|
|
else if(WMS == 2)
|
|
{
|
|
uv.x = clamp(uv.x, MinMaxF.x, MinMaxF.z);
|
|
}
|
|
else if(WMT == 2)
|
|
{
|
|
uv.y = clamp(uv.y, MinMaxF.y, MinMaxF.w);
|
|
}
|
|
|
|
return uv;
|
|
}
|
|
|
|
float4 sample(float2 tc, float w)
|
|
{
|
|
if(FST == 0)
|
|
{
|
|
tc /= w;
|
|
}
|
|
|
|
float4 t;
|
|
/*
|
|
if(BPP < 3 && WMS < 2 && WMT < 2)
|
|
{
|
|
t = Texture.Sample(TextureSampler, tc);
|
|
}
|
|
*/
|
|
if(BPP < 3 && WMS < 3 && WMT < 3)
|
|
{
|
|
t = Texture.Sample(TextureSampler, clampuv(tc));
|
|
}
|
|
else
|
|
{
|
|
float w, h;
|
|
Texture.GetDimensions(w, h);
|
|
|
|
float4 uv2 = tc.xyxy + HalfTexel;
|
|
float2 dd = frac(uv2.xy * float2(w, h));
|
|
float4 uv = wrapuv(uv2);
|
|
|
|
float4 t00, t01, t10, t11;
|
|
|
|
if(BPP == 3) // 8HP + 32-bit palette
|
|
{
|
|
float4 a;
|
|
|
|
a.x = Texture.Sample(TextureSampler, uv.xy).a;
|
|
a.y = Texture.Sample(TextureSampler, uv.zy).a;
|
|
a.z = Texture.Sample(TextureSampler, uv.xw).a;
|
|
a.w = Texture.Sample(TextureSampler, uv.zw).a;
|
|
|
|
t00 = Palette.Sample(PaletteSampler, a.x);
|
|
t01 = Palette.Sample(PaletteSampler, a.y);
|
|
t10 = Palette.Sample(PaletteSampler, a.z);
|
|
t11 = Palette.Sample(PaletteSampler, a.w);
|
|
}
|
|
else if(BPP == 4) // 8HP + 16-bit palette
|
|
{
|
|
// TODO: yuck, just pre-convert the palette to 32-bit
|
|
}
|
|
else if(BPP == 5) // 16P
|
|
{
|
|
float4 r;
|
|
|
|
r.x = Texture.Sample(TextureSampler, uv.xy).r;
|
|
r.y = Texture.Sample(TextureSampler, uv.zy).r;
|
|
r.z = Texture.Sample(TextureSampler, uv.xw).r;
|
|
r.w = Texture.Sample(TextureSampler, uv.zw).r;
|
|
|
|
uint4 i = r * 65535;
|
|
|
|
t00 = Extract16(i.x);
|
|
t01 = Extract16(i.y);
|
|
t10 = Extract16(i.z);
|
|
t11 = Extract16(i.w);
|
|
}
|
|
else
|
|
{
|
|
t00 = Texture.Sample(TextureSampler, uv.xy);
|
|
t01 = Texture.Sample(TextureSampler, uv.zy);
|
|
t10 = Texture.Sample(TextureSampler, uv.xw);
|
|
t11 = Texture.Sample(TextureSampler, uv.zw);
|
|
}
|
|
|
|
if(LTF)
|
|
{
|
|
t = lerp(lerp(t00, t01, dd.x), lerp(t10, t11, dd.x), dd.y);
|
|
}
|
|
else
|
|
{
|
|
t = t00;
|
|
}
|
|
}
|
|
|
|
if(BPP == 1) // 24
|
|
{
|
|
t.a = AEM == 0 || any(t.rgb) ? TA.x : 0;
|
|
}
|
|
else if(BPP == 2 || BPP == 5) // 16 || 16P
|
|
{
|
|
if(BPP == 5)
|
|
{
|
|
t = Normalize16(t);
|
|
}
|
|
|
|
// a bit incompatible with up-scaling because the 1 bit alpha is interpolated
|
|
|
|
t.a = t.a >= 0.5 ? TA.y : AEM == 0 || any(t.rgb) ? TA.x : 0;
|
|
}
|
|
|
|
return t;
|
|
}
|
|
|
|
float4 tfx(float4 t, float4 c)
|
|
{
|
|
if(TFX == 0)
|
|
{
|
|
if(TCC == 0)
|
|
{
|
|
c.rgb = c.rgb * t.rgb * 255.0f / 128;
|
|
}
|
|
else
|
|
{
|
|
c = c * t * 255.0f / 128;
|
|
}
|
|
}
|
|
else if(TFX == 1)
|
|
{
|
|
if(TCC == 0)
|
|
{
|
|
c.rgb = t.rgb;
|
|
}
|
|
else
|
|
{
|
|
c = t;
|
|
}
|
|
}
|
|
else if(TFX == 2)
|
|
{
|
|
c.rgb = c.rgb * t.rgb * 255.0f / 128 + c.a;
|
|
|
|
if(TCC == 1)
|
|
{
|
|
c.a += t.a;
|
|
}
|
|
}
|
|
else if(TFX == 3)
|
|
{
|
|
c.rgb = c.rgb * t.rgb * 255.0f / 128 + c.a;
|
|
|
|
if(TCC == 1)
|
|
{
|
|
c.a = t.a;
|
|
}
|
|
}
|
|
|
|
return saturate(c);
|
|
}
|
|
|
|
void atst(float4 c)
|
|
{
|
|
if(ATE == 1)
|
|
{
|
|
if(ATST == 0)
|
|
{
|
|
discard;
|
|
}
|
|
else if(ATST == 2 || ATST == 3) // l, le
|
|
{
|
|
clip(AREF - c.a);
|
|
}
|
|
else if(ATST == 4) // e
|
|
{
|
|
clip(0.6f / 255 - abs(c.a - AREF)); // FIXME: 0.5f is too small
|
|
}
|
|
else if(ATST == 5 || ATST == 6) // ge, g
|
|
{
|
|
clip(c.a - AREF);
|
|
}
|
|
else if(ATST == 7) // ne
|
|
{
|
|
clip(abs(c.a - AREF) - 0.4f / 255); // FIXME: 0.5f is too much
|
|
}
|
|
}
|
|
}
|
|
|
|
float4 fog(float4 c, float f)
|
|
{
|
|
if(FOG == 1)
|
|
{
|
|
c.rgb = lerp(FogColor.rgb, c.rgb, f);
|
|
}
|
|
|
|
return c;
|
|
}
|
|
|
|
PS_OUTPUT ps_main(PS_INPUT input)
|
|
{
|
|
float4 t = sample(input.t.xy, input.t.w);
|
|
|
|
float4 c = tfx(t, input.c);
|
|
|
|
atst(c);
|
|
|
|
c = fog(c, input.t.z);
|
|
|
|
if(CLR1 == 1) // needed for Cd * (As/Ad/F + 1) blending modes
|
|
{
|
|
c.rgb = 1;
|
|
}
|
|
|
|
PS_OUTPUT output;
|
|
|
|
output.c1 = c.a * 2; // used for alpha blending
|
|
|
|
if(AOUT == 1) // 16 bit output
|
|
{
|
|
float a = 128.0f / 255; // alpha output will be 0x80
|
|
|
|
c.a = FBA == 1 ? a : step(0.5, c.a) * a;
|
|
}
|
|
else if(FBA == 1)
|
|
{
|
|
if(c.a < 0.5) c.a += 0.5;
|
|
}
|
|
|
|
output.c0 = c;
|
|
|
|
return output;
|
|
}
|