You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 63d358c85c69f453c1f79c37 [CL 23889591 by christopher waters in ue5-main branch]
16 lines
352 B
C++
16 lines
352 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "CustomResourcePool.h"
|
|
#include "CoreGlobals.h"
|
|
|
|
ICustomResourcePool* GCustomResourcePool = nullptr;
|
|
|
|
void ICustomResourcePool::TickPoolElements(FRHICommandListImmediate& RHICmdList)
|
|
{
|
|
check(IsInRenderingThread());
|
|
if (GCustomResourcePool)
|
|
{
|
|
GCustomResourcePool->Tick(RHICmdList);
|
|
}
|
|
}
|