You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
743 B
C++
22 lines
743 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "ScreenPass.h"
|
|
#include "OverridePassSequence.h"
|
|
|
|
class FSceneTextureParameters;
|
|
|
|
struct FVisualizeShadingModelInputs
|
|
{
|
|
// [Optional] Render to the specified output. If invalid, a new texture is created and returned.
|
|
FScreenPassRenderTarget OverrideOutput;
|
|
|
|
// [Required] The scene color to composite with the shading model visualization.
|
|
FScreenPassTexture SceneColor;
|
|
|
|
// [Required] The scene textures used to visualize shading models.
|
|
TRDGUniformBufferRef<FSceneTextureUniformParameters> SceneTextures = nullptr;
|
|
};
|
|
|
|
FScreenPassTexture AddVisualizeShadingModelPass(FRDGBuilder& GraphBuilder, const FViewInfo& View, const FVisualizeShadingModelInputs& Inputs); |