summaryrefslogtreecommitdiffstats
path: root/glow/src/window (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Log debugging infoLibravatar Richard2022-01-191-0/+7
|
* Rename `Renderer::present` to `with_primitives`Libravatar Héctor Ramón Jiménez2021-11-051-1/+1
|
* Remove trait-specific draw logic in `iced_native`Libravatar Héctor Ramón Jiménez2021-10-141-5/+5
|
* Fix window holes behind transparent objectsLibravatar Ildar Akhmetgaleev2021-09-021-1/+6
| | | | | | | | | | | | | | Without this change, the transparent objects composed over the opaque background creates the transparency of the entire window through which the desktop wallpaper could be seen. This problem manifested itself with glow backend and wayland compositor (gnome). This patch completely eliminates this problem. With it, the final image produced by glow backend corresponds to the image produced by the wgpu backend. Fixes #1018
* Make `Application` and `Sandbox` return a `Result`Libravatar Héctor Ramón Jiménez2020-09-081-3/+3
|
* Add `background_color` to `Application` and `Sandbox`Libravatar Héctor Ramón Jiménez2020-06-121-3/+5
|
* Revert "Merge pull request #371 from myfreeweb/window-alpha"Libravatar Héctor Ramón Jiménez2020-06-011-6/+1
| | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6.
* Add custom window background/clear color (incl. transparency) support, fixes ↵Libravatar Greg V2020-06-011-1/+6
| | | | | | | | | | | | #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.
* Use built-in OpenGL multisampling in `iced_glow`Libravatar Héctor Ramón Jiménez2020-05-221-1/+11
|
* Implement `iced_glutin` :tada:Libravatar Héctor Ramón Jiménez2020-05-211-143/+27
|
* Refactor `Viewport` and `Compositor`Libravatar Héctor Ramón Jiménez2020-05-201-12/+4
|
* Rename `window::Backend` to `Compositor`Libravatar Héctor Ramón Jiménez2020-05-191-5/+5
|
* Draft new `iced_graphics` crate :tada:Libravatar Héctor Ramón Jiménez2020-05-192-8/+8
|
* Draft first working version of `iced_glow` :tada:Libravatar Héctor Ramón Jiménez2020-05-192-0/+188