Class VkBufferDeviceAddressInfoEXT

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

    public class VkBufferDeviceAddressInfoEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying the buffer to query an address for.
    Valid Usage
    Valid Usage (Implicit)
    See Also

    GetBufferDeviceAddressEXT

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • buffer – specifies the buffer whose address is being queried.

    Layout

    
     struct VkBufferDeviceAddressInfoEXT {
         VkStructureType sType;
         void const * pNext;
         VkBuffer buffer;
     }
    • Field Detail

      • SIZEOF

        The struct size in bytes.
      • ALIGNOF

        The struct alignment in bytes.
      • STYPE, PNEXT, BUFFER

        The struct member offsets.
    • Constructor Detail

      • VkBufferDeviceAddressInfoEXT

        public VkBufferDeviceAddressInfoEXT​(java.nio.ByteBuffer container)
        Creates a VkBufferDeviceAddressInfoEXT instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

        The created instance holds a strong reference to the container object.

    • Method Detail

      • sizeof

        public int sizeof()
        Specified by:
        sizeof in class org.lwjgl.system.Struct
      • sType

        public int sType()
        Returns the value of the sType field.
      • pNext

        public long pNext()
        Returns the value of the pNext field.
      • buffer

        public long buffer()
        Returns the value of the buffer field.
      • set

        public VkBufferDeviceAddressInfoEXT set​(int sType,
                                                long pNext,
                                                long buffer)
        Initializes this struct with the specified values.
      • malloc

        public static VkBufferDeviceAddressInfoEXT malloc()
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated with memAlloc. The instance must be explicitly freed.
      • calloc

        public static VkBufferDeviceAddressInfoEXT calloc()
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated with memCalloc. The instance must be explicitly freed.
      • create

        public static VkBufferDeviceAddressInfoEXT create()
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated with BufferUtils.
      • create

        public static VkBufferDeviceAddressInfoEXT create​(long address)
        Returns a new VkBufferDeviceAddressInfoEXT instance for the specified memory address.
      • mallocStack

        public static VkBufferDeviceAddressInfoEXT mallocStack()
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated on the thread-local MemoryStack.
      • callocStack

        public static VkBufferDeviceAddressInfoEXT callocStack()
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated on the thread-local MemoryStack and initializes all its bits to zero.
      • mallocStack

        public static VkBufferDeviceAddressInfoEXT mallocStack​(org.lwjgl.system.MemoryStack stack)
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated on the specified MemoryStack.
        Parameters:
        stack - the stack from which to allocate
      • callocStack

        public static VkBufferDeviceAddressInfoEXT callocStack​(org.lwjgl.system.MemoryStack stack)
        Returns a new VkBufferDeviceAddressInfoEXT instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
      • callocStack

        public static VkBufferDeviceAddressInfoEXT.Buffer callocStack​(int capacity,
                                                                      org.lwjgl.system.MemoryStack stack)
        Returns a new VkBufferDeviceAddressInfoEXT.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.
        Parameters:
        stack - the stack from which to allocate
        capacity - the buffer capacity
      • nsType

        public static int nsType​(long struct)
        Unsafe version of sType().
      • npNext

        public static long npNext​(long struct)
        Unsafe version of pNext().
      • nbuffer

        public static long nbuffer​(long struct)
        Unsafe version of buffer().
      • nsType

        public static void nsType​(long struct,
                                  int value)
        Unsafe version of sType.
      • npNext

        public static void npNext​(long struct,
                                  long value)
        Unsafe version of pNext.
      • nbuffer

        public static void nbuffer​(long struct,
                                   long value)
        Unsafe version of buffer.