You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
549 B
16 lines
549 B
// Copyright Voulz 2021-2025. All Rights Reserved.
|
|
|
|
#include "MovieGraphArchVisDeferredPass.h"
|
|
|
|
|
|
void FMovieGraphArchVisDeferredPass::Render(const FMovieGraphTraversalContext& InFrameTraversalContext, const FMovieGraphTimeStepData& InTimeData)
|
|
{
|
|
FMovieGraphDeferredPass::Render(InFrameTraversalContext, InTimeData);
|
|
}
|
|
|
|
|
|
void FMovieGraphArchVisPathTracerPass::Render(const FMovieGraphTraversalContext& InFrameTraversalContext, const FMovieGraphTimeStepData& InTimeData)
|
|
{
|
|
FMovieGraphDeferredPass::Render(InFrameTraversalContext, InTimeData);
|
|
}
|
|
|
|
|