mirror of https://github.com/mpv-player/mpv
vulkan/context_display: don't fake avalibity of callbacks
There are generic fallback paths for those and it shouldn't be replaced by noop.
This commit is contained in:
parent
cb4fdb530a
commit
421df7564a
|
@ -474,24 +474,12 @@ static int display_control(struct ra_ctx *ctx, int *events, int request, void *a
|
||||||
return VO_NOTIMPL;
|
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 = {
|
const struct ra_ctx_fns ra_ctx_vulkan_display = {
|
||||||
.type = "vulkan",
|
.type = "vulkan",
|
||||||
.name = "displayvk",
|
.name = "displayvk",
|
||||||
.description = "VK_KHR_display",
|
.description = "VK_KHR_display",
|
||||||
.reconfig = display_reconfig,
|
.reconfig = display_reconfig,
|
||||||
.control = display_control,
|
.control = display_control,
|
||||||
.wakeup = display_wakeup,
|
|
||||||
.wait_events = display_wait_events,
|
|
||||||
.init = display_init,
|
.init = display_init,
|
||||||
.uninit = display_uninit,
|
.uninit = display_uninit,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue