diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-01-08 20:40:23 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-01-08 20:40:23 -0800 |
commit | 09af809c6e4364b92b10c983d38ab6b32dd7d50c (patch) | |
tree | e70444fe9fbb5718d0ecc79fef4b00df1a447127 /src/rototiller.c | |
parent | 728f54b0f7b471e784782c65f41c6f307a056bba (diff) |
modules/drizzle: add a classic 2D raindrops vis
Using the new puddle lib throw some raindrops on the framebuffer
Diffstat (limited to 'src/rototiller.c')
-rw-r--r-- | src/rototiller.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rototiller.c b/src/rototiller.c index 644013b..2477d4b 100644 --- a/src/rototiller.c +++ b/src/rototiller.c @@ -32,6 +32,7 @@ extern fb_ops_t drm_fb_ops; extern fb_ops_t sdl_fb_ops; fb_ops_t *fb_ops; +extern rototiller_module_t drizzle_module; extern rototiller_module_t flui2d_module; extern rototiller_module_t julia_module; extern rototiller_module_t meta2d_module; @@ -49,6 +50,7 @@ extern rototiller_module_t submit_module; extern rototiller_module_t swab_module; static const rototiller_module_t *modules[] = { + &drizzle_module, &flui2d_module, &julia_module, &meta2d_module, |