Class VulkanDescriptorSetAllocateInfo

java.lang.Object
com.io7m.jcoronado.api.VulkanDescriptorSetAllocateInfo
All Implemented Interfaces:
VulkanDescriptorSetAllocateInfoType

public final class VulkanDescriptorSetAllocateInfo extends Object implements VulkanDescriptorSetAllocateInfoType
See Also:
  • "VkDescriptorSetAllocateInfo"
  • Method Details

    • descriptorPool

      public VulkanDescriptorPoolType descriptorPool()
      Specified by:
      descriptorPool in interface VulkanDescriptorSetAllocateInfoType
      Returns:
      The descriptor pool from which descriptor sets will be allocated
    • setLayouts

      public List<VulkanDescriptorSetLayoutType> setLayouts()
      Specified by:
      setLayouts in interface VulkanDescriptorSetAllocateInfoType
      Returns:
      An array of descriptor set layouts, with each member specifying how the corresponding descriptor set is allocated.
    • withDescriptorPool

      public final VulkanDescriptorSetAllocateInfo withDescriptorPool(VulkanDescriptorPoolType value)
      Copy the current immutable object by setting a value for the descriptorPool attribute. A shallow reference equality check is used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for descriptorPool
      Returns:
      A modified copy or the this object
    • withSetLayouts

      public final VulkanDescriptorSetAllocateInfo withSetLayouts(VulkanDescriptorSetLayoutType... elements)
      Copy the current immutable object with elements that replace the content of setLayouts.
      Parameters:
      elements - The elements to set
      Returns:
      A modified copy of this object
    • withSetLayouts

      public final VulkanDescriptorSetAllocateInfo withSetLayouts(Iterable<? extends VulkanDescriptorSetLayoutType> elements)
      Copy the current immutable object with elements that replace the content of setLayouts. A shallow reference equality check is used to prevent copying of the same value by returning this.
      Parameters:
      elements - An iterable of setLayouts elements to set
      Returns:
      A modified copy or this if not changed
    • equals

      public boolean equals(Object another)
      This instance is equal to all instances of VulkanDescriptorSetAllocateInfo that have equal attribute values.
      Overrides:
      equals in class Object
      Returns:
      true if this is equal to another instance
    • hashCode

      public int hashCode()
      Computes a hash code from attributes: descriptorPool, setLayouts.
      Overrides:
      hashCode in class Object
      Returns:
      hashCode value
    • toString

      public String toString()
      Prints the immutable value VulkanDescriptorSetAllocateInfo with attribute values.
      Overrides:
      toString in class Object
      Returns:
      A string representation of the value
    • copyOf

      Creates an immutable copy of a VulkanDescriptorSetAllocateInfoType value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
      Parameters:
      instance - The instance to copy
      Returns:
      A copied immutable VulkanDescriptorSetAllocateInfo instance
    • builder

      public static VulkanDescriptorSetAllocateInfo.Builder builder()
      Creates a builder for VulkanDescriptorSetAllocateInfo.
      VulkanDescriptorSetAllocateInfo.builder()
         .setDescriptorPool(com.io7m.jcoronado.api.VulkanDescriptorPoolType) // required descriptorPool
         .addSetLayouts|addAllSetLayouts(com.io7m.jcoronado.api.VulkanDescriptorSetLayoutType) // setLayouts elements
         .build();
      
      Returns:
      A new VulkanDescriptorSetAllocateInfo builder