Files
UnrealEngineUWP/Engine/Shaders/Private/SimpleF32VertexShader.ush
Marc Audy 360d078ca3 Second batch of remaining Engine copyright updates.
#rnx
#rb none

[CL 10871248 by Marc Audy in Main branch]
2019-12-27 09:26:59 -05:00

17 lines
450 B
Plaintext

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