summaryrefslogtreecommitdiffstats
path: root/video/out/vulkan
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2022-06-21 23:13:44 -0500
committerDudemanguy <random342@airmail.cc>2022-06-22 18:09:11 +0000
commit652f09a7a6665be2a04ff8ec4f741de435bd536f (patch)
tree64259646673fb739e96e267d28b74f8a4b0e1b96 /video/out/vulkan
parent1ffdb9128d87dffe869c1e9f4024a16bfd0022c4 (diff)
downloadmpv-652f09a7a6665be2a04ff8ec4f741de435bd536f.tar.bz2
mpv-652f09a7a6665be2a04ff8ec4f741de435bd536f.tar.xz
x11: avoid XPresent API calls when it's not needed
This commit kind of mixes several related things together. The main thing is to avoid calling any XPresent functions or internal functions related to presentation when the feature is not auto-whitelisted or enabled by the user. Internally rework this so it all works off of a use_present bool (have_present is eliminated because having a non-zero present_code covers exactly the same thing) and make sure it updates on runtime. Finally, put some actual logging in here whenever XPresent is enabled/disabled. Fixes #10326.
Diffstat (limited to 'video/out/vulkan')
-rw-r--r--video/out/vulkan/context_xlib.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/video/out/vulkan/context_xlib.c b/video/out/vulkan/context_xlib.c
index 3392145e1a..3a4af11c1c 100644
--- a/video/out/vulkan/context_xlib.c
+++ b/video/out/vulkan/context_xlib.c
@@ -34,14 +34,17 @@ static bool xlib_check_visible(struct ra_ctx *ctx)
static void xlib_vk_swap_buffers(struct ra_ctx *ctx)
{
- vo_x11_present(ctx->vo);
- present_sync_swap(ctx->vo->x11->present);
+ if (ctx->vo->x11->use_present) {
+ vo_x11_present(ctx->vo);
+ present_sync_swap(ctx->vo->x11->present);
+ }
}
static void xlib_vk_get_vsync(struct ra_ctx *ctx, struct vo_vsync_info *info)
{
struct vo_x11_state *x11 = ctx->vo->x11;
- present_sync_get_info(x11->present, info);
+ if (ctx->vo->x11->use_present)
+ present_sync_get_info(x11->present, info);
}
static void xlib_uninit(struct ra_ctx *ctx)