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

14 lines
458 B
Plaintext

// Copyright Epic Games, Inc. All Rights Reserved.
/*=============================================================================
SimplePixelShader_F32.usf: pixel shader source.
=============================================================================*/
sampler2D SourceTexture;
void main( float2 UV : TEXCOORD0, out float4 OutColor : COLOR0 )
{
float Result = tex2D( SourceTexture, UV ).r;
OutColor = float4( Result, Result, Result, Result );
}