This commit is contained in:
Vasily Petrov 2026-06-18 01:18:29 +03:00
commit 2fe6ca2f65
1473 changed files with 251771 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#include "common.hlsli"
Texture2D s_patched_normal;
float4 main(float2 tc : TEXCOORD0) : SV_Target
{
float3 Normal = s_patched_normal.Sample(smp_nofilter, tc).xyz;
return float4(Normal, 1.0f);
}