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.
This commit is contained in:
Adam Jackson 2016-02-15 16:20:01 -05:00 committed by Kristian Høgsberg Kristensen
parent b53edea76c
commit 80ec20351c

View 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),