summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/julia/julia.c2
-rw-r--r--src/modules/plasma/plasma.c2
-rw-r--r--src/modules/ray/ray.c2
-rw-r--r--src/modules/roto/roto.c4
-rw-r--r--src/modules/sparkler/sparkler.c2
-rw-r--r--src/modules/stars/stars.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/julia/julia.c b/src/modules/julia/julia.c
index 1afb3cc..f8072a8 100644
--- a/src/modules/julia/julia.c
+++ b/src/modules/julia/julia.c
@@ -108,7 +108,7 @@ static void julia(fb_fragment_t *fragment)
rr += .01;
}
-rototiller_renderer_t julia_renderer = {
+rototiller_module_t julia_module = {
.render = julia,
.name = "julia",
.description = "Julia set fractal morpher",
diff --git a/src/modules/plasma/plasma.c b/src/modules/plasma/plasma.c
index 59c394a..211a032 100644
--- a/src/modules/plasma/plasma.c
+++ b/src/modules/plasma/plasma.c
@@ -117,7 +117,7 @@ static void plasma(fb_fragment_t *fragment)
rr += 3;
}
-rototiller_renderer_t plasma_renderer = {
+rototiller_module_t plasma_module = {
.render = plasma,
.name = "plasma",
.description = "Oldskool plasma effect",
diff --git a/src/modules/ray/ray.c b/src/modules/ray/ray.c
index 12d4bc8..1652aa2 100644
--- a/src/modules/ray/ray.c
+++ b/src/modules/ray/ray.c
@@ -166,7 +166,7 @@ static void ray(fb_fragment_t *fragment)
}
-rototiller_renderer_t ray_renderer = {
+rototiller_module_t ray_module = {
.render = ray,
.name = "ray",
.description = "Multi-threaded ray tracer",
diff --git a/src/modules/roto/roto.c b/src/modules/roto/roto.c
index d789f85..c44d624 100644
--- a/src/modules/roto/roto.c
+++ b/src/modules/roto/roto.c
@@ -287,7 +287,7 @@ static void roto64(fb_fragment_t *fragment)
}
-rototiller_renderer_t roto32_renderer = {
+rototiller_module_t roto32_module = {
.render = roto32,
.name = "roto32",
.description = "Anti-aliased tiled texture rotation (32-bit)",
@@ -296,7 +296,7 @@ rototiller_renderer_t roto32_renderer = {
};
-rototiller_renderer_t roto64_renderer = {
+rototiller_module_t roto64_module = {
.render = roto64,
.name = "roto64",
.description = "Anti-aliased tiled texture rotation (64-bit)",
diff --git a/src/modules/sparkler/sparkler.c b/src/modules/sparkler/sparkler.c
index e2ff76e..36aabff 100644
--- a/src/modules/sparkler/sparkler.c
+++ b/src/modules/sparkler/sparkler.c
@@ -44,7 +44,7 @@ static void sparkler(fb_fragment_t *fragment)
}
-rototiller_renderer_t sparkler_renderer = {
+rototiller_module_t sparkler_module = {
.render = sparkler,
.name = "sparkler",
.description = "Particle system with spatial interactions",
diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c
index 2ff9b99..61f652e 100644
--- a/src/modules/stars/stars.c
+++ b/src/modules/stars/stars.c
@@ -54,7 +54,7 @@ static void stars(fb_fragment_t *fragment)
}
}
-rototiller_renderer_t stars_renderer = {
+rototiller_module_t stars_module = {
.render = stars,
.name = "stars",
.description = "basic starfield",
© All Rights Reserved