diff options
author | Adam Jackson <[email protected]> | 2016-02-15 16:20:01 -0500 |
---|---|---|
committer | Kristian Høgsberg Kristensen <[email protected]> | 2016-02-15 17:38:26 -0800 |
commit | 80ec20351ce622c5112d1914a2a97b3183ce6be0 (patch) | |
tree | 4dd70dc83d4df6cf6d5f90786d16582ac7edb95a | |
parent | b53edea76c025b1596e057bb3c04c556c0a4536a (diff) |
anv: Bump to 1.0.3
Probably this should be picked up from <vulkan.h> directly, or we should
just assume that any 1.0.x is legal.
-rw-r--r-- | src/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
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), |