re-export debug_glam_assert feature (#10206)

# Objective

- I want to use the `debug_glam_assert` feature with bevy.

## Solution

- Re-export the feature flag

---

## Changelog

- Re-export `debug_glam_assert` feature flag from glam.
This commit is contained in:
Ame :] 2023-10-22 18:01:28 -05:00 committed by GitHub
parent f9ef989def
commit 1e9258910c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 0 deletions

View file

@ -232,6 +232,9 @@ accesskit_unix = ["bevy_internal/accesskit_unix"]
# Enable assertions to check the validity of parameters passed to glam # Enable assertions to check the validity of parameters passed to glam
glam_assert = ["bevy_internal/glam_assert"] glam_assert = ["bevy_internal/glam_assert"]
# Enable assertions in debug builds to check the validity of parameters passed to glam
debug_glam_assert = ["bevy_internal/debug_glam_assert"]
# Include a default font, containing only ASCII characters, at the cost of a 20kB binary size increase # Include a default font, containing only ASCII characters, at the cost of a 20kB binary size increase
default_font = ["bevy_internal/default_font"] default_font = ["bevy_internal/default_font"]

View file

@ -97,9 +97,13 @@ accesskit_unix = ["bevy_winit/accesskit_unix"]
bevy_text = ["dep:bevy_text", "bevy_ui?/bevy_text"] bevy_text = ["dep:bevy_text", "bevy_ui?/bevy_text"]
bevy_render = ["dep:bevy_render", "bevy_scene?/bevy_render"] bevy_render = ["dep:bevy_render", "bevy_scene?/bevy_render"]
# Enable assertions to check the validity of parameters passed to glam # Enable assertions to check the validity of parameters passed to glam
glam_assert = ["bevy_math/glam_assert"] glam_assert = ["bevy_math/glam_assert"]
# Enable assertions in debug builds to check the validity of parameters passed to glam
debug_glam_assert = ["bevy_math/debug_glam_assert"]
default_font = ["bevy_text?/default_font"] default_font = ["bevy_text?/default_font"]
# Enables the built-in asset processor for processed assets. # Enables the built-in asset processor for processed assets.

View file

@ -18,3 +18,5 @@ serialize = ["dep:serde", "glam/serde"]
mint = ["glam/mint"] mint = ["glam/mint"]
# Enable assertions to check the validity of parameters passed to glam # Enable assertions to check the validity of parameters passed to glam
glam_assert = ["glam/glam-assert"] glam_assert = ["glam/glam-assert"]
# Enable assertions in debug builds to check the validity of parameters passed to glam
debug_glam_assert = ["glam/debug-glam-assert"]

View file

@ -50,6 +50,7 @@ The default feature set enables most of the expected features of a game engine,
|bevy_dynamic_plugin|Plugin for dynamic loading (using [libloading](https://crates.io/crates/libloading))| |bevy_dynamic_plugin|Plugin for dynamic loading (using [libloading](https://crates.io/crates/libloading))|
|bmp|BMP image format support| |bmp|BMP image format support|
|dds|DDS compressed texture support| |dds|DDS compressed texture support|
|debug_glam_assert|Enable assertions in debug builds to check the validity of parameters passed to glam|
|detailed_trace|Enable detailed trace event logging. These trace events are expensive even when off, thus they require compile time opt-in| |detailed_trace|Enable detailed trace event logging. These trace events are expensive even when off, thus they require compile time opt-in|
|dynamic_linking|Force dynamic linking, which improves iterative compile times| |dynamic_linking|Force dynamic linking, which improves iterative compile times|
|embedded_watcher|Enables watching in memory asset providers for Bevy Asset hot-reloading| |embedded_watcher|Enables watching in memory asset providers for Bevy Asset hot-reloading|