Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename `buffers` module to `buffer` | 2022-11-03 | 7 | -66/+66 | |
| | | | | ... and move `StaticBuffer` to nested `static` module | ||||
* | Fix lints by `clippy` | 2022-11-03 | 9 | -28/+20 | |
| | |||||
* | Fix `multitouch` example | 2022-11-03 | 1 | -2/+3 | |
| | |||||
* | Convert colors to linear RGB in `gradient` pipelines | 2022-11-03 | 2 | -12/+13 | |
| | |||||
* | Convert colors to linear RGB before uploading in `solid` pipelines | 2022-11-03 | 2 | -5/+9 | |
| | |||||
* | Run `cargo fmt` | 2022-11-03 | 17 | -110/+98 | |
| | |||||
* | Reuse last buffer in `Frame` if `mesh_style` matches | 2022-11-03 | 4 | -42/+53 | |
| | |||||
* | Documentation changes | 2022-10-19 | 1 | -1/+4 | |
| | |||||
* | Updated syntax for color stop iteration re: PR comments. | 2022-10-18 | 1 | -2/+1 | |
| | |||||
* | 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 | 13 | -161/+158 | |
| | |||||
* | Fixed fragment shader compatibility issues with GLES 3.0+ | 2022-10-10 | 2 | -14/+14 | |
| | |||||
* | Merge branch 'master' into fear/linear-gradients | 2022-10-07 | 14 | -12/+257 | |
|\ | |||||
| * | Merge pull request #1458 from AlistairKeiller/master | 2022-10-07 | 1 | -3/+4 | |
| |\ | | | | | | | Fix wgpu README supported backends | ||||
| | * | remove iced | 2022-10-06 | 1 | -20/+0 | |
| | | | |||||
| | * | add a link to wgpu supported platforms list | 2022-10-06 | 1 | -2/+3 | |
| | | | |||||
| | * | remove DX11 support from wgpu | 2022-10-06 | 2 | -1/+21 | |
| |/ | |||||
| * | Merge pull request #1331 from ThisIsRex/master | 2022-10-05 | 4 | -8/+16 | |
| |\ | | | | | | | `is_selected` property for `Radio` `StyleSheet` | ||||
| | * | Derive `Clone` and `Copy` for `toggler::Appearance` | 2022-10-05 | 1 | -1/+1 | |
| | | | |||||
| | * | Add `is_selected` argument in `radio::StyleSheet` | 2022-10-05 | 3 | -7/+15 | |
| |/ | |||||
| * | Merge pull request #1305 from artursapek/canvas-touch | 2022-10-04 | 8 | -0/+236 | |
| |\ | | | | | | | Expose touch events in canvas widget | ||||
| | * | Fix `clippy` lints | 2022-10-04 | 2 | -21/+15 | |
| | | | |||||
| | * | Replace `voronoi` crate with `voronator` | 2022-10-04 | 2 | -24/+18 | |
| | | | |||||
| | * | Finish `multitouch` example | 2022-10-04 | 1 | -31/+14 | |
| | | | |||||
| | * | vornoi experiment | 2022-10-04 | 2 | -5/+81 | |
| | | | |||||
| | * | Working multitouch example | 2022-10-04 | 4 | -0/+179 | |
| | | | |||||
| | * | expose touch module | 2022-10-04 | 2 | -0/+3 | |
| | | | |||||
| | * | expose touch events in canvas widget | 2022-10-04 | 2 | -0/+7 | |
| |/ | |||||
| * | Merge pull request #1450 from xTeKc/readme | 2022-10-03 | 1 | -1/+1 | |
| |\ | | | | | | | update: match test badge | ||||
| | * | update: match test badge | 2022-10-02 | 1 | -1/+1 | |
| |/ | |||||
* | | 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 | 5 | -33/+27 | |
| | | | | | | | | canvas feature is not enabled. | ||||
* | | More import adjusting. | 2022-10-07 | 4 | -21/+20 | |
| | | |||||
* | | Adjusted reexports for clarity. | 2022-10-07 | 3 | -4/+3 | |
| | | |||||
* | | Fixed an edge case where when gradient start/end are identical the GL ↵ | 2022-10-07 | 1 | -13/+19 | |
| | | | | | | | | fragment shader was not choosing the appropriate color. | ||||
* | | Added support for relative positioning of gradient fills. Addressed some PR ↵ | 2022-10-07 | 8 | -54/+182 | |
| | | | | | | | | feedback. | ||||
* | | Fixed some more imports/documentation. | 2022-10-06 | 12 | -26/+28 | |
| | | |||||
* | | Fixed some imports/documentation. | 2022-10-06 | 3 | -7/+4 | |
| | | |||||
* | | Added support for gradients to respect current frame transform. | 2022-10-06 | 7 | -56/+93 | |
| | | |||||
* | | 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 | 24 | -40/+33 | |
| | | |||||
* | | Reduced memory transfer of OpenGL gradient uniform upload. Rearranged ↵ | 2022-10-05 | 7 | -126/+81 | |
| | | | | | | | | gradient uniforms on OpenGL side to be more performant. | ||||
* | | Adjusted gradient uniforms to be more tightly packed. | 2022-10-05 | 2 | -31/+37 | |
| | | |||||
* | | Fixed issue with offsets not being reset properly leading to borked draws. | 2022-10-05 | 2 | -2/+10 | |
| | | |||||
* | | Readjusted namespaces, removed Geometry example as it's no longer relevant. | 2022-10-05 | 27 | -625/+394 | |
| | | |||||
* | | Reworked wgpu buffers, updated glow side to have proper transform location ↵ | 2022-10-04 | 20 | -423/+417 | |
| | | | | | | | | 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 | 11 | -148/+126 | |
| | | | | | | | | Canvas widget, where it was previously only accessible. | ||||
* | | Fixed issue where OpenGL would not render both shaders at once under certain ↵ | 2022-09-29 | 2 | -31/+23 | |
| | | | | | | | | circumstances. | ||||
* | | Removed some leftover debugging. | 2022-09-29 | 1 | -4/+0 | |
| | |