mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
vk/vulkan.h: Remove VK_MEMORY_PROPERTY_PREFER_HOST_LOCAL_BIT
We weren't doing anything with it, so this is a no-op
This commit is contained in:
parent
68fa750f2e
commit
65f9ccb4e7
2 changed files with 1 additions and 3 deletions
|
|
@ -908,7 +908,6 @@ typedef enum {
|
|||
VK_MEMORY_PROPERTY_HOST_NON_COHERENT_BIT = 0x00000002,
|
||||
VK_MEMORY_PROPERTY_HOST_UNCACHED_BIT = 0x00000004,
|
||||
VK_MEMORY_PROPERTY_HOST_WRITE_COMBINED_BIT = 0x00000008,
|
||||
VK_MEMORY_PROPERTY_PREFER_HOST_LOCAL = 0x00000010,
|
||||
} VkMemoryPropertyFlagBits;
|
||||
typedef VkFlags VkMemoryPropertyFlags;
|
||||
|
||||
|
|
|
|||
|
|
@ -1091,8 +1091,7 @@ fill_memory_requirements(
|
|||
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT |
|
||||
/* VK_MEMORY_PROPERTY_HOST_NON_COHERENT_BIT | */
|
||||
/* VK_MEMORY_PROPERTY_HOST_UNCACHED_BIT | */
|
||||
VK_MEMORY_PROPERTY_HOST_WRITE_COMBINED_BIT |
|
||||
VK_MEMORY_PROPERTY_PREFER_HOST_LOCAL;
|
||||
VK_MEMORY_PROPERTY_HOST_WRITE_COMBINED_BIT;
|
||||
|
||||
memory_requirements->memPropsRequired = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue