Class VkDedicatedAllocationMemoryAllocateInfoNV

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

    public class VkDedicatedAllocationMemoryAllocateInfoNV
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Specify a dedicated memory allocation resource.
    Valid Usage
    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • imageNULL_HANDLE or a handle of an image which this memory will be bound to.
    • bufferNULL_HANDLE or a handle of a buffer which this memory will be bound to.

    Layout

    
     struct VkDedicatedAllocationMemoryAllocateInfoNV {
         VkStructureType sType;
         void const * pNext;
         VkImage image;
         VkBuffer buffer;
     }