1
0
Fork 0

Initial Commit

This commit is contained in:
Henrik Hautakoski 2025-07-04 07:34:31 +02:00
commit 5314a9d5c5
308 changed files with 190647 additions and 0 deletions

View file

@ -0,0 +1,20 @@
Texture2D<float4> tex : register(t0, space2);
SamplerState samp : register(s0, space2);
struct PSInput {
float4 color : TEXCOORD0;
float2 tex_coord : TEXCOORD1;
};
struct PSOutput {
float4 color : SV_Target;
};
PSOutput main(PSInput input) {
PSOutput output;
const float smoothing = (1.0 / 16.0);
float distance = tex.Sample(samp, input.tex_coord).a;
float alpha = smoothstep(0.5 - smoothing, 0.5 + smoothing, distance);
output.color = float4(input.color.rgb, input.color.a * alpha);
return output;
}