Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove blank line if `layer::mesh` in `iced_graphics` | 2022-11-03 | 1 | -1/+0 | |
| | |||||
* | Refactor exports in `graphics::layer` | 2022-11-03 | 1 | -5/+7 | |
| | |||||
* | Move `Position` and `Location` to `gradient` module | 2022-11-03 | 2 | -90/+92 | |
| | |||||
* | Merge branch 'master' into fear/linear-gradients | 2022-11-03 | 2 | -4/+4 | |
|\ | |||||
| * | Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18` | 2022-11-01 | 2 | -4/+4 | |
| | | |||||
* | | Fix lints by `clippy` | 2022-11-03 | 4 | -19/+12 | |
| | | |||||
* | | Run `cargo fmt` | 2022-11-03 | 6 | -23/+21 | |
| | | |||||
* | | Reuse last buffer in `Frame` if `mesh_style` matches | 2022-11-03 | 3 | -37/+51 | |
| | | |||||
* | | Documentation changes | 2022-10-19 | 1 | -1/+4 | |
| | | |||||
* | | Changed gradient builder to be more clear about what caused certain errors. | 2022-10-18 | 1 | -22/+30 | |
| | | |||||
* | | Cleaned up namespaces re: PR comments. | 2022-10-18 | 2 | -2/+7 | |
| | | |||||
* | | Merge branch 'master' into fear/linear-gradients | 2022-10-07 | 2 | -0/+7 | |
|\| | |||||
| * | expose touch events in canvas widget | 2022-10-04 | 2 | -0/+7 | |
| | | |||||
* | | Jumped the gun on pushing; one more readability update :P | 2022-10-07 | 1 | -3/+3 | |
| | | |||||
* | | Adjusted gradient transform function to be more readable. | 2022-10-07 | 4 | -28/+25 | |
| | | |||||
* | | Fixed import issue with canvas in the gradient mod for situations where ↵ | 2022-10-07 | 4 | -25/+25 | |
| | | | | | | | | canvas feature is not enabled. | ||||
* | | More import adjusting. | 2022-10-07 | 2 | -13/+13 | |
| | | |||||
* | | Adjusted reexports for clarity. | 2022-10-07 | 1 | -1/+1 | |
| | | |||||
* | | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 2022-10-07 | 5 | -35/+150 | |
| | | | | | | | | feedback. | ||||
* | | Fixed some more imports/documentation. | 2022-10-06 | 3 | -5/+4 | |
| | | |||||
* | | Fixed some imports/documentation. | 2022-10-06 | 1 | -0/+1 | |
| | | |||||
* | | Added support for gradients to respect current frame transform. | 2022-10-06 | 5 | -20/+56 | |
| | | |||||
* | | Changed tesselation functions to take Vertex2D builder instead of using ↵ | 2022-10-06 | 1 | -17/+31 | |
| | | | | | | | | lyon's builtin Point type to avoid extra copies. | ||||
* | | Fixed lint issues & cleaned up some documentation. | 2022-10-06 | 9 | -9/+8 | |
| | | |||||
* | | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵ | 2022-10-05 | 1 | -2/+1 | |
| | | | | | | | | gradient uniforms on OpenGL side to be more performant. | ||||
* | | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 2022-10-05 | 14 | -223/+247 | |
| | | |||||
* | | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 2022-10-04 | 5 | -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 ↵ | 2022-09-30 | 9 | -147/+123 | |
| | | | | | | | | Canvas widget, where it was previously only accessible. | ||||
* | | Fixed issue where stops could be declared out of order in the builder but ↵ | 2022-09-29 | 1 | -8/+8 | |
| | | | | | | | | must be sorted before being passed to shader. | ||||
* | | Adds linear gradient support to 2D meshes in the canvas widget. | 2022-09-29 | 14 | -111/+308 | |
|/ | |||||
* | Make `Cache::clear` immutable | 2022-09-13 | 1 | -1/+1 | |
| | |||||
* | Don't double translate text clip | 2022-08-15 | 1 | -1/+1 | |
| | |||||
* | Remove `pure` leftovers in `iced_graphics` | 2022-07-27 | 4 | -325/+0 | |
| | |||||
* | Replace stateful widgets with new `iced_pure` API | 2022-07-27 | 11 | -164/+67 | |
| | |||||
* | Remove unnecessary `let` bindings in `canvas::Frame` | 2022-07-11 | 1 | -4/+3 | |
| | |||||
* | Update `lyon` to `1.0` :tada: | 2022-07-11 | 4 | -9/+8 | |
| | | | | Congrats and thanks to @nical! | ||||
* | fix another discrepancy with HTML5 arcTo | 2022-07-10 | 1 | -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_to | 2022-07-10 | 1 | -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/clippy | 2022-07-09 | 8 | -24/+42 | |
|\ | | | | | Address Clippy lints | ||||
| * | Fix `clippy` lints for all crates and features | 2022-07-09 | 5 | -8/+23 | |
| | | | | | | | | ... and check those in CI as well! | ||||
| * | Fix further `clippy` lints | 2022-07-09 | 1 | -4/+12 | |
| | | | | | | | | ... and explicitly annotate crates as well. | ||||
| * | Run `cargo fmt` | 2022-07-09 | 1 | -3/+2 | |
| | | |||||
| * | Address Clippy lints | 2022-07-09 | 4 | -10/+6 | |
| | | |||||
* | | Fix doc example in `pure::canvas::Program` | 2022-07-09 | 1 | -1/+3 | |
| | | | | | | The `widget` module was missing. | ||||
* | | Update import path in pure canvas example | 2022-07-09 | 1 | -1/+1 | |
|/ | | | | | In current version, `iced::pure::canvas` would be unresolved. It should be `iced::pure::widget::canvas`. | ||||
* | Merge branch 'master' into theming | 2022-07-08 | 3 | -3/+11 | |
|\ | |||||
| * | Bump versions :tada: | 2022-07-01 | 1 | -1/+1 | |
| | | |||||
| * | Fix `Widget::tag` implementation of `pure::Canvas` | 2022-07-01 | 1 | -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 ↵ | 2022-06-22 | 1 | -1/+8 | |
| | | | | | | | | Text structure interact | ||||
* | | Implement theme styling for `Canvas` | 2022-06-07 | 4 | -37/+63 | |
| | |