File tree 2 files changed +3
-6
lines changed
crates/bevy_core_pipeline/src
contrast_adaptive_sharpening 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,6 @@ impl Plugin for ContrastAdaptiveSharpeningPlugin {
111
111
ContrastAdaptiveSharpeningNode :: IN_VIEW ,
112
112
) ;
113
113
114
- // TODO: Edges
115
-
116
114
graph. add_node_edge (
117
115
core_3d:: graph:: node:: FXAA ,
118
116
core_3d:: graph:: node:: CONTRAST_ADAPTIVE_SHARPENING ,
@@ -136,8 +134,6 @@ impl Plugin for ContrastAdaptiveSharpeningPlugin {
136
134
ContrastAdaptiveSharpeningNode :: IN_VIEW ,
137
135
) ;
138
136
139
- // TODO: Edges
140
-
141
137
graph. add_node_edge (
142
138
core_2d:: graph:: node:: FXAA ,
143
139
core_2d:: graph:: node:: CONTRAST_ADAPTIVE_SHARPENING ,
Original file line number Diff line number Diff line change 1
1
pub mod bloom;
2
2
pub mod clear_color;
3
+ pub mod contrast_adaptive_sharpening;
3
4
pub mod core_2d;
4
5
pub mod core_3d;
5
6
pub mod fullscreen_vertex_shader;
6
7
pub mod fxaa;
7
8
pub mod prepass;
8
- pub mod contrast_adaptive_sharpening;
9
9
pub mod tonemapping;
10
10
pub mod upscaling;
11
11
@@ -21,13 +21,14 @@ pub mod prelude {
21
21
use crate :: {
22
22
bloom:: BloomPlugin ,
23
23
clear_color:: { ClearColor , ClearColorConfig } ,
24
+ contrast_adaptive_sharpening:: ContrastAdaptiveSharpeningPlugin ,
24
25
core_2d:: Core2dPlugin ,
25
26
core_3d:: Core3dPlugin ,
26
27
fullscreen_vertex_shader:: FULLSCREEN_SHADER_HANDLE ,
27
28
fxaa:: FxaaPlugin ,
28
29
prepass:: { DepthPrepass , NormalPrepass } ,
29
30
tonemapping:: TonemappingPlugin ,
30
- upscaling:: UpscalingPlugin , contrast_adaptive_sharpening :: ContrastAdaptiveSharpeningPlugin ,
31
+ upscaling:: UpscalingPlugin ,
31
32
} ;
32
33
use bevy_app:: { App , Plugin } ;
33
34
use bevy_asset:: load_internal_asset;
You can’t perform that action at this time.
0 commit comments