diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2021-03-18 10:39:30 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-18 10:39:30 -0700 |
| commit | c480047880c432ab3430ee00fb889bd548f55f22 (patch) | |
| tree | ca7194ddc30359c161149f879a14473c267a2b45 | |
| parent | 11e510a06ab67b5b78349c91d38ea780f255a425 (diff) | |
| parent | 47ca7927659946115f3667a5e6f2da29abf5882e (diff) | |
Merge pull request #4430 from jepler/bitmap-arrayblit-dirty
arrayblit: mark bitmap area as dirty
| -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) { |
