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:
TimJentzsch 2024-02-18 23:14:29 +01:00 committed by GitHub
parent 6026c08c04
commit c3db02e36e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
keywords = ["bevy"]
[features]
dds = []
dds = ["bevy_render/dds"]
trace = []
webgl = []
webgpu = []