From 952ab4f64f9990c4a086ddb885241029356ab842 Mon Sep 17 00:00:00 2001 From: Connor Abbott Date: Thu, 11 Nov 2021 13:31:55 +0100 Subject: [PATCH] tu: Enable subgroupBroadcastDynamicId It's a Vulkan 1.2 only feature, but it's trivially supported. Part-of: --- src/freedreno/vulkan/tu_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index 3c428a1437c..6506506866f 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -568,7 +568,7 @@ tu_get_physical_device_features_1_2(struct tu_physical_device *pdevice, features->vulkanMemoryModelAvailabilityVisibilityChains = true; features->shaderOutputViewportIndex = true; features->shaderOutputLayer = true; - features->subgroupBroadcastDynamicId = false; + features->subgroupBroadcastDynamicId = true; } void