diff options
author | Colin Okay <cbeok@protonmail.com> | 2020-09-08 19:28:21 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-09-08 19:28:21 -0500 |
commit | 0536a9878d0e07a7be1f4317f04e1b1550671970 (patch) | |
tree | 5654ce47096cacece87b926d22390570f209e2c9 /imbricate.lisp | |
parent | b43e843f52b4f44b3ebd32a329b0eca9a19c4879 (diff) |
removed imported opticl symbols
Diffstat (limited to 'imbricate.lisp')
-rw-r--r-- | imbricate.lisp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/imbricate.lisp b/imbricate.lisp index 0667c74..14f15e9 100644 --- a/imbricate.lisp +++ b/imbricate.lisp @@ -2,10 +2,6 @@ (defpackage #:imbricate (:use #:cl) - (:import-from #:opticl - #:convert-image-to-rgba - #:read-png-file - #:with-image-bounds) (:export #:imbricate #:imbricate-and-save)) @@ -167,10 +163,10 @@ instance. " (defun load-tile (path) (let ((data - (convert-image-to-rgba - (read-png-file path)))) + (opticl:convert-image-to-rgba + (opticl:read-png-file path)))) - (with-image-bounds (w h) data + (opticl:with-image-bounds (w h) data (make-instance 'tile :path path :data data |