From b437600c820f489049c022d2c4697226cf8d68fc Mon Sep 17 00:00:00 2001
From: Vito Caputo <vcaputo@pengaru.com>
Date: Thu, 9 Jun 2022 22:40:06 -0700
Subject: 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.
---
 src/modules/shapes/shapes.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/modules/shapes')

diff --git a/src/modules/shapes/shapes.c b/src/modules/shapes/shapes.c
index 8a1da6e..0a53a34 100644
--- a/src/modules/shapes/shapes.c
+++ b/src/modules/shapes/shapes.c
@@ -105,7 +105,7 @@ static til_module_context_t * shapes_create_context(unsigned seed, unsigned tick
 	if (!setup)
 		setup = &shapes_default_setup.til_setup;
 
-	ctxt = til_module_context_new(sizeof(shapes_context_t), seed, n_cpus);
+	ctxt = til_module_context_new(sizeof(shapes_context_t), seed, ticks, n_cpus);
 	if (!ctxt)
 		return NULL;
 
-- 
cgit v1.2.3