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

13 lines
359 B
Plaintext

// Copyright Epic Games, Inc. All Rights Reserved.
/*=============================================================================
NullPixelShader.usf: Dummy pixel shader to use instead of SetPixelShader(NULL).
=============================================================================*/
#include "Common.ush"
float4 Main() : SV_Target0
{
return 0;
}