ran pre-commit for formatting fixes
This commit is contained in:
parent
580121d46e
commit
c37a1f45f3
@ -550,6 +550,7 @@ msgstr ""
|
|||||||
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
|
#: ports/atmel-samd/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
#: ports/esp32s2/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/nrf/common-hal/displayio/ParallelBus.c
|
#: ports/nrf/common-hal/displayio/ParallelBus.c
|
||||||
|
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Bus pin %d is already in use"
|
msgid "Bus pin %d is already in use"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1729,7 +1730,6 @@ msgid "PWM slice channel A already in use"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
#: ports/mimxrt10xx/common-hal/displayio/ParallelBus.c
|
||||||
#: ports/raspberrypi/common-hal/displayio/ParallelBus.c
|
|
||||||
#: ports/stm/common-hal/displayio/ParallelBus.c
|
#: ports/stm/common-hal/displayio/ParallelBus.c
|
||||||
msgid "ParallelBus not yet supported"
|
msgid "ParallelBus not yet supported"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -51,7 +51,7 @@ void common_hal_bitmaptools_draw_line(displayio_bitmap_t *destination,
|
|||||||
int16_t x1, int16_t y1,
|
int16_t x1, int16_t y1,
|
||||||
uint32_t value);
|
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, bool reverse_rows);
|
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);
|
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
|
#endif // MICROPY_INCLUDED_SHARED_BINDINGS_BITMAPTOOLS__INIT__H
|
||||||
|
@ -415,7 +415,7 @@ void common_hal_bitmaptools_readinto(displayio_bitmap_t *self, pyb_file_obj_t *f
|
|||||||
size_t rowsize_in_u32 = (rowsize + sizeof(uint32_t) - 1) / sizeof(uint32_t);
|
size_t rowsize_in_u32 = (rowsize + sizeof(uint32_t) - 1) / sizeof(uint32_t);
|
||||||
size_t rowsize_in_u16 = (rowsize + sizeof(uint16_t) - 1) / sizeof(uint16_t);
|
size_t rowsize_in_u16 = (rowsize + sizeof(uint16_t) - 1) / sizeof(uint16_t);
|
||||||
|
|
||||||
for(int y = 0; y < self->height; y++) {
|
for (int y = 0; y < self->height; y++) {
|
||||||
uint32_t rowdata32[rowsize_in_u32];
|
uint32_t rowdata32[rowsize_in_u32];
|
||||||
uint16_t *rowdata16 = (uint16_t *)rowdata32;
|
uint16_t *rowdata16 = (uint16_t *)rowdata32;
|
||||||
uint8_t *rowdata8 = (uint8_t *)rowdata32;
|
uint8_t *rowdata8 = (uint8_t *)rowdata32;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user