Class VkBindDescriptorSetsInfo

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

public class VkBindDescriptorSetsInfo extends Struct<VkBindDescriptorSetsInfo> implements NativeResource
struct VkBindDescriptorSetsInfo {
    VkStructureType sType;
    void const * pNext;
    VkShaderStageFlags stageFlags;
    VkPipelineLayout layout;
    uint32_t firstSet;
    uint32_t descriptorSetCount;
    VkDescriptorSet const * pDescriptorSets;
    uint32_t dynamicOffsetCount;
    uint32_t const * pDynamicOffsets;
}
  • 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.
    • STAGEFLAGS

      public static final int STAGEFLAGS
      The struct member offsets.
    • LAYOUT

      public static final int LAYOUT
      The struct member offsets.
    • FIRSTSET

      public static final int FIRSTSET
      The struct member offsets.
    • DESCRIPTORSETCOUNT

      public static final int DESCRIPTORSETCOUNT
      The struct member offsets.
    • PDESCRIPTORSETS

      public static final int PDESCRIPTORSETS
      The struct member offsets.
    • DYNAMICOFFSETCOUNT

      public static final int DYNAMICOFFSETCOUNT
      The struct member offsets.
    • PDYNAMICOFFSETS

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

    • VkBindDescriptorSetsInfo

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