File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
crates/bevy_core_pipeline/src/contrast_adaptive_sharpening Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ impl SpecializedRenderPipeline for CASPipeline {
218
218
fn specialize ( & self , key : Self :: Key ) -> RenderPipelineDescriptor {
219
219
RenderPipelineDescriptor {
220
220
label : Some ( "contrast_adaptive_sharpening" . into ( ) ) ,
221
- layout : Some ( vec ! [ self . texture_bind_group. clone( ) ] ) ,
221
+ layout : vec ! [ self . texture_bind_group. clone( ) ] ,
222
222
vertex : fullscreen_shader_vertex_state ( ) ,
223
223
fragment : Some ( FragmentState {
224
224
shader : CONTRAST_ADAPTIVE_SHARPENING_SHADER_HANDLE . typed ( ) ,
@@ -233,6 +233,7 @@ impl SpecializedRenderPipeline for CASPipeline {
233
233
primitive : PrimitiveState :: default ( ) ,
234
234
depth_stencil : None ,
235
235
multisample : MultisampleState :: default ( ) ,
236
+ push_constant_ranges : Vec :: new ( ) ,
236
237
}
237
238
}
238
239
}
You can’t perform that action at this time.
0 commit comments