Revert "radv: disable VK_SUBGROUP_FEATURE_VOTE_BIT"
[mesa.git] / src / amd / vulkan / radv_device.c
index 145be67c85661b9a7cae30ef3abf93f848bc7e44..67238620a26c29a46218d8727ef79c1224b66a11 100644 (file)
@@ -1054,13 +1054,11 @@ void radv_GetPhysicalDeviceProperties2(
                            (VkPhysicalDeviceSubgroupProperties*)ext;
                        properties->subgroupSize = 64;
                        properties->supportedStages = VK_SHADER_STAGE_ALL;
-                       /* TODO: Enable VK_SUBGROUP_FEATURE_VOTE_BIT when wwm
-                        * is fixed in LLVM.
-                        */
                        properties->supportedOperations =
                                                        VK_SUBGROUP_FEATURE_BASIC_BIT |
                                                        VK_SUBGROUP_FEATURE_BALLOT_BIT |
-                                                       VK_SUBGROUP_FEATURE_QUAD_BIT;
+                                                       VK_SUBGROUP_FEATURE_QUAD_BIT |
+                                                       VK_SUBGROUP_FEATURE_VOTE_BIT;
                        if (pdevice->rad_info.chip_class >= VI) {
                                properties->supportedOperations |=
                                                        VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |