From 974f650ae4d053a8263040bbc848c47628def761 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Thu, 19 Nov 2020 08:27:33 -0500 Subject: graphics: path: Fix bug where blend mode wasn't set during fills. --- chickadee/graphics/path.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/chickadee/graphics/path.scm b/chickadee/graphics/path.scm index 5412c30..6eca4ab 100644 --- a/chickadee/graphics/path.scm +++ b/chickadee/graphics/path.scm @@ -1139,6 +1139,7 @@ (ref-y (rect-center-y bbox))) ;; Setup style. (set-filled-path-color! filled-path color) + (set-filled-path-blend-mode! filled-path blend-mode) ;; Setup counts and offsets. (set-filled-path-count! filled-path 0) (set-filled-path-stencil-vertex-count! filled-path 0) -- cgit v1.2.3