From b35ba71b6de341f7b87beb3bc078600f3d191612 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 3 Feb 2017 16:14:04 -0800 Subject: *: use fb_fragment_zero() instead of memset() --- src/modules/sparkler/sparkler.c | 2 +- src/modules/stars/stars.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/sparkler/sparkler.c b/src/modules/sparkler/sparkler.c index 0bb0fcf..e2ff76e 100644 --- a/src/modules/sparkler/sparkler.c +++ b/src/modules/sparkler/sparkler.c @@ -35,7 +35,7 @@ static void sparkler(fb_fragment_t *fragment) initialized = 1; } - memset(buf, 0, ((fragment->width << 2) + fragment->stride) * fragment->height); + fb_fragment_zero(fragment); particles_age(particles); particles_draw(particles, fragment); diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c index 0f6c2d5..2ff9b99 100644 --- a/src/modules/stars/stars.c +++ b/src/modules/stars/stars.c @@ -37,7 +37,7 @@ static void stars(fb_fragment_t *fragment) } // draw space (or blank the frame, if you prefer) - memset(fragment->buf, 0, ((fragment->width << 2) + fragment->stride) * fragment->height); + fb_fragment_zero(fragment); // draw stars for (;;) { -- cgit v1.2.3