mirror of
https://github.com/penpot/penpot.git
synced 2025-04-06 12:01:19 -05:00
Merge pull request #5316 from penpot/ladybenko-9311-fix-blend-glitches
Fix blend mode glitches
This commit is contained in:
commit
defe6ff7f8
2 changed files with 9 additions and 4 deletions
|
@ -102,8 +102,9 @@
|
|||
:saturation 26
|
||||
:color 27
|
||||
:luminosity 28
|
||||
3)]
|
||||
(._set_shape_blend_mode ^js internal-module encoded-blend)))
|
||||
3)
|
||||
set-shape-blend-mode (unchecked-get internal-module "_set_shape_blend_mode")]
|
||||
(^function set-shape-blend-mode encoded-blend)))
|
||||
|
||||
(defn set-objects
|
||||
[objects]
|
||||
|
|
|
@ -92,7 +92,11 @@ impl RenderState {
|
|||
pub fn reset_canvas(&mut self) {
|
||||
self.drawing_surface
|
||||
.canvas()
|
||||
.clear(skia_safe::Color::TRANSPARENT);
|
||||
self.drawing_surface.canvas().reset_matrix();
|
||||
.clear(skia_safe::Color::TRANSPARENT)
|
||||
.reset_matrix();
|
||||
self.final_surface
|
||||
.canvas()
|
||||
.clear(skia_safe::Color::TRANSPARENT)
|
||||
.reset_matrix();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue