summaryrefslogtreecommitdiff
path: root/src/modules/blinds/blinds.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/blinds/blinds.c')
-rw-r--r--src/modules/blinds/blinds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/blinds/blinds.c b/src/modules/blinds/blinds.c
index 0a8342e..c4a94c9 100644
--- a/src/modules/blinds/blinds.c
+++ b/src/modules/blinds/blinds.c
@@ -69,7 +69,7 @@ static inline void draw_blind_horizontal(til_fb_fragment_t *fragment, unsigned r
/* XXX FIXME: use faster block style fill/copy if til_fb gets that */
for (unsigned y = 0; y < height; y++) {
for (unsigned x = 0; x < fragment->width; x++)
- til_fb_fragment_put_pixel_unchecked(fragment, fragment->x + x, fragment->y + y + row * row_height, 0xffffffff);
+ til_fb_fragment_put_pixel_unchecked(fragment, TIL_FB_DRAW_FLAG_TEXTURABLE, fragment->x + x, fragment->y + y + row * row_height, 0xffffffff);
}
}
@@ -83,7 +83,7 @@ static inline void draw_blind_vertical(til_fb_fragment_t *fragment, unsigned col
/* XXX FIXME: use faster block style fill/copy if til_fb gets that */
for (unsigned y = 0; y < fragment->height; y++) {
for (unsigned x = 0; x < width; x++)
- til_fb_fragment_put_pixel_unchecked(fragment, fragment->x + x + column * column_width, fragment->y + y, 0xffffffff);
+ til_fb_fragment_put_pixel_unchecked(fragment, TIL_FB_DRAW_FLAG_TEXTURABLE, fragment->x + x + column * column_width, fragment->y + y, 0xffffffff);
}
}
© All Rights Reserved