summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2021-04-12 12:51:41 -0500
committerDudemanguy <random342@airmail.cc>2021-05-06 17:36:55 +0000
commita88fdfde0c91c16c84e6057b19bdc2fb9e666e24 (patch)
tree64bb28b8c231040510adfef3630a62bac592e5ae /video/out/x11_common.c
parent8edfe70b83acba3de91d41bf1c46921e969ea265 (diff)
downloadmpv-a88fdfde0c91c16c84e6057b19bdc2fb9e666e24.tar.bz2
mpv-a88fdfde0c91c16c84e6057b19bdc2fb9e666e24.tar.xz
command: add display-width/display-height property
For some reason, this never existed before. Add VOCTRL_GET_DISPLAY_RES and use it to obtain the current display's resolution from each vo/windowing backend if applicable. Users can then access the current display resolution as display-width and display-height as per the client api. Note that macOS/cocoa was not attempted in this commit since the author has no clue how to write swift.
Diffstat (limited to 'video/out/x11_common.c')
-rw-r--r--video/out/x11_common.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/video/out/x11_common.c b/video/out/x11_common.c
index ac551fae8e..12d2648d4e 100644
--- a/video/out/x11_common.c
+++ b/video/out/x11_common.c
@@ -1982,6 +1982,13 @@ int vo_x11_control(struct vo *vo, int *events, int request, void *arg)
*(double *)arg = fps;
return VO_TRUE;
}
+ case VOCTRL_GET_DISPLAY_RES: {
+ if (!x11->window || x11->parent)
+ return VO_NOTAVAIL;
+ ((int *)arg)[0] = x11->screenrc.x1;
+ ((int *)arg)[1] = x11->screenrc.y1;
+ return VO_TRUE;
+ }
case VOCTRL_GET_HIDPI_SCALE:
*(double *)arg = x11->dpi_scale;
return VO_TRUE;