summaryrefslogtreecommitdiffstats
path: root/src/settings.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Merge pull request #371 from myfreeweb/window-alpha"Libravatar Héctor Ramón Jiménez2020-06-011-26/+2
| | | | | This reverts commit 2ba9598f8022bf3035d97f1a30e53117b9619235, reversing changes made to d34f8e06c8e3cdbba07a272f346163cfc0f920a6.
* Add custom window background/clear color (incl. transparency) support, fixes ↵Libravatar Greg V2020-06-011-2/+26
| | | | | | | | | | | | #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.
* add helper for settings flags initLibravatar Rob Ede2020-04-061-0/+16
|
* Improve docs for `Sandbox` and `Application`Libravatar Héctor Ramón Jiménez2020-04-021-2/+4
|
* Allow passing external state to `Application::new`Libravatar Héctor Ramón Jiménez2020-03-301-3/+9
|
* Rename `Settings::use_antialiasing` to `antialiasing`Libravatar Héctor Ramón Jiménez2020-02-181-2/+2
|
* Rename `Settings::antialiasing` to `use_antialiasing`Libravatar Héctor Ramón Jiménez2020-02-151-1/+1
|
* Implement MSAA for `triangle` pipeline in `iced_wgpu`Libravatar Héctor Ramón Jiménez2020-02-151-0/+9
|
* Expose `window::Mode` in `iced`Libravatar Héctor Ramón Jiménez2020-01-161-25/+3
| | | | | Although the Fullscreen API in the Web platform has some limitations, it is still useful to be able to support fullscreen on the native side.
* Write missing docs and reenable deny statementsLibravatar Héctor Ramón Jiménez2020-01-091-10/+4
|
* Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-8/+0
|
* Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-011-0/+4
|
* Rename `Settings::background_color` to `background`Libravatar Héctor Ramón Jiménez2019-12-291-3/+3
|
* Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-291-1/+17
|
* Add `decorations` to `settings::Window`Libravatar Héctor Ramón Jiménez2019-12-031-4/+12
|
* Modify src/settings.rs to keep original APILibravatar hatoo2019-12-021-16/+4
|
* Remove platform-specific logic from icedLibravatar hatoo2019-12-011-0/+53
| | | | Make Window.platform_specific use iced_winit::settings::PlatformSpecific
* Add platform specific settingsLibravatar hatoo2019-11-301-48/+0
|
* Add `decorations` to SettingLibravatar hatoo2019-11-301-0/+5
|
* Allow `Application` configuration with `Settings`Libravatar Héctor Ramón Jiménez2019-11-251-0/+43