Structures
VkMemoryHeap
Structure specifying a memory heap
The VkMemoryHeap structure is defined as:
typedef struct VkMemoryHeap {
VkDeviceSize size;
VkMemoryHeapFlags flags;
} VkMemoryHeap;
pub struct MemoryHeap {
size: vk::DeviceSize, // Available memory in the heap
flags: vk::MemoryHeapFlags, // Flags for the heap
}
sizeis the total memory size in bytes in the heap.flagsis a bitmask of VkMemoryHeapFlagBits specifying attribute flags for the heap.
Parent
VK_VERSION_1_0Type
Structures