Files
UnrealEngineUWP/Engine/Shaders/ResolveVertexShader.usf
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

19 lines
522 B
Plaintext

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
ResolveVertexShader.usf: Resolve vertex shader source.
=============================================================================*/
#include "Common.usf"
void Main(
float2 InPosition : ATTRIBUTE0,
float2 InUV : ATTRIBUTE1,
out float2 OutUV : TEXCOORD0,
out float4 OutPosition : SV_POSITION
)
{
OutPosition = float4( InPosition, 0, 1 );
OutUV = InUV;
}