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

15 lines
510 B
Plaintext

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
PostProcessPassThrough.usf: PostProcessing Pass Through
=============================================================================*/
#include "Common.usf"
#include "PostProcessCommon.usf"
// pixel shader
void MainPS(float4 InUV : TEXCOORD0, out float4 OutColor : SV_Target0)
{
OutColor = Texture2DSample(PostprocessInput0, PostprocessInput0Sampler, InUV.xy);
}