Class VulkanPipelineInputAssemblyStateCreateInfo.Builder
java.lang.Object
com.io7m.jcoronado.api.VulkanPipelineInputAssemblyStateCreateInfo.Builder
- Enclosing class:
VulkanPipelineInputAssemblyStateCreateInfo
Builds instances of type
VulkanPipelineInputAssemblyStateCreateInfo.
Initialize attributes and then invoke the build() method to create an
immutable instance.
Builder is not thread-safe and generally should not be stored in a field or collection,
but instead used immediately to create instances.
-
Method Summary
Modifier and TypeMethodDescriptionAdds elements toflagsset.Adds one element toflagsset.addFlags(VulkanPipelineInputAssemblyStateCreateFlag... elements) Adds elements toflagsset.build()Builds a newVulkanPipelineInputAssemblyStateCreateInfo.Fill a builder with attribute values from the providedVulkanPipelineInputAssemblyStateCreateInfoTypeinstance.Sets or replaces all elements forflagsset.setPrimitiveRestartEnable(boolean primitiveRestartEnable) Initializes the value for theprimitiveRestartEnableattribute.setTopology(VulkanPrimitiveTopology topology) Initializes the value for thetopologyattribute.
-
Method Details
-
from
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder from(VulkanPipelineInputAssemblyStateCreateInfoType instance) Fill a builder with attribute values from the providedVulkanPipelineInputAssemblyStateCreateInfoTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values. Collection elements and entries will be added, not replaced.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
addFlags
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder addFlags(VulkanPipelineInputAssemblyStateCreateFlag element) Adds one element toflagsset.- Parameters:
element- A flags element- Returns:
thisbuilder for use in a chained invocation
-
addFlags
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder addFlags(VulkanPipelineInputAssemblyStateCreateFlag... elements) Adds elements toflagsset.- Parameters:
elements- An array of flags elements- Returns:
thisbuilder for use in a chained invocation
-
setFlags
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder setFlags(Iterable<VulkanPipelineInputAssemblyStateCreateFlag> elements) Sets or replaces all elements forflagsset.- Parameters:
elements- An iterable of flags elements- Returns:
thisbuilder for use in a chained invocation
-
addAllFlags
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder addAllFlags(Iterable<VulkanPipelineInputAssemblyStateCreateFlag> elements) Adds elements toflagsset.- Parameters:
elements- An iterable of flags elements- Returns:
thisbuilder for use in a chained invocation
-
setTopology
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder setTopology(VulkanPrimitiveTopology topology) Initializes the value for thetopologyattribute.- Parameters:
topology- The value for topology- Returns:
thisbuilder for use in a chained invocation
-
setPrimitiveRestartEnable
public final VulkanPipelineInputAssemblyStateCreateInfo.Builder setPrimitiveRestartEnable(boolean primitiveRestartEnable) Initializes the value for theprimitiveRestartEnableattribute.- Parameters:
primitiveRestartEnable- The value for primitiveRestartEnable- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newVulkanPipelineInputAssemblyStateCreateInfo.- Returns:
- An immutable instance of VulkanPipelineInputAssemblyStateCreateInfo
- Throws:
IllegalStateException- if any required attributes are missing
-