mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-05 19:19:43 -06:00
11 lines
224 B
HLSL
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;
|
|
}
|