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

19 lines
502 B
Plaintext

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
ScreenPixelShader.usf: Filter pixel shader source.
=============================================================================*/
#include "Common.usf"
Texture2D InTexture;
SamplerState InTextureSampler;
void Main(
FScreenVertexOutput Input,
out float4 OutColor : SV_Target0
)
{
OutColor = Texture2DSample(InTexture, InTextureSampler, Input.UV);
}