Files
UnrealEngine/Engine/Source/Runtime/Apple/MetalRHI/Private/Shaders/MetalCompiledShaderCache.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

16 lines
535 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
/*=============================================================================
MetalCompiledShaderCache.cpp: Metal RHI Compiled Shader Cache.
=============================================================================*/
#include "MetalCompiledShaderCache.h"
#include "MetalCompiledShaderKey.h"
#include "MetalCompiledShaderCache.h"
FMetalCompiledShaderCache& GetMetalCompiledShaderCache()
{
static FMetalCompiledShaderCache CompiledShaderCache;
return CompiledShaderCache;
}