diff options
| author | Dan Halbert <halbert@adafruit.com> | 2019-05-31 21:27:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-31 21:27:06 -0400 |
| commit | bcda5e133d0f4c13265cc927a4e9de9a77b187c6 (patch) | |
| tree | 8e37743d7d63bc7a5a8967ce949e5de2071727a4 /shared-bindings | |
| parent | 63b253c33a2e56bc6c6ccb902d89d0c0b27f7d8f (diff) | |
| parent | 5d0791cafbebf6df7692836b60e86bc1238b4d57 (diff) | |
Merge pull request #1903 from tannewt/get_area
Rework the pixel computation to use areas
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/displayio/Display.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-bindings/displayio/Display.h b/shared-bindings/displayio/Display.h index 3136ae88a..6695da32b 100644 --- a/shared-bindings/displayio/Display.h +++ b/shared-bindings/displayio/Display.h @@ -53,6 +53,7 @@ void common_hal_displayio_display_refresh_soon(displayio_display_obj_t* self); bool displayio_display_begin_transaction(displayio_display_obj_t* self); void displayio_display_end_transaction(displayio_display_obj_t* self); +// The second point of the region is exclusive. void displayio_display_set_region_to_update(displayio_display_obj_t* self, uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1); bool displayio_display_frame_queued(displayio_display_obj_t* self); |
