Class VulkanMappedMemoryRange

    • Method Detail

      • offset

        public long offset()
        Specified by:
        offset in interface VulkanMappedMemoryRangeType
        Returns:
        The zero-based byte offset from the beginning of the memory object.
      • size

        public long size()
        Specified by:
        size in interface VulkanMappedMemoryRangeType
        Returns:
        Either the size of range, or VK_WHOLE_SIZE to affect the range from offset to the end of the current mapping of the allocation.
      • withMemory

        public final VulkanMappedMemoryRange withMemory​(VulkanDeviceMemoryType value)
        Copy the current immutable object by setting a value for the memory attribute. A shallow reference equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for memory
        Returns:
        A modified copy of the this object
      • withOffset

        public final VulkanMappedMemoryRange withOffset​(long value)
        Copy the current immutable object by setting a value for the offset attribute. A value equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for offset
        Returns:
        A modified copy of the this object
      • withSize

        public final VulkanMappedMemoryRange withSize​(long value)
        Copy the current immutable object by setting a value for the size attribute. A value equality check is used to prevent copying of the same value by returning this.
        Parameters:
        value - A new value for size
        Returns:
        A modified copy of the this object
      • equals

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

        public int hashCode()
        Computes a hash code from attributes: memory, offset, size.
        Overrides:
        hashCode in class java.lang.Object
        Returns:
        hashCode value
      • toString

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

        public static VulkanMappedMemoryRange of​(VulkanDeviceMemoryType memory,
                                                 long offset,
                                                 long size)
        Construct a new immutable VulkanMappedMemoryRange instance.
        Parameters:
        memory - The value for the memory attribute
        offset - The value for the offset attribute
        size - The value for the size attribute
        Returns:
        An immutable VulkanMappedMemoryRange instance
      • copyOf

        public static VulkanMappedMemoryRange copyOf​(VulkanMappedMemoryRangeType instance)
        Creates an immutable copy of a VulkanMappedMemoryRangeType 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 VulkanMappedMemoryRange instance