diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-01-12 00:56:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 00:56:51 +0100 |
commit | 2fcd298f96b75b77df368e67129c9d13a53adfbd (patch) | |
tree | e9069497537008c8789740bc5b2c9ece1ca19cad /modules/openxr/util.h | |
parent | 201673ecd8d8d6baba67f1db5120a3565640f9bd (diff) | |
parent | b51acac638503c2b114403bbbf4e5ff63ef90dea (diff) |
Merge pull request #71034 from rsjtdrjgfuzkfg/openxr-android-warning
OpenXR: Fix android loader extension detection
Diffstat (limited to 'modules/openxr/util.h')
-rw-r--r-- | modules/openxr/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/openxr/util.h b/modules/openxr/util.h index f3fa187faa..6665d45007 100644 --- a/modules/openxr/util.h +++ b/modules/openxr/util.h @@ -53,6 +53,12 @@ #define EXT_INIT_XR_FUNC(name) INIT_XR_FUNC(OpenXRAPI::get_singleton(), name) #define OPENXR_API_INIT_XR_FUNC(name) INIT_XR_FUNC(this, name) +#define TRY_INIT_XR_FUNC(openxr_api, name) \ + openxr_api->try_get_instance_proc_addr(#name, (PFN_xrVoidFunction *)&name##_ptr) + +#define EXT_TRY_INIT_XR_FUNC(name) TRY_INIT_XR_FUNC(OpenXRAPI::get_singleton(), name) +#define OPENXR_TRY_API_INIT_XR_FUNC(name) TRY_INIT_XR_FUNC(this, name) + #define EXT_PROTO_XRRESULT_FUNC1(func_name, arg1_type, arg1) \ PFN_##func_name func_name##_ptr = nullptr; \ XRAPI_ATTR XrResult XRAPI_CALL func_name(UNPACK arg1_type p_##arg1) const { \ |