Class VMAAllocationInfo.Builder
java.lang.Object
com.io7m.jcoronado.vma.VMAAllocationInfo.Builder
- Enclosing class:
VMAAllocationInfo
Builds instances of type
VMAAllocationInfo.
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 TypeMethodDescriptionbuild()Builds a newVMAAllocationInfo.from(VMAAllocationInfoType instance) Fill a builder with attribute values from the providedVMAAllocationInfoTypeinstance.setDeviceMemory(VulkanDeviceMemoryType deviceMemory) Initializes the optional valuedeviceMemoryto deviceMemory.setDeviceMemory(Optional<? extends VulkanDeviceMemoryType> deviceMemory) Initializes the optional valuedeviceMemoryto deviceMemory.setMemoryType(long memoryType) Initializes the value for thememoryTypeattribute.setOffset(long offset) Initializes the value for theoffsetattribute.setSize(long size) Initializes the value for thesizeattribute.
-
Method Details
-
from
Fill a builder with attribute values from the providedVMAAllocationInfoTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setMemoryType
Initializes the value for thememoryTypeattribute.If not set, this attribute will have a default value as returned by the initializer of
memoryType.- Parameters:
memoryType- The value for memoryType- Returns:
thisbuilder for use in a chained invocation
-
setDeviceMemory
Initializes the optional valuedeviceMemoryto deviceMemory.- Parameters:
deviceMemory- The value for deviceMemory- Returns:
thisbuilder for chained invocation
-
setDeviceMemory
public final VMAAllocationInfo.Builder setDeviceMemory(Optional<? extends VulkanDeviceMemoryType> deviceMemory) Initializes the optional valuedeviceMemoryto deviceMemory.- Parameters:
deviceMemory- The value for deviceMemory- Returns:
thisbuilder for use in a chained invocation
-
setOffset
-
setSize
-
build
Builds a newVMAAllocationInfo.- Returns:
- An immutable instance of VMAAllocationInfo
- Throws:
IllegalStateException- if any required attributes are missing
-