UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ViewSnapshotCache.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5class FViewInfo;
6
7namespace ViewSnapshotCache
8{
9 // Creates and returns a snapshot from the input view.
10 extern FViewInfo* Create(const FViewInfo* View);
11
12 // Called on the render thread after rendering to prepare snapshots for destruction.
13 extern void Deallocate();
14
15 // Called on a worker thread to destroy snapshots.
16 extern void Destroy();
17}
Definition SceneRendering.h:1132
@ Destroy
Definition BehaviorTreeTypes.h:136
Definition ViewSnapshotCache.cpp:122