17 lines
497 B
C++
17 lines
497 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
GenerateConservativeDepth.h
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
#include "RenderGraphResources.h"
|
|
|
|
class FViewInfo;
|
|
class FRDGBuilder;
|
|
|
|
|
|
void AddGenerateConservativeDepthBufferPass(FViewInfo& View, FRDGBuilder& GraphBuilder, FRDGTextureRef ConservativeDepthTexture, int32 DestinationPixelSizeAtFullRes);
|
|
|