diff options
| author | Chia-I Wu <olv@lunarg.com> | 2015-10-27 18:53:22 +0800 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-11-02 14:57:10 -0700 |
| commit | c42afd7ead968e587f544a0deff7e3ff963a4208 (patch) | |
| tree | e63d0e8b7f5f58dc62e9cb97108af3c1c5ac7343 /include | |
| parent | 84f93960d3369925eba0eae34198ecbfc63adada (diff) | |
| download | usermoji-c42afd7ead968e587f544a0deff7e3ff963a4208.tar.xz | |
bug 14922: Consistent memory properties (WIP)
https://cvs.khronos.org/bugzilla/show_bug.cgi?id=14922
Diffstat (limited to 'include')
| -rw-r--r-- | include/vulkan.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/vulkan.h b/include/vulkan.h index 24aaafa1..0768da46 100644 --- a/include/vulkan.h +++ b/include/vulkan.h @@ -810,16 +810,16 @@ typedef enum { typedef VkFlags VkQueueFlags; typedef enum { - VK_MEMORY_PROPERTY_DEVICE_ONLY = 0, - VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT = 0x00000001, - VK_MEMORY_PROPERTY_HOST_NON_COHERENT_BIT = 0x00000002, - VK_MEMORY_PROPERTY_HOST_UNCACHED_BIT = 0x00000004, - VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000008, + VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT = 0x00000001, + VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT = 0x00000002, + VK_MEMORY_PROPERTY_HOST_COHERENT_BIT = 0x00000004, + VK_MEMORY_PROPERTY_HOST_CACHED_BIT = 0x00000008, + VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT = 0x00000010, } VkMemoryPropertyFlagBits; typedef VkFlags VkMemoryPropertyFlags; typedef enum { - VK_MEMORY_HEAP_HOST_LOCAL_BIT = 0x00000001, + VK_MEMORY_HEAP_DEVICE_LOCAL_BIT = 0x00000001, } VkMemoryHeapFlagBits; typedef VkFlags VkMemoryHeapFlags; typedef VkFlags VkDeviceCreateFlags; |
