summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-04-25 11:57:21 -0700
committerVito Caputo <vcaputo@pengaru.com>2022-04-25 11:57:21 -0700
commit76cfdb956d80aa5a4ffb909486509abc5f7bc829 (patch)
treee44a21979f26073bf88bd65da70a51d0209283c0 /src
parentcee91274e489a90691a3c475b82a9f7fad1ea996 (diff)
modules/*: set TIL_MODULE_OVERLAYABLE where appropriate
In the interests of facilitating randomized automagic layered compositing, tell the world when you're overlay-appropriate.
Diffstat (limited to 'src')
-rw-r--r--src/modules/blinds/blinds.c1
-rw-r--r--src/modules/checkers/checkers.c3
-rw-r--r--src/modules/pixbounce/pixbounce.c1
-rw-r--r--src/modules/plato/plato.c1
-rw-r--r--src/modules/spiro/spiro.c1
-rw-r--r--src/modules/stars/stars.c1
-rw-r--r--src/modules/swarm/swarm.c3
7 files changed, 9 insertions, 2 deletions
diff --git a/src/modules/blinds/blinds.c b/src/modules/blinds/blinds.c
index 080b468..7ce0a92 100644
--- a/src/modules/blinds/blinds.c
+++ b/src/modules/blinds/blinds.c
@@ -42,4 +42,5 @@ til_module_t blinds_module = {
.name = "blinds",
.description = "Retro 80s-inspired window blinds",
.author = "Vito Caputo <vcaputo@pengaru.com>",
+ .flags = TIL_MODULE_OVERLAYABLE,
};
diff --git a/src/modules/checkers/checkers.c b/src/modules/checkers/checkers.c
index 2b626e7..b4bc56f 100644
--- a/src/modules/checkers/checkers.c
+++ b/src/modules/checkers/checkers.c
@@ -296,8 +296,9 @@ til_module_t checkers_module = {
.destroy_context = checkers_destroy_context,
.prepare_frame = checkers_prepare_frame,
.render_fragment = checkers_render_fragment,
+ .setup = checkers_setup,
.name = "checkers",
.description = "Checker-patterned overlay (threaded)",
.author = "Vito Caputo <vcaputo@pengaru.com>",
- .setup = checkers_setup,
+ .flags = TIL_MODULE_OVERLAYABLE,
};
diff --git a/src/modules/pixbounce/pixbounce.c b/src/modules/pixbounce/pixbounce.c
index 5f54644..c26eb88 100644
--- a/src/modules/pixbounce/pixbounce.c
+++ b/src/modules/pixbounce/pixbounce.c
@@ -197,4 +197,5 @@ til_module_t pixbounce_module = {
.name = "pixbounce",
.description = "Pixmap bounce",
.author = "Philip J Freeman <elektron@halo.nu>",
+ .flags = TIL_MODULE_OVERLAYABLE,
};
diff --git a/src/modules/plato/plato.c b/src/modules/plato/plato.c
index bc38f2d..ec53dd1 100644
--- a/src/modules/plato/plato.c
+++ b/src/modules/plato/plato.c
@@ -674,4 +674,5 @@ til_module_t plato_module = {
.name = "plato",
.description = "Platonic solids rendered in 3D",
.author = "Vito Caputo <vcaputo@pengaru.com>",
+ .flags = TIL_MODULE_OVERLAYABLE,
};
diff --git a/src/modules/spiro/spiro.c b/src/modules/spiro/spiro.c
index bf93b27..50a44e8 100644
--- a/src/modules/spiro/spiro.c
+++ b/src/modules/spiro/spiro.c
@@ -150,4 +150,5 @@ til_module_t spiro_module = {
.name = "spiro",
.description = "Spirograph emulator",
.author = "Philip J Freeman <elektron@halo.nu>",
+ .flags = TIL_MODULE_OVERLAYABLE,
};
diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c
index 150602a..0629c36 100644
--- a/src/modules/stars/stars.c
+++ b/src/modules/stars/stars.c
@@ -264,4 +264,5 @@ til_module_t stars_module = {
.name = "stars",
.description = "Basic starfield",
.author = "Philip J Freeman <elektron@halo.nu>",
+ .flags = TIL_MODULE_OVERLAYABLE,
};
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 <vcaputo@pengaru.com>",
- .setup = swarm_setup,
+ .flags = TIL_MODULE_OVERLAYABLE,
};
© All Rights Reserved