Formatting + docs
This commit is contained in:
parent
44ddb9968c
commit
218d732249
@ -3,10 +3,14 @@ use bevy::{
|
|||||||
render::{
|
render::{
|
||||||
extract_component::ExtractComponent,
|
extract_component::ExtractComponent,
|
||||||
render_asset::RenderAssetUsages,
|
render_asset::RenderAssetUsages,
|
||||||
render_resource::{CachedRenderPipelineId, Extent3d, TextureDimension, TextureFormat, TextureUsages},
|
render_resource::{
|
||||||
|
CachedRenderPipelineId, Extent3d, TextureDimension, TextureFormat, TextureUsages,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/// Component for cameras which stores the specialized render pipeline id. Automatically inserted
|
||||||
|
/// when the pipeline is created.
|
||||||
#[derive(Component, Deref, DerefMut)]
|
#[derive(Component, Deref, DerefMut)]
|
||||||
pub struct DitherPostProcessPipelineId(pub CachedRenderPipelineId);
|
pub struct DitherPostProcessPipelineId(pub CachedRenderPipelineId);
|
||||||
|
|
||||||
|
13
src/lib.rs
13
src/lib.rs
@ -10,9 +10,7 @@ use bevy::{
|
|||||||
render::{
|
render::{
|
||||||
extract_component::ExtractComponentPlugin,
|
extract_component::ExtractComponentPlugin,
|
||||||
render_graph::{RenderGraphApp, ViewNodeRunner},
|
render_graph::{RenderGraphApp, ViewNodeRunner},
|
||||||
render_resource::{
|
render_resource::{PipelineCache, SpecializedRenderPipelines, TextureFormat},
|
||||||
PipelineCache, SpecializedRenderPipeline, SpecializedRenderPipelines, TextureFormat,
|
|
||||||
},
|
|
||||||
view::{ExtractedView, ViewTarget},
|
view::{ExtractedView, ViewTarget},
|
||||||
Render, RenderApp, RenderSet,
|
Render, RenderApp, RenderSet,
|
||||||
},
|
},
|
||||||
@ -44,7 +42,10 @@ impl Plugin for DitherPostProcessPlugin {
|
|||||||
};
|
};
|
||||||
|
|
||||||
render_app
|
render_app
|
||||||
.add_systems(Render, prepare_post_processing_pipelines.in_set(RenderSet::Prepare))
|
.add_systems(
|
||||||
|
Render,
|
||||||
|
prepare_post_processing_pipelines.in_set(RenderSet::Prepare),
|
||||||
|
)
|
||||||
.init_resource::<SpecializedRenderPipelines<DitherPostProcessPipeline>>()
|
.init_resource::<SpecializedRenderPipelines<DitherPostProcessPipeline>>()
|
||||||
.add_render_graph_node::<ViewNodeRunner<nodes::DitherRenderNode>>(
|
.add_render_graph_node::<ViewNodeRunner<nodes::DitherRenderNode>>(
|
||||||
Core3d,
|
Core3d,
|
||||||
@ -89,6 +90,8 @@ fn prepare_post_processing_pipelines(
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
commands.entity(entity).insert(DitherPostProcessPipelineId(pipeline_id));
|
commands
|
||||||
|
.entity(entity)
|
||||||
|
.insert(DitherPostProcessPipelineId(pipeline_id));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
use bevy::{
|
use bevy::{
|
||||||
core_pipeline::fullscreen_vertex_shader, prelude::*, render::{
|
core_pipeline::fullscreen_vertex_shader,
|
||||||
|
prelude::*,
|
||||||
|
render::{
|
||||||
render_resource::{
|
render_resource::{
|
||||||
binding_types::{sampler, texture_2d}, BindGroupLayout, BindGroupLayoutEntries, ColorTargetState, ColorWrites, FragmentState, RenderPipelineDescriptor, Sampler, SamplerBindingType, SamplerDescriptor, ShaderStages, SpecializedRenderPipeline, TextureFormat, TextureSampleType
|
binding_types::{sampler, texture_2d},
|
||||||
|
BindGroupLayout, BindGroupLayoutEntries, ColorTargetState, ColorWrites, FragmentState,
|
||||||
|
RenderPipelineDescriptor, Sampler, SamplerBindingType, SamplerDescriptor, ShaderStages,
|
||||||
|
SpecializedRenderPipeline, TextureFormat, TextureSampleType,
|
||||||
},
|
},
|
||||||
renderer::RenderDevice,
|
renderer::RenderDevice,
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Resource)]
|
#[derive(Resource)]
|
||||||
@ -79,3 +84,4 @@ impl SpecializedRenderPipeline for DitherPostProcessPipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user