index
:
iced
master
A cross-platform GUI library for Rust, inspired by Elm
cel
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
wgpu
/
src
/
text.rs
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2023-06-20
Use subpixel glyph positioning and layout linearity
Héctor Ramón Jiménez
1
-25
/
+18
2023-06-16
Update `glyphon` and `cosmic-text`
Héctor Ramón Jiménez
1
-18
/
+13
2023-06-01
Use consistent color strategy in `glyphon`
Héctor Ramón Jiménez
1
-1
/
+10
2023-05-31
Introduce `web-colors` feature flag to enable sRGB linear blending
Héctor Ramón Jiménez
1
-1
/
+3
2023-05-08
Clip text that exceeds section bounds in `iced_wgpu`
Héctor Ramón Jiménez
1
-56
/
+68
2023-05-08
Round paragraph position until we implement subpixel glyph positioning
Héctor Ramón Jiménez
1
-2
/
+6
2023-05-04
Support configurable `LineHeight` in text widgets
Héctor Ramón Jiménez
1
-6
/
+22
2023-05-02
Update `glyphon` and `cosmic-text`
Héctor Ramón Jiménez
1
-1
/
+8
2023-05-02
Introduce `text::Shaping` enum and replace magic boolean
Héctor Ramón Jiménez
1
-8
/
+8
2023-05-02
Make basic text shaping the default shaping strategy
Héctor Ramón Jiménez
1
-0
/
+7
2023-04-08
Update `wgpu` and `cosmic-text`
Héctor Ramón Jiménez
1
-10
/
+7
2023-03-30
Introduce `font::Stretch`
Héctor Ramón Jiménez
1
-0
/
+15
2023-03-30
Introduce support for `Font` attributes
Héctor Ramón Jiménez
1
-11
/
+33
2023-03-19
Update `cosmic-text` to latest :tada:
Héctor Ramón Jiménez
1
-207
/
+165
2023-03-17
Trim text `Buffer` cache every frame in `iced_wgpu` and `iced_tiny_skia`
Héctor Ramón Jiménez
1
-13
/
+3
2023-03-04
Create `iced_widget` subcrate and re-organize the whole codebase
Héctor Ramón Jiménez
1
-8
/
+6
2023-03-01
Implement `Canvas` support for `iced_tiny_skia`
Héctor Ramón Jiménez
1
-1
/
+2
2023-02-27
Reuse text buffers independently of color in `iced_wgpu`
Héctor Ramón Jiménez
1
-17
/
+11
2023-02-24
Trim `Cache` every 300 frames in `text::Pipeline`
Héctor Ramón Jiménez
1
-3
/
+13
2023-02-24
Collapse conditional and please `clippy`
Héctor Ramón Jiménez
1
-0
/
+1
2023-02-24
Grow atlas in `text::Pipeline` when necessary
Héctor Ramón Jiménez
1
-18
/
+36
2023-02-24
Set scissoring properly in `text::Pipeline`
Héctor Ramón Jiménez
1
-0
/
+8
2023-02-24
Reuse a `RenderPass` as much as possible in `iced_wgpu`
Héctor Ramón Jiménez
1
-27
/
+13
2023-02-24
Apply `ceil` to text bounds when drawing
Héctor Ramón Jiménez
1
-2
/
+4
2023-02-24
Set `Attrs::monospaced` if `Font::Monospace` is selected
Héctor Ramón Jiménez
1
-10
/
+13
2023-02-24
Set a minimum `height` for `Buffer` of `size * 1.2`
Héctor Ramón Jiménez
1
-1
/
+4
2023-02-24
Stop truncating the `renderers` in `text::Pipeline`
Héctor Ramón Jiménez
1
-1
/
+0
2023-02-24
Avoid allocating `text_areas` in `text::Pipeline`
Héctor Ramón Jiménez
1
-7
/
+4
2023-02-24
Stop reusing `SwashCache` in `text::Pipeline`
Héctor Ramón Jiménez
1
-7
/
+1
2023-02-24
Disable `std` feature for `twox-hash` to fix Wasm build
Héctor Ramón Jiménez
1
-3
/
+8
2023-02-24
Fix `clippy` lints :tada:
Héctor Ramón Jiménez
1
-6
/
+7
2023-02-24
Load `Iced-Icons.ttf` font in `text::Pipeline::new`
Héctor Ramón Jiménez
1
-1
/
+7
2023-02-24
Use floating coordinates directly in `text::Pipeline`
Héctor Ramón Jiménez
1
-7
/
+6
2023-02-24
Implement `font::load` command in `iced_native`
Héctor Ramón Jiménez
1
-204
/
+266
2023-02-24
Overhaul `Font` type to allow font family selection
Héctor Ramón Jiménez
1
-4
/
+6
2023-02-24
Count `layout_runs` instead of using `visible_lines` in `text::Pipeline::prep...
Héctor Ramón Jiménez
1
-6
/
+7
2023-02-24
Implement `hit_test` for `text::Pipeline` in `iced_wgpu`
Héctor Ramón Jiménez
1
-6
/
+18
2023-02-24
Use `bounds` directly for `measure` in text pipeline
Héctor Ramón Jiménez
1
-4
/
+1
2023-02-24
Avoid unnecessary `Vec` allocation in text pipeline
Héctor Ramón Jiménez
1
-7
/
+5
2023-02-24
Trim text `render_cache` after rendering in `iced_wgpu`
Héctor Ramón Jiménez
1
-0
/
+2
2023-02-24
Implement basic text caching in `iced_wgpu`
Héctor Ramón Jiménez
1
-60
/
+141
2023-02-24
Convert sRGB to linear RGB for text in `iced_wgpu`
Héctor Ramón Jiménez
1
-2
/
+8
2023-02-24
Implement proper text alignment support in `iced_wgpu`
Héctor Ramón Jiménez
1
-5
/
+32
2023-02-24
Implement support for multiple text layers in `iced_wgpu`
Héctor Ramón Jiménez
1
-13
/
+32
2023-02-24
Draft `glyphon` implementation of text pipeline for `iced_wgpu`
Héctor Ramón Jiménez
1
-10
/
+150
2023-02-24
Remove `iced_glow`, `glyph-brush`, and `wgpu_glyph` dependencies
Héctor Ramón Jiménez
1
-245
/
+19
2022-07-09
Address Clippy lints
Poly
1
-1
/
+2
2022-01-28
Experimental wgpu WebGL backend support
Vladyslav Nikonov
1
-3
/
+7
2021-10-31
Introduce first-class `text` module in `iced_native`
Héctor Ramón Jiménez
1
-1
/
+1
2021-10-31
Remove `widget` module re-exports in `iced_native`
Héctor Ramón Jiménez
1
-1
/
+1
[prev]
[next]