| Commit message (Expand) | Author | Age | Files | Lines |
* | Draft `Font` type and implement `Text::font` | Héctor Ramón Jiménez | 2019-11-13 | 1 | -0/+2 |
* | Move text logic in `iced_wgpu` to a `text` module | Héctor Ramón Jiménez | 2019-11-13 | 1 | -53/+17 |
* | Load default font only in measurement cache | Héctor Ramón Jiménez | 2019-11-11 | 1 | -6/+8 |
* | Split text measurements cache from rendering cache | Héctor Ramón Jiménez | 2019-11-11 | 1 | -12/+31 |
* | Draft custom layout engine based on `druid` | Héctor Ramón Jiménez | 2019-11-11 | 1 | -13/+14 |
* | Draft new layout API | Héctor Ramón Jiménez | 2019-11-10 | 1 | -2/+2 |
* | Merge pull request #47 from hecrj/improvement/text-performance | Héctor Ramón | 2019-11-08 | 1 | -2/+3 |
|\ |
|
| * | Increase initial size of text cache in `iced_wgpu` | Héctor Ramón Jiménez | 2019-11-07 | 1 | -0/+1 |
| * | Align text position to pixel grid in `iced_wgpu` | Héctor Ramón Jiménez | 2019-11-07 | 1 | -2/+2 |
* | | use Color's `From` impl in more places | memoryruins | 2019-11-07 | 1 | -6/+1 |
|/ |
|
* | Floor layer coords to avoid excessive clipping | Héctor Ramón Jiménez | 2019-11-07 | 1 | -2/+2 |
* | Fix integer overflow with nested clip primitives | Héctor Ramón Jiménez | 2019-11-06 | 1 | -18/+25 |
* | Apply HiDPI scaling to quads | Héctor Ramón Jiménez | 2019-11-05 | 1 | -3/+4 |
* | Apply HiDPI to text, images, and clip primitives | Héctor Ramón Jiménez | 2019-11-05 | 1 | -15/+38 |
* | Improve default font loading | Héctor Ramón Jiménez | 2019-11-05 | 1 | -8/+11 |
* | Use new `Layer` in `draw_overlay` | Héctor Ramón Jiménez | 2019-11-05 | 1 | -1/+1 |
* | Merge branch 'master' into feature/performance-metrics | Héctor Ramón Jiménez | 2019-11-05 | 1 | -11/+17 |
|\ |
|
| * | Add horizontal offset to `Primitive::Clip` | Héctor Ramón Jiménez | 2019-11-05 | 1 | -11/+17 |
* | | Implement debug view and load system fonts | Héctor Ramón Jiménez | 2019-11-03 | 1 | -12/+52 |
* | | Move `Target` to its own module | Héctor Ramón Jiménez | 2019-11-02 | 1 | -78/+12 |
* | | Draft `Metrics` and improve `Target` abstraction | Héctor Ramón Jiménez | 2019-11-02 | 1 | -30/+54 |
|/ |
|
* | Draft `TextInput` widget structure | Héctor Ramón Jiménez | 2019-10-30 | 1 | -8/+14 |
* | Rename `Primitive::Scrollable` to `Clip` | Héctor Ramón Jiménez | 2019-10-29 | 1 | -1/+1 |
* | Draw scrollbar on top of scrollable content | Héctor Ramón Jiménez | 2019-10-29 | 1 | -12/+17 |
* | Issue draw calls only when necessary | Héctor Ramón Jiménez | 2019-10-29 | 1 | -17/+21 |
* | Implement text clipping (caching still broken) | Héctor Ramón Jiménez | 2019-10-28 | 1 | -13/+8 |
* | Draft text scrolling (no clipping yet!) | Héctor Ramón Jiménez | 2019-10-27 | 1 | -5/+28 |
* | Implement clipping for quads | Héctor Ramón Jiménez | 2019-10-27 | 1 | -1/+2 |
* | Remove `adapter` from `iced_wgpu::Renderer` | Héctor Ramón Jiménez | 2019-10-27 | 1 | -2/+0 |
* | Implement clipping for images | Héctor Ramón Jiménez | 2019-10-27 | 1 | -6/+25 |
* | Draft `Scrollable` widget (no clipping yet!) | Héctor Ramón Jiménez | 2019-10-25 | 1 | -28/+69 |
* | Implement basic image rendering in `iced_wgpu` | Héctor Ramón Jiménez | 2019-10-23 | 1 | -1/+23 |
* | Draft `Debugger` implementation in `iced_wgpu` | Héctor Ramón Jiménez | 2019-10-13 | 1 | -3/+30 |
* | Handle mouse cursor in `iced_wgpu` | Héctor Ramón Jiménez | 2019-10-11 | 1 | -4/+3 |
* | Rename `Renderer::Primitive` to `Renderer::Output` | Héctor Ramón Jiménez | 2019-10-11 | 1 | -5/+6 |
* | Move `winit` logic from `iced` to `iced_winit` | Héctor Ramón Jiménez | 2019-10-09 | 1 | -5/+31 |
* | Make `iced_core::Button` customizable | Héctor Ramón Jiménez | 2019-10-08 | 1 | -10/+66 |
* | Use latest `wgpu` | Héctor Ramón Jiménez | 2019-10-07 | 1 | -11/+11 |
* | Use `log` crate instead of `dbg!` | Héctor Ramón Jiménez | 2019-10-07 | 1 | -0/+2 |
* | Render colored quads | Héctor Ramón Jiménez | 2019-10-07 | 1 | -2/+28 |
* | Rename `Box` primitive to `Quad` | Héctor Ramón Jiménez | 2019-10-07 | 1 | -2/+2 |
* | Make `tour` a simple example instead of a crate | Héctor Ramón Jiménez | 2019-10-06 | 1 | -1/+1 |
* | Draft `Box` primitive | Héctor Ramón Jiménez | 2019-10-06 | 1 | -0/+3 |
* | Modularize `iced_wgpu` | Héctor Ramón Jiménez | 2019-10-05 | 1 | -0/+167 |