From 30e3ef3b49ff193e8e96505f64541deddceed7c9 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Mon, 9 Mar 2020 02:34:33 -0700 Subject: [PATCH] win-capture/graphics-hook: Log vulkan capture dimensions --- plugins/win-capture/graphics-hook/vulkan-capture.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/win-capture/graphics-hook/vulkan-capture.c b/plugins/win-capture/graphics-hook/vulkan-capture.c index 39e17118d..9069a6875 100644 --- a/plugins/win-capture/graphics-hook/vulkan-capture.c +++ b/plugins/win-capture/graphics-hook/vulkan-capture.c @@ -428,8 +428,8 @@ static inline bool vk_shtex_init_d3d11_tex(struct vk_data *data, desc.MipLevels = 1; desc.ArraySize = 1; - flog("OBS requesting %s texture format", - vk_format_to_str(swap->format)); + flog("OBS requesting %s texture format. capture dimensions: %dx%d", + vk_format_to_str(swap->format), (int)desc.Width, (int)desc.Height); desc.Format = vk_format_to_dxgi(swap->format); desc.SampleDesc.Count = 1;