diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-14 16:36:13 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-15 10:16:02 -0600 |
| commit | 9f7f3666d6a94fe60b673d480d45e5e9a1013075 (patch) | |
| tree | c54371b99ad011d0837851617226fbbcb909f9c8 /include | |
| parent | 9441534f6b0bb89fd8d0fca73e4d1f51eb6c2c38 (diff) | |
| download | usermoji-9f7f3666d6a94fe60b673d480d45e5e9a1013075.tar.xz | |
bug-14583: Remove the unneeded vkBufferViewType
No longer have viewType to distinguish the type, so pull
it internal and use for descriptor sets.
Diffstat (limited to 'include')
| -rw-r--r-- | include/vulkan.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index f5fe0bfa..d865ded5 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -479,15 +479,6 @@ typedef enum { } VkSharingMode; typedef enum { - VK_BUFFER_VIEW_TYPE_RAW = 0, - VK_BUFFER_VIEW_TYPE_FORMATTED = 1, - VK_BUFFER_VIEW_TYPE_BEGIN_RANGE = VK_BUFFER_VIEW_TYPE_RAW, - VK_BUFFER_VIEW_TYPE_END_RANGE = VK_BUFFER_VIEW_TYPE_FORMATTED, - VK_BUFFER_VIEW_TYPE_NUM = (VK_BUFFER_VIEW_TYPE_FORMATTED - VK_BUFFER_VIEW_TYPE_RAW + 1), - VK_BUFFER_VIEW_TYPE_MAX_ENUM = 0x7FFFFFFF -} VkBufferViewType; - -typedef enum { VK_IMAGE_VIEW_TYPE_1D = 0, VK_IMAGE_VIEW_TYPE_2D = 1, VK_IMAGE_VIEW_TYPE_3D = 2, @@ -1483,7 +1474,6 @@ typedef struct { VkStructureType sType; const void* pNext; VkBuffer buffer; - VkBufferViewType viewType; VkFormat format; VkDeviceSize offset; VkDeviceSize range; |
