text rendering

This commit is contained in:
2025-01-08 17:54:25 -06:00
parent 9d5243e9c3
commit 293eb509da
5 changed files with 128 additions and 219 deletions

View File

@@ -8,5 +8,6 @@ float4 main(PSInput input) : SV_TARGET
{
float4 color = diffuse.Sample(smp, input.uv);
color *= input.color;
clip(color.a-0.01);
return color;
}