mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
use screen resolution instead of canvas size
This commit is contained in:
parent
791b946a42
commit
c68cac89df
@ -134,15 +134,17 @@ int
|
||||
Emscripten_VideoInit(_THIS)
|
||||
{
|
||||
SDL_DisplayMode mode;
|
||||
double css_w, css_h;
|
||||
|
||||
/* Use a fake 32-bpp desktop mode */
|
||||
mode.format = SDL_PIXELFORMAT_RGB888;
|
||||
|
||||
emscripten_get_element_css_size(NULL, &css_w, &css_h);
|
||||
mode.w = EM_ASM_INT_V({
|
||||
return screen.width;
|
||||
});
|
||||
|
||||
mode.w = css_w;
|
||||
mode.h = css_h;
|
||||
mode.h = EM_ASM_INT_V({
|
||||
return screen.height;
|
||||
});
|
||||
|
||||
mode.refresh_rate = 0;
|
||||
mode.driverdata = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user