Refactor module initialization
* Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
This commit is contained in:
@ -34,11 +34,19 @@
|
||||
|
||||
static ImageLoaderWEBP *image_loader_webp = nullptr;
|
||||
|
||||
void register_webp_types() {
|
||||
void initialize_webp_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
|
||||
image_loader_webp = memnew(ImageLoaderWEBP);
|
||||
ImageLoader::add_image_format_loader(image_loader_webp);
|
||||
}
|
||||
|
||||
void unregister_webp_types() {
|
||||
void uninitialize_webp_module(ModuleInitializationLevel p_level) {
|
||||
if (p_level != MODULE_INITIALIZATION_LEVEL_SCENE) {
|
||||
return;
|
||||
}
|
||||
|
||||
memdelete(image_loader_webp);
|
||||
}
|
||||
|
||||
@ -31,7 +31,9 @@
|
||||
#ifndef WEBP_REGISTER_TYPES_H
|
||||
#define WEBP_REGISTER_TYPES_H
|
||||
|
||||
void register_webp_types();
|
||||
void unregister_webp_types();
|
||||
#include "modules/register_module_types.h"
|
||||
|
||||
void initialize_webp_module(ModuleInitializationLevel p_level);
|
||||
void uninitialize_webp_module(ModuleInitializationLevel p_level);
|
||||
|
||||
#endif // WEBP_REGISTER_TYPES_H
|
||||
|
||||
Reference in New Issue
Block a user