Handle window events from screen.c

Only the screen knows what to do on window events.

This paves the way to handle more window events.
This commit is contained in:
Romain Vimont
2019-10-20 15:32:33 +02:00
parent 6996cbf5d3
commit f6f2868868
3 changed files with 16 additions and 6 deletions

View File

@@ -327,3 +327,14 @@ screen_resize_to_pixel_perfect(struct screen *screen) {
LOGD("Resized to pixel-perfect");
}
}
void
screen_handle_window_event(struct screen *screen,
const SDL_WindowEvent *event) {
switch (event->event) {
case SDL_WINDOWEVENT_EXPOSED:
case SDL_WINDOWEVENT_SIZE_CHANGED:
screen_render(screen);
break;
}
}