summaryrefslogtreecommitdiffstats
path: root/native/src/renderer/windowed.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move `Debugger` and `Windowed` to a better locationLibravatar Héctor Ramón Jiménez2020-01-101-58/+0
| | | | | We move `renderer::Debugger` to `layout::Debugger` and `renderer::Windowed` to `window::Renderer`.
* Write missing docs and reenable deny statementsLibravatar Héctor Ramón Jiménez2020-01-091-0/+1
|
* Remove `background` from `Settings`Libravatar Héctor Ramón Jiménez2020-01-051-2/+1
|
* Allow configuration of default fontLibravatar Héctor Ramón Jiménez2020-01-011-1/+3
|
* Add `background_color` to `Settings`Libravatar Héctor Ramón Jiménez2019-12-291-1/+2
|
* Write docs for `iced` and `iced_native`Libravatar Héctor Ramón Jiménez2019-11-221-0/+19
|
* Apply HiDPI to text, images, and clip primitivesLibravatar Héctor Ramón Jiménez2019-11-051-1/+8
| | | | | Quads are a bit trickier to handle. We may need to change the shaders a bit.
* Implement debug view and load system fontsLibravatar Héctor Ramón Jiménez2019-11-031-3/+3
|
* Draft `Metrics` and improve `Target` abstractionLibravatar Héctor Ramón Jiménez2019-11-021-6/+18
|
* Rename `Renderer::Primitive` to `Renderer::Output`Libravatar Héctor Ramón Jiménez2019-10-111-1/+1
|
* Move `winit` logic from `iced` to `iced_winit`Libravatar Héctor Ramón Jiménez2019-10-091-0/+17
- Added new `renderer::Windowed` trait. This shoud allow users to easily try different renderers by simply changing one line. - Renamed `UserInterface` traits to `Application`, as the `run` method takes total control of the current thread. - Moved `MouseCursor` back to `iced_native`. The new `renderer::Windowed` trait returns one on `draw`. - Split `iced_native` renderer in multiple modules, for consistency.