You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @ 16445039 and Dev-PerfTest @ 16444526 [CL 16488106 by aurel cordonnier in ue5-main branch]
29 lines
814 B
C++
29 lines
814 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Render/PostProcess/IDisplayClusterPostProcess.h"
|
|
|
|
class IDisplayClusterProjectionPolicyFactory;
|
|
|
|
|
|
class FDisplayClusterPostprocessModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
FDisplayClusterPostprocessModule();
|
|
virtual ~FDisplayClusterPostprocessModule();
|
|
|
|
public:
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
// IModuleInterface
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
virtual void StartupModule() override;
|
|
virtual void ShutdownModule() override;
|
|
|
|
private:
|
|
// Available postprocess policy
|
|
TMap<FString, TSharedPtr<IDisplayClusterPostProcess, ESPMode::ThreadSafe>> PostprocessAssets;
|
|
};
|