anv: Bump to 1.0.3
authorAdam Jackson <ajax@redhat.com>
Mon, 15 Feb 2016 21:20:01 +0000 (16:20 -0500)
committerKristian Høgsberg Kristensen <kristian.h.kristensen@intel.com>
Tue, 16 Feb 2016 01:38:26 +0000 (17:38 -0800)
Probably this should be picked up from <vulkan.h> directly, or we should
just assume that any 1.0.x is legal.

src/vulkan/anv_device.c

index a1671d931d571b7d99ea9aed2de8e9bfbaa4784d..a6ce1764f6bfe1e1c52a6b293ebc19bcdd59d54e 100644 (file)
@@ -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),