VkMemoryHeapFlagBits | NVK Search
  1. No Results
Categories
VkMemoryHeapFlagBits Bitmask specifying attribute flags for a heap Stub
VkMemoryHeapFlagBits = {
  VK_MEMORY_HEAP_DEVICE_LOCAL_BIT: 0x1,
  VK_MEMORY_HEAP_MULTI_INSTANCE_BIT: 0x2,
  VK_MEMORY_HEAP_MULTI_INSTANCE_BIT_KHR: VK_MEMORY_HEAP_MULTI_INSTANCE_BIT
};
Properties VkMemoryHeapFlagBits.VK_MEMORY_HEAP_DEVICE_LOCAL_BIT specifies that the heap corresponds to device local memory. Device local memory may have different performance characteristics than host local memory, and may support different memory property flags. VkMemoryHeapFlagBits.VK_MEMORY_HEAP_MULTI_INSTANCE_BIT specifies that in a logical device representing more than one physical device, there is a per-physical device instance of the heap memory. By default, an allocation from such a heap will be replicated to each physical device's instance of the heap. VkMemoryHeapFlagBits.VK_MEMORY_HEAP_MULTI_INSTANCE_BIT_KHR