Skip to content

Commit c4222f6

Browse files
committed
fix after rebasing
1 parent b86b23c commit c4222f6

File tree

1 file changed

+2
-1
lines changed
  • crates/bevy_core_pipeline/src/contrast_adaptive_sharpening

1 file changed

+2
-1
lines changed

crates/bevy_core_pipeline/src/contrast_adaptive_sharpening/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ impl SpecializedRenderPipeline for CASPipeline {
218218
fn specialize(&self, key: Self::Key) -> RenderPipelineDescriptor {
219219
RenderPipelineDescriptor {
220220
label: Some("contrast_adaptive_sharpening".into()),
221-
layout: Some(vec![self.texture_bind_group.clone()]),
221+
layout: vec![self.texture_bind_group.clone()],
222222
vertex: fullscreen_shader_vertex_state(),
223223
fragment: Some(FragmentState {
224224
shader: CONTRAST_ADAPTIVE_SHARPENING_SHADER_HANDLE.typed(),
@@ -233,6 +233,7 @@ impl SpecializedRenderPipeline for CASPipeline {
233233
primitive: PrimitiveState::default(),
234234
depth_stencil: None,
235235
multisample: MultisampleState::default(),
236+
push_constant_ranges: Vec::new(),
236237
}
237238
}
238239
}

0 commit comments

Comments
 (0)