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