Module: Mesa
Branch: main
Commit: 952ab4f64f9990c4a086ddb885241029356ab842
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=952ab4f64f9990c4a086ddb885241029356ab842

Author: Connor Abbott <[email protected]>
Date:   Thu Nov 11 13:31:55 2021 +0100

tu: Enable subgroupBroadcastDynamicId

It's a Vulkan 1.2 only feature, but it's trivially supported.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13756>

---

 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

Reply via email to