From 85243d3056f5f2a6d4b5effb0fb104e6b45845b7 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Tue, 8 Sep 2020 19:28:21 -0500 Subject: removed imported opticl symbols --- imbricate.lisp | 10 +++------- 1 file 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 -- cgit v1.2.3