gwnavruntime/kernel/SF_Stats.h Source File

SF_Stats.h
Go to the documentation of this file.
1 /*
2  * Copyright 2016 Autodesk, Inc. All rights reserved.
3  * Use of this software is subject to the terms of the Autodesk license agreement and any attachments or Appendices thereto provided at the time of installation or download,
4  * or which otherwise accompanies this software in either electronic or hard copy form, or which is signed by you and accepted by Autodesk.
5  */
6 
7 #pragma once
8 
9 namespace Kaim
10 {
11 
12 // legacy stuff
13 enum StatBasicValues
14 {
15  // Starting values
16  StatGroup_Default = 0,
17  StatGroup_Core = 16,
18 
19  Stat_Mem = StatGroup_Default + 1,
20  Stat_Default_Mem = Stat_Mem + 1,
21 
22  // General Memory
23  Stat_String_Mem,
24  Stat_Debug_Mem,
25  Stat_EndDefault_Mem, //< used by other layers to start defining their own memory stats
26 
27  // Core entries.
28  StatHeap_Start = StatGroup_Core,
29 
30  // How many entries we support by default
31  Stat_MaxId = 64 << 6, // 64 * 64 = 4096
32  Stat_EntryCount = 512,
33 
34  // Other values
35  HeapId_Default = 1,
36 };
37 
38 enum HeapId
39 {
40  HeapId_Global = HeapId_Default,
41 };
42 
43 }
The Autodesk Navigation namespace.
Definition: gamekitcrowddispersion.cpp:17