From 421df7564a89768b27f8fe50499d694b3cb1ec87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Michaj=C5=82ow?= Date: Sat, 24 Aug 2024 18:24:45 +0200 Subject: [PATCH] vulkan/context_display: don't fake avalibity of callbacks There are generic fallback paths for those and it shouldn't be replaced by noop. --- video/out/vulkan/context_display.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/video/out/vulkan/context_display.c b/video/out/vulkan/context_display.c index f8a3e6db65..de8fd1cc2a 100644 --- a/video/out/vulkan/context_display.c +++ b/video/out/vulkan/context_display.c @@ -474,24 +474,12 @@ static int display_control(struct ra_ctx *ctx, int *events, int request, void *a return VO_NOTIMPL; } -static void display_wakeup(struct ra_ctx *ctx) -{ - // TODO -} - -static void display_wait_events(struct ra_ctx *ctx, int64_t until_time_ns) -{ - // TODO -} - const struct ra_ctx_fns ra_ctx_vulkan_display = { .type = "vulkan", .name = "displayvk", .description = "VK_KHR_display", .reconfig = display_reconfig, .control = display_control, - .wakeup = display_wakeup, - .wait_events = display_wait_events, .init = display_init, .uninit = display_uninit, };