2018-08-15 14:01:01 -04:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
#include <string.h>
|
2019-06-06 18:11:02 -04:00
|
|
|
|
2019-01-16 15:04:42 -05:00
|
|
|
#include "shared-module/displayio/__init__.h"
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-02-28 22:36:50 -05:00
|
|
|
#include "lib/utils/interrupt_char.h"
|
2019-06-06 17:49:32 -04:00
|
|
|
#include "py/gc.h"
|
2019-02-15 16:52:25 -05:00
|
|
|
#include "py/reload.h"
|
2019-02-28 22:36:50 -05:00
|
|
|
#include "py/runtime.h"
|
2019-04-08 19:58:50 -04:00
|
|
|
#include "shared-bindings/board/__init__.h"
|
2019-01-17 03:20:16 -05:00
|
|
|
#include "shared-bindings/displayio/Bitmap.h"
|
2019-01-16 15:04:42 -05:00
|
|
|
#include "shared-bindings/displayio/Display.h"
|
2019-01-17 03:20:16 -05:00
|
|
|
#include "shared-bindings/displayio/Group.h"
|
|
|
|
#include "shared-bindings/displayio/Palette.h"
|
2019-05-16 19:45:38 -04:00
|
|
|
#include "shared-module/displayio/area.h"
|
2019-02-14 15:54:34 -05:00
|
|
|
#include "supervisor/shared/autoreload.h"
|
2019-01-24 20:25:08 -05:00
|
|
|
#include "supervisor/shared/display.h"
|
2019-01-25 19:59:18 -05:00
|
|
|
#include "supervisor/memory.h"
|
2019-01-17 17:45:29 -05:00
|
|
|
#include "supervisor/usb.h"
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
primary_display_t displays[CIRCUITPY_DISPLAY_LIMIT];
|
2019-07-05 22:01:54 -04:00
|
|
|
uint32_t frame_count = 0;
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-06-06 18:11:02 -04:00
|
|
|
bool refresh_area(displayio_display_obj_t* display, const displayio_area_t* area) {
|
2019-07-05 22:01:54 -04:00
|
|
|
uint16_t buffer_size = 128; // In uint32_ts
|
2019-06-06 18:11:02 -04:00
|
|
|
|
|
|
|
displayio_area_t clipped;
|
|
|
|
// Clip the area to the display by overlapping the areas. If there is no overlap then we're done.
|
|
|
|
if (!displayio_display_clip_area(display, area, &clipped)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
uint16_t subrectangles = 1;
|
|
|
|
uint16_t rows_per_buffer = displayio_area_height(&clipped);
|
2019-07-05 22:01:54 -04:00
|
|
|
uint8_t pixels_per_word = (sizeof(uint32_t) * 8) / display->colorspace.depth;
|
|
|
|
uint16_t pixels_per_buffer = displayio_area_size(&clipped);
|
|
|
|
if (displayio_area_size(&clipped) > buffer_size * pixels_per_word) {
|
|
|
|
rows_per_buffer = buffer_size * pixels_per_word / displayio_area_width(&clipped);
|
|
|
|
if (rows_per_buffer == 0) {
|
|
|
|
rows_per_buffer = 1;
|
|
|
|
}
|
|
|
|
// If pixels are packed by column then ensure rows_per_buffer is on a byte boundary.
|
|
|
|
if (display->colorspace.depth < 8 && !display->colorspace.pixels_in_byte_share_row) {
|
|
|
|
uint8_t pixels_per_byte = 8 / display->colorspace.depth;
|
|
|
|
if (rows_per_buffer % pixels_per_byte != 0) {
|
|
|
|
rows_per_buffer -= rows_per_buffer % pixels_per_byte;
|
|
|
|
}
|
|
|
|
}
|
2019-06-06 18:11:02 -04:00
|
|
|
subrectangles = displayio_area_height(&clipped) / rows_per_buffer;
|
|
|
|
if (displayio_area_height(&clipped) % rows_per_buffer != 0) {
|
|
|
|
subrectangles++;
|
|
|
|
}
|
2019-07-05 22:01:54 -04:00
|
|
|
pixels_per_buffer = rows_per_buffer * displayio_area_width(&clipped);
|
|
|
|
buffer_size = pixels_per_buffer / pixels_per_word;
|
|
|
|
if (pixels_per_buffer % pixels_per_word) {
|
|
|
|
buffer_size += 1;
|
|
|
|
}
|
2019-06-06 18:11:02 -04:00
|
|
|
}
|
2019-07-05 22:01:54 -04:00
|
|
|
|
|
|
|
// Allocated and shared as a uint32_t array so the compiler knows the
|
|
|
|
// alignment everywhere.
|
|
|
|
uint32_t buffer[buffer_size];
|
|
|
|
volatile uint32_t mask_length = (pixels_per_buffer / 32) + 1;
|
|
|
|
uint32_t mask[mask_length];
|
2019-06-06 18:11:02 -04:00
|
|
|
uint16_t remaining_rows = displayio_area_height(&clipped);
|
|
|
|
|
|
|
|
for (uint16_t j = 0; j < subrectangles; j++) {
|
|
|
|
displayio_area_t subrectangle = {
|
|
|
|
.x1 = clipped.x1,
|
|
|
|
.y1 = clipped.y1 + rows_per_buffer * j,
|
|
|
|
.x2 = clipped.x2,
|
|
|
|
.y2 = clipped.y1 + rows_per_buffer * (j + 1)
|
|
|
|
};
|
|
|
|
if (remaining_rows < rows_per_buffer) {
|
|
|
|
subrectangle.y2 = subrectangle.y1 + remaining_rows;
|
|
|
|
}
|
|
|
|
remaining_rows -= rows_per_buffer;
|
|
|
|
|
|
|
|
displayio_display_begin_transaction(display);
|
2019-07-05 22:01:54 -04:00
|
|
|
displayio_display_set_region_to_update(display, &subrectangle);
|
2019-06-06 18:11:02 -04:00
|
|
|
displayio_display_end_transaction(display);
|
|
|
|
|
2019-07-05 22:01:54 -04:00
|
|
|
uint16_t subrectangle_size_bytes;
|
|
|
|
if (display->colorspace.depth >= 8) {
|
|
|
|
subrectangle_size_bytes = displayio_area_size(&subrectangle) * (display->colorspace.depth / 8);
|
|
|
|
} else {
|
|
|
|
subrectangle_size_bytes = displayio_area_size(&subrectangle) / (8 / display->colorspace.depth);
|
2019-06-06 18:11:02 -04:00
|
|
|
}
|
|
|
|
|
2019-07-05 22:01:54 -04:00
|
|
|
for (uint16_t k = 0; k < mask_length; k++) {
|
|
|
|
mask[k] = 0x00000000;
|
|
|
|
}
|
|
|
|
for (uint16_t k = 0; k < buffer_size; k++) {
|
|
|
|
buffer[k] = 0x00000000;
|
2019-06-06 18:11:02 -04:00
|
|
|
}
|
|
|
|
|
2019-07-05 22:01:54 -04:00
|
|
|
displayio_display_fill_area(display, &subrectangle, mask, buffer);
|
|
|
|
|
2019-06-06 18:11:02 -04:00
|
|
|
if (!displayio_display_begin_transaction(display)) {
|
|
|
|
// Can't acquire display bus; skip the rest of the data. Try next display.
|
|
|
|
return false;
|
|
|
|
}
|
2019-07-05 22:01:54 -04:00
|
|
|
displayio_display_send_pixels(display, (uint8_t*) buffer, subrectangle_size_bytes);
|
2019-06-06 18:11:02 -04:00
|
|
|
displayio_display_end_transaction(display);
|
|
|
|
|
|
|
|
// TODO(tannewt): Make refresh displays faster so we don't starve other
|
|
|
|
// background tasks.
|
|
|
|
usb_background();
|
|
|
|
}
|
|
|
|
return true;
|
2019-02-01 03:32:03 -05:00
|
|
|
}
|
|
|
|
|
2019-03-07 00:08:16 -05:00
|
|
|
// Check for recursive calls to displayio_refresh_displays.
|
|
|
|
bool refresh_displays_in_progress = false;
|
2019-02-14 15:54:34 -05:00
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
void displayio_refresh_displays(void) {
|
2019-02-28 22:36:50 -05:00
|
|
|
if (mp_hal_is_interrupted()) {
|
|
|
|
return;
|
|
|
|
}
|
2019-03-16 16:49:32 -04:00
|
|
|
if (reload_requested) {
|
|
|
|
// Reload is about to happen, so don't redisplay.
|
2019-02-15 16:52:25 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-07 00:08:16 -05:00
|
|
|
if (refresh_displays_in_progress) {
|
|
|
|
// Don't allow recursive calls to this routine.
|
2019-02-14 15:54:34 -05:00
|
|
|
return;
|
|
|
|
}
|
2019-03-07 00:08:16 -05:00
|
|
|
|
|
|
|
refresh_displays_in_progress = true;
|
|
|
|
|
2019-01-17 03:20:16 -05:00
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
2019-01-17 21:51:40 -05:00
|
|
|
if (displays[i].display.base.type == NULL || displays[i].display.base.type == &mp_type_NoneType) {
|
2019-03-07 00:08:16 -05:00
|
|
|
// Skip null display.
|
2019-01-17 03:20:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
displayio_display_obj_t* display = &displays[i].display;
|
2019-01-25 21:31:27 -05:00
|
|
|
displayio_display_update_backlight(display);
|
2018-08-15 14:01:01 -04:00
|
|
|
|
2019-03-07 00:08:16 -05:00
|
|
|
// Time to refresh at specified frame rate?
|
2019-01-17 03:20:16 -05:00
|
|
|
if (!displayio_display_frame_queued(display)) {
|
2019-03-07 00:08:16 -05:00
|
|
|
// Too soon. Try next display.
|
|
|
|
continue;
|
2019-01-17 03:20:16 -05:00
|
|
|
}
|
2019-06-06 18:11:02 -04:00
|
|
|
if (!displayio_display_begin_transaction(display)) {
|
|
|
|
// Can't acquire display bus; skip updating this display. Try next display.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
displayio_display_end_transaction(display);
|
|
|
|
displayio_display_start_refresh(display);
|
|
|
|
const displayio_area_t* current_area = displayio_display_get_refresh_areas(display);
|
|
|
|
while (current_area != NULL) {
|
|
|
|
refresh_area(display, current_area);
|
|
|
|
current_area = current_area->next;
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
displayio_display_finish_refresh(display);
|
2019-06-06 18:11:02 -04:00
|
|
|
frame_count++;
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|
2019-03-07 00:08:16 -05:00
|
|
|
|
|
|
|
// All done.
|
|
|
|
refresh_displays_in_progress = false;
|
2019-01-16 15:04:42 -05:00
|
|
|
}
|
|
|
|
|
2019-01-25 19:59:18 -05:00
|
|
|
void common_hal_displayio_release_displays(void) {
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
|
|
|
mp_const_obj_t bus_type = displays[i].fourwire_bus.base.type;
|
2019-08-14 18:53:58 -04:00
|
|
|
if (bus_type == NULL || bus_type == &mp_type_NoneType) {
|
2019-01-25 19:59:18 -05:00
|
|
|
continue;
|
|
|
|
} else if (bus_type == &displayio_fourwire_type) {
|
|
|
|
common_hal_displayio_fourwire_deinit(&displays[i].fourwire_bus);
|
2019-07-05 22:01:54 -04:00
|
|
|
} else if (bus_type == &displayio_i2cdisplay_type) {
|
|
|
|
common_hal_displayio_i2cdisplay_deinit(&displays[i].i2cdisplay_bus);
|
2019-01-25 19:59:18 -05:00
|
|
|
} else if (bus_type == &displayio_parallelbus_type) {
|
|
|
|
common_hal_displayio_parallelbus_deinit(&displays[i].parallel_bus);
|
|
|
|
}
|
|
|
|
displays[i].fourwire_bus.base.type = &mp_type_NoneType;
|
|
|
|
}
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
2019-01-25 21:31:27 -05:00
|
|
|
release_display(&displays[i].display);
|
2019-01-25 19:59:18 -05:00
|
|
|
displays[i].display.base.type = &mp_type_NoneType;
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
|
2019-01-25 19:59:18 -05:00
|
|
|
supervisor_stop_terminal();
|
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
|
|
|
|
void reset_displays(void) {
|
|
|
|
// The SPI buses used by FourWires may be allocated on the heap so we need to move them inline.
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
2019-07-05 22:01:54 -04:00
|
|
|
if (displays[i].fourwire_bus.base.type == &displayio_fourwire_type) {
|
|
|
|
displayio_fourwire_obj_t* fourwire = &displays[i].fourwire_bus;
|
|
|
|
if (((uint32_t) fourwire->bus) < ((uint32_t) &displays) ||
|
|
|
|
((uint32_t) fourwire->bus) > ((uint32_t) &displays + CIRCUITPY_DISPLAY_LIMIT)) {
|
|
|
|
busio_spi_obj_t* original_spi = fourwire->bus;
|
|
|
|
#if BOARD_SPI
|
|
|
|
// We don't need to move original_spi if it is the board.SPI object because it is
|
|
|
|
// statically allocated already. (Doing so would also make it impossible to reference in
|
|
|
|
// a subsequent VM run.)
|
|
|
|
if (original_spi == common_hal_board_get_spi()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
memcpy(&fourwire->inline_bus, original_spi, sizeof(busio_spi_obj_t));
|
|
|
|
fourwire->bus = &fourwire->inline_bus;
|
|
|
|
// Check for other displays that use the same spi bus and swap them too.
|
|
|
|
for (uint8_t j = i + 1; j < CIRCUITPY_DISPLAY_LIMIT; j++) {
|
|
|
|
if (displays[i].fourwire_bus.base.type == &displayio_fourwire_type &&
|
|
|
|
displays[i].fourwire_bus.bus == original_spi) {
|
|
|
|
displays[i].fourwire_bus.bus = &fourwire->inline_bus;
|
|
|
|
}
|
2019-04-09 14:36:10 -04:00
|
|
|
}
|
2019-07-05 22:01:54 -04:00
|
|
|
}
|
|
|
|
} else if (displays[i].i2cdisplay_bus.base.type == &displayio_i2cdisplay_type) {
|
2019-07-24 16:25:34 -04:00
|
|
|
displayio_i2cdisplay_obj_t* i2c = &displays[i].i2cdisplay_bus;
|
|
|
|
if (((uint32_t) i2c->bus) < ((uint32_t) &displays) ||
|
|
|
|
((uint32_t) i2c->bus) > ((uint32_t) &displays + CIRCUITPY_DISPLAY_LIMIT)) {
|
|
|
|
busio_i2c_obj_t* original_i2c = i2c->bus;
|
|
|
|
#if BOARD_I2C
|
|
|
|
// We don't need to move original_i2c if it is the board.SPI object because it is
|
|
|
|
// statically allocated already. (Doing so would also make it impossible to reference in
|
|
|
|
// a subsequent VM run.)
|
|
|
|
if (original_i2c == common_hal_board_get_i2c()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
memcpy(&i2c->inline_bus, original_i2c, sizeof(busio_i2c_obj_t));
|
|
|
|
i2c->bus = &i2c->inline_bus;
|
|
|
|
// Check for other displays that use the same i2c bus and swap them too.
|
|
|
|
for (uint8_t j = i + 1; j < CIRCUITPY_DISPLAY_LIMIT; j++) {
|
|
|
|
if (displays[i].i2cdisplay_bus.base.type == &displayio_i2cdisplay_type &&
|
|
|
|
displays[i].i2cdisplay_bus.bus == original_i2c) {
|
|
|
|
displays[i].i2cdisplay_bus.bus = &i2c->inline_bus;
|
2019-07-05 22:01:54 -04:00
|
|
|
}
|
2019-01-17 03:20:16 -05:00
|
|
|
}
|
|
|
|
}
|
2019-07-24 16:25:34 -04:00
|
|
|
} else {
|
|
|
|
// Not an active display.
|
2019-01-17 03:20:16 -05:00
|
|
|
continue;
|
|
|
|
}
|
2019-08-14 18:53:58 -04:00
|
|
|
}
|
2019-07-24 16:25:34 -04:00
|
|
|
|
2019-08-14 18:53:58 -04:00
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
2019-07-24 16:25:34 -04:00
|
|
|
// Reset the displayed group. Only the first will get the terminal but
|
|
|
|
// that's ok.
|
2019-01-17 03:20:16 -05:00
|
|
|
displayio_display_obj_t* display = &displays[i].display;
|
2019-01-25 21:31:27 -05:00
|
|
|
display->auto_brightness = true;
|
2019-08-14 18:53:58 -04:00
|
|
|
common_hal_displayio_display_show(display, NULL);
|
2019-01-17 03:20:16 -05:00
|
|
|
}
|
2019-06-06 17:49:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void displayio_gc_collect(void) {
|
|
|
|
for (uint8_t i = 0; i < CIRCUITPY_DISPLAY_LIMIT; i++) {
|
|
|
|
if (displays[i].display.base.type == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alternatively, we could use gc_collect_root over the whole object,
|
|
|
|
// but this is more precise, and is the only field that needs marking.
|
|
|
|
gc_collect_ptr(displays[i].display.current_group);
|
|
|
|
|
|
|
|
}
|
2018-08-15 14:01:01 -04:00
|
|
|
}
|
2019-05-16 19:45:38 -04:00
|
|
|
|
2019-06-06 18:11:02 -04:00
|
|
|
void displayio_area_expand(displayio_area_t* original, const displayio_area_t* addition) {
|
|
|
|
if (addition->x1 < original->x1) {
|
|
|
|
original->x1 = addition->x1;
|
|
|
|
}
|
|
|
|
if (addition->y1 < original->y1) {
|
|
|
|
original->y1 = addition->y1;
|
|
|
|
}
|
|
|
|
if (addition->x2 > original->x2) {
|
|
|
|
original->x2 = addition->x2;
|
|
|
|
}
|
|
|
|
if (addition->y2 > original->y2) {
|
|
|
|
original->y2 = addition->y2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void displayio_area_copy(const displayio_area_t* src, displayio_area_t* dst) {
|
|
|
|
dst->x1 = src->x1;
|
|
|
|
dst->y1 = src->y1;
|
|
|
|
dst->x2 = src->x2;
|
|
|
|
dst->y2 = src->y2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void displayio_area_scale(displayio_area_t* area, uint16_t scale) {
|
|
|
|
area->x1 *= scale;
|
|
|
|
area->y1 *= scale;
|
|
|
|
area->x2 *= scale;
|
|
|
|
area->y2 *= scale;
|
|
|
|
}
|
|
|
|
|
2019-05-16 19:45:38 -04:00
|
|
|
void displayio_area_shift(displayio_area_t* area, int16_t dx, int16_t dy) {
|
|
|
|
area->x1 += dx;
|
|
|
|
area->y1 += dy;
|
|
|
|
area->x2 += dx;
|
|
|
|
area->y2 += dy;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool displayio_area_compute_overlap(const displayio_area_t* a,
|
|
|
|
const displayio_area_t* b,
|
|
|
|
displayio_area_t* overlap) {
|
|
|
|
overlap->x1 = a->x1;
|
|
|
|
if (b->x1 > overlap->x1) {
|
|
|
|
overlap->x1 = b->x1;
|
|
|
|
}
|
|
|
|
overlap->x2 = a->x2;
|
|
|
|
if (b->x2 < overlap->x2) {
|
|
|
|
overlap->x2 = b->x2;
|
|
|
|
}
|
2019-06-06 18:11:02 -04:00
|
|
|
if (overlap->x1 >= overlap->x2) {
|
2019-05-16 19:45:38 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
overlap->y1 = a->y1;
|
|
|
|
if (b->y1 > overlap->y1) {
|
|
|
|
overlap->y1 = b->y1;
|
|
|
|
}
|
|
|
|
overlap->y2 = a->y2;
|
|
|
|
if (b->y2 < overlap->y2) {
|
|
|
|
overlap->y2 = b->y2;
|
|
|
|
}
|
2019-06-06 18:11:02 -04:00
|
|
|
if (overlap->y1 >= overlap->y2) {
|
2019-05-16 19:45:38 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-06 18:11:02 -04:00
|
|
|
void displayio_area_union(const displayio_area_t* a,
|
|
|
|
const displayio_area_t* b,
|
|
|
|
displayio_area_t* u) {
|
|
|
|
u->x1 = a->x1;
|
|
|
|
if (b->x1 < u->x1) {
|
|
|
|
u->x1 = b->x1;
|
|
|
|
}
|
|
|
|
u->x2 = a->x2;
|
|
|
|
if (b->x2 > u->x2) {
|
|
|
|
u->x2 = b->x2;
|
|
|
|
}
|
|
|
|
|
|
|
|
u->y1 = a->y1;
|
|
|
|
if (b->y1 < u->y1) {
|
|
|
|
u->y1 = b->y1;
|
|
|
|
}
|
|
|
|
u->y2 = a->y2;
|
|
|
|
if (b->y2 > u->y2) {
|
|
|
|
u->y2 = b->y2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-16 19:45:38 -04:00
|
|
|
uint16_t displayio_area_width(const displayio_area_t* area) {
|
2019-05-22 18:00:47 -04:00
|
|
|
return area->x2 - area->x1;
|
2019-05-16 19:45:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t displayio_area_height(const displayio_area_t* area) {
|
2019-05-22 18:00:47 -04:00
|
|
|
return area->y2 - area->y1;
|
2019-05-16 19:45:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t displayio_area_size(const displayio_area_t* area) {
|
|
|
|
return displayio_area_width(area) * displayio_area_height(area);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool displayio_area_equal(const displayio_area_t* a, const displayio_area_t* b) {
|
|
|
|
return a->x1 == b->x1 &&
|
|
|
|
a->y1 == b->y1 &&
|
|
|
|
a->x2 == b->x2 &&
|
|
|
|
a->y2 == b->y2;
|
|
|
|
}
|
2019-06-06 18:11:02 -04:00
|
|
|
|
|
|
|
// Original and whole must be in the same coordinate space.
|
|
|
|
void displayio_area_transform_within(bool mirror_x, bool mirror_y, bool transpose_xy,
|
|
|
|
const displayio_area_t* original,
|
|
|
|
const displayio_area_t* whole,
|
|
|
|
displayio_area_t* transformed) {
|
|
|
|
if (mirror_x) {
|
|
|
|
transformed->x1 = whole->x1 + (whole->x2 - original->x2);
|
|
|
|
transformed->x2 = whole->x2 - (original->x1 - whole->x1);
|
|
|
|
} else {
|
|
|
|
transformed->x1 = original->x1;
|
|
|
|
transformed->x2 = original->x2;
|
|
|
|
}
|
|
|
|
if (mirror_y) {
|
|
|
|
transformed->y1 = whole->y1 + (whole->y2 - original->y2);
|
|
|
|
transformed->y2 = whole->y2 - (original->y1 - whole->y1);
|
|
|
|
} else {
|
|
|
|
transformed->y1 = original->y1;
|
|
|
|
transformed->y2 = original->y2;
|
|
|
|
}
|
|
|
|
if (transpose_xy) {
|
|
|
|
int16_t y1 = transformed->y1;
|
|
|
|
int16_t y2 = transformed->y2;
|
|
|
|
transformed->y1 = whole->y1 + (transformed->x1 - whole->x1);
|
|
|
|
transformed->y2 = whole->y1 + (transformed->x2 - whole->x1);
|
|
|
|
transformed->x2 = whole->x1 + (y2 - whole->y1);
|
|
|
|
transformed->x1 = whole->x1 + (y1 - whole->y1);
|
|
|
|
}
|
|
|
|
}
|