0cf523fd2a86

Remove unused function
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Mon, 24 Dec 2018 15:44:40 -0500
parents 386728efe61c
children 91c04aa41ac5
branches/tags (none)
files src/colors.lisp

Changes

--- a/src/colors.lisp	Sat Apr 14 01:12:37 2018 -0400
+++ b/src/colors.lisp	Mon Dec 24 15:44:40 2018 -0500
@@ -47,15 +47,3 @@
                 (coerce s 'double-float)
                 (coerce v 'double-float))))
 
-
-(defun blend! (destination color alpha)
-  (declare (optimize speed)
-           (type color destination color)
-           (type color-float alpha))
-  (with-color (destination dr dg db)
-    (with-color (color r g b)
-      (setf dr (lerp dr r alpha)
-            dg (lerp dg g alpha)
-            db (lerp db b alpha))))
-  (values))
-