Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-05-25 | Update `wgpu_glyph` and `glyph_brush` | 1 | -61/+78 | ||
2020-05-19 | Draft new `iced_graphics` crate :tada: | 1 | -507/+0 | ||
2020-04-30 | Rename `MouseCursor` to `mouse::Interaction` | 1 | -6/+5 | ||
2020-04-28 | Clip and cull `Mesh2D` primitives in `iced_wgpu` | 1 | -13/+23 | ||
2020-04-28 | Introduce `Translate` primitive in `iced_wgpu` | 1 | -7/+13 | ||
2020-04-26 | Render meshes after quads in `iced_wgpu` | 1 | -12/+12 | ||
2020-04-16 | Change `&mut wgpu::Device` to `&wgpu::Device` (#299) | 1 | -3/+3 | ||
* Change `&mut wgpu::Device` to `&wgpu::Device` * Fix for rustfmt | |||||
2020-04-10 | Align text in `iced_wgpu` on a case-by-case basis | 1 | -21/+4 | ||
2020-03-29 | Use `!is_empty()` instead of `len() > 0` | 1 | -1/+1 | ||
2020-03-28 | Fix formatting | 1 | -1/+1 | ||
2020-03-28 | Clippy | 1 | -5/+5 | ||
2020-03-07 | Implement `Primitive::Cached` | 1 | -50/+62 | ||
2020-03-06 | Remove counterintuitive constant functions | 1 | -1/+1 | ||
2020-02-28 | Remove unnecessary `pub(crate) use` | 1 | -1/+1 | ||
2020-02-28 | Stop creating image pipeline when unnecessary | 1 | -39/+64 | ||
2020-02-26 | Refactor texture atlas | 1 | -2/+2 | ||
- Split into multiple modules - Rename some concepts - Change API details | |||||
2020-02-24 | Make output format of `iced_wgpu` configurable | 1 | -5/+10 | ||
2020-02-22 | Fix `Clip` primitive intersection in `iced_wgpu` | 1 | -18/+11 | ||
2020-02-15 | Implement MSAA for `triangle` pipeline in `iced_wgpu` | 1 | -1/+8 | ||
2020-02-12 | Finish `clock` example | 1 | -6/+6 | ||
2020-02-09 | Improve consistency in new `iced_wgpu` types | 1 | -1/+1 | ||
2020-02-09 | Remove `scale_factor` from `iced_wgpu::Viewport` | 1 | -1/+2 | ||
2020-02-09 | Allow `iced_wgpu` to render to any `TextureView` | 1 | -84/+32 | ||
2020-02-07 | Update `winit` to `0.20` | 1 | -19/+25 | ||
2020-01-10 | Make layout bounds explicit in `UserInterface` | 1 | -1/+2 | ||
2020-01-10 | Move `Debugger` and `Windowed` to a better location | 1 | -4/+4 | ||
We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`. | |||||
2020-01-05 | Remove `background` from `Settings` | 1 | -12/+6 | ||
2020-01-02 | Rename `Geometry2D` to `Mesh2D` and move it to `iced_wgpu` | 1 | -29/+28 | ||
2020-01-01 | Implement Geometry2D primitive | 1 | -2/+31 | ||
2020-01-01 | Allow configuration of default font | 1 | -5/+8 | ||
2019-12-31 | Add `border_width` and `border_color` to `Quad` | 1 | -2/+7 | ||
2019-12-30 | Add `Renderer::Defaults` and style inheritance | 1 | -2/+7 | ||
2019-12-29 | Add `background_color` to `Settings` | 1 | -6/+12 | ||
2019-12-29 | Draft `Style` and `StyleSheet` for `Button` | 1 | -2/+2 | ||
2019-12-15 | Rerasterize SVGs when resized and refactor a bit | 1 | -2/+9 | ||
2019-12-12 | Merged svg pipeline into image | 1 | -29/+1 | ||
2019-12-12 | Improved dpi handling | 1 | -2/+1 | ||
2019-12-11 | Ran cargo_fmt over changed files. | 1 | -7/+5 | ||
2019-12-11 | Implemented SVG support in iced_wgpu. | 1 | -1/+33 | ||
2019-12-01 | Use `PowerPreference::Default` in `iced_wgpu` | 1 | -1/+1 | ||
2019-11-29 | Make many functions `const` | 1 | -1/+1 | ||
The point is to set up repeated components or boilerplate before their use sites. The majority of these make sense as `const`. However, some functions such as those regarding state may not make sense as `const`. | |||||
2019-11-30 | Implement basic image cache trimming in iced_wgpu | 1 | -0/+1 | ||
2019-11-29 | Allow to load an image from memory | 1 | -2/+2 | ||
New `image::Handle` opaque type uniquely identifying some `image::Data`, allowing reliable caching. | |||||
2019-11-22 | Write docs for `iced_wgpu` | 1 | -2/+6 | ||
2019-11-21 | Move widgets from `core` to `native` and `web` | 1 | -14/+14 | ||
Also made fields private and improved `Renderer` traits. | |||||
2019-11-14 | Fix text bounds in `iced_wgpu` on nonintegral DPI | 1 | -1/+17 | ||
2019-11-13 | Draft `Font` type and implement `Text::font` | 1 | -0/+2 | ||
2019-11-13 | Move text logic in `iced_wgpu` to a `text` module | 1 | -53/+17 | ||
2019-11-11 | Load default font only in measurement cache | 1 | -6/+8 | ||
2019-11-11 | Split text measurements cache from rendering cache | 1 | -12/+31 | ||
This speeds up layouting in the most common scenario considerably! :tada: |