Revert "Workaround vkGetPhysicalDeviceProperties2() issue"

This reverts commit a48d52f5c2af0cdee21f67461e27d60f57beade9.

Reason for revert: Fixed in dEQP: https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/3872

Bug: b/240270223
Change-Id: If8b0ce617010af0a26cda7d05830c1906e5520b2
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/67829
Kokoro-Result: kokoro <noreply+kokoro@google.com>
Reviewed-by: Alexis Hétu <sugoi@google.com>
Tested-by: Nicolas Capens <nicolascapens@google.com>
diff --git a/src/Vulkan/libVulkan.cpp b/src/Vulkan/libVulkan.cpp
index be35d3a..b6c7e572 100644
--- a/src/Vulkan/libVulkan.cpp
+++ b/src/Vulkan/libVulkan.cpp
@@ -3664,10 +3664,6 @@
 				vk::Cast(physicalDevice)->getProperties(properties);
 			}
 			break;
-		case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES:
-			// TODO(b/240270223) : This structure shouldn't be used here.
-			// Remove this when https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/3872 is fixed.
-			break;
 		default:
 			// "the [driver] must skip over, without processing (other than reading the sType and pNext members) any structures in the chain with sType values not defined by [supported extenions]"
 			UNSUPPORTED("pProperties->pNext sType = %s", vk::Stringify(extensionProperties->sType).c_str());