Skip to content

Commit d0a269f

Browse files
Support conversion for glam 0.29 (#1434)
* Support conversion for glam 0.29 * Update CHANGELOG.md --------- Co-authored-by: Sébastien Crozet <[email protected]>
1 parent efb3ada commit d0a269f

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ documented here.
55

66
This project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## Unreleased
9+
10+
### Added
11+
12+
- Add the `convert-glam029` feature to enable conversion from/to types from `glam` v0.29.
13+
814
## [0.33.1] (16 October 2024)
915

1016
### Added

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ convert-glam024 = ["glam024"]
5050
convert-glam025 = ["glam025"]
5151
convert-glam027 = ["glam027"]
5252
convert-glam028 = ["glam028"]
53+
convert-glam029 = ["glam029"]
5354

5455
# Serialization
5556
## To use serde in a #[no-std] environment, enable the
@@ -108,6 +109,7 @@ glam024 = { package = "glam", version = "0.24", optional = true }
108109
glam025 = { package = "glam", version = "0.25", optional = true }
109110
glam027 = { package = "glam", version = "0.27", optional = true }
110111
glam028 = { package = "glam", version = "0.28", optional = true }
112+
glam029 = { package = "glam", version = "0.29", optional = true }
111113
rayon = { version = "1.6", optional = true }
112114

113115
[dev-dependencies]

src/third_party/glam/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ mod v025;
2626
mod v027;
2727
#[cfg(feature = "glam028")]
2828
mod v028;
29+
#[cfg(feature = "glam029")]
30+
mod v029;

src/third_party/glam/v029/mod.rs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#[path = "../common/glam_isometry.rs"]
2+
mod glam_isometry;
3+
#[path = "../common/glam_matrix.rs"]
4+
mod glam_matrix;
5+
#[path = "../common/glam_point.rs"]
6+
mod glam_point;
7+
#[path = "../common/glam_quaternion.rs"]
8+
mod glam_quaternion;
9+
#[path = "../common/glam_rotation.rs"]
10+
mod glam_rotation;
11+
#[path = "../common/glam_similarity.rs"]
12+
mod glam_similarity;
13+
#[path = "../common/glam_translation.rs"]
14+
mod glam_translation;
15+
#[path = "../common/glam_unit_complex.rs"]
16+
mod glam_unit_complex;
17+
18+
pub(self) use glam029 as glam;

0 commit comments

Comments
 (0)