From a81425632db81527bcecd2d0fbdb5b09c25141ba Mon Sep 17 00:00:00 2001
From: Vito Caputo <vcaputo@pengaru.com>
Date: Sun, 1 May 2022 11:43:42 -0700
Subject: modules/*: make use of generic fragmenters

Just one case, modules/submit, was using 32x32 tiles and is now
using 64x64.  I don't expect it to make any difference.

While here I fixed up the num_cpus/n_cpus naming inconsistencies,
normalizing on n_cpus.
---
 src/modules/pixbounce/pixbounce.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

(limited to 'src/modules/pixbounce')

diff --git a/src/modules/pixbounce/pixbounce.c b/src/modules/pixbounce/pixbounce.c
index 67f35a9..e864763 100644
--- a/src/modules/pixbounce/pixbounce.c
+++ b/src/modules/pixbounce/pixbounce.c
@@ -129,7 +129,6 @@ char pix_map[][16*16] = {
 };
 
 typedef struct pixbounce_context_t {
-	unsigned	n_cpus;
 	int		x, y;
 	int		x_dir, y_dir;
 	int		pix_num;
@@ -154,7 +153,7 @@ static uint32_t pick_color()
 	return makergb(rand()%256, rand()%256, rand()%256, 1);
 }
 
-static void * pixbounce_create_context(unsigned ticks, unsigned num_cpus, til_setup_t *setup)
+static void * pixbounce_create_context(unsigned ticks, unsigned n_cpus, til_setup_t *setup)
 {
 	pixbounce_context_t *ctxt;
 
@@ -162,7 +161,6 @@ static void * pixbounce_create_context(unsigned ticks, unsigned num_cpus, til_se
 	if (!ctxt)
 		return NULL;
 
-	ctxt->n_cpus = num_cpus;
 	ctxt->x = -1;
 	ctxt->y = -1;
 	ctxt->x_dir = 0;
-- 
cgit v1.2.3