Class VulkanClearAttachment.Builder
java.lang.Object
com.io7m.jcoronado.api.VulkanClearAttachment.Builder
- Enclosing class:
VulkanClearAttachment
Builds instances of type
VulkanClearAttachment.
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 TypeMethodDescriptionaddAllAspectMask(Iterable<VulkanImageAspectFlag> elements) Adds elements toaspectMaskset.addAspectMask(VulkanImageAspectFlag element) Adds one element toaspectMaskset.addAspectMask(VulkanImageAspectFlag... elements) Adds elements toaspectMaskset.build()Builds a newVulkanClearAttachment.from(VulkanClearAttachmentType instance) Fill a builder with attribute values from the providedVulkanClearAttachmentTypeinstance.setAspectMask(Iterable<VulkanImageAspectFlag> elements) Sets or replaces all elements foraspectMaskset.setClearValue(VulkanClearValueType clearValue) Initializes the value for theclearValueattribute.setColorAttachment(int colorAttachment) Initializes the value for thecolorAttachmentattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedVulkanClearAttachmentTypeinstance. 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
-
addAspectMask
Adds one element toaspectMaskset.- Parameters:
element- A aspectMask element- Returns:
thisbuilder for use in a chained invocation
-
addAspectMask
Adds elements toaspectMaskset.- Parameters:
elements- An array of aspectMask elements- Returns:
thisbuilder for use in a chained invocation
-
setAspectMask
Sets or replaces all elements foraspectMaskset.- Parameters:
elements- An iterable of aspectMask elements- Returns:
thisbuilder for use in a chained invocation
-
addAllAspectMask
public final VulkanClearAttachment.Builder addAllAspectMask(Iterable<VulkanImageAspectFlag> elements) Adds elements toaspectMaskset.- Parameters:
elements- An iterable of aspectMask elements- Returns:
thisbuilder for use in a chained invocation
-
setColorAttachment
Initializes the value for thecolorAttachmentattribute.- Parameters:
colorAttachment- The value for colorAttachment- Returns:
thisbuilder for use in a chained invocation
-
setClearValue
Initializes the value for theclearValueattribute.- Parameters:
clearValue- The value for clearValue- Returns:
thisbuilder for use in a chained invocation
-
build
Builds a newVulkanClearAttachment.- Returns:
- An immutable instance of VulkanClearAttachment
- Throws:
IllegalStateException- if any required attributes are missing
-