Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/gpu/shader/movie_vs.hlsl
2025-03-23 17:25:40 +03:00

11 lines
224 B
HLSL

#include "movie_common.hlsli"
Interpolators main(in VertexShaderInput In)
{
Interpolators Out;
Out.ProjPos = In.ObjPos;
Out.ProjPos.xy += g_HalfPixelOffset * Out.ProjPos.w;
Out.UV = In.UV;
return Out;
}