mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 06:00:20 +00:00
Fix missing import (#16337)
# Objective Should compile successfully with any combination of features ## Solution Add the missing import on the right cfg. ## Testing Tested building locally. Fixes https://github.com/bevyengine/bevy/issues/16352
This commit is contained in:
parent
b9f7101918
commit
36955a30f3
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@
|
|||
//! * Compatibility with SSAA and MSAA.
|
||||
//!
|
||||
//! [SMAA]: https://www.iryoku.com/smaa/
|
||||
|
||||
#[cfg(not(feature = "smaa_luts"))]
|
||||
use crate::tonemapping::lut_placeholder;
|
||||
use crate::{
|
||||
core_2d::graph::{Core2d, Node2d},
|
||||
core_3d::graph::{Core3d, Node3d},
|
||||
|
|
Loading…
Reference in a new issue