You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #rb Guillaume.Abadie #preflight 6389d42c9242c013261975a7 [CL 23370764 by tiago costa in ue5-main branch]
23 lines
669 B
C++
23 lines
669 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "OverridePassSequence.h"
|
|
|
|
class FEyeAdaptationParameters;
|
|
|
|
struct FVisualizeHDRInputs
|
|
{
|
|
// [Optional] Render to the specified output. If invalid, a new texture is created and returned.
|
|
FScreenPassRenderTarget OverrideOutput;
|
|
|
|
FScreenPassTexture SceneColor;
|
|
FScreenPassTexture SceneColorBeforeTonemap;
|
|
|
|
FRDGTextureRef HistogramTexture = nullptr;
|
|
FRDGBufferRef EyeAdaptationBuffer = nullptr;
|
|
|
|
const FEyeAdaptationParameters* EyeAdaptationParameters = nullptr;
|
|
};
|
|
|
|
FScreenPassTexture AddVisualizeHDRPass(FRDGBuilder& GraphBuilder, const FViewInfo& View, const FVisualizeHDRInputs& Inputs); |