Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: color shift in FeColorMatrix on android (#2365)
# Summary While debugging #2364 I've noticed that color shift in `FeColorMatrix` on Android is wrong. On web, elements 5, 10, 15, 20 is a color shift represented by number where 1 mean full color shift, while on Android it's 255 for full color shift. ## Test ```tsx <svg width="180" height="180" viewBox="0 0 180 180"> <rect width="180" height="180" fill="red" filter="url(#filter)"/> <filter id="filter"> <feColorMatrix type="matrix" values="0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"/> </filter> </svg> ```
- Loading branch information