diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-08-28 16:36:35 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-08-31 09:43:58 -0600 |
| commit | ee7751ae8cf29768dbe3dc03adc53de4c32dbeb1 (patch) | |
| tree | 376f40e26e771f09277cd09b3881eba6fdf17f75 | |
| parent | e2e57997c10269b72254cba5f48d7d59c743dd97 (diff) | |
| download | usermoji-ee7751ae8cf29768dbe3dc03adc53de4c32dbeb1.tar.xz | |
misc: tool updates, no functional change
| -rw-r--r-- | include/vulkan.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index 7d5fa987..b7464a11 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, 158, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 159, 0) #if defined(__cplusplus) && (_MSC_VER >= 1800 || __cplusplus >= 201103L) @@ -2068,18 +2068,18 @@ typedef struct { } VkDispatchIndirectCmd; typedef struct { - uint32_t indexCount; - uint32_t instanceCount; uint32_t firstIndex; + uint32_t indexCount; int32_t vertexOffset; uint32_t firstInstance; + uint32_t instanceCount; } VkDrawIndexedIndirectCmd; typedef struct { - uint32_t vertexCount; - uint32_t instanceCount; uint32_t firstVertex; + uint32_t vertexCount; uint32_t firstInstance; + uint32_t instanceCount; } VkDrawIndirectCmd; typedef struct { |
