summaryrefslogtreecommitdiffstats
path: root/examples/custom_shader/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-02-21Update all `examples` to Rust 2024Libravatar Héctor Ramón Jiménez1-2/+2
2024-11-05Update `wgpu` to `23.0`Libravatar Héctor Ramón Jiménez1-4/+4
2024-09-20Move `wgpu` re-export to root moduleLibravatar Héctor Ramón Jiménez1-1/+1
This seems to fix a `cargo doc` performance issue; and it makes more sense anyways.
2024-09-20Update `wgpu` to `22.0`Libravatar Héctor Ramón Jiménez1-0/+2
2024-09-20Update `wgpu` to `0.20.1`Libravatar Héctor Ramón Jiménez1-0/+8
2024-07-12Re-export variants of `Length` and `alignment` typesLibravatar Héctor Ramón Jiménez1-5/+4
2024-07-12Introduce helper methods for alignment for all widgetsLibravatar Héctor Ramón Jiménez1-3/+3
2024-06-19Introduce `daemon` API and unify shell runtimesLibravatar Héctor Ramón Jiménez1-3/+7
2024-05-03Introduce `center` widget helperLibravatar Héctor Ramón Jiménez1-7/+2
... and also make `center_x` and `center_y` set `width` and `height` to `Length::Fill`, respectively. This targets the most common use case when centering things and removes a bunch of boilerplate as a result.
2024-04-08Reintroduce support for custom primitives in `iced_wgpu`Libravatar Héctor Ramón Jiménez1-15/+18
2024-03-17Move `Program` to `application` moduleLibravatar Héctor Ramón Jiménez1-7/+3
2024-03-16Remove `sandbox` by making `application` more generic :tada:Libravatar Héctor Ramón Jiménez1-3/+7
2024-03-16Make `sandbox` helper take a `title` as wellLibravatar Héctor Ramón Jiménez1-2/+1
2024-03-16Introduce `Program` APILibravatar Héctor Ramón Jiménez1-29/+20
2024-02-01Introduce support for disabling a `checkbox`Libravatar Alexander van Saase1-5/+2
2024-01-21Convert `Renderer::Theme` to generic `Widget` typeLibravatar Héctor Ramón Jiménez1-3/+3
2024-01-18Remove `Compositor` window genericLibravatar Héctor Ramón Jiménez1-0/+2
And update `glyphon` and `window_clipboard`
2023-11-28Provide actual bounds to `Shader` primitivesLibravatar Héctor Ramón Jiménez3-24/+24
... and allow for proper translation and scissoring.
2023-11-14Remove unused import in `custom_shader` exampleLibravatar Héctor Ramón Jiménez1-1/+0
2023-11-14Move `textures` directory outside of `src` in `custom_shader` exampleLibravatar Héctor Ramón Jiménez8-7/+7
2023-11-14Improve module hierarchy of `custom_shader` exampleLibravatar Héctor Ramón Jiménez9-126/+121
2023-11-14Remove `Default` implementation in `custom_shader` exampleLibravatar Héctor Ramón Jiménez1-10/+7
2023-11-14Rename `cubes` to `scene` in `custom_shader` exampleLibravatar Héctor Ramón Jiménez2-31/+31
2023-11-14Use a single source for amount of cubes in `custom_shader` exampleLibravatar Héctor Ramón Jiménez1-4/+1
2023-11-14Export `wgpu` crate in `shader` module in `iced_widget`Libravatar Héctor Ramón Jiménez6-1/+11
2023-11-14Create `shader` function helper in `iced_widget`Libravatar Héctor Ramón Jiménez1-4/+3
2023-11-14Re-organize `custom` module as `pipeline` moduleLibravatar Héctor Ramón Jiménez2-10/+16
... and move `Shader` widget to `iced_widget` crate
2023-11-14Fix `clippy` lints :crab:Libravatar Héctor Ramón Jiménez3-7/+7
2023-11-14Update `wgpu` in `custom_shader` exampleLibravatar Héctor Ramón Jiménez1-3/+7
2023-11-14Added support for custom shader widget for iced_wgpu backend.Libravatar Bingus18-0/+1606