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 François
parent b46c11c134
commit 1e57ca6f5e

View File

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