mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +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.
|
//! * Compatibility with SSAA and MSAA.
|
||||||
//!
|
//!
|
||||||
//! [SMAA]: https://www.iryoku.com/smaa/
|
//! [SMAA]: https://www.iryoku.com/smaa/
|
||||||
|
#[cfg(not(feature = "smaa_luts"))]
|
||||||
|
use crate::tonemapping::lut_placeholder;
|
||||||
use crate::{
|
use crate::{
|
||||||
core_2d::graph::{Core2d, Node2d},
|
core_2d::graph::{Core2d, Node2d},
|
||||||
core_3d::graph::{Core3d, Node3d},
|
core_3d::graph::{Core3d, Node3d},
|
||||||
|
|
Loading…
Reference in a new issue