Files
UnrealEngine/Engine/Source/Runtime/Renderer/Private/PostProcess/PostProcessStreamingAccuracyLegend.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
394 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ScreenPass.h"
struct FStreamingAccuracyLegendInputs
{
FScreenPassRenderTarget OverrideOutput;
FScreenPassTexture SceneColor;
TArrayView<const FLinearColor> Colors;
};
FScreenPassTexture AddStreamingAccuracyLegendPass(FRDGBuilder& GraphBuilder, const FViewInfo& View, const FStreamingAccuracyLegendInputs& Inputs);