summaryrefslogtreecommitdiff
path: root/src/rototiller.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-09-25 20:50:22 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-09-25 20:57:27 -0700
commit3fc9031e6b10f6accceb7c00f368e34045bbaca7 (patch)
treef3e12be29519e15f33e61eb73bcc529a403dfc52 /src/rototiller.c
parentd9db2680298c01a82b768dc19e75bf4f2ef1b56e (diff)
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.
Diffstat (limited to 'src/rototiller.c')
-rw-r--r--src/rototiller.c2
1 files changed, 2 insertions, 0 deletions
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,
© All Rights Reserved