Set conformance version to 1.3.2.0

Since we now expose Vulkan 1.3, the acceptable values for
conformance version, according to
https://gitlab.khronos.org/Tracker/vk-gl-cts/-/blob/main/external/vulkancts/modules/vulkan/api/vktApiDriverPropertiesTests.cpp#L57,
are currently:
- 1, 3, 3, 0
- 1, 3, 2, 0
- 1, 3, 1, 1
- 1, 3, 1, 0
- 1, 3, 0, 0

At the moment of writing this, 1.3.3.0 is still under
development and 1.3.2.0 is fairly stable at this point,
so let's target 1.3.2.0 for now.

Tests: dEQP-VK.api.driver_properties.conformance_version
Bug: b/204169571
Change-Id: Icebb92b588963517beba5653df75e6c0b0a0ec3e
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/68168
Reviewed-by: Nicolas Capens <nicolascapens@google.com>
Tested-by: Alexis Hétu <sugoi@google.com>
Commit-Queue: Alexis Hétu <sugoi@google.com>
diff --git a/src/Vulkan/VkPhysicalDevice.cpp b/src/Vulkan/VkPhysicalDevice.cpp
index a7352a3..956ed7b 100644
--- a/src/Vulkan/VkPhysicalDevice.cpp
+++ b/src/Vulkan/VkPhysicalDevice.cpp
@@ -1112,7 +1112,7 @@
 	properties->driverID = VK_DRIVER_ID_GOOGLE_SWIFTSHADER_KHR;
 	strcpy(properties->driverName, "SwiftShader driver");
 	strcpy(properties->driverInfo, "");
-	properties->conformanceVersion = { 1, 1, 3, 3 };
+	properties->conformanceVersion = { 1, 3, 2, 0 };
 }
 
 void PhysicalDevice::getProperties(VkPhysicalDeviceDriverProperties *properties) const