|
| #define | REG_RUNTIME_LAYER_CLASS(type, class) LayerFactory::registerLayer(#type, _layerDynamicRegisterer<class>); |
| | Registers layer class in runtime. More...
|
| |
| #define | REG_RUNTIME_LAYER_FUNC(type, constuctorFunc) LayerFactory::registerLayer(#type, constuctorFunc); |
| | Registers layer constructor in runtime. More...
|
| |
| #define | REG_STATIC_LAYER_CLASS(type, class) |
| | Registers layer class on module load time. More...
|
| |
| #define | REG_STATIC_LAYER_FUNC(type, constuctorFunc) static _LayerStaticRegisterer __LayerStaticRegisterer_##type(#type, constuctorFunc); |
| | Registers layer constructor on module load time. More...
|
| |