diff options
| author | Kevin Matocha <kmatocha@icloud.com> | 2021-03-16 10:01:12 -0500 |
|---|---|---|
| committer | Kevin Matocha <kmatocha@icloud.com> | 2021-03-16 10:01:12 -0500 |
| commit | 227ac674639fa9df071ca7c8b2373029cc0b4618 (patch) | |
| tree | 6889b9458f86fb5f9dd2e6109ae98df0a4f3e0a0 /shared-bindings/bitmaptools/__init__.h | |
| parent | 542fb58673954be992e274b065425e4de2aea178 (diff) | |
Add reverse_rows option to bitmaptools.readinto
Diffstat (limited to 'shared-bindings/bitmaptools/__init__.h')
| -rw-r--r-- | shared-bindings/bitmaptools/__init__.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/bitmaptools/__init__.h b/shared-bindings/bitmaptools/__init__.h index bb89cd732..ec0b05244 100644 --- a/shared-bindings/bitmaptools/__init__.h +++ b/shared-bindings/bitmaptools/__init__.h @@ -51,7 +51,7 @@ void common_hal_bitmaptools_draw_line(displayio_bitmap_t *destination, int16_t x1, int16_t y1, uint32_t value); -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_word, bool swap_bytes); +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_word, bool swap_bytes, bool reverse_rows); void common_hal_bitmaptools_arrayblit(displayio_bitmap_t *self, void *data, int element_size, int x1, int y1, int x2, int y2, bool skip_specified, uint32_t skip_index); #endif // MICROPY_INCLUDED_SHARED_BINDINGS_BITMAPTOOLS__INIT__H |
