Class VkCopyMemoryIndirectCommandNV

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkCopyMemoryIndirectCommandNV>
org.lwjgl.vulkan.VkCopyMemoryIndirectCommandNV
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkCopyMemoryIndirectCommandNV extends org.lwjgl.system.Struct<VkCopyMemoryIndirectCommandNV> implements org.lwjgl.system.NativeResource
Structure specifying indirect memory region copy operation.
Valid Usage
  • The srcAddress must be 4 byte aligned
  • The dstAddress must be 4 byte aligned
  • The size must be 4 byte aligned

Layout


 struct VkCopyMemoryIndirectCommandNV {
     VkDeviceAddress srcAddress();
     VkDeviceAddress dstAddress();
     VkDeviceSize size();
 }
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • SRCADDRESS

      public static final int SRCADDRESS
      The struct member offsets.
    • DSTADDRESS

      public static final int DSTADDRESS
      The struct member offsets.
    • SIZE

      public static final int SIZE
      The struct member offsets.
  • Constructor Details

    • VkCopyMemoryIndirectCommandNV

      public VkCopyMemoryIndirectCommandNV(ByteBuffer container)
      Creates a VkCopyMemoryIndirectCommandNV 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 Details