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

9 lines
183 B
HLSL

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Common.ush"
void MainPS(float4 SVPos : SV_Position, out float OutDepth : SV_Depth)
{
OutDepth = SVPos.z;
}