summaryrefslogtreecommitdiffstats
path: root/glow (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added conditional configurations for WASM target for gradients & storage ↵Libravatar bungoboingo2022-11-101-0/+1
| | | | buffers, since storage buffers are not supported on wgpu WASM target at the moment.
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Fix outdated links in documentationLibravatar Héctor Ramón Jiménez2022-11-101-1/+1
|
* Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-11-101-3/+3
|
* Fixed issues with old GL versions ( <= 2.1 )Libravatar bungoboingo2022-11-083-19/+19
|
* Remove redundant features in `iced_wgpu` and `iced_glow`Libravatar Héctor Ramón Jiménez2022-11-054-18/+17
|
* Remove unnecessary dependencies from `iced_glow`Libravatar Héctor Ramón Jiménez2022-11-051-2/+0
|
* Use RGBA texture for `image` and `svg` pipelinesLibravatar Héctor Ramón Jiménez2022-11-051-1/+1
|
* Refactor some `image` traits a bitLibravatar Héctor Ramón Jiménez2022-11-053-42/+56
| | | | | | | - Use `Size<u32>` were applicable. - Rename `TextureStore` to `image::Storage`. - Rename `TextureStoreEntry` to `image::storage::Entry`. - Wire up `viewport_dimensions` to `iced_glow` for `Svg`.
* Add image/svg support to `iced_glow`Libravatar Ian Douglas Scott2022-11-057-6/+366
| | | | | | | | | | https://github.com/iced-rs/iced/issues/674 Uses image/svg support in `iced_graphics`. The is not currently using an atlas, and uses one texture/draw per image. This should be good enough for now; supporting images with glow is better than not supporting them, and if something else performs better, that improvement can be made without any change to the public API.
* Refactor imports of `triangle` modules in `iced_glow` and `iced_wgpu`Libravatar Héctor Ramón Jiménez2022-11-031-4/+3
|
* Move `mesh::Style` to `triangle` and reuse it in `fill` and `stroke`Libravatar Héctor Ramón Jiménez2022-11-031-3/+6
|
* Fix lints by `clippy`Libravatar Héctor Ramón Jiménez2022-11-031-2/+2
|
* Convert colors to linear RGB in `gradient` pipelinesLibravatar Héctor Ramón Jiménez2022-11-031-4/+6
|
* Convert colors to linear RGB before uploading in `solid` pipelinesLibravatar Héctor Ramón Jiménez2022-11-031-4/+6
|
* Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-11-033-47/+54
|
* Updated syntax for color stop iteration re: PR comments.Libravatar bungoboingo2022-10-181-2/+1
|
* Cleaned up namespaces re: PR comments.Libravatar bungoboingo2022-10-183-36/+36
|
* Fixed fragment shader compatibility issues with GLES 3.0+Libravatar bungoboingo2022-10-102-14/+14
|
* More import adjusting.Libravatar shan2022-10-071-5/+5
|
* Fixed an edge case where when gradient start/end are identical the GL ↵Libravatar shan2022-10-071-13/+19
| | | | fragment shader was not choosing the appropriate color.
* Added support for relative positioning of gradient fills. Addressed some PR ↵Libravatar shan2022-10-071-0/+3
| | | | feedback.
* Fixed some more imports/documentation.Libravatar shan2022-10-062-9/+11
|
* Fixed lint issues & cleaned up some documentation.Libravatar shan2022-10-065-7/+7
|
* Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵Libravatar shan2022-10-054-121/+77
| | | | gradient uniforms on OpenGL side to be more performant.
* Readjusted namespaces, removed Geometry example as it's no longer relevant.Libravatar shan2022-10-051-5/+5
|
* Reworked wgpu buffers, updated glow side to have proper transform location ↵Libravatar shan2022-10-045-149/+134
| | | | storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR.
* Fixed issue where OpenGL would not render both shaders at once under certain ↵Libravatar shan2022-09-291-30/+22
| | | | circumstances.
* Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-298-123/+429
|
* Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-092-9/+1
| | | | ... and check those in CI as well!
* Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-3/+11
| | | | ... and explicitly annotate crates as well.
* Address Clippy lintsLibravatar Poly2022-07-094-10/+9
|
* Draft first-class `Theme` supportLibravatar Héctor Ramón Jiménez2022-05-142-6/+17
| | | | RFC: https://github.com/iced-rs/rfcs/pull/6
* Merge branch 'master' into dev/system-informationLibravatar Héctor Ramón Jiménez2022-05-044-11/+11
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-05-021-4/+4
| |
| * Fix typo in `README` of `iced_glow`Libravatar Héctor Ramón Jiménez2022-05-021-1/+1
| |
| * Replace `hecrj` in links with `iced-rs`Libravatar Héctor Ramón Jiménez2022-05-023-6/+6
| |
| * Point repository links to `0.4` branch in documentationLibravatar Héctor Ramón Jiménez2022-04-301-1/+1
| |
* | Add logging to window and context creationLibravatar Richard2022-05-021-1/+13
| |
* | Rename `get_information` to `fetch_information`Libravatar Richard2022-04-271-1/+1
| |
* | Move `compositor` module access from `window` to `crate`Libravatar Richard2022-04-271-3/+3
| |
* | Rename `GraphicsInformation` to `Information`Libravatar Richard2022-04-261-2/+2
| |
* | Implement `GraphicsInformation` for `iced_glow`Libravatar Richard2022-04-261-0/+9
| |
* | Add logging to window and context creationLibravatar Richard2022-04-261-0/+2
|/
* Remove redundant `widget` modules in subcratesLibravatar Héctor Ramón Jiménez2022-03-0917-232/+0
| | | | Instead, we can define the type aliases just once in the root crate!
* Update Rust edition to 2021 :tada:Libravatar Héctor Ramón Jiménez2022-02-091-1/+1
|
* Replace Zulip links with DiscordLibravatar Héctor Ramón Jiménez2022-01-311-1/+1
|
* Use glow_glyp in opengl_integration exampleLibravatar Kai Mast2022-01-281-1/+1
|
* Experimental wgpu WebGL backend supportLibravatar Vladyslav Nikonov2022-01-281-4/+8
| | | | | | | | - Added missing `draw_cache_align_4x4` call for `brush_glyph` on wasm32 target - Added WebGL support to `integratio_wgpu` example - Fixed test.yml CI workflow - Removed spir-v shader in `integration_wgpu`; Fixed formatting - Removed redundant `BoxStream` typedef
* Add `Shader` and `Version`Libravatar Richard2022-01-196-134/+156
| | | | to simplify and constrain `program::create`