Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move text logic in `iced_wgpu` to a `text` module | 2019-11-13 | 6 | -82/+131 | |
| | |||||
* | Load default font only in measurement cache | 2019-11-11 | 1 | -6/+8 | |
| | |||||
* | Fix doc comments and remove `Align` from `tour` | 2019-11-11 | 3 | -11/+20 | |
| | |||||
* | Split text measurements cache from rendering cache | 2019-11-11 | 9 | -24/+53 | |
| | | | | | This speeds up layouting in the most common scenario considerably! :tada: | ||||
* | Remove `padding` from `Container` for now | 2019-11-11 | 5 | -23/+13 | |
| | |||||
* | Implement `Container` widget | 2019-11-11 | 25 | -205/+310 | |
| | | | | Remove `align_self` and `justify_content` methods | ||||
* | Fix integer overflow in `flex::resolve` | 2019-11-11 | 1 | -1/+2 | |
| | |||||
* | Draft custom layout engine based on `druid` | 2019-11-11 | 38 | -247/+972 | |
| | |||||
* | Draft new layout API | 2019-11-10 | 30 | -596/+247 | |
| | |||||
* | Merge pull request #49 from hecrj/feature/control-window-title | 2019-11-09 | 5 | -18/+64 | |
|\ | | | | | Allow applications to control the window title | ||||
| * | Allow applications to control the window title | 2019-11-09 | 5 | -18/+64 | |
|/ | | | | `iced_winit` will change the window title dynamically at runtime! | ||||
* | Merge pull request #47 from hecrj/improvement/text-performance | 2019-11-08 | 1 | -2/+3 | |
|\ | | | | | Improve text rendering performance in some scenarios | ||||
| * | Increase initial size of text cache in `iced_wgpu` | 2019-11-07 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | This reduces the amount of cache updates in general when text changes. The new cache should take 4MB of VRAM. I think this is reasonable for a modern GUI toolkit. In any case, we should be able to reduce this value in the future. | ||||
| * | Align text position to pixel grid in `iced_wgpu` | 2019-11-07 | 1 | -2/+2 | |
| | | | | | | | | | | This avoids re-rasterizing glyphs and cache reuploads when the HiDPI factor is nonintegral. | ||||
* | | Merge pull request #45 from memoryruins/smol-changes | 2019-11-08 | 2 | -9/+4 | |
|\ \ | | | | | | | Minor clean-up | ||||
| * | | use `String::clone` in todo example | 2019-11-07 | 1 | -1/+1 | |
| | | | |||||
| * | | minor changes to text_input's use of iterators | 2019-11-07 | 1 | -8/+3 | |
| | | | |||||
* | | | Merge pull request #46 from memoryruins/from-array | 2019-11-07 | 8 | -139/+61 | |
|\ \ \ | | | | | | | | | impl From<Array> for Color | ||||
| * | | | use Color's `From` impl in more places | 2019-11-07 | 7 | -139/+49 | |
| | | | | |||||
| * | | | impl From<Array> for Color | 2019-11-07 | 1 | -0/+12 | |
| |/ / | |||||
* | | | Merge pull request #44 from hecrj/improvement/update-wgpu | 2019-11-07 | 1 | -2/+2 | |
|\ \ \ | |/ / |/| / | |/ | Update `wgpu` to `0.4` in `iced_wgpu` | ||||
| * | Update `wgpu` to `0.4` in `iced_wgpu` | 2019-11-07 | 1 | -2/+2 | |
|/ | |||||
* | Merge pull request #43 from hecrj/fix/clip-primitive-overflow | 2019-11-07 | 1 | -18/+25 | |
|\ | | | | | Fix integer overflow with nested clip primitives | ||||
| * | Floor layer coords to avoid excessive clipping | 2019-11-07 | 1 | -2/+2 | |
| | | |||||
| * | Fix integer overflow with nested clip primitives | 2019-11-06 | 1 | -18/+25 | |
|/ | |||||
* | Merge pull request #40 from hecrj/feature/hidpi-support | 2019-11-06 | 13 | -91/+177 | |
|\ | | | | | HiDPI support | ||||
| * | Fix panic in `Transformation::scale` | 2019-11-06 | 1 | -1/+1 | |
| | | |||||
| * | Remove hardcoded HiDPI scaling | 2019-11-06 | 2 | -2/+3 | |
| | | |||||
| * | Fix Tour for HiDPI (stub) | 2019-11-06 | 2 | -3/+5 | |
| | | |||||
| * | Merge branch 'master' into feature/hidpi-support | 2019-11-05 | 0 | -0/+0 | |
| |\ | |/ |/| | |||||
* | | Merge pull request #38 from hecrj/feature/performance-metrics | 2019-11-05 | 29 | -296/+550 | |
|\ \ | | | | | | | Debug view | ||||
| | * | Fix checkbox border radius | 2019-11-05 | 1 | -1/+1 | |
| | | | |||||
| | * | Apply HiDPI scaling to quads | 2019-11-05 | 6 | -32/+61 | |
| | | | | | | | | | | | | The anti-aliasing strategy is pretty naive, but we will manage for now. | ||||
| | * | Apply HiDPI to text, images, and clip primitives | 2019-11-05 | 6 | -58/+112 | |
| |/ | | | | | | | | | Quads are a bit trickier to handle. We may need to change the shaders a bit. | ||||
| * | Improve default font loading | 2019-11-05 | 2 | -18/+19 | |
| | | |||||
| * | Use new `Layer` in `draw_overlay` | 2019-11-05 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'master' into feature/performance-metrics | 2019-11-05 | 12 | -124/+459 | |
| |\ | |/ |/| | |||||
* | | Merge pull request #37 from hecrj/feature/text-input | 2019-11-05 | 21 | -60/+741 | |
|\ \ | | | | | | | Text input widget | ||||
| * | | Implement state-less scrolling in `TextInput` | 2019-11-05 | 1 | -56/+65 | |
| | | | |||||
| * | | Add horizontal offset to `Primitive::Clip` | 2019-11-05 | 6 | -25/+40 | |
| | | | |||||
| * | | Remove unnecessary code in `Value` | 2019-11-05 | 1 | -18/+1 | |
| | | | |||||
| * | | Merge branch 'master' into feature/text-input | 2019-11-03 | 5 | -26/+354 | |
| |\ \ | |/ / |/| | | |||||
* | | | Merge pull request #35 from hecrj/feature/scrollables | 2019-11-03 | 27 | -113/+907 | |
|\ \ \ | | | | | | | | | Scrollable widget | ||||
| * | | | Show Ferris at the end of the scrollable section | 2019-11-02 | 1 | -14/+17 | |
| | | | | |||||
* | | | | Link to specific issues in the `ROADMAP` | 2019-10-26 | 1 | -11/+29 | |
| | | | | |||||
* | | | | Merge pull request #23 from hecrj/roadmap | 2019-10-26 | 4 | -12/+319 | |
|\ \ \ \ | | | | | | | | | | | Add `ROADMAP` | ||||
| * | | | | Clarify a couple of ideas in the `ROADMAP` | 2019-10-26 | 1 | -2/+4 | |
| | | | | | |||||
| * | | | | Mention roadmap and show crate graph in `README` | 2019-10-26 | 1 | -12/+18 | |
| | | | | | |||||
| * | | | | Clarify event subscriptions in `ROADMAP` | 2019-10-25 | 1 | -1/+1 | |
| | | | | | |||||
| * | | | | Fix spelling and grammar in `ROADMAP` | 2019-10-25 | 1 | -6/+6 | |
| | | | | | | | | | | | | | | | Co-Authored-By: memoryruins <memoryruinsmusic@gmail.com> |