diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-13 16:56:21 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-06-15 14:35:45 +0200 |
commit | 25b2f1780a9c7d7ae5579cc87c89b0c7e2baa14d (patch) | |
tree | 40d2d50d34c175da3b7c5123e8918cc5816bd32b /modules/openxr/register_types.cpp | |
parent | 773414606079fa745d1c37fce49324ab6a09e972 (diff) | |
download | redot-engine-25b2f1780a9c7d7ae5579cc87c89b0c7e2baa14d.tar.gz |
Style: Harmonize header includes in modules
This applies our existing style guide, and adds a new rule to that style
guide for modular components such as platform ports and modules:
Includes from the platform port or module ("local" includes) should be listed
first in their own block using relative paths, before Godot's "core" includes
which use "absolute" (project folder relative) paths, and finally thirdparty
includes.
Includes in `#ifdef`s come after their relevant section, i.e. the overall
structure is:
- Local includes
* Conditional local includes
- Core includes
* Conditional core includes
- Thirdparty includes
* Conditional thirdparty includes
Diffstat (limited to 'modules/openxr/register_types.cpp')
-rw-r--r-- | modules/openxr/register_types.cpp | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/modules/openxr/register_types.cpp b/modules/openxr/register_types.cpp index b7d239fc73..27b179a788 100644 --- a/modules/openxr/register_types.cpp +++ b/modules/openxr/register_types.cpp @@ -29,23 +29,15 @@ /**************************************************************************/ #include "register_types.h" -#include "core/config/project_settings.h" -#include "main/main.h" - -#include "openxr_interface.h" #include "action_map/openxr_action.h" #include "action_map/openxr_action_map.h" #include "action_map/openxr_action_set.h" #include "action_map/openxr_interaction_profile.h" #include "action_map/openxr_interaction_profile_meta_data.h" - +#include "openxr_interface.h" #include "scene/openxr_hand.h" -#ifdef ANDROID_ENABLED -#include "extensions/openxr_android_extension.h" -#endif - #include "extensions/openxr_composition_layer_depth_extension.h" #include "extensions/openxr_fb_display_refresh_rate_extension.h" #include "extensions/openxr_fb_passthrough_extension_wrapper.h" @@ -58,15 +50,26 @@ #include "extensions/openxr_pico_controller_extension.h" #include "extensions/openxr_wmr_controller_extension.h" +#ifdef TOOLS_ENABLED +#include "editor/openxr_editor_plugin.h" +#endif + +#ifdef ANDROID_ENABLED +#include "extensions/openxr_android_extension.h" +#endif + +#include "core/config/project_settings.h" +#include "main/main.h" + +#ifdef TOOLS_ENABLED +#include "editor/editor_node.h" +#endif + static OpenXRAPI *openxr_api = nullptr; static OpenXRInteractionProfileMetaData *openxr_interaction_profile_meta_data = nullptr; static Ref<OpenXRInterface> openxr_interface; #ifdef TOOLS_ENABLED - -#include "editor/editor_node.h" -#include "editor/openxr_editor_plugin.h" - static void _editor_init() { if (OpenXRAPI::openxr_is_enabled(false)) { // Only add our OpenXR action map editor if OpenXR is enabled for our project @@ -81,7 +84,6 @@ static void _editor_init() { EditorNode::get_singleton()->add_editor_plugin(openxr_plugin); } } - #endif void initialize_openxr_module(ModuleInitializationLevel p_level) { |