requestRecompute method
Requests a full recompute/redraw of the screen inside bounds
.
Currently clears the entire buffer and clears dirty components.
Implementation
void requestRecompute(Rect bounds) {
buffer.clear();
_dirtyComponents.clear();
}