Class VkSubmitInfo2

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

public class VkSubmitInfo2 extends Struct<VkSubmitInfo2> implements NativeResource

 struct VkSubmitInfo2 {
     VkStructureType sType;
     void const * pNext;
     VkSubmitFlags flags;
     uint32_t waitSemaphoreInfoCount;
     {@link VkSemaphoreSubmitInfo VkSemaphoreSubmitInfo} const * pWaitSemaphoreInfos;
     uint32_t commandBufferInfoCount;
     {@link VkCommandBufferSubmitInfo VkCommandBufferSubmitInfo} const * pCommandBufferInfos;
     uint32_t signalSemaphoreInfoCount;
     {@link VkSemaphoreSubmitInfo VkSemaphoreSubmitInfo} const * pSignalSemaphoreInfos;
 }
  • Field Details

    • SIZEOF

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

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

      public static final int STYPE
      The struct member offsets.
    • PNEXT

      public static final int PNEXT
      The struct member offsets.
    • FLAGS

      public static final int FLAGS
      The struct member offsets.
    • WAITSEMAPHOREINFOCOUNT

      public static final int WAITSEMAPHOREINFOCOUNT
      The struct member offsets.
    • PWAITSEMAPHOREINFOS

      public static final int PWAITSEMAPHOREINFOS
      The struct member offsets.
    • COMMANDBUFFERINFOCOUNT

      public static final int COMMANDBUFFERINFOCOUNT
      The struct member offsets.
    • PCOMMANDBUFFERINFOS

      public static final int PCOMMANDBUFFERINFOS
      The struct member offsets.
    • SIGNALSEMAPHOREINFOCOUNT

      public static final int SIGNALSEMAPHOREINFOCOUNT
      The struct member offsets.
    • PSIGNALSEMAPHOREINFOS

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

    • VkSubmitInfo2

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