diff options
author | Colin Okay <okay@toyful.space> | 2020-09-08 19:28:21 -0500 |
---|---|---|
committer | Colin Okay <cbeok@protonmail.com> | 2020-10-12 09:37:42 -0500 |
commit | 85243d3056f5f2a6d4b5effb0fb104e6b45845b7 (patch) | |
tree | 5654ce47096cacece87b926d22390570f209e2c9 /imbricate.lisp | |
parent | ca6b30e1b3a33d93c11426b8f38a0c3d7518ed28 (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 |