fix(tiny-skia): correct clip bounds transformation
This commit is contained in:
parent
a50a56a29d
commit
f931d55544
1 changed files with 2 additions and 2 deletions
|
|
@ -191,7 +191,7 @@ impl Layer {
|
|||
) {
|
||||
self.primitives.push(Item::Group(
|
||||
primitives,
|
||||
clip_bounds,
|
||||
clip_bounds * transformation,
|
||||
transformation,
|
||||
));
|
||||
}
|
||||
|
|
@ -204,7 +204,7 @@ impl Layer {
|
|||
) {
|
||||
self.primitives.push(Item::Cached(
|
||||
primitives,
|
||||
clip_bounds,
|
||||
clip_bounds * transformation,
|
||||
transformation,
|
||||
));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue