-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resurrect pico_svg and use it to replace vello_svg in the examples. (#…
…518) * WIP: resurrect pico_svg and use it to load scenes. * Add viewbox and width/height support to pico_svg. * Accept more single-function transforms in pico_svg. * Add copyright header to pico_svg.rs * Remove vello_svg. * Clean up pico_svg lints. * Parse multiple transforms in attribute. * Add scaleX and scaleY to pico_svg. * Render fuchsia unit square on error, to work around #291. * Print Display rather than Debug for Err in svg.rs * Interpret combined viewBox and width/height correctly. * Fix lint. * Clean up std::result qualified names. * Mention new vello_svg repository in ## Integrations * Improve color parsing in pico_svg. * Address review comments.
- Loading branch information
Showing
10 changed files
with
339 additions
and
547 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
pub mod download; | ||
mod images; | ||
mod mmark; | ||
mod pico_svg; | ||
mod simple_text; | ||
mod svg; | ||
mod test_scenes; | ||
|
Oops, something went wrong.