From 53d4d504b9103f524c50385ed3545fd08d0e272e Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 19 Apr 2022 15:36:06 -0700 Subject: *: s/til_fb_fragment_zero/til_fb_fragment_clear/ Mechanical renaming of "zero" to "clear" throughout for this context. --- src/modules/sparkler/sparkler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/sparkler') diff --git a/src/modules/sparkler/sparkler.c b/src/modules/sparkler/sparkler.c index f13954e..ec706b9 100644 --- a/src/modules/sparkler/sparkler.c +++ b/src/modules/sparkler/sparkler.c @@ -87,7 +87,7 @@ static void sparkler_prepare_frame(void *context, unsigned ticks, unsigned ncpus ctxt->n_cpus = ncpus; if (ctxt->setup.show_bsp_matches) - til_fb_fragment_zero(fragment); + til_fb_fragment_clear(fragment); particles_sim(ctxt->particles, fragment); particles_add_particles(ctxt->particles, NULL, &simple_ops, INIT_PARTS / 4); @@ -101,7 +101,7 @@ static void sparkler_render_fragment(void *context, unsigned ticks, unsigned cpu sparkler_context_t *ctxt = context; if (!ctxt->setup.show_bsp_matches) - til_fb_fragment_zero(fragment); + til_fb_fragment_clear(fragment); particles_draw(ctxt->particles, fragment); } -- cgit v1.2.1