summaryrefslogtreecommitdiffstats
path: root/video/out/vulkan/context_wayland.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2021-06-26 16:12:03 -0500
committerDudemanguy <random342@airmail.cc>2021-06-26 17:24:44 -0500
commit488581912d01a982f226162eef19ad8aec0c8ead (patch)
tree3b5aa34fe9afa52b9573b10c5f20448952712b73 /video/out/vulkan/context_wayland.c
parent76a53f9de3592c435def1d020fab4a05f88a14e0 (diff)
downloadmpv-488581912d01a982f226162eef19ad8aec0c8ead.tar.bz2
mpv-488581912d01a982f226162eef19ad8aec0c8ead.tar.xz
wayland: reorganize wayland common code
Mostly a cosmetic change that (hopefully) makes things look better. Some functions and structs that were previously being exported in the wayland header were made static to the wayland_common.c file (these shouldn't be accessed by anyone else).
Diffstat (limited to 'video/out/vulkan/context_wayland.c')
-rw-r--r--video/out/vulkan/context_wayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vulkan/context_wayland.c b/video/out/vulkan/context_wayland.c
index d711a855c4..df2d1abd55 100644
--- a/video/out/vulkan/context_wayland.c
+++ b/video/out/vulkan/context_wayland.c
@@ -46,7 +46,7 @@ static void wayland_vk_swap_buffers(struct ra_ctx *ctx)
vo_wayland_wait_frame(wl);
if (wl->presentation)
- wayland_sync_swap(wl);
+ vo_wayland_sync_swap(wl);
}
static void wayland_vk_get_vsync(struct ra_ctx *ctx, struct vo_vsync_info *info)