aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2022-12-28 05:55:17 +0100
committerLynne <dev@lynne.ee>2023-05-29 00:41:39 +0200
commitc5702abf71d3edf41cbde7bf37093788bba183ee (patch)
tree6a68b32ac880287e137688fe9d62b8ec63b41e96
parentb0af92572fe55a1b396a19a673dfa9ee5d986c2e (diff)
downloadffmpeg-c5702abf71d3edf41cbde7bf37093788bba183ee.tar.gz
hwcontext_vulkan: report nonCoherentAtomSize
-rw-r--r--libavutil/hwcontext_vulkan.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index f796cbd689..8f80cc8e21 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -1496,6 +1496,8 @@ static int vulkan_device_init(AVHWDeviceContext *ctx)
p->props.properties.limits.optimalBufferCopyRowPitchAlignment);
av_log(ctx, AV_LOG_VERBOSE, " minMemoryMapAlignment: %"SIZE_SPECIFIER"\n",
p->props.properties.limits.minMemoryMapAlignment);
+ av_log(ctx, AV_LOG_VERBOSE, " nonCoherentAtomSize: %"PRIu64"\n",
+ p->props.properties.limits.nonCoherentAtomSize);
if (p->extensions & FF_VK_EXT_EXTERNAL_HOST_MEMORY)
av_log(ctx, AV_LOG_VERBOSE, " minImportedHostPointerAlignment: %"PRIu64"\n",
p->hprops.minImportedHostPointerAlignment);