Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Custom Shader Widget #2085

Merged
merged 26 commits into from
Nov 14, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
781ef1f
Added support for custom shader widget for iced_wgpu backend.
bungoboingo Sep 14, 2023
36e8521
Removed `Into` for Rectangle<f32> from u32
bungoboingo Sep 18, 2023
91fca02
Reexport Transformation from widget::shader
bungoboingo Sep 21, 2023
65f4ff0
Added redraw request handling to widget events.
bungoboingo Sep 28, 2023
de9420e
Fix latest `wgpu` changes
hecrj Nov 14, 2023
46a48af
Write missing documentation for `custom` module in `iced_wgpu`
hecrj Nov 14, 2023
3e8ed05
Update `wgpu` in `custom_shader` example
hecrj Nov 14, 2023
33f6262
Fix `clippy` lints :crab:
hecrj Nov 14, 2023
226eac3
Remove old `widget` modules in `iced_renderer`
hecrj Nov 14, 2023
2dda913
Run `cargo fmt`
hecrj Nov 14, 2023
9489e29
Re-organize `custom` module as `pipeline` module
hecrj Nov 14, 2023
882ae30
Enable `iced_renderer/wgpu` feature in `iced_widget`
hecrj Nov 14, 2023
c2baf18
Use `Instant` from `iced_core` instead of `std`
hecrj Nov 14, 2023
280d373
Fix broken intra-doc links
hecrj Nov 14, 2023
91d7df5
Create `shader` function helper in `iced_widget`
hecrj Nov 14, 2023
63f36b0
Export `wgpu` crate in `shader` module in `iced_widget`
hecrj Nov 14, 2023
78a0638
Use a single source for amount of cubes in `custom_shader` example
hecrj Nov 14, 2023
9ddfaf3
Rename `cubes` to `scene` in `custom_shader` example
hecrj Nov 14, 2023
34b5cb7
Remove `Default` implementation in `custom_shader` example
hecrj Nov 14, 2023
fee3bf0
Kill current render pass only when custom pipelines are present in layer
hecrj Nov 14, 2023
b1b2467
Fix render pass label in `iced_wgpu`
hecrj Nov 14, 2023
811aa67
Improve module hierarchy of `custom_shader` example
hecrj Nov 14, 2023
77dfa60
Move `textures` directory outside of `src` in `custom_shader` example
hecrj Nov 14, 2023
74b920a
Remove unnecessary `self` in `iced_style::theme`
hecrj Nov 14, 2023
8f384c8
Remove unsused `custom.rs` file in `iced_wgpu`
hecrj Nov 14, 2023
0968c5b
Remove unused import in `custom_shader` example
hecrj Nov 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove unused import in custom_shader example
  • Loading branch information
hecrj committed Nov 14, 2023
commit 0968c5b64a528ff92a5a93f6586eef557546da25
1 change: 0 additions & 1 deletion examples/custom_shader/src/scene/pipeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ mod buffer;
mod uniforms;
mod vertex;

pub use cube::Cube;
pub use uniforms::Uniforms;

use buffer::Buffer;
Expand Down