Merge pull request #2977 from DKolter/issue_2934

Fix tiny skia primitive rendering
This commit is contained in:
Héctor 2025-11-27 04:41:16 +01:00 committed by GitHub
commit b3e1be5def
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 29 additions and 41 deletions

View file

@ -268,8 +268,8 @@ impl Layer {
.filter_map(|bounds| bounds.intersection(group_bounds))
.collect()
}
Item::Cached(_, bounds, _) => {
vec![*bounds]
Item::Cached(_, bounds, transformation) => {
vec![*bounds * *transformation]
}
},
|primitive_a, primitive_b| match (primitive_a, primitive_b) {