Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement basic presentation with `softbuffer` for `iced_tiny_skia` | 2023-02-25 | 1 | -3/+7 | |
| | |||||
* | Introduce `iced_renderer` subcrate featuring runtime renderer fallback | 2023-02-24 | 2 | -54/+88 | |
| | |||||
* | Trim `Cache` every 300 frames in `text::Pipeline` | 2023-02-24 | 1 | -3/+13 | |
| | |||||
* | Collapse conditional and please `clippy` | 2023-02-24 | 2 | -5/+6 | |
| | |||||
* | Provide some margin to static buffers when growing | 2023-02-24 | 2 | -6/+9 | |
| | |||||
* | Update `glyphon` in `iced_wgpu` | 2023-02-24 | 1 | -1/+1 | |
| | |||||
* | Grow atlas in `text::Pipeline` when necessary | 2023-02-24 | 3 | -33/+78 | |
| | |||||
* | Set scissoring properly in `text::Pipeline` | 2023-02-24 | 2 | -1/+10 | |
| | |||||
* | Use my GitHub fork of `glyphon` | 2023-02-24 | 1 | -3/+2 | |
| | |||||
* | Reuse a `RenderPass` as much as possible in `iced_wgpu` | 2023-02-24 | 7 | -170/+195 | |
| | |||||
* | Refactor `triangle::Pipeline` into `prepare` and `render` architecture | 2023-02-24 | 6 | -282/+358 | |
| | | | | And get rid of the staging belt! :tada: | ||||
* | Fix needless borrows in `image::Pipeline` | 2023-02-24 | 1 | -2/+2 | |
| | |||||
* | Refactor `image::Pipeline` into `prepare` and `render` architecture | 2023-02-24 | 4 | -147/+190 | |
| | |||||
* | Remove unnecessary borrow in `quad::Pipeline` | 2023-02-24 | 1 | -1/+1 | |
| | |||||
* | Fix rendering order for `quad::Pipeline` | 2023-02-24 | 2 | -14/+15 | |
| | |||||
* | Apply `ceil` to text bounds when drawing | 2023-02-24 | 1 | -2/+4 | |
| | |||||
* | Refactor `quad::Pipeline` to `prepare` and `render` architecture | 2023-02-24 | 3 | -112/+230 | |
| | |||||
* | 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 | 2 | -8/+5 | |
| | |||||
* | 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. | ||||
* | Update `glyphon` fork (sRGB support) | 2023-02-24 | 1 | -1/+1 | |
| | |||||
* | Disable `std` feature for `twox-hash` to fix Wasm build | 2023-02-24 | 2 | -4/+16 | |
| | |||||
* | Fix `clippy` lints :tada: | 2023-02-24 | 1 | -6/+7 | |
| | |||||
* | Load `Iced-Icons.ttf` font in `text::Pipeline::new` | 2023-02-24 | 3 | -4/+10 | |
| | |||||
* | Use floating coordinates directly in `text::Pipeline` | 2023-02-24 | 2 | -8/+8 | |
| | |||||
* | Implement `font::load` command in `iced_native` | 2023-02-24 | 3 | -204/+273 | |
| | |||||
* | Overhaul `Font` type to allow font family selection | 2023-02-24 | 5 | -46/+26 | |
| | |||||
* | 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 | 2 | -60/+143 | |
| | |||||
* | 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 | 2 | -13/+35 | |
| | |||||
* | Draft `glyphon` implementation of text pipeline for `iced_wgpu` | 2023-02-24 | 4 | -16/+171 | |
| | |||||
* | Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies | 2023-02-24 | 3 | -329/+25 | |
| | |||||
* | Remove logging large bytes arrays | 2023-02-23 | 1 | -1/+17 | |
| | |||||
* | Bump versions :tada: | 2023-02-18 | 3 | -5/+5 | |
| | |||||
* | Use `Pixels` for `Text::size` | 2023-02-17 | 2 | -6/+6 | |
| | |||||
* | Fix: Clippy lint 'uninlined_format_args' | 2023-01-27 | 1 | -1/+1 | |
| | |||||
* | Bump versions in `README`s | 2023-01-14 | 1 | -1/+1 | |
| | |||||
* | Bump versions :tada: | 2023-01-14 | 2 | -4/+4 | |
| | |||||
* | Restructured everything to make profiling a feature of iced_winit. | 2023-01-09 | 5 | -29/+27 | |
| | |||||
* | Initial profiling support for Iced. | 2023-01-09 | 5 | -11/+45 | |
| | |||||
* | Fix `clippy` lints for Rust 1.66 | 2022-12-20 | 2 | -6/+2 | |
| | |||||
* | Bump versions :tada: | 2022-12-07 | 2 | -4/+4 | |
| |