From 17beb406f2033ef522b0aebee07bae64317fa8fe Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 30 Apr 2022 10:13:23 -0700 Subject: til_fb: add draw flags for controlling texturability Just adds TIL_FB_DRAW_FLAG_TEXTURABLE so callers can granularly inhibit texturing if desired. --- 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 dc49a1a..8befc92 100644 --- a/src/modules/snow/snow.c +++ b/src/modules/snow/snow.c @@ -60,7 +60,7 @@ static void snow_render_fragment(void *context, unsigned ticks, unsigned cpu, ti uint32_t pixel = rand_r(seed) % 256; #endif - til_fb_fragment_put_pixel_unchecked(fragment, x, y, pixel << 16 | pixel << 8 | pixel); + til_fb_fragment_put_pixel_unchecked(fragment, 0, x, y, pixel << 16 | pixel << 8 | pixel); } } } -- cgit v1.2.1