diff options
author | Bastiaan Olij <mux213@gmail.com> | 2022-10-19 01:53:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-19 01:53:56 +1100 |
commit | 4a96fce801cae2d3e0fe42005c74ca7d60cc1582 (patch) | |
tree | da67a338d32d8324140aeaa3edba28f36a3c3b45 /modules/openxr/openxr_api.h | |
parent | 2e3662acbd8586697db38569785cc9f97dff945e (diff) | |
parent | 19f9fe1dece3ea8d0ce9a663030f26d4576f8d4a (diff) | |
download | redot-engine-4a96fce801cae2d3e0fe42005c74ca7d60cc1582.tar.gz |
Merge pull request #67529 from BastiaanOlij/filter_out_htc_paths
Filter out HTC OpenXR paths based on extension
Diffstat (limited to 'modules/openxr/openxr_api.h')
-rw-r--r-- | modules/openxr/openxr_api.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/openxr/openxr_api.h b/modules/openxr/openxr_api.h index e6781cc112..5dce749351 100644 --- a/modules/openxr/openxr_api.h +++ b/modules/openxr/openxr_api.h @@ -84,8 +84,6 @@ private: bool ext_vive_focus3_available = false; bool ext_huawei_controller_available = false; - bool is_path_supported(const String &p_path); - // composition layer providers Vector<OpenXRCompositionLayerProvider *> composition_layer_providers; @@ -302,6 +300,7 @@ public: void parse_velocities(const XrSpaceVelocity &p_velocity, Vector3 &r_linear_velocity, Vector3 &r_angular_velocity); bool xr_result(XrResult result, const char *format, Array args = Array()) const; + bool is_path_supported(const String &p_path); static bool openxr_is_enabled(bool p_check_run_in_editor = true); static OpenXRAPI *get_singleton(); |