Files
UnrealEngine/Engine/Source/Runtime/Apple/MetalRHI/Private/Shaders/MetalCompiledShaderCache.cpp
2025-05-18 13:04:45 +08: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;
}