8 lines
197 B
Common Lisp
8 lines
197 B
Common Lisp
;; Grayscale effect - converts to grayscale
|
|
;; Uses vectorized mix-gray primitive for fast processing
|
|
(require-primitives "image")
|
|
|
|
(define-effect grayscale
|
|
:params ()
|
|
(image:grayscale frame))
|