diff options
author | Lynne <dev@lynne.ee> | 2025-04-22 13:37:35 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2025-04-22 13:43:20 +0200 |
commit | 3bb2b8aff4f051f4f90b0161715afb2ef2f787e1 (patch) | |
tree | 2be8f92ff463f6313da54adc0a1e85f6f8286039 /libavutil/hwcontext_vulkan.c | |
parent | 96ddce1b3c11a998ab249569b51a027cd5d74c45 (diff) | |
download | ffmpeg-3bb2b8aff4f051f4f90b0161715afb2ef2f787e1.tar.gz |
hwcontext_vulkan: enable subgroupSizeControl
We already use this feature for setting the subgroup size,
but this feature was not enabled.
Fixes a validation warning.
Diffstat (limited to 'libavutil/hwcontext_vulkan.c')
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index d5aa9c5fcd..ade0235ef1 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -278,6 +278,7 @@ static void device_features_copy_needed(VulkanDeviceFeatures *dst, VulkanDeviceF COPY_VAL(vulkan_1_3.maintenance4); COPY_VAL(vulkan_1_3.synchronization2); COPY_VAL(vulkan_1_3.computeFullSubgroups); + COPY_VAL(vulkan_1_3.subgroupSizeControl); COPY_VAL(vulkan_1_3.shaderZeroInitializeWorkgroupMemory); COPY_VAL(vulkan_1_3.dynamicRendering); |