Skip to main content

helios-engine-config.h File

Macro Definitions Index

#defineHELIOS_DEBUG   1
#defineHELIOS_FUNCTION_SIGNATURE   __func__
#defineENTITY_MANAGER_DEFAULT_CAPACITY   1000
#defineUI_ACTION_COMMAND_HANDLER_DEFAULT_CAPACITY   100
#defineSTATE_TO_IDMAP_DEFAULT_CAPACITY   20
#defineINACTIVE_FOCUSED_ITEMS_CACHE_CAPACITY   20
#defineDEFAULT_ENTITY_MANAGER_CAPACITY   1000
#defineDEFAULT_GAMEOBJECT_CAPACITY   1000
#defineDEFAULT_GAMEOBJECT_POOL_CAPACITY   1000
#defineDEFAULT_WINDOW_POOL_CAPACITY   5
#defineDEFAULT_SHADER_POOL_CAPACITY   100
#defineDEFAULT_MESH_POOL_CAPACITY   100
#defineDEFAULT_MATERIAL_POOL_CAPACITY   100
#defineDEFAULT_VIEWPORT_POOL_CAPACITY   10
#defineDEFAULT_FRAMEBUFFER_POOL_CAPACITY   10
#defineDEFAULT_SCENE_POOL_CAPACITY   10
#defineHELIOS_DEFAULT_VISIBLE_MEMBER_CAPACITY   1000
#defineDEFAULT_INSTANCE_RENDER_BATCH_CAPACITY   100
#defineDEFAULT_INSTANCE_DATA_CAPACITY   1000
#defineDEFAULT_RUNTIME_HANDLE_REGISTRY_CAPACITY   50

Macro Definitions

DEFAULT_ENTITY_MANAGER_CAPACITY

#define DEFAULT_ENTITY_MANAGER_CAPACITY   1000

Definition at line 21 of file helios-engine-config.h.

21#define DEFAULT_ENTITY_MANAGER_CAPACITY 1000

DEFAULT_FRAMEBUFFER_POOL_CAPACITY

#define DEFAULT_FRAMEBUFFER_POOL_CAPACITY   10

Definition at line 31 of file helios-engine-config.h.

31#define DEFAULT_FRAMEBUFFER_POOL_CAPACITY 10

DEFAULT_GAMEOBJECT_CAPACITY

#define DEFAULT_GAMEOBJECT_CAPACITY   1000

Definition at line 23 of file helios-engine-config.h.

23#define DEFAULT_GAMEOBJECT_CAPACITY 1000

DEFAULT_GAMEOBJECT_POOL_CAPACITY

#define DEFAULT_GAMEOBJECT_POOL_CAPACITY   1000

Definition at line 25 of file helios-engine-config.h.

25#define DEFAULT_GAMEOBJECT_POOL_CAPACITY 1000

DEFAULT_INSTANCE_DATA_CAPACITY

#define DEFAULT_INSTANCE_DATA_CAPACITY   1000

Definition at line 37 of file helios-engine-config.h.

37#define DEFAULT_INSTANCE_DATA_CAPACITY 1000

DEFAULT_INSTANCE_RENDER_BATCH_CAPACITY

#define DEFAULT_INSTANCE_RENDER_BATCH_CAPACITY   100

Definition at line 36 of file helios-engine-config.h.

36#define DEFAULT_INSTANCE_RENDER_BATCH_CAPACITY 100

DEFAULT_MATERIAL_POOL_CAPACITY

#define DEFAULT_MATERIAL_POOL_CAPACITY   100

Definition at line 29 of file helios-engine-config.h.

29#define DEFAULT_MATERIAL_POOL_CAPACITY 100

DEFAULT_MESH_POOL_CAPACITY

#define DEFAULT_MESH_POOL_CAPACITY   100

Definition at line 28 of file helios-engine-config.h.

28#define DEFAULT_MESH_POOL_CAPACITY 100

DEFAULT_RUNTIME_HANDLE_REGISTRY_CAPACITY

#define DEFAULT_RUNTIME_HANDLE_REGISTRY_CAPACITY   50

Definition at line 39 of file helios-engine-config.h.

39#define DEFAULT_RUNTIME_HANDLE_REGISTRY_CAPACITY 50

DEFAULT_SCENE_POOL_CAPACITY

#define DEFAULT_SCENE_POOL_CAPACITY   10

Definition at line 32 of file helios-engine-config.h.

32#define DEFAULT_SCENE_POOL_CAPACITY 10

DEFAULT_SHADER_POOL_CAPACITY

#define DEFAULT_SHADER_POOL_CAPACITY   100

Definition at line 27 of file helios-engine-config.h.

27#define DEFAULT_SHADER_POOL_CAPACITY 100

DEFAULT_VIEWPORT_POOL_CAPACITY

#define DEFAULT_VIEWPORT_POOL_CAPACITY   10

Definition at line 30 of file helios-engine-config.h.

30#define DEFAULT_VIEWPORT_POOL_CAPACITY 10

DEFAULT_WINDOW_POOL_CAPACITY

#define DEFAULT_WINDOW_POOL_CAPACITY   5

Definition at line 26 of file helios-engine-config.h.

26#define DEFAULT_WINDOW_POOL_CAPACITY 5

ENTITY_MANAGER_DEFAULT_CAPACITY

#define ENTITY_MANAGER_DEFAULT_CAPACITY   1000

Definition at line 13 of file helios-engine-config.h.

13#define ENTITY_MANAGER_DEFAULT_CAPACITY 1000

HELIOS_DEBUG

#define HELIOS_DEBUG   1

Definition at line 2 of file helios-engine-config.h.

2 #define HELIOS_DEBUG 1

HELIOS_DEFAULT_VISIBLE_MEMBER_CAPACITY

#define HELIOS_DEFAULT_VISIBLE_MEMBER_CAPACITY   1000

Definition at line 34 of file helios-engine-config.h.

34#define HELIOS_DEFAULT_VISIBLE_MEMBER_CAPACITY 1000

HELIOS_FUNCTION_SIGNATURE

#define HELIOS_FUNCTION_SIGNATURE   __func__

Definition at line 10 of file helios-engine-config.h.

10 #define HELIOS_FUNCTION_SIGNATURE __func__

INACTIVE_FOCUSED_ITEMS_CACHE_CAPACITY

#define INACTIVE_FOCUSED_ITEMS_CACHE_CAPACITY   20

Definition at line 19 of file helios-engine-config.h.

19#define INACTIVE_FOCUSED_ITEMS_CACHE_CAPACITY 20

STATE_TO_IDMAP_DEFAULT_CAPACITY

#define STATE_TO_IDMAP_DEFAULT_CAPACITY   20

Definition at line 17 of file helios-engine-config.h.

17#define STATE_TO_IDMAP_DEFAULT_CAPACITY 20

UI_ACTION_COMMAND_HANDLER_DEFAULT_CAPACITY

#define UI_ACTION_COMMAND_HANDLER_DEFAULT_CAPACITY   100

Definition at line 15 of file helios-engine-config.h.

15#define UI_ACTION_COMMAND_HANDLER_DEFAULT_CAPACITY 100

File Listing

The file content with the documentation metadata removed is:

1#ifndef NDEBUG
2 #define HELIOS_DEBUG 1
3#endif
4
5#if defined(_MSC_VER)
6 #define HELIOS_FUNCTION_SIGNATURE __FUNCSIG__
7#elif defined(__clang__) || defined(__GNUC__)
8 #define HELIOS_FUNCTION_SIGNATURE __PRETTY_FUNCTION__
9#else
10 #define HELIOS_FUNCTION_SIGNATURE __func__
11#endif
12
13#define ENTITY_MANAGER_DEFAULT_CAPACITY 1000
14
15#define UI_ACTION_COMMAND_HANDLER_DEFAULT_CAPACITY 100
16
17#define STATE_TO_IDMAP_DEFAULT_CAPACITY 20
18
19#define INACTIVE_FOCUSED_ITEMS_CACHE_CAPACITY 20
20
21#define DEFAULT_ENTITY_MANAGER_CAPACITY 1000
22
23#define DEFAULT_GAMEOBJECT_CAPACITY 1000
24
25#define DEFAULT_GAMEOBJECT_POOL_CAPACITY 1000
26#define DEFAULT_WINDOW_POOL_CAPACITY 5
27#define DEFAULT_SHADER_POOL_CAPACITY 100
28#define DEFAULT_MESH_POOL_CAPACITY 100
29#define DEFAULT_MATERIAL_POOL_CAPACITY 100
30#define DEFAULT_VIEWPORT_POOL_CAPACITY 10
31#define DEFAULT_FRAMEBUFFER_POOL_CAPACITY 10
32#define DEFAULT_SCENE_POOL_CAPACITY 10
33
34#define HELIOS_DEFAULT_VISIBLE_MEMBER_CAPACITY 1000
35
36#define DEFAULT_INSTANCE_RENDER_BATCH_CAPACITY 100
37#define DEFAULT_INSTANCE_DATA_CAPACITY 1000
38
39#define DEFAULT_RUNTIME_HANDLE_REGISTRY_CAPACITY 50

Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.9.8.