@@ -60,7 +60,7 @@ static void _get_screen_area(vectorio_vector_shape_t *self, displayio_area_t *ou
60
60
self -> absolute_transform -> transpose_xy ,
61
61
& shape_area , & shape_area , out_area
62
62
);
63
-
63
+
64
64
displayio_area_shift (
65
65
out_area ,
66
66
self -> absolute_transform -> x ,
@@ -100,7 +100,7 @@ void common_hal_vectorio_vector_shape_set_dirty(void *vector_shape) {
100
100
VECTORIO_SHAPE_DEBUG (" stale:{(%3d,%3d), (%3d,%3d)} -> expanded:{(%3d,%3d), (%3d,%3d)}\n" ,
101
101
self -> current_area .x1 , self -> current_area .y1 , self -> current_area .x2 , self -> current_area .y2 ,
102
102
self -> ephemeral_dirty_area .x1 , self -> ephemeral_dirty_area .y1 , self -> ephemeral_dirty_area .x2 , self -> ephemeral_dirty_area .y2 );
103
-
103
+
104
104
// Dirty area tracks the shape's footprint between draws. It's reset on refresh finish.
105
105
displayio_area_copy (& current_area , & self -> current_area );
106
106
}
@@ -369,11 +369,11 @@ displayio_area_t *vectorio_vector_shape_get_refresh_areas(vectorio_vector_shape_
369
369
new_tail = & self -> current_area ;
370
370
VECTORIO_SHAPE_DEBUG (" redrawing current: {(%3d,%3d), (%3d,%3d)}" , self -> current_area .x1 , self -> current_area .y1 , self -> current_area .x2 , self -> current_area .y2 );
371
371
}
372
- #ifdef VECTORIO_SHAPE_DEBUG
372
+ #ifdef VECTORIO_SHAPE_DEBUG
373
373
if (new_tail != tail ) {
374
374
VECTORIO_SHAPE_DEBUG ("\n" );
375
375
}
376
- #endif
376
+ #endif
377
377
return new_tail ;
378
378
}
379
379
0 commit comments