Files
UnrealEngine/Engine/Source/Runtime/RenderCore/Private/CustomResourcePool.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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);
}
}