From 3fc9031e6b10f6accceb7c00f368e34045bbaca7 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 25 Sep 2020 20:50:22 -0700 Subject: modules/compose: add a rudimentary compositing module --module=compose,layers=first:second:third:... this draws the named modules in the order listed, overdrawing the output of the previous layers in a cumulative fashion. --- src/rototiller.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/rototiller.c') diff --git a/src/rototiller.c b/src/rototiller.c index 579d02a..48056db 100644 --- a/src/rototiller.c +++ b/src/rototiller.c @@ -33,6 +33,7 @@ extern fb_ops_t drm_fb_ops; extern fb_ops_t sdl_fb_ops; fb_ops_t *fb_ops; +extern rototiller_module_t compose_module; extern rototiller_module_t drizzle_module; extern rototiller_module_t flui2d_module; extern rototiller_module_t julia_module; @@ -51,6 +52,7 @@ extern rototiller_module_t submit_module; extern rototiller_module_t swab_module; static const rototiller_module_t *modules[] = { + &compose_module, &drizzle_module, &flui2d_module, &julia_module, -- cgit v1.2.1