Files
UnrealEngine/Engine/Shaders/Private/NullPixelShader.usf
2025-05-18 13:04:45 +08:00

13 lines
359 B
HLSL

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