You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
13 lines
359 B
Plaintext
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;
|
|
}
|