remove is_null troubleshooting function. remove empty line

This commit is contained in:
foamyguy 2022-11-27 14:08:38 -06:00
parent 738b73d4b4
commit 15a9e63fda
2 changed files with 0 additions and 2 deletions

View File

@ -136,7 +136,6 @@ void common_hal_displayio_display_construct(displayio_display_obj_t *self,
// Set the group after initialization otherwise we may send pixels while we delay in
// initialization.
common_hal_displayio_display_set_root_group(self, &circuitpython_splash);
common_hal_displayio_display_set_auto_refresh(self, auto_refresh);
}

View File

@ -64,7 +64,6 @@ typedef struct {
void displayio_display_background(displayio_display_obj_t *self);
void release_display(displayio_display_obj_t *self);
void reset_display(displayio_display_obj_t *self);
void is_null(displayio_group_t *root_group);
void displayio_display_collect_ptrs(displayio_display_obj_t *self);
#endif // MICROPY_INCLUDED_SHARED_MODULE_DISPLAYIO_DISPLAY_H