Class VkPhysicalDeviceMemoryProperties

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class VkPhysicalDeviceMemoryProperties
    extends Struct
    Khronos Reference Page
    Vulkan Specification

    Describes the memory heaps and memory types available to a physical device.

    Member documentation

    • memoryTypeCount – the number of memory types available across all memory heaps
    • memoryTypes – the memory type descriptions
    • memoryHeapCount – the number of memory heaps
    • memoryHeaps – the memory heap descriptions

    Layout

    struct VkPhysicalDeviceMemoryProperties {
        uint32_t memoryTypeCount;
        VkMemoryType[32] memoryTypes;
        uint32_t memoryHeapCount;
        VkMemoryHeap[16] memoryHeaps;
    }