From 76cfdb956d80aa5a4ffb909486509abc5f7bc829 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Mon, 25 Apr 2022 11:57:21 -0700 Subject: modules/*: set TIL_MODULE_OVERLAYABLE where appropriate In the interests of facilitating randomized automagic layered compositing, tell the world when you're overlay-appropriate. --- src/modules/swarm/swarm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/modules/swarm/swarm.c') diff --git a/src/modules/swarm/swarm.c b/src/modules/swarm/swarm.c index 0d70568..cc27c36 100644 --- a/src/modules/swarm/swarm.c +++ b/src/modules/swarm/swarm.c @@ -469,8 +469,9 @@ til_module_t swarm_module = { .create_context = swarm_create_context, .destroy_context = swarm_destroy_context, .render_fragment = swarm_render_fragment, + .setup = swarm_setup, .name = "swarm", .description = "\"Boids\"-inspired particle swarm in 3D", .author = "Vito Caputo ", - .setup = swarm_setup, + .flags = TIL_MODULE_OVERLAYABLE, }; -- cgit v1.2.1