mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 10:41:35 -06:00
10 lines
167 B
HLSL
10 lines
167 B
HLSL
#include "movie_common.hlsli"
|
|
|
|
Interpolators main(in VertexShaderInput In)
|
|
{
|
|
Interpolators Out;
|
|
Out.ProjPos = In.ObjPos;
|
|
Out.UV = In.UV;
|
|
return Out;
|
|
}
|