summaryrefslogtreecommitdiffstats
path: root/video/out/wayland_common.h
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-01-08 14:02:13 -0600
committerDudemanguy <random342@airmail.cc>2023-01-08 20:42:42 +0000
commit8439c084e10fdcb60eb7c3f8f393a33d256f2e41 (patch)
tree6ae887fd1fd4bc245283fb2ff42348237079644b /video/out/wayland_common.h
parentd73fc7912a46d4cb9c3e07f01f5ae2d64e7d9ff5 (diff)
downloadmpv-8439c084e10fdcb60eb7c3f8f393a33d256f2e41.tar.bz2
mpv-8439c084e10fdcb60eb7c3f8f393a33d256f2e41.tar.xz
wayland: make vo_wayland_reconfig a bool
This was already returning true/false but the type was int. Also simplify a few places in the wayland contexts where we can just return the value of this function instead of doing redundant checks.
Diffstat (limited to 'video/out/wayland_common.h')
-rw-r--r--video/out/wayland_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/wayland_common.h b/video/out/wayland_common.h
index b7f2e4645d..4390b7927d 100644
--- a/video/out/wayland_common.h
+++ b/video/out/wayland_common.h
@@ -154,11 +154,11 @@ struct vo_wayland_state {
bool vo_wayland_check_visible(struct vo *vo);
bool vo_wayland_init(struct vo *vo);
+bool vo_wayland_reconfig(struct vo *vo);
bool vo_wayland_supported_format(struct vo *vo, uint32_t format, uint64_t modifier);
int vo_wayland_allocate_memfd(struct vo *vo, size_t size);
int vo_wayland_control(struct vo *vo, int *events, int request, void *arg);
-int vo_wayland_reconfig(struct vo *vo);
void vo_wayland_set_opaque_region(struct vo_wayland_state *wl, int alpha);
void vo_wayland_sync_swap(struct vo_wayland_state *wl);