pub fn prepare_depth_of_field_pipelines(
    commands: Commands<'_, '_>,
    pipeline_cache: Res<'_, PipelineCache>,
    pipelines: ResMut<'_, SpecializedRenderPipelines<DepthOfFieldPipeline>>,
    msaa: Res<'_, Msaa>,
    global_bind_group_layout: Res<'_, DepthOfFieldGlobalBindGroupLayout>,
    view_targets: Query<'_, '_, (Entity, &ExtractedView, &DepthOfFieldSettings, &ViewDepthOfFieldBindGroupLayouts)>
)
Expand description

Specializes the depth of field pipelines specific to a view.