Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-02-24 | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 1 | -111/+0 | ||
2022-11-03 | Run `cargo fmt` | 1 | -1/+5 | ||
2022-10-10 | Fixed fragment shader compatibility issues with GLES 3.0+ | 1 | -1/+1 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -2/+1 | ||
2022-09-29 | Adds linear gradient support to 2D meshes in the canvas widget. | 1 | -2/+1 | ||
2022-05-14 | Draft first-class `Theme` support | 1 | -5/+14 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-04-27 | Rename `get_information` to `fetch_information` | 1 | -1/+1 | ||
2022-04-27 | Move `compositor` module access from `window` to `crate` | 1 | -3/+3 | ||
2022-04-26 | Rename `GraphicsInformation` to `Information` | 1 | -2/+2 | ||
2022-04-26 | Implement `GraphicsInformation` for `iced_glow` | 1 | -0/+9 | ||
2022-04-26 | Add logging to window and context creation | 1 | -0/+2 | ||
2022-01-19 | Improve shader version selection | 1 | -1/+1 | ||
2022-01-19 | Log debugging info | 1 | -0/+7 | ||
2021-11-05 | Rename `Renderer::present` to `with_primitives` | 1 | -1/+1 | ||
2021-10-14 | Remove trait-specific draw logic in `iced_native` | 1 | -5/+5 | ||
2021-09-02 | Fix window holes behind transparent objects | 1 | -1/+6 | ||
Without this change, the transparent objects composed over the opaque background creates the transparency of the entire window through which the desktop wallpaper could be seen. This problem manifested itself with glow backend and wayland compositor (gnome). This patch completely eliminates this problem. With it, the final image produced by glow backend corresponds to the image produced by the wgpu backend. Fixes #1018 | |||||
2020-09-08 | Make `Application` and `Sandbox` return a `Result` | 1 | -3/+3 | ||
2020-06-12 | Add `background_color` to `Application` and `Sandbox` | 1 | -3/+5 | ||
2020-06-01 | Revert "Merge pull request #371 from myfreeweb/window-alpha" | 1 | -6/+1 | ||
This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6. | |||||
2020-06-01 | Add custom window background/clear color (incl. transparency) support, fixes ↵ | 1 | -1/+6 | ||
#272 wgpu would currently ignore the alpha: https://github.com/gfx-rs/wgpu/issues/687 glow (and naively patched wgpu) requires premultiplied alpha, so if you don't multiply the RGB by the A right now, the semi-transparent color would be wrong (too bright). winit with_transparent doesn't seem necessary. | |||||
2020-05-22 | Use built-in OpenGL multisampling in `iced_glow` | 1 | -1/+11 | ||
2020-05-21 | Implement `iced_glutin` :tada: | 1 | -143/+27 | ||
2020-05-20 | Refactor `Viewport` and `Compositor` | 1 | -12/+4 | ||
2020-05-19 | Rename `window::Backend` to `Compositor` | 1 | -5/+5 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 2 | -8/+8 | ||
2020-05-19 | Draft first working version of `iced_glow` :tada: | 2 | -0/+188 | ||