Skip to content

Commit

Permalink
Support conversion for glam 0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 authored and sebcrozet committed Mar 7, 2023
1 parent c0ad6a2 commit 24dab11
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Expand Up @@ -47,6 +47,7 @@ convert-glam019 = [ "glam019" ]
convert-glam020 = [ "glam020" ]
convert-glam021 = [ "glam021" ]
convert-glam022 = [ "glam022" ]
convert-glam023 = [ "glam023" ]

# Serialization
## To use serde in a #[no-std] environment, enable the
Expand Down Expand Up @@ -101,6 +102,7 @@ glam019 = { package = "glam", version = "0.19", optional = true }
glam020 = { package = "glam", version = "0.20", optional = true }
glam021 = { package = "glam", version = "0.21", optional = true }
glam022 = { package = "glam", version = "0.22", optional = true }
glam023 = { package = "glam", version = "0.23", optional = true }
cust_core = { version = "0.1", optional = true }
rayon = { version = "1.6", optional = true }

Expand Down
2 changes: 2 additions & 0 deletions src/third_party/glam/mod.rs
Expand Up @@ -16,3 +16,5 @@ mod v020;
mod v021;
#[cfg(feature = "glam022")]
mod v022;
#[cfg(feature = "glam023")]
mod v023;
18 changes: 18 additions & 0 deletions src/third_party/glam/v023/mod.rs
@@ -0,0 +1,18 @@
#[path = "../common/glam_isometry.rs"]
mod glam_isometry;
#[path = "../common/glam_matrix.rs"]
mod glam_matrix;
#[path = "../common/glam_point.rs"]
mod glam_point;
#[path = "../common/glam_quaternion.rs"]
mod glam_quaternion;
#[path = "../common/glam_rotation.rs"]
mod glam_rotation;
#[path = "../common/glam_similarity.rs"]
mod glam_similarity;
#[path = "../common/glam_translation.rs"]
mod glam_translation;
#[path = "../common/glam_unit_complex.rs"]
mod glam_unit_complex;

pub(self) use glam023 as glam;

0 comments on commit 24dab11

Please sign in to comment.