Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Emscripten: only update pixel ratio if HiDPI is enabled
- Loading branch information
|
@@ -556,7 +556,9 @@ Emscripten_HandleResize(int eventType, const EmscriptenUiEvent *uiEvent, void *u |
|
|
SDL_WindowData *window_data = userData; |
|
|
|
|
|
/* update pixel ratio */ |
|
|
window_data->pixel_ratio = emscripten_get_device_pixel_ratio(); |
|
|
if (window_data->window->flags & SDL_WINDOW_ALLOW_HIGHDPI) { |
|
|
window_data->pixel_ratio = emscripten_get_device_pixel_ratio(); |
|
|
} |
|
|
|
|
|
if(!(window_data->window->flags & FULLSCREEN_MASK)) |
|
|
{ |
|
|
|
@@ -263,7 +263,9 @@ static void Emscripten_SetWindowSize(_THIS, SDL_Window * window) |
|
|
if (window->driverdata) { |
|
|
data = (SDL_WindowData *) window->driverdata; |
|
|
/* update pixel ratio */ |
|
|
data->pixel_ratio = emscripten_get_device_pixel_ratio(); |
|
|
if (window->flags & SDL_WINDOW_ALLOW_HIGHDPI) { |
|
|
data->pixel_ratio = emscripten_get_device_pixel_ratio(); |
|
|
} |
|
|
emscripten_set_canvas_size(window->w * data->pixel_ratio, window->h * data->pixel_ratio); |
|
|
|
|
|
/*scale canvas down*/ |
|
|