mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 12:13:25 +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
3f30ce2e47
commit
aad1fc6eba
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