Class VkMemoryDedicatedAllocateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer
Direct Known Subclasses:
VkMemoryDedicatedAllocateInfoKHR

public class VkMemoryDedicatedAllocateInfo extends Struct<VkMemoryDedicatedAllocateInfo> implements NativeResource
Specify a dedicated memory allocation resource.
Valid Usage
Valid Usage (Implicit)
  • sType must be STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO
  • If image is not NULL_HANDLE, image must be a valid VkImage handle
  • If buffer is not NULL_HANDLE, buffer must be a valid VkBuffer handle
  • Both of buffer, and image that are valid handles of non-ignored parameters must have been created, allocated, or retrieved from the same VkDevice

Layout


 struct VkMemoryDedicatedAllocateInfo {
     VkStructureType sType();
     void const * pNext();
     VkImage image();
     VkBuffer buffer();
 }