Files
UnrealEngineUWP/Engine/Shaders/SimpleF32VertexShader.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

17 lines
460 B
Plaintext

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
DownsampleVertexShader_F32.usf: Filter vertex shader source.
=============================================================================*/
void main(
float4 Position : POSITION,
float2 UV : TEXCOORD0,
out float2 OutUV : TEXCOORD0,
out float4 OutPosition : POSITION
)
{
OutPosition = Position;
OutUV = UV;
}