Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Update `glyphon` and `cosmic-text` | 2023-06-16 | 1 | -18/+13 | ||
| | ||||||
* | Use consistent color strategy in `glyphon` | 2023-06-01 | 1 | -1/+10 | ||
| | ||||||
* | Introduce `web-colors` feature flag to enable sRGB linear blending | 2023-05-31 | 1 | -1/+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/ | |||||
* | Clip text that exceeds section bounds in `iced_wgpu` | 2023-05-08 | 1 | -56/+68 | ||
| | ||||||
* | Round paragraph position until we implement subpixel glyph positioning | 2023-05-08 | 1 | -2/+6 | ||
| | ||||||
* | Support configurable `LineHeight` in text widgets | 2023-05-04 | 1 | -6/+22 | ||
| | ||||||
* | Update `glyphon` and `cosmic-text` | 2023-05-02 | 1 | -1/+8 | ||
| | ||||||
* | Introduce `text::Shaping` enum and replace magic boolean | 2023-05-02 | 1 | -8/+8 | ||
| | ||||||
* | Make basic text shaping the default shaping strategy | 2023-05-02 | 1 | -0/+7 | ||
| | ||||||
* | Update `wgpu` and `cosmic-text` | 2023-04-08 | 1 | -10/+7 | ||
| | ||||||
* | Introduce `font::Stretch` | 2023-03-30 | 1 | -0/+15 | ||
| | ||||||
* | Introduce support for `Font` attributes | 2023-03-30 | 1 | -11/+33 | ||
| | ||||||
* | Update `cosmic-text` to latest :tada: | 2023-03-19 | 1 | -207/+165 | ||
| | ||||||
* | Trim text `Buffer` cache every frame in `iced_wgpu` and `iced_tiny_skia` | 2023-03-17 | 1 | -13/+3 | ||
| | ||||||
* | Merge branch 'advanced-text' into feature/software-renderer | 2023-03-04 | 1 | -17/+11 | ||
|\ | ||||||
| * | Reuse text buffers independently of color in `iced_wgpu` | 2023-02-27 | 1 | -17/+11 | ||
| | | ||||||
* | | Create `iced_widget` subcrate and re-organize the whole codebase | 2023-03-04 | 1 | -8/+6 | ||
| | | ||||||
* | | Implement `Canvas` support for `iced_tiny_skia` | 2023-03-01 | 1 | -1/+2 | ||
|/ | ||||||
* | Trim `Cache` every 300 frames in `text::Pipeline` | 2023-02-24 | 1 | -3/+13 | ||
| | ||||||
* | Collapse conditional and please `clippy` | 2023-02-24 | 1 | -0/+1 | ||
| | ||||||
* | Grow atlas in `text::Pipeline` when necessary | 2023-02-24 | 1 | -18/+36 | ||
| | ||||||
* | Set scissoring properly in `text::Pipeline` | 2023-02-24 | 1 | -0/+8 | ||
| | ||||||
* | Reuse a `RenderPass` as much as possible in `iced_wgpu` | 2023-02-24 | 1 | -27/+13 | ||
| | ||||||
* | Apply `ceil` to text bounds when drawing | 2023-02-24 | 1 | -2/+4 | ||
| | ||||||
* | Set `Attrs::monospaced` if `Font::Monospace` is selected | 2023-02-24 | 1 | -10/+13 | ||
| | ||||||
* | Set a minimum `height` for `Buffer` of `size * 1.2` | 2023-02-24 | 1 | -1/+4 | ||
| | | | | | This avoids text from misteriously disappearing, even if the user uses a `height` that isn't enough to fit the text. | |||||
* | Stop truncating the `renderers` in `text::Pipeline` | 2023-02-24 | 1 | -1/+0 | ||
| | | | | | We avoid recreating buffers this way, and the amount of layers should stay relatively low anyways. | |||||
* | Avoid allocating `text_areas` in `text::Pipeline` | 2023-02-24 | 1 | -7/+4 | ||
| | ||||||
* | Stop reusing `SwashCache` in `text::Pipeline` | 2023-02-24 | 1 | -7/+1 | ||
| | | | | | `SwashCache` can't be easily trimmed and it's not really getting us anything since `glyphon` already caches using a glyph atlas anyways. | |||||
* | Disable `std` feature for `twox-hash` to fix Wasm build | 2023-02-24 | 1 | -3/+8 | ||
| | ||||||
* | Fix `clippy` lints :tada: | 2023-02-24 | 1 | -6/+7 | ||
| | ||||||
* | Load `Iced-Icons.ttf` font in `text::Pipeline::new` | 2023-02-24 | 1 | -1/+7 | ||
| | ||||||
* | Use floating coordinates directly in `text::Pipeline` | 2023-02-24 | 1 | -7/+6 | ||
| | ||||||
* | Implement `font::load` command in `iced_native` | 2023-02-24 | 1 | -204/+266 | ||
| | ||||||
* | Overhaul `Font` type to allow font family selection | 2023-02-24 | 1 | -4/+6 | ||
| | ||||||
* | Count `layout_runs` instead of using `visible_lines` in ↵ | 2023-02-24 | 1 | -6/+7 | ||
| | | | | `text::Pipeline::prepare` | |||||
* | Implement `hit_test` for `text::Pipeline` in `iced_wgpu` | 2023-02-24 | 1 | -6/+18 | ||
| | ||||||
* | Use `bounds` directly for `measure` in text pipeline | 2023-02-24 | 1 | -4/+1 | ||
| | ||||||
* | Avoid unnecessary `Vec` allocation in text pipeline | 2023-02-24 | 1 | -7/+5 | ||
| | ||||||
* | Trim text `render_cache` after rendering in `iced_wgpu` | 2023-02-24 | 1 | -0/+2 | ||
| | ||||||
* | Implement basic text caching in `iced_wgpu` | 2023-02-24 | 1 | -60/+141 | ||
| | ||||||
* | Convert sRGB to linear RGB for text in `iced_wgpu` | 2023-02-24 | 1 | -2/+8 | ||
| | ||||||
* | Implement proper text alignment support in `iced_wgpu` | 2023-02-24 | 1 | -5/+32 | ||
| | ||||||
* | Implement support for multiple text layers in `iced_wgpu` | 2023-02-24 | 1 | -13/+32 | ||
| | ||||||
* | Draft `glyphon` implementation of text pipeline for `iced_wgpu` | 2023-02-24 | 1 | -10/+150 | ||
| | ||||||
* | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 2023-02-24 | 1 | -245/+19 | ||
| | ||||||
* | Address Clippy lints | 2022-07-09 | 1 | -1/+2 | ||
| | ||||||
* | Experimental wgpu WebGL backend support | 2022-01-28 | 1 | -3/+7 | ||
| | | | | | | | | - Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef | |||||
* | Use `Iterator::min_by` instead of `fold` in `hit_test` | 2021-09-15 | 1 | -13/+11 | ||
| | ||||||
* | Use `Option` to encode empty text case in hit test methods | 2021-09-15 | 1 | -8/+10 | ||
| |