Class VkTimelineSemaphoreSubmitInfo

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

public class VkTimelineSemaphoreSubmitInfo extends Struct<VkTimelineSemaphoreSubmitInfo> implements NativeResource

 struct VkTimelineSemaphoreSubmitInfo {
     VkStructureType sType;
     void const * pNext;
     uint32_t waitSemaphoreValueCount;
     uint64_t const * pWaitSemaphoreValues;
     uint32_t signalSemaphoreValueCount;
     uint64_t const * pSignalSemaphoreValues;
 }
  • 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.
    • WAITSEMAPHOREVALUECOUNT

      public static final int WAITSEMAPHOREVALUECOUNT
      The struct member offsets.
    • PWAITSEMAPHOREVALUES

      public static final int PWAITSEMAPHOREVALUES
      The struct member offsets.
    • SIGNALSEMAPHOREVALUECOUNT

      public static final int SIGNALSEMAPHOREVALUECOUNT
      The struct member offsets.
    • PSIGNALSEMAPHOREVALUES

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

    • VkTimelineSemaphoreSubmitInfo

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