mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
Fix dds feature dependencies in bevy_core_pipeline (#11962)
# Objective - Fixes #11960 - The compilation of `bevy_core_pipeline` failed with the `dds` feature enabled ## Solution - Enable the `dds` feature of `bevy_render` when enabling it for `bevy_core_pipeline`
This commit is contained in:
parent
6026c08c04
commit
c3db02e36e
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
|
|||
keywords = ["bevy"]
|
||||
|
||||
[features]
|
||||
dds = []
|
||||
dds = ["bevy_render/dds"]
|
||||
trace = []
|
||||
webgl = []
|
||||
webgpu = []
|
||||
|
|
Loading…
Reference in a new issue