From 5ebea1031b1fe0a591c1f74ab63524d4afec6763 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 28 Jul 2023 17:49:23 -0700 Subject: modules/*: use til_fragmenter_slice_per_cpu_x16() where applicable Mechanical change switching til_fragmenter_slice_per_cpu() users over to til_fragmenter_slice_per_cpu_x16(), except sparkler where it's quite detrimental to performance. --- src/modules/snow/snow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/snow') diff --git a/src/modules/snow/snow.c b/src/modules/snow/snow.c index 1640ff2..64a2d0d 100644 --- a/src/modules/snow/snow.c +++ b/src/modules/snow/snow.c @@ -39,7 +39,7 @@ static til_module_context_t * snow_create_context(const til_module_t *module, ti static void snow_prepare_frame(til_module_context_t *context, til_stream_t *stream, unsigned ticks, til_fb_fragment_t **fragment_ptr, til_frame_plan_t *res_frame_plan) { - *res_frame_plan = (til_frame_plan_t){ .fragmenter = til_fragmenter_slice_per_cpu }; + *res_frame_plan = (til_frame_plan_t){ .fragmenter = til_fragmenter_slice_per_cpu_x16 }; } -- cgit v1.2.3