Compare commits

...

7 Commits

Author SHA1 Message Date
0bfbfb9246 Merge pull request 'Housekeeping' (#3) from wip into master
All checks were successful
Build / Build (push) Successful in 38m19s
Reviewed-on: #3
2025-04-02 21:27:29 -04:00
7d60d26607 Merge commit '45665c1800cbe77eb74b23a9a79c422fc000e53a'
All checks were successful
Build / Build (push) Successful in 39m22s
2025-04-02 19:49:12 -04:00
73e8ea31c3 Updated Cargo.toml repo 2025-04-02 19:42:14 -04:00
8da65d0246 Updated README 2025-04-02 19:41:07 -04:00
b91b0f95ef Merge branch 'master' into wip
Some checks are pending
Build / Build (push) Waiting to run
2025-04-02 19:29:23 -04:00
092b56799e removed lockfile
Some checks are pending
Build / Build (push) Waiting to run
2025-04-02 19:27:04 -04:00
218d732249 Formatting + docs 2025-04-02 19:25:20 -04:00
5 changed files with 25 additions and 3198 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/target
Cargo.lock

3187
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -3,10 +3,14 @@ use bevy::{
render::{
extract_component::ExtractComponent,
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)]
pub struct DitherPostProcessPipelineId(pub CachedRenderPipelineId);
@ -65,7 +69,7 @@ impl DitherPostProcessSettings {
Self(handle)
}
/// Gets the handle of the texture representing this component's Bayer matrix
pub fn handle(&self) -> Handle<Image> {
pub fn handle(&self) -> Handle<Image> {
self.0.clone()
}
}

View File

@ -10,9 +10,7 @@ use bevy::{
render::{
extract_component::ExtractComponentPlugin,
render_graph::{RenderGraphApp, ViewNodeRunner},
render_resource::{
PipelineCache, SpecializedRenderPipeline, SpecializedRenderPipelines, TextureFormat,
},
render_resource::{PipelineCache, SpecializedRenderPipelines, TextureFormat},
view::{ExtractedView, ViewTarget},
Render, RenderApp, RenderSet,
},
@ -44,7 +42,10 @@ impl Plugin for DitherPostProcessPlugin {
};
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>>()
.add_render_graph_node::<ViewNodeRunner<nodes::DitherRenderNode>>(
Core3d,
@ -89,6 +90,8 @@ fn prepare_post_processing_pipelines(
},
);
commands.entity(entity).insert(DitherPostProcessPipelineId(pipeline_id));
commands
.entity(entity)
.insert(DitherPostProcessPipelineId(pipeline_id));
}
}

View File

@ -1,10 +1,15 @@
use bevy::{
core_pipeline::fullscreen_vertex_shader, prelude::*, render::{
core_pipeline::fullscreen_vertex_shader,
prelude::*,
render::{
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,
}
},
};
#[derive(Resource)]
@ -78,4 +83,5 @@ impl SpecializedRenderPipeline for DitherPostProcessPipeline {
zero_initialize_workgroup_memory: false,
}
}
}
}