0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

vo_gpu: libplacebo: make version logging slightly clearer

Matches what `pl_log_create` does as well.
This commit is contained in:
Niklas Haas 2021-11-19 21:50:03 +01:00
parent e095bdb5f5
commit 7acbecf7b8

View File

@ -9,7 +9,8 @@ bool mpvk_init(struct mpvk_ctx *vk, struct ra_ctx *ctx, const char *surface_ext)
vk->pl_log = mp_log_new(ctx, ctx->log, "libplacebo");
mppl_ctx_set_log(vk->ctx, vk->pl_log, true);
mp_verbose(vk->pl_log, "Initialized libplacebo v%d\n", PL_API_VER);
mp_verbose(vk->pl_log, "Initialized libplacebo %s (API v%d)\n",
PL_VERSION, PL_API_VER);
const char *exts[] = {
VK_KHR_SURFACE_EXTENSION_NAME,