UnleashedRecomp/UnleashedRecomp/gpu/shader/hlsl/movie_vs.hlsl
squidbus d62e55ad22 Add support for Metal on macOS.
Co-authored-by: Isaac Marovitz <isaacryu@icloud.com>
2025-08-14 15:42:58 -07:00

10 lines
230 B
HLSL

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