13 lines
359 B
HLSL
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;
|
|
}
|