diff options
-rw-r--r-- | chickadee/graphics/color.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/chickadee/graphics/color.scm b/chickadee/graphics/color.scm index 1a0be6d..497ecd3 100644 --- a/chickadee/graphics/color.scm +++ b/chickadee/graphics/color.scm @@ -26,7 +26,7 @@ #:use-module (srfi srfi-9) #:use-module (srfi srfi-1) #:use-module (chickadee math) - #:export (color make-color + #:export (make-color color? color-r color-g color-b color-a rgba rgb transparency string->color @@ -68,9 +68,6 @@ (clamp 0.0 1.0 b) (clamp 0.0 1.0 a)))) -(define-inlinable (color r g b a) - (make-color r g b a)) - (define (color-component color-code offset) "Return the value of an 8-bit color channel in the range [0,1] for the integer COLOR-CODE, given an OFFSET in bits." |