From: Adam Jackson Date: Mon, 15 Feb 2016 21:20:01 +0000 (-0500) Subject: anv: Bump to 1.0.3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80ec20351ce622c5112d1914a2a97b3183ce6be0;p=mesa.git anv: Bump to 1.0.3 Probably this should be picked up from directly, or we should just assume that any 1.0.x is legal. --- diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index a1671d931d5..a6ce1764f6b 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -216,7 +216,7 @@ VkResult anv_CreateInstance( uint32_t client_version = pCreateInfo->pApplicationInfo->apiVersion; if (VK_MAKE_VERSION(1, 0, 0) > client_version || - client_version > VK_MAKE_VERSION(1, 0, 2)) { + client_version > VK_MAKE_VERSION(1, 0, 3)) { return vk_errorf(VK_ERROR_INCOMPATIBLE_DRIVER, "Client requested version %d.%d.%d", VK_VERSION_MAJOR(client_version),