Skip to content

Commit

Permalink
Emscripten: only update pixel ratio if HiDPI is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
Daft-Freak committed Feb 17, 2017
1 parent e8677a1 commit 613955b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/video/emscripten/SDL_emscriptenevents.c
Expand Up @@ -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))
{
Expand Down
4 changes: 3 additions & 1 deletion src/video/emscripten/SDL_emscriptenvideo.c
Expand Up @@ -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*/
Expand Down

0 comments on commit 613955b

Please sign in to comment.