fix code formatting that pre-commit --all-files did not locally report

This commit is contained in:
Kenny 2021-08-07 19:40:07 -07:00
parent 051d7a970e
commit bb25aeee51
2 changed files with 35 additions and 35 deletions

View File

@ -80,8 +80,8 @@ mp_obj_t common_hal_vectorio_polygon_get_points(vectorio_polygon_t *self) {
VECTORIO_POLYGON_DEBUG(" (%4d, %4d)\n", self->points_list[i], self->points_list[i + 1]); VECTORIO_POLYGON_DEBUG(" (%4d, %4d)\n", self->points_list[i], self->points_list[i + 1]);
mp_obj_tuple_t *pair = MP_OBJ_TO_PTR(mp_obj_new_tuple(2, NULL)); mp_obj_tuple_t *pair = MP_OBJ_TO_PTR(mp_obj_new_tuple(2, NULL));
pair->items[0] = mp_obj_new_int((mp_int_t) self->points_list[i ]); pair->items[0] = mp_obj_new_int((mp_int_t)self->points_list[i ]);
pair->items[1] = mp_obj_new_int((mp_int_t) self->points_list[i + 1]); pair->items[1] = mp_obj_new_int((mp_int_t)self->points_list[i + 1]);
mp_obj_list_append( mp_obj_list_append(
list, list,

View File

@ -28,38 +28,38 @@
#define U32_TO_BINARY_FMT "%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c" #define U32_TO_BINARY_FMT "%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c"
#define U32_TO_BINARY(u32) \ #define U32_TO_BINARY(u32) \
(u32 & 0x80000000 ? '1' : '0'), \ (u32 & 0x80000000 ? '1' : '0'), \
(u32 & 0x40000000 ? '1' : '0'), \ (u32 & 0x40000000 ? '1' : '0'), \
(u32 & 0x20000000 ? '1' : '0'), \ (u32 & 0x20000000 ? '1' : '0'), \
(u32 & 0x10000000 ? '1' : '0'), \ (u32 & 0x10000000 ? '1' : '0'), \
(u32 & 0x8000000 ? '1' : '0'), \ (u32 & 0x8000000 ? '1' : '0'), \
(u32 & 0x4000000 ? '1' : '0'), \ (u32 & 0x4000000 ? '1' : '0'), \
(u32 & 0x2000000 ? '1' : '0'), \ (u32 & 0x2000000 ? '1' : '0'), \
(u32 & 0x1000000 ? '1' : '0'), \ (u32 & 0x1000000 ? '1' : '0'), \
(u32 & 0x800000 ? '1' : '0'), \ (u32 & 0x800000 ? '1' : '0'), \
(u32 & 0x400000 ? '1' : '0'), \ (u32 & 0x400000 ? '1' : '0'), \
(u32 & 0x200000 ? '1' : '0'), \ (u32 & 0x200000 ? '1' : '0'), \
(u32 & 0x100000 ? '1' : '0'), \ (u32 & 0x100000 ? '1' : '0'), \
(u32 & 0x80000 ? '1' : '0'), \ (u32 & 0x80000 ? '1' : '0'), \
(u32 & 0x40000 ? '1' : '0'), \ (u32 & 0x40000 ? '1' : '0'), \
(u32 & 0x20000 ? '1' : '0'), \ (u32 & 0x20000 ? '1' : '0'), \
(u32 & 0x10000 ? '1' : '0'), \ (u32 & 0x10000 ? '1' : '0'), \
(u32 & 0x8000 ? '1' : '0'), \ (u32 & 0x8000 ? '1' : '0'), \
(u32 & 0x4000 ? '1' : '0'), \ (u32 & 0x4000 ? '1' : '0'), \
(u32 & 0x2000 ? '1' : '0'), \ (u32 & 0x2000 ? '1' : '0'), \
(u32 & 0x1000 ? '1' : '0'), \ (u32 & 0x1000 ? '1' : '0'), \
(u32 & 0x800 ? '1' : '0'), \ (u32 & 0x800 ? '1' : '0'), \
(u32 & 0x400 ? '1' : '0'), \ (u32 & 0x400 ? '1' : '0'), \
(u32 & 0x200 ? '1' : '0'), \ (u32 & 0x200 ? '1' : '0'), \
(u32 & 0x100 ? '1' : '0'), \ (u32 & 0x100 ? '1' : '0'), \
(u32 & 0x80 ? '1' : '0'), \ (u32 & 0x80 ? '1' : '0'), \
(u32 & 0x40 ? '1' : '0'), \ (u32 & 0x40 ? '1' : '0'), \
(u32 & 0x20 ? '1' : '0'), \ (u32 & 0x20 ? '1' : '0'), \
(u32 & 0x10 ? '1' : '0'), \ (u32 & 0x10 ? '1' : '0'), \
(u32 & 0x8 ? '1' : '0'), \ (u32 & 0x8 ? '1' : '0'), \
(u32 & 0x4 ? '1' : '0'), \ (u32 & 0x4 ? '1' : '0'), \
(u32 & 0x2 ? '1' : '0'), \ (u32 & 0x2 ? '1' : '0'), \
(u32 & 0x1 ? '1' : '0') (u32 & 0x1 ? '1' : '0')
inline __attribute__((always_inline)) inline __attribute__((always_inline))
@ -413,7 +413,7 @@ displayio_area_t *vectorio_vector_shape_get_refresh_areas(vectorio_vector_shape_
self->current_area.x1, self->current_area.y1, self->current_area.x2, self->current_area.y2, self->current_area.x1, self->current_area.y1, self->current_area.x2, self->current_area.y2,
area_swap.x1, area_swap.y1, area_swap.x2, area_swap.y2, area_swap.x1, area_swap.y1, area_swap.x2, area_swap.y2,
union_size, dirty_size, current_size, overlap_size, (int32_t)union_size - dirty_size - current_size + overlap_size union_size, dirty_size, current_size, overlap_size, (int32_t)union_size - dirty_size - current_size + overlap_size
); );
if ((int32_t)union_size - dirty_size - current_size + overlap_size <= min(dirty_size, current_size)) { if ((int32_t)union_size - dirty_size - current_size + overlap_size <= min(dirty_size, current_size)) {
// The excluded / non-overlapping area from the disjoint dirty and current areas is smaller // The excluded / non-overlapping area from the disjoint dirty and current areas is smaller