Files
rose-ash/test/templates/standard-effects.sexp
2026-02-24 23:10:04 +00:00

23 lines
761 B
Common Lisp

;; Standard Effects Bundle
;;
;; Loads commonly-used video effects.
;; Include after primitives are loaded.
;;
;; Effects provided:
;; - rotate: rotation by angle
;; - zoom: scale in/out
;; - blend: alpha blend two frames
;; - ripple: water ripple distortion
;; - invert: color inversion
;; - hue_shift: hue rotation
;;
;; Usage:
;; (include :path "../templates/standard-effects.sexp")
(effect rotate :path "../sexp_effects/effects/rotate.sexp")
(effect zoom :path "../sexp_effects/effects/zoom.sexp")
(effect blend :path "../sexp_effects/effects/blend.sexp")
(effect ripple :path "../sexp_effects/effects/ripple.sexp")
(effect invert :path "../sexp_effects/effects/invert.sexp")
(effect hue_shift :path "../sexp_effects/effects/hue_shift.sexp")