8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56be547 commit 5b64a62Copy full SHA for 5b64a62
shared-module/vectorio/VectorShape.h
@@ -30,14 +30,14 @@ typedef struct {
30
mp_obj_t pixel_shader;
31
int16_t x;
32
int16_t y;
33
- bool hidden : 1;
34
displayio_buffer_transform_t *absolute_transform;
35
// Tracks current shape footprint and expands outward as the shape dirties and changes.
36
// This is suboptimal if you move your shape far. Could add more state to only redraw
37
// exactly what we left behind.
38
displayio_area_t ephemeral_dirty_area;
39
displayio_area_t current_area;
40
bool current_area_dirty;
+ bool hidden;
41
} vectorio_vector_shape_t;
42
43
displayio_area_t *vectorio_vector_shape_get_refresh_areas(vectorio_vector_shape_t *self, displayio_area_t *tail);
0 commit comments