From 2b9eca8724fe6c5e0f6a4438cd398b5978283131 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 11 May 2023 12:48:42 -0700 Subject: modules/*: remove use of static default setups There was a time when it made sense for context creates needing setups but not receiving them to still be functional with some sane defaults. But with recursive settings, we really shouldn't ever have orphaned nested module uses unreachable by a proper setup. So let's just get rid of this fallback, and exclusively rely on the baked setups provided by the .setup() methods. They still have preferred defaults, and the proper setup production machinery is what should be responsible for applying those at runtime where they may also be overridden or otherwise influenced. --- src/modules/drizzle/drizzle.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/modules/drizzle') diff --git a/src/modules/drizzle/drizzle.c b/src/modules/drizzle/drizzle.c index 8a5607f..d91af01 100644 --- a/src/modules/drizzle/drizzle.c +++ b/src/modules/drizzle/drizzle.c @@ -68,11 +68,6 @@ typedef struct drizzle_context_t { drizzle_setup_t setup; } drizzle_context_t; -static drizzle_setup_t drizzle_default_setup = { - .viscosity = DEFAULT_VISCOSITY, - .style = DEFAULT_STYLE, -}; - /* convert a color into a packed, 32-bit rgb pixel value (taken from libs/ray/ray_color.h) */ static inline uint32_t color_to_uint32(v3f_t color) { @@ -100,9 +95,6 @@ static til_module_context_t * drizzle_create_context(const til_module_t *module, { drizzle_context_t *ctxt; - if (!setup) - setup = &drizzle_default_setup.til_setup; - ctxt = til_module_context_new(module, sizeof(drizzle_context_t), stream, seed, ticks, n_cpus, path); if (!ctxt) return NULL; -- cgit v1.2.1