You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb mihnea.balta, zach.bethel #jira UE-194422 [CL 29989581 by ruslan idrisov in ue5-main branch]
26 lines
665 B
C
26 lines
665 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "TranslucentPassResource.h"
|
|
#include "PathTracingResources.h"
|
|
|
|
struct FPostProcessingInputs
|
|
{
|
|
TRDGUniformBufferRef<FSceneTextureUniformParameters> SceneTextures = nullptr;
|
|
FRDGTextureRef ViewFamilyTexture = nullptr;
|
|
FRDGTextureRef CustomDepthTexture = nullptr;
|
|
FRDGTextureRef ExposureIlluminance = nullptr;
|
|
FTranslucencyViewResourcesMap TranslucencyViewResourcesMap;
|
|
FPathTracingResources PathTracingResources;
|
|
|
|
bool bSeparateCustomStencil = false;
|
|
|
|
void Validate() const
|
|
{
|
|
check(SceneTextures);
|
|
check(ViewFamilyTexture);
|
|
check(TranslucencyViewResourcesMap.IsValid());
|
|
}
|
|
};
|