From: Courtney Goeltzenleuchter Date: Mon, 19 Oct 2015 22:50:21 +0000 (-0600) Subject: bug-14809: Need VK_ERROR_FEATURE_NOT_PRESENT X-Git-Tag: upstream/1.1.92~4688 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=240013558c2d89a3d0fadf270165b8546155ed6c;p=platform%2Fupstream%2FVulkan-Tools.git bug-14809: Need VK_ERROR_FEATURE_NOT_PRESENT --- diff --git a/include/vulkan.h b/include/vulkan.h index 124d088..05286c1 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -41,7 +41,7 @@ extern "C" { ((major << 22) | (minor << 12) | patch) // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 177, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 178, 0) #if defined(__cplusplus) && ((defined(_MSC_VER) && _MSC_VER >= 1800) || __cplusplus >= 201103L) @@ -152,7 +152,8 @@ typedef enum { VK_ERROR_MEMORY_MAP_FAILED = -5, VK_ERROR_LAYER_NOT_PRESENT = -6, VK_ERROR_EXTENSION_NOT_PRESENT = -7, - VK_ERROR_INCOMPATIBLE_DRIVER = -8, + VK_ERROR_FEATURE_NOT_PRESENT = -8, + VK_ERROR_INCOMPATIBLE_DRIVER = -9, VK_RESULT_BEGIN_RANGE = VK_ERROR_INCOMPATIBLE_DRIVER, VK_RESULT_END_RANGE = VK_INCOMPLETE, VK_RESULT_NUM = (VK_INCOMPLETE - VK_ERROR_INCOMPATIBLE_DRIVER + 1),