Files
alexei lebedev 2815323fbc [mutable] Moved the Mutable plugin out of Experimental status into Beta.
#jira UE-223488
#rb jordi.rovira
#tests Editor
#rnx

#virtualized

[CL 36035608 by alexei lebedev in ue5-main branch]
2024-09-05 07:16:19 -04:00

34 lines
461 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "MuR/BlockCompression/Miro/Miro.h"
#include "MuR/MutableMemory.h"
namespace mu
{
static int s_initialized = 0;
static int s_finalized = 0;
void Initialize()
{
if (!s_initialized)
{
s_initialized = 1;
s_finalized = 0;
miro::initialize();
}
}
void Finalize()
{
if (s_initialized && !s_finalized)
{
miro::finalize();
s_finalized = 1;
s_initialized = 0;
}
}
}