diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2022-06-09 22:40:06 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2022-06-10 21:17:22 -0700 |
commit | b437600c820f489049c022d2c4697226cf8d68fc (patch) | |
tree | ba115db92719bd707aa7553495278587f1474c33 /src/modules/meta2d | |
parent | 156bad78f27813934d897518f0d6ea8748be9e47 (diff) |
til: add ticks to til_module_context_t
Also wire this up to the til_module_context_new() helper and
all its callers.
This is in preparation for modules doing more correct delta-T
derived animation.
Diffstat (limited to 'src/modules/meta2d')
-rw-r--r-- | src/modules/meta2d/meta2d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/meta2d/meta2d.c b/src/modules/meta2d/meta2d.c index eb816d0..c6a6c86 100644 --- a/src/modules/meta2d/meta2d.c +++ b/src/modules/meta2d/meta2d.c @@ -71,7 +71,7 @@ static til_module_context_t * meta2d_create_context(unsigned seed, unsigned tick { meta2d_context_t *ctxt; - ctxt = til_module_context_new(sizeof(meta2d_context_t), seed, n_cpus); + ctxt = til_module_context_new(sizeof(meta2d_context_t), seed, ticks, n_cpus); if (!ctxt) return NULL; |