Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce `web-colors` feature flag to enable sRGB linear blending | 2023-05-31 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | This is how browsers perform color management. They treat gamma-corrected sRGB colors as if they were linear RGB. Correctness aside, this mode is introduced for legacy reasons. Most UI/UX tooling uses this color management as well, and many have created an intuition about how color should behave from interacting with a browser. This feature flag should facilitate application development with `iced` in those cases. More details: https://webcolorisstillbroken.com/ | ||||
* | Improve boundaries between `quad` submodules in `iced_wgpu` | 2023-05-30 | 1 | -17/+10 | |
| | |||||
* | Rename `quad_order` variable to `kind` in `quad::Pipeline::render` | 2023-05-30 | 1 | -2/+2 | |
| | |||||
* | Improve consistency of match branches in `quad::Batch::add` | 2023-05-30 | 1 | -4/+2 | |
| | |||||
* | Simplify `order` match statement in `quad::Batch::add` | 2023-05-30 | 1 | -26/+9 | |
| | |||||
* | Rename `quad::Order` to `quad::Kind` | 2023-05-30 | 1 | -15/+15 | |
| | |||||
* | Move `layer::quad` types to `quad` module | 2023-05-30 | 1 | -282/+108 | |
| | | | | Not sure why I split these to begin with! | ||||
* | Adjusted `Quads` struct to be opaque `quad::Layer`. | 2023-05-29 | 1 | -22/+15 | |
| | |||||
* | Fixed issue where quads of different types were not ordered. | 2023-05-29 | 1 | -11/+32 | |
| | |||||
* | Reduce `INITIAL_INSTANCES` in `wgpu::quad` to `2_000` | 2023-05-19 | 1 | -1/+1 | |
| | |||||
* | Avoid redundant `buffer::Buffer` import | 2023-05-19 | 1 | -2/+2 | |
| | |||||
* | Keep `image` pipeline decoupled from `quad` in `iced_wgpu` | 2023-05-19 | 1 | -3/+3 | |
| | |||||
* | Added support for gradients as background variants + other optimizations. | 2023-05-11 | 1 | -124/+357 | |
| | |||||
* | Merge branch 'master' into advanced-text | 2023-04-17 | 1 | -1/+1 | |
|\ | |||||
| * | remove colons from shader labels | 2023-04-01 | 1 | -1/+1 | |
| | | |||||
* | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -3/+3 | |
| | | |||||
* | | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 1 | -1/+2 | |
| | | |||||
* | | Reuse a `RenderPass` as much as possible in `iced_wgpu` | 2023-02-24 | 1 | -7/+3 | |
| | | |||||
* | | Refactor `triangle::Pipeline` into `prepare` and `render` architecture | 2023-02-24 | 1 | -4/+3 | |
| | | | | | | | | And get rid of the staging belt! :tada: | ||||
* | | Remove unnecessary borrow in `quad::Pipeline` | 2023-02-24 | 1 | -1/+1 | |
| | | |||||
* | | Fix rendering order for `quad::Pipeline` | 2023-02-24 | 1 | -9/+13 | |
| | | |||||
* | | Refactor `quad::Pipeline` to `prepare` and `render` architecture | 2023-02-24 | 1 | -106/+119 | |
|/ | |||||
* | Restructured everything to make profiling a feature of iced_winit. | 2023-01-09 | 1 | -4/+4 | |
| | |||||
* | Initial profiling support for Iced. | 2023-01-09 | 1 | -0/+9 | |
| | |||||
* | non uniform border radius for quads | 2022-11-03 | 1 | -1/+1 | |
| | |||||
* | update `wgpu` to `0.13` | 2022-07-02 | 1 | -10/+12 | |
| | |||||
* | Update wgpu 0.12 | 2022-01-04 | 1 | -0/+1 | |
| | |||||
* | wgpu: Update to 0.10 | 2021-08-19 | 1 | -9/+8 | |
| | |||||
* | Use vertex_attr_array macro | 2021-06-22 | 1 | -32/+8 | |
| | |||||
* | run format | 2021-05-19 | 1 | -2/+2 | |
| | |||||
* | Add padding to quad to fix alignment issue | 2021-05-19 | 1 | -0/+5 | |
| | |||||
* | temporary up | 2021-05-19 | 1 | -7/+3 | |
| | |||||
* | Use latest `wgpu` releases instead of patched sources | 2021-05-19 | 1 | -2/+2 | |
| | |||||
* | Upgrade wgpu | 2021-04-11 | 1 | -38/+38 | |
| | |||||
* | List `color_blend` first in `wgpu::quad` | 2021-02-06 | 1 | -4/+4 | |
| | |||||
* | Fix ScissorRect | 2021-02-03 | 1 | -1/+2 | |
| | | | - Breaks `TODO: Address anti-aliasing adjustments properly` | ||||
* | [wgpu 0.7] Update quad.rs | 2021-02-03 | 1 | -54/+62 | |
| | |||||
* | Update `bytemuck` and remove `zerocopy` in `iced_wgpu` | 2020-11-10 | 1 | -6/+6 | |
| | |||||
* | Add labels to `iced_wgpu` internals | 2020-08-31 | 1 | -8/+8 | |
| | |||||
* | Remove unnecessary `create_buffer_init` for uniforms | 2020-08-27 | 1 | -6/+6 | |
| | |||||
* | Remove redundant depth bias fields in `iced_wgpu` | 2020-08-27 | 1 | -3/+0 | |
| | |||||
* | Update `wgpu` to `0.6` in `iced_wgpu` | 2020-08-27 | 1 | -59/+66 | |
| | |||||
* | Move `Layer` to `iced_graphics` | 2020-05-19 | 1 | -21/+9 | |
| | |||||
* | Change `&mut wgpu::Device` to `&wgpu::Device` (#299) | 2020-04-16 | 1 | -5/+2 | |
| | | | | | * Change `&mut wgpu::Device` to `&wgpu::Device` * Fix for rustfmt | ||||
* | Update `wgpu` to `0.5` in `iced_wgpu` :tada: | 2020-04-07 | 1 | -73/+79 | |
| | |||||
* | Make output format of `iced_wgpu` configurable | 2020-02-24 | 1 | -2/+5 | |
| | |||||
* | Add `border_width` and `border_color` to `Quad` | 2019-12-31 | 1 | -2/+15 | |
| | |||||
* | Add `repr(C)` to GPU types | 2019-12-01 | 1 | -0/+2 | |
| | |||||
* | Write docs for `iced_wgpu` | 2019-11-22 | 1 | -0/+1 | |
| | |||||
* | Apply HiDPI scaling to quads | 2019-11-05 | 1 | -15/+43 | |
| | | | | The anti-aliasing strategy is pretty naive, but we will manage for now. |