summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-03-13 20:47:09 -0500
committerDavid Thompson <dthompson2@worcester.edu>2021-03-13 20:47:09 -0500
commit76e8f4df290327addf75cd61ca822c93fcc32f4a (patch)
tree2cf911584c96bffce6ea19bc913556aeceb3b851
parenta65e35c64c06b65680cce59458a7bc26abf17928 (diff)
graphics: path: Include blend module.
Without it, setting the blend mode fails unless the module has been included by something else.
-rw-r--r--chickadee/graphics/path.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/chickadee/graphics/path.scm b/chickadee/graphics/path.scm
index 978f3ab..562f4a9 100644
--- a/chickadee/graphics/path.scm
+++ b/chickadee/graphics/path.scm
@@ -24,6 +24,7 @@
(define-module (chickadee graphics path)
#:use-module (chickadee array-list)
#:use-module (chickadee config)
+ #:use-module (chickadee graphics blend)
#:use-module (chickadee graphics buffer)
#:use-module (chickadee graphics color)
#:use-module (chickadee graphics engine)