You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
743 B
C
25 lines
743 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "OverridePassSequence.h"
|
||
|
|
|
||
|
|
class FEyeAdaptationParameters;
|
||
|
|
|
||
|
|
struct FVisualizeLocalExposureInputs
|
||
|
|
{
|
||
|
|
// [Optional] Render to the specified output. If invalid, a new texture is created and returned.
|
||
|
|
FScreenPassRenderTarget OverrideOutput;
|
||
|
|
|
||
|
|
FScreenPassTexture SceneColor;
|
||
|
|
FScreenPassTexture HDRSceneColor;
|
||
|
|
|
||
|
|
FRDGTextureRef EyeAdaptationTexture = nullptr;
|
||
|
|
|
||
|
|
FRDGTextureRef LumBilateralGridTexture = nullptr;
|
||
|
|
FRDGTextureRef BlurredLumTexture = nullptr;
|
||
|
|
|
||
|
|
const FEyeAdaptationParameters* EyeAdaptationParameters = nullptr;
|
||
|
|
};
|
||
|
|
|
||
|
|
FScreenPassTexture AddVisualizeLocalExposurePass(FRDGBuilder& GraphBuilder, const FViewInfo& View, const FVisualizeLocalExposureInputs& Inputs);
|