Create OTG window with HIGHDPI flag

This will avoid poor quality with HiDPI displays.

PR #3219 <https://github.com/Genymobile/scrcpy/pull/3219>
This commit is contained in:
Romain Vimont 2022-04-28 19:10:45 +02:00
parent 0fca2ad830
commit c6d9711109

View file

@ -72,7 +72,7 @@ sc_screen_otg_init(struct sc_screen_otg *screen,
int width = 256;
int height = 256;
uint32_t window_flags = 0;
uint32_t window_flags = SDL_WINDOW_ALLOW_HIGHDPI;
if (params->always_on_top) {
window_flags |= SDL_WINDOW_ALWAYS_ON_TOP;
}