Files
UnrealEngine/Engine/Shaders/Private/NullPixelShader.usf
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
}