-
-
Notifications
You must be signed in to change notification settings - Fork 23.6k
OpenXR add core support for Khronos loader #106891
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ ext.versions = [ | |
| // Also update 'platform/android/detect.py#get_ndk_version()' when this is updated. | ||
| ndkVersion : '28.1.13356709', | ||
| splashscreenVersion: '1.0.1', | ||
| openxrLoaderVersion: '1.1.53', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a comment to describe this should match the |
||
| openxrVendorsVersion: '4.1.1-stable', | ||
| junitVersion : '1.3.0', | ||
| espressoCoreVersion: '3.7.0', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -158,6 +158,9 @@ android { | |
| keepDebugSymbols += '**/*.so' | ||
| } | ||
| } | ||
|
|
||
| pickFirst 'lib/arm64-v8a/libopenxr_loader.so' | ||
| pickFirst 'lib/x86_64/libopenxr_loader.so' | ||
|
Comment on lines
+162
to
+163
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a comment to describe why we're using |
||
| } | ||
|
|
||
| flavorDimensions = ["android_distribution"] | ||
|
|
@@ -203,6 +206,8 @@ dependencies { | |
| implementation "androidx.constraintlayout:constraintlayout:2.2.1" | ||
| implementation "org.bouncycastle:bcprov-jdk15to18:1.78" | ||
|
|
||
| implementation "org.khronos.openxr:openxr_loader_for_android:$versions.openxrLoaderVersion" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we only include these for the horizonos/picoos configs?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need, |
||
|
|
||
| // Meta dependencies | ||
| horizonosImplementation "org.godotengine:godot-openxr-vendors-meta:$versions.openxrVendorsVersion" | ||
| // Pico dependencies | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment should be updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What should it be changed to?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well after this PR, the loader will no longer be provided by separate plugins.