summaryrefslogtreecommitdiffstats
path: root/graphics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Export `Gradient` in `iced_graphics` rootLibravatar Héctor Ramón Jiménez2022-11-031-0/+1
|
* Remove blank line if `layer::mesh` in `iced_graphics`Libravatar Héctor Ramón Jiménez2022-11-031-1/+0
|
* Refactor exports in `graphics::layer`Libravatar Héctor Ramón Jiménez2022-11-031-5/+7
|
* Move `Position` and `Location` to `gradient` moduleLibravatar Héctor Ramón Jiménez2022-11-032-90/+92
|
* Merge branch 'master' into fear/linear-gradientsLibravatar Héctor Ramón Jiménez2022-11-032-4/+4
|\
| * Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18`Libravatar Wyatt Herkamp2022-11-012-4/+4
| |
* | Fix lints by `clippy`Libravatar Héctor Ramón Jiménez2022-11-034-19/+12
| |
* | Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-11-036-23/+21
| |
* | Reuse last buffer in `Frame` if `mesh_style` matchesLibravatar Héctor Ramón Jiménez2022-11-033-37/+51
| |
* | Documentation changesLibravatar bungoboingo2022-10-191-1/+4
| |
* | Changed gradient builder to be more clear about what caused certain errors.Libravatar bungoboingo2022-10-181-22/+30
| |
* | Cleaned up namespaces re: PR comments.Libravatar bungoboingo2022-10-182-2/+7
| |
* | Merge branch 'master' into fear/linear-gradientsLibravatar Bingus2022-10-072-0/+7
|\|
| * expose touch events in canvas widgetLibravatar Artur Sapek2022-10-042-0/+7
| |
* | Jumped the gun on pushing; one more readability update :PLibravatar shan2022-10-071-3/+3
| |
* | Adjusted gradient transform function to be more readable.Libravatar shan2022-10-074-28/+25
| |
* | Fixed import issue with canvas in the gradient mod for situations where ↵Libravatar shan2022-10-074-25/+25
| | | | | | | | canvas feature is not enabled.
* | More import adjusting.Libravatar shan2022-10-072-13/+13
| |
* | Adjusted reexports for clarity.Libravatar shan2022-10-071-1/+1
| |
* | Added support for relative positioning of gradient fills. Addressed some PR ↵Libravatar shan2022-10-075-35/+150
| | | | | | | | feedback.
* | Fixed some more imports/documentation.Libravatar shan2022-10-063-5/+4
| |
* | Fixed some imports/documentation.Libravatar shan2022-10-061-0/+1
| |
* | Added support for gradients to respect current frame transform.Libravatar shan2022-10-065-20/+56
| |
* | Changed tesselation functions to take Vertex2D builder instead of using ↵Libravatar shan2022-10-061-17/+31
| | | | | | | | lyon's builtin Point type to avoid extra copies.
* | Fixed lint issues & cleaned up some documentation.Libravatar shan2022-10-069-9/+8
| |
* | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵Libravatar shan2022-10-051-2/+1
| | | | | | | | gradient uniforms on OpenGL side to be more performant.
* | Readjusted namespaces, removed Geometry example as it's no longer relevant.Libravatar shan2022-10-0514-223/+247
| |
* | Reworked wgpu buffers, updated glow side to have proper transform location ↵Libravatar shan2022-10-045-36/+30
| | | | | | | | storage, attempting to fix visibility modifiers, implemented some of the feedback received in initial PR.
* | Fixed some importing issues since you can use a Shader::Gradient outside a ↵Libravatar shan2022-09-309-147/+123
| | | | | | | | Canvas widget, where it was previously only accessible.
* | Fixed issue where stops could be declared out of order in the builder but ↵Libravatar shan2022-09-291-8/+8
| | | | | | | | must be sorted before being passed to shader.
* | Adds linear gradient support to 2D meshes in the canvas widget.Libravatar shan2022-09-2914-111/+308
|/
* Make `Cache::clear` immutableLibravatar Héctor Ramón Jiménez2022-09-131-1/+1
|
* Don't double translate text clipLibravatar Cory Forsstrom2022-08-151-1/+1
|
* Remove `pure` leftovers in `iced_graphics`Libravatar Héctor Ramón Jiménez2022-07-274-325/+0
|
* Replace stateful widgets with new `iced_pure` APILibravatar Héctor Ramón Jiménez2022-07-2711-164/+67
|
* Remove unnecessary `let` bindings in `canvas::Frame`Libravatar Héctor Ramón Jiménez2022-07-111-4/+3
|
* Update `lyon` to `1.0` :tada:Libravatar Héctor Ramón Jiménez2022-07-114-9/+8
| | | | Congrats and thanks to @nical!
* fix another discrepancy with HTML5 arcToLibravatar ThatsNoMoon2022-07-101-7/+12
| | | | | HTML5's arcTo does not draw a line from the end of the arc to `b`, so this should not either.
* fix arc_toLibravatar ThatsNoMoon2022-07-101-7/+41
| | | | | Fixed `path::Builder::arc_to` to behave the same as [HTML5's `arcTo`] ( https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-arcto ).
* Merge pull request #1379 from PolyMeilex/fix/clippyLibravatar Héctor Ramón2022-07-098-24/+42
|\ | | | | Address Clippy lints
| * Fix `clippy` lints for all crates and featuresLibravatar Héctor Ramón Jiménez2022-07-095-8/+23
| | | | | | | | ... and check those in CI as well!
| * Fix further `clippy` lintsLibravatar Héctor Ramón Jiménez2022-07-091-4/+12
| | | | | | | | ... and explicitly annotate crates as well.
| * Run `cargo fmt`Libravatar Héctor Ramón Jiménez2022-07-091-3/+2
| |
| * Address Clippy lintsLibravatar Poly2022-07-094-10/+6
| |
* | Fix doc example in `pure::canvas::Program`Libravatar Héctor Ramón2022-07-091-1/+3
| | | | | | The `widget` module was missing.
* | Update import path in pure canvas exampleLibravatar Zoron2022-07-091-1/+1
|/ | | | | In current version, `iced::pure::canvas` would be unresolved. It should be `iced::pure::widget::canvas`.
* Merge branch 'master' into themingLibravatar Héctor Ramón Jiménez2022-07-083-3/+11
|\
| * Bump versions :tada:Libravatar Héctor Ramón Jiménez2022-07-011-1/+1
| |
| * Fix `Widget::tag` implementation of `pure::Canvas`Libravatar Héctor Ramón Jiménez2022-07-011-1/+2
| | | | | | | | | | Using `P::State` can cause a panic if the `Canvas` has `()` as `P::State` and replaces a stateless widget in a future `view` call.
| * Added more clarification as to how the position and alignment of the Canvas ↵Libravatar Jhanny Jimenez2022-06-221-1/+8
| | | | | | | | Text structure interact