diff options
| author | Jeff Epler <jepler@gmail.com> | 2021-03-17 20:25:22 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2021-03-17 20:25:22 -0500 |
| commit | 47ca7927659946115f3667a5e6f2da29abf5882e (patch) | |
| tree | ca7194ddc30359c161149f879a14473c267a2b45 /shared-module | |
| parent | 11e510a06ab67b5b78349c91d38ea780f255a425 (diff) | |
arrayblit: mark bitmap area as dirty
Diffstat (limited to 'shared-module')
| -rw-r--r-- | shared-module/bitmaptools/__init__.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-module/bitmaptools/__init__.c b/shared-module/bitmaptools/__init__.c index 4e0d72452..73c8e2f90 100644 --- a/shared-module/bitmaptools/__init__.c +++ b/shared-module/bitmaptools/__init__.c @@ -401,6 +401,7 @@ void common_hal_bitmaptools_arrayblit(displayio_bitmap_t *self, void *data, int } } } + displayio_bitmap_set_dirty_area(self, x1, y1, x2, y2); } void common_hal_bitmaptools_readinto(displayio_bitmap_t *self, pyb_file_obj_t *file, int element_size, int bits_per_pixel, bool reverse_pixels_in_element, bool swap_bytes) { |
