Log new size on auto-resize request
On "resize to fit" and "resize to pixel-perfect", log the new size.
This commit is contained in:
parent
125c5561e8
commit
44f720e4a4
1 changed files with 4 additions and 2 deletions
|
@ -491,7 +491,8 @@ screen_resize_to_fit(struct screen *screen) {
|
||||||
struct size optimal_size =
|
struct size optimal_size =
|
||||||
get_optimal_window_size(screen, screen->content_size);
|
get_optimal_window_size(screen, screen->content_size);
|
||||||
SDL_SetWindowSize(screen->window, optimal_size.width, optimal_size.height);
|
SDL_SetWindowSize(screen->window, optimal_size.width, optimal_size.height);
|
||||||
LOGD("Resized to optimal size");
|
LOGD("Resized to optimal size: %ux%u", optimal_size.width,
|
||||||
|
optimal_size.height);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -507,7 +508,8 @@ screen_resize_to_pixel_perfect(struct screen *screen) {
|
||||||
|
|
||||||
struct size content_size = screen->content_size;
|
struct size content_size = screen->content_size;
|
||||||
SDL_SetWindowSize(screen->window, content_size.width, content_size.height);
|
SDL_SetWindowSize(screen->window, content_size.width, content_size.height);
|
||||||
LOGD("Resized to pixel-perfect");
|
LOGD("Resized to pixel-perfect: %ux%u", content_size.width,
|
||||||
|
content_size.height);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue