Files
UnrealEngine/Engine/Shaders/Private/VTtest.usf
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 lines
207 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Common.ush"
void VirtualTextureTestPS(
noperspective float4 UVAndScreenPos : TEXCOORD0,
out float4 OutColor : SV_Target0
)
{
OutColor = 0;
}