diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2015-07-02 10:03:43 -0600 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2015-07-02 17:07:53 -0600 |
| commit | a1e8fd0a503731aec138e2bc2a1171d3d10418e7 (patch) | |
| tree | 6f7741965bb98750a1165eab72be122793ce8a7a | |
| parent | 28d7e8718c73255b0d351756a2572aeb4664ee99 (diff) | |
| download | usermoji-a1e8fd0a503731aec138e2bc2a1171d3d10418e7.tar.xz | |
vulkan.h: V119 -- Remove unsigned byte indices
Took out VK_INDEX_TYPE_UINT8.
| -rw-r--r-- | include/vulkan.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index 6e7647ca..68d0f718 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -33,7 +33,7 @@ #include "vk_platform.h" // Vulkan API version supported by this file -#define VK_API_VERSION VK_MAKE_VERSION(0, 118, 0) +#define VK_API_VERSION VK_MAKE_VERSION(0, 119, 0) #ifdef __cplusplus extern "C" @@ -325,11 +325,10 @@ typedef enum VkPrimitiveTopology_ typedef enum VkIndexType_ { - VK_INDEX_TYPE_UINT8 = 0x00000000, - VK_INDEX_TYPE_UINT16 = 0x00000001, - VK_INDEX_TYPE_UINT32 = 0x00000002, + VK_INDEX_TYPE_UINT16 = 0x00000000, + VK_INDEX_TYPE_UINT32 = 0x00000001, - VK_ENUM_RANGE(INDEX_TYPE, UINT8, UINT32) + VK_ENUM_RANGE(INDEX_TYPE, UINT16, UINT32) } VkIndexType; typedef enum VkTexFilter_ |
