From a7c44b6146e306b13b63b8bececa6b7bc8ed59fb Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 3 Feb 2017 16:08:01 -0800 Subject: stars: use fb_fragment_put_pixel_unchecked() drop draw_pixel() duplication --- src/modules/stars/stars.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/stars/stars.c') diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c index e009714..0f6c2d5 100644 --- a/src/modules/stars/stars.c +++ b/src/modules/stars/stars.c @@ -43,7 +43,7 @@ static void stars(fb_fragment_t *fragment) for (;;) { int ret = process_point( u, &rp ); if (ret==0) break; - if (ret==1) draw_pixel(fragment, rp.x+(width/2), rp.y+(height/2), + if (ret==1) fb_fragment_put_pixel_unchecked(fragment, rp.x+(width/2), rp.y+(height/2), makergb(0xFF, 0xFF, 0xFF, (float)rp.opacity/OPACITY_MAX) ); } -- cgit v1.2.3