summaryrefslogtreecommitdiffstats
path: root/glow/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add styling support for `ComboBox` and `Menu`Libravatar Héctor Ramón Jiménez2020-07-081-1/+6
|
* Render arrow icon in `ComboBox`Libravatar Héctor Ramón Jiménez2020-07-081-0/+1
|
* Draft `ComboBox` and `Menu` layerLibravatar Héctor Ramón Jiménez2020-07-083-1/+7
|
* Make default text size configurable in `Settings`Libravatar Héctor Ramón Jiménez2020-06-192-0/+12
|
* Merge pull request #407 from hecrj/feature/generic-sliderLibravatar Héctor Ramón2020-06-141-1/+1
|\ | | | | Make `Slider` value type generic
| * Make `Slider` value type genericLibravatar Héctor Ramón Jiménez2020-06-131-1/+1
| |
* | Add `background_color` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-121-3/+5
|/
* Replace leftover docs in progress bar module (#396)Libravatar Voker572020-06-081-4/+4
| | | | | | | * Replace leftover docs in progress bar module * Fix consistency of `ProgressBar` docs Co-authored-by: Héctor Ramón Jiménez <hector0193@gmail.com>
* Rename `Rectangle::round` to `snap`Libravatar Héctor Ramón Jiménez2020-06-022-2/+2
| | | | | Also use `ceil` instead of `round`. Closes #380.
* Revert "Merge pull request #371 from myfreeweb/window-alpha"Libravatar Héctor Ramón Jiménez2020-06-012-12/+2
| | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6.
* Merge pull request #371 from myfreeweb/window-alphaLibravatar Héctor Ramón2020-06-012-2/+12
|\ | | | | Add custom window background/clear color (incl. transparency) support, fixes #272
| * Add custom window background/clear color (incl. transparency) support, fixes ↵Libravatar Greg V2020-06-012-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | #272 wgpu would currently ignore the alpha: https://github.com/gfx-rs/wgpu/issues/687 glow (and naively patched wgpu) requires premultiplied alpha, so if you don't multiply the RGB by the A right now, the semi-transparent color would be wrong (too bright). winit with_transparent doesn't seem necessary.
* | Feature gate `font-kit` behind `"default_system_font"` feature.Libravatar Azriel Hoh2020-05-311-6/+11
|/
* Fix `Backend` link in `iced_glow` docsLibravatar Héctor Ramón Jiménez2020-05-301-1/+1
|
* Expose `Backend` in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-302-4/+9
|
* Expose `pane_grid::{Node, Content}` in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-291-2/+2
|
* Revert "Target physical pixels for quads in `iced_glow`"Libravatar Héctor Ramón Jiménez2020-05-281-6/+6
| | | | This reverts commit 45511a442f707e93fe6e568d2100756b63af7362.
* Enable `doc_cfg` for `docs.rs` in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-281-0/+1
|
* Write documentation for `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-283-9/+17
|
* Target physical pixels for quads in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-271-6/+6
|
* Update `glyph_brush` and `glow_glyph`Libravatar Héctor Ramón Jiménez2020-05-272-54/+38
|
* Use published `glow` and `glow_glyph` versionsLibravatar Héctor Ramón Jiménez2020-05-222-8/+8
|
* Use built-in OpenGL multisampling in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-223-209/+57
|
* Use `get_uniform_location` for wider compatibilityLibravatar Héctor Ramón Jiménez2020-05-226-47/+92
|
* Implement MSAA for triangle meshes in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-221-41/+195
|
* Update to latest `glow`Libravatar Héctor Ramón Jiménez2020-05-212-24/+13
|
* Remove unused `overlay_font` in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-211-6/+6
|
* Draft `triangle` pipeline in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-216-52/+301
|
* Avoid relying `origin_upper_left`Libravatar Héctor Ramón Jiménez2020-05-212-3/+17
| | | | It seems to cause considerable glitches when resizing.
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-214-345/+59
|
* Refactor `Viewport` and `Compositor`Libravatar Héctor Ramón Jiménez2020-05-203-31/+16
|
* Move `Layer` to `iced_graphics`Libravatar Héctor Ramón Jiménez2020-05-194-280/+50
|
* Move `Antialiasing` to `iced_graphics`Libravatar Héctor Ramón Jiménez2020-05-191-24/+1
|
* Move built-in fonts to `iced_graphics`Libravatar Héctor Ramón Jiménez2020-05-193-14/+5
|
* Move `font::Source` to `iced_graphics`Libravatar Héctor Ramón Jiménez2020-05-192-40/+1
|
* Rename `window::Backend` to `Compositor`Libravatar Héctor Ramón Jiménez2020-05-192-7/+7
|
* Move `Viewport` to `iced_graphics`Libravatar Héctor Ramón Jiménez2020-05-192-37/+3
|
* Move `Transformation` to `iced_graphics`Libravatar Héctor Ramón Jiménez2020-05-192-56/+1
|
* Draft new `iced_graphics` crate :tada:Libravatar Héctor Ramón Jiménez2020-05-1933-1352/+50
|
* Draft first working version of `iced_glow` :tada:Libravatar Héctor Ramón Jiménez2020-05-1944-0/+3109