summaryrefslogtreecommitdiff
path: root/src/modules/swarm/swarm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/swarm/swarm.c')
-rw-r--r--src/modules/swarm/swarm.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/modules/swarm/swarm.c b/src/modules/swarm/swarm.c
index adb8df8..8883197 100644
--- a/src/modules/swarm/swarm.c
+++ b/src/modules/swarm/swarm.c
@@ -65,10 +65,6 @@ typedef struct swarm_context_t {
#define SWARM_ZCONST 4.f
#define SWARM_DEFAULT_STYLE SWARM_DRAW_STYLE_LINES
-static swarm_setup_t swarm_default_setup = {
- .draw_style = SWARM_DEFAULT_STYLE,
-};
-
static inline float randf(unsigned *seed, float min, float max)
{
@@ -185,9 +181,6 @@ static til_module_context_t * swarm_create_context(const til_module_t *module, t
{
swarm_context_t *ctxt;
- if (!setup)
- setup = &swarm_default_setup.til_setup;
-
ctxt = til_module_context_new(module, sizeof(swarm_context_t) + sizeof(*(ctxt->boids)) * SWARM_SIZE, stream, seed, ticks, n_cpus, path);
if (!ctxt)
return NULL;
© All Rights Reserved