Files
UnrealEngineUWP/Engine/Shaders/SimpleF32VertexShader.usf
2014-03-14 14:13:41 -04:00

17 lines
460 B
Plaintext

// Copyright 1998-2014 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;
}