You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cargo_features.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,18 @@
20
20
21
21
|feature name|description|
22
22
|-|-|
23
+
|dynamic|Forces bevy to be dynamically linked, which improves iterative compile times.|
23
24
|trace|Enables system tracing (useful in tandem with a feature like trace_chrome).|
24
25
|trace_chrome|Enables [tracing-chrome](https://github.com/thoren-d/tracing-chrome) as bevy_log output. This allows you to visualize system execution.|
25
26
|wgpu_trace|For tracing wgpu.|
27
+
|dds|DDS picture format support.|
28
+
|tga|TGA picture format support.|
29
+
|jpeg|JPEG picture format support.|
30
+
|bmp|BMP picture format support.|
26
31
|flac|FLAC audio format support. It's included in bevy_audio feature.|
27
32
|wav|WAV audio format support.|
28
33
|vorbis|Vorbis audio format support.|
34
+
|serialize|Enables serialization of `bevy_input` types.|
29
35
|wayland|Enable this to use Wayland display server protocol other than X11.|
30
36
|subpixel_glyph_atlas|Enable this to cache glyphs using subpixel accuracy. This increases texture memory usage as each position requires a separate sprite in the glyph atlas, but provide more accurate character spacing.|
37
+
|bevy_ci_testing|Used for running examples in CI.|
0 commit comments