Skip to content

Commit

Permalink
adds support for XR_ANDROID_face_tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
korejan committed Dec 16, 2024
1 parent 75022f5 commit 8bba8d8
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 20 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion alvr/openxr-client/alxr-client-android/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alxr-client-android"
version = "0.59.0"
version = "0.60.0"
authors = ["korejan <64199710+korejan@users.noreply.github.com>"]
edition = "2021"
description = "An OpenXR based ALVR client for android platorms"
Expand Down
2 changes: 1 addition & 1 deletion alvr/openxr-client/alxr-client-android/pico/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alxr-client-pico"
version = "0.59.0"
version = "0.60.0"
authors = ["korejan <64199710+korejan@users.noreply.github.com>"]
edition = "2021"
description = "An OpenXR based ALVR client for Pico 4/Neo 3, PUI >= v5.2.x"
Expand Down
2 changes: 1 addition & 1 deletion alvr/openxr-client/alxr-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alxr-client"
version = "0.59.0"
version = "0.60.0"
authors = ["korejan <64199710+korejan@users.noreply.github.com>"]
edition = "2021"
description = "An OpenXR based ALVR client for non-android platorms"
Expand Down
2 changes: 1 addition & 1 deletion alvr/openxr-client/alxr-client/uwp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alxr-client-uwp"
version = "1.59.0"
version = "1.60.0"
authors = ["korejan <64199710+korejan@users.noreply.github.com>"]
edition = "2021"
build = ".build/main.rs"
Expand Down
2 changes: 1 addition & 1 deletion alvr/openxr-client/alxr-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alxr-common"
version = "0.59.0"
version = "0.60.0"
authors = ["korejan <64199710+korejan@users.noreply.github.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion alvr/openxr-client/alxr-engine-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "alxr-engine-sys"
version = "0.59.0"
version = "0.60.0"
authors = ["korejan <64199710+korejan@users.noreply.github.com>"]
edition = "2021"
links = "alxr_engine"
Expand Down
1 change: 1 addition & 0 deletions alvr/openxr-client/alxr-engine-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ impl From<&str> for crate::ALXRFacialExpressionType {
"FB_V2" => crate::ALXRFacialExpressionType::FB_V2,
"HTC" => crate::ALXRFacialExpressionType::HTC,
"Pico" => crate::ALXRFacialExpressionType::Pico,
"Android" => crate::ALXRFacialExpressionType::Android,
_ => crate::ALXRFacialExpressionType::Auto,
}
}
Expand Down

0 comments on commit 8bba8d8

Please sign in to comment.