Wayland: Fix window resizing on HiDPI monitors
This commit is contained in:
parent
bb5cd1dfeb
commit
c901866864
|
@ -870,8 +870,8 @@ static void gfx_ctx_wl_get_video_size(void *data,
|
|||
{
|
||||
gfx_ctx_wayland_data_t *wl = (gfx_ctx_wayland_data_t*)data;
|
||||
|
||||
*width = wl->width;
|
||||
*height = wl->height;
|
||||
*width = wl->width * wl->buffer_scale;
|
||||
*height = wl->height * wl->buffer_scale;
|
||||
}
|
||||
|
||||
static void gfx_ctx_wl_destroy_resources(gfx_ctx_wayland_data_t *wl)
|
||||
|
|
Loading…
Reference in New Issue