Class VkDescriptorSetLayoutBinding

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkDescriptorSetLayoutBinding extends Struct<VkDescriptorSetLayoutBinding> implements NativeResource
struct VkDescriptorSetLayoutBinding {
    uint32_t binding;
    VkDescriptorType descriptorType;
    uint32_t descriptorCount;
    VkShaderStageFlags stageFlags;
    VkSampler const * pImmutableSamplers;
}
  • Field Details

    • SIZEOF

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

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

      public static final int BINDING
      The struct member offsets.
    • DESCRIPTORTYPE

      public static final int DESCRIPTORTYPE
      The struct member offsets.
    • DESCRIPTORCOUNT

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

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

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

    • VkDescriptorSetLayoutBinding

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