docs: add plugin setup guide

This commit is contained in:
2026-05-30 18:33:24 +12:00
parent f3db41c402
commit b61043a3fe
1776 changed files with 122386 additions and 2 deletions
@@ -0,0 +1,28 @@
#pragma once
#include "Scaleform/S/StatBasicValues.h"
namespace Scaleform
{
enum StatGroup : std::int32_t
{
kStatGroup_Renderer = 1 << 6,
kStatGroup_RenderGen = 2 << 6,
kStatGroup_GFxFontCache = 3 << 6,
kStatGroup_GFxMovieData = 4 << 6,
kStatGroup_GFxMovieView = 5 << 6,
kStatGroup_GFxRenderCache = 6 << 6,
kStatGroup_GFxPlayer = 7 << 6,
kStatGroup_GFxIME = 8 << 6,
kStatGroup_GFxAmp = 9 << 6,
// General Memory
kStat_Image_Mem = kStat_Default_Mem + 1,
kStat_String_Mem,
kStat_Debug_Mem,
kStat_DebugHUD_Mem,
kStat_DebugTracker_Mem,
kStat_StatBag_Mem,
};
}