TouchGFX - invalidate/redraw entire view/screen
I'm wondering if there is a way to force TouchGFX to draw an entire screen again. My project uses a DSI display with internal GRAM. To save power, I turn off the display when possible and turn it on only when needed. This of course erases the GRAM so when the display turns on again it is just blank.
I've tried adding a function to ModelListener and implementing it in a presenter that calls view.draw(). Unfortunately, this doesn't appear to redraw anything. Also, it isn't ideal as I'd have to implement that function for every presenter in my project.
I'm hoping there's a simple way to instruct TouchGFX to simply redraw the most recent screen.
