summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-01-14 08:10:07 -0800
committerJason Ekstrand <jason.ekstrand@intel.com>2016-01-14 08:26:37 -0800
commit24a6fcba77abe770e508c323d1dabf31b78bc9b0 (patch)
tree379047732437ba3d08ce2ffaa60d1e96508e192f /src
parentc310fb032d406984e72895b6c94e2f96bff8e70d (diff)
downloadexternal_mesa3d-24a6fcba77abe770e508c323d1dabf31b78bc9b0.zip
external_mesa3d-24a6fcba77abe770e508c323d1dabf31b78bc9b0.tar.gz
external_mesa3d-24a6fcba77abe770e508c323d1dabf31b78bc9b0.tar.bz2
vulkan-1.0.0: Bump the version to 1.0.0
Diffstat (limited to 'src')
-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 265ac5f..c7e7041 100644
--- a/src/vulkan/anv_device.c
+++ b/src/vulkan/anv_device.c
@@ -210,7 +210,7 @@ VkResult anv_CreateInstance(
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO);
- if (pCreateInfo->pApplicationInfo->apiVersion != VK_MAKE_VERSION(0, 210, 1))
+ if (pCreateInfo->pApplicationInfo->apiVersion != VK_MAKE_VERSION(1, 0, 0))
return vk_error(VK_ERROR_INCOMPATIBLE_DRIVER);
for (uint32_t i = 0; i < pCreateInfo->enabledExtensionCount; i++) {
@@ -512,7 +512,7 @@ void anv_GetPhysicalDeviceProperties(
};
*pProperties = (VkPhysicalDeviceProperties) {
- .apiVersion = VK_MAKE_VERSION(0, 210, 1),
+ .apiVersion = VK_MAKE_VERSION(1, 0, 0),
.driverVersion = 1,
.vendorID = 0x8086,
.deviceID = pdevice->chipset_id,