summaryrefslogtreecommitdiffstats
path: root/src/vulkan/anv_device.c
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-12-03 13:27:00 -0800
committerJason Ekstrand <[email protected]>2015-12-03 13:44:02 -0800
commit4c19243562cba8b33e8139c7ac20ba8bef132633 (patch)
treef6b51e54e730a571d6228aee8946aaa484affa84 /src/vulkan/anv_device.c
parent888744cabf8daaa463394d0cf10341ab00a5ecd5 (diff)
vk/0.210.0: Advertise version 0.210.0
Diffstat (limited to 'src/vulkan/anv_device.c')
-rw-r--r--src/vulkan/anv_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c
index e3b3541d251..37462a4a4a6 100644
--- a/src/vulkan/anv_device.c
+++ b/src/vulkan/anv_device.c
@@ -198,7 +198,7 @@ VkResult anv_CreateInstance(
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO);
- if (pCreateInfo->pApplicationInfo->apiVersion != VK_MAKE_VERSION(0, 170, 2))
+ if (pCreateInfo->pApplicationInfo->apiVersion != VK_MAKE_VERSION(0, 210, 0))
return vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) {
@@ -495,7 +495,7 @@ void anv_GetPhysicalDeviceProperties(
};
*pProperties = (VkPhysicalDeviceProperties) {
- .apiVersion = VK_MAKE_VERSION(0, 170, 2),
+ .apiVersion = VK_MAKE_VERSION(0, 210, 0),
.driverVersion = 1,
.vendorID = 0x8086,
.deviceID = pdevice->chipset_id,