All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.vulkan.VkBufferImageCopy Maven / Gradle / Ivy

Go to download

A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.vulkan;

import java.nio.*;

import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;

/**
 * Structure specifying a buffer image copy operation.
 * 
 * 
Description
* *

When copying to or from a depth or stencil aspect, the data in buffer memory uses a layout that is a (mostly) tightly packed representation of the depth or stencil data. Specifically:

* *
    *
  • data copied to or from the stencil aspect of any depth/stencil format is tightly packed with one {@link VK10#VK_FORMAT_S8_UINT FORMAT_S8_UINT} value per texel.
  • *
  • data copied to or from the depth aspect of a {@link VK10#VK_FORMAT_D16_UNORM FORMAT_D16_UNORM} or {@link VK10#VK_FORMAT_D16_UNORM_S8_UINT FORMAT_D16_UNORM_S8_UINT} format is tightly packed with one {@link VK10#VK_FORMAT_D16_UNORM FORMAT_D16_UNORM} value per texel.
  • *
  • data copied to or from the depth aspect of a {@link VK10#VK_FORMAT_D32_SFLOAT FORMAT_D32_SFLOAT} or {@link VK10#VK_FORMAT_D32_SFLOAT_S8_UINT FORMAT_D32_SFLOAT_S8_UINT} format is tightly packed with one {@link VK10#VK_FORMAT_D32_SFLOAT FORMAT_D32_SFLOAT} value per texel.
  • *
  • data copied to or from the depth aspect of a {@link VK10#VK_FORMAT_X8_D24_UNORM_PACK32 FORMAT_X8_D24_UNORM_PACK32} or {@link VK10#VK_FORMAT_D24_UNORM_S8_UINT FORMAT_D24_UNORM_S8_UINT} format is packed with one 32-bit word per texel with the D24 value in the LSBs of the word, and undefined values in the eight MSBs.
  • *
* *
Note
* *

To copy both the depth and stencil aspects of a depth/stencil format, two entries in {@code pRegions} can be used, where one specifies the depth aspect in {@code imageSubresource}, and the other specifies the stencil aspect.

*
* *

Because depth or stencil aspect buffer to image copies may require format conversions on some implementations, they are not supported on queues that do not support graphics. When copying to a depth aspect, the data in buffer memory must be in the the range [0,1] or undefined results occur.

* *

Copies are done layer by layer starting with image layer {@code baseArrayLayer} member of {@code imageSubresource}. {@code layerCount} layers are copied from the source image or to the destination image.

* *
Valid Usage
* *
    *
  • If the calling command’s {@code VkImage} parameter’s format is not a depth/stencil format or a multi-planar format,cthen {@code bufferOffset} must be a multiple of the format’s element size
  • *
  • If the calling command’s {@code VkImage} parameter’s format is a multi-planar format, then {@code bufferOffset} must be a multiple of the element size of the compatible format for the format and the {@code aspectMask} of the {@code imageSubresource} as defined in the “Compatible formats of planes of multi-planar formats” section
  • *
  • {@code bufferOffset} must be a multiple of 4
  • *
  • {@code bufferRowLength} must be 0, or greater than or equal to the {@code width} member of {@code imageExtent}
  • *
  • {@code bufferImageHeight} must be 0, or greater than or equal to the {@code height} member of {@code imageExtent}
  • *
  • {@code imageOffset.x} and (imageExtent.width imageOffset.x) must both be greater than or equal to 0 and less than or equal to the image subresource width where this refers to the width of the plane of the image involved in the copy in the case of a multi-planar format
  • *
  • {@code imageOffset.y} and (imageExtent.height imageOffset.y) must both be greater than or equal to 0 and less than or equal to the image subresource height where this refers to the height of the plane of the image involved in the copy in the case of a multi-planar format
  • *
  • If the calling command’s {@code srcImage} ({@link VK10#vkCmdCopyImageToBuffer CmdCopyImageToBuffer}) or {@code dstImage} ({@link VK10#vkCmdCopyBufferToImage CmdCopyBufferToImage}) is of type {@link VK10#VK_IMAGE_TYPE_1D IMAGE_TYPE_1D}, then {@code imageOffset.y} must be 0 and {@code imageExtent.height} must be 1.
  • *
  • {@code imageOffset.z} and (imageExtent.depth imageOffset.z) must both be greater than or equal to 0 and less than or equal to the image subresource depth
  • *
  • If the calling command’s {@code srcImage} ({@link VK10#vkCmdCopyImageToBuffer CmdCopyImageToBuffer}) or {@code dstImage} ({@link VK10#vkCmdCopyBufferToImage CmdCopyBufferToImage}) is of type {@link VK10#VK_IMAGE_TYPE_1D IMAGE_TYPE_1D} or {@link VK10#VK_IMAGE_TYPE_2D IMAGE_TYPE_2D}, then {@code imageOffset.z} must be 0 and {@code imageExtent.depth} must be 1
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, {@code bufferRowLength} must be a multiple of the compressed texel block width
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, {@code bufferImageHeight} must be a multiple of the compressed texel block height
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, all members of {@code imageOffset} must be a multiple of the corresponding dimensions of the compressed texel block
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, {@code bufferOffset} must be a multiple of the compressed texel block size in bytes
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, {@code imageExtent.width} must be a multiple of the compressed texel block width or (imageExtent.width imageOffset.x) must equal the image subresource width
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, {@code imageExtent.height} must be a multiple of the compressed texel block height or (imageExtent.height imageOffset.y) must equal the image subresource height
  • *
  • If the calling command’s {@code VkImage} parameter is a compressed image, or a single-plane, “etext:_422” image format, {@code imageExtent.depth} must be a multiple of the compressed texel block depth or (imageExtent.depth imageOffset.z) must equal the image subresource depth
  • *
  • {@code bufferOffset}, {@code bufferRowLength}, {@code bufferImageHeight} and all members of {@code imageOffset} and {@code imageExtent} must respect the image transfer granularity requirements of the queue family that it will be submitted against, as described in Physical Device Enumeration
  • *
  • The {@code aspectMask} member of {@code imageSubresource} must specify aspects present in the calling command’s {@code VkImage} parameter
  • *
  • If the calling command’s {@code VkImage} parameter’s format is a multi-planar format, then the {@code aspectMask} member of {@code imageSubresource} must be {@link KHRSamplerYcbcrConversion#VK_IMAGE_ASPECT_PLANE_0_BIT_KHR IMAGE_ASPECT_PLANE_0_BIT_KHR}, {@link KHRSamplerYcbcrConversion#VK_IMAGE_ASPECT_PLANE_1_BIT_KHR IMAGE_ASPECT_PLANE_1_BIT_KHR}, or {@link KHRSamplerYcbcrConversion#VK_IMAGE_ASPECT_PLANE_2_BIT_KHR IMAGE_ASPECT_PLANE_2_BIT_KHR} (with {@link KHRSamplerYcbcrConversion#VK_IMAGE_ASPECT_PLANE_2_BIT_KHR IMAGE_ASPECT_PLANE_2_BIT_KHR} valid only for image formats with three planes)
  • *
  • The {@code aspectMask} member of {@code imageSubresource} must only have a single bit set
  • *
  • If the calling command’s {@code VkImage} parameter is of {@code VkImageType} {@link VK10#VK_IMAGE_TYPE_3D IMAGE_TYPE_3D}, the {@code baseArrayLayer} and {@code layerCount} members of {@code imageSubresource} must be 0 and 1, respectively
  • *
  • When copying to the depth aspect of an image subresource, the data in the source buffer must be in the range [0,1]
  • *
* *
Valid Usage (Implicit)
* *
    *
  • {@code imageSubresource} must be a valid {@link VkImageSubresourceLayers} structure
  • *
* *
See Also
* *

{@link VkExtent3D}, {@link VkImageSubresourceLayers}, {@link VkOffset3D}, {@link VK10#vkCmdCopyBufferToImage CmdCopyBufferToImage}, {@link VK10#vkCmdCopyImageToBuffer CmdCopyImageToBuffer}

* *

Member documentation

* *
    *
  • {@code bufferOffset} – the offset in bytes from the start of the buffer object where the image data is copied from or to.
  • *
  • {@code bufferRowLength} – {@code bufferRowLength} and {@code bufferImageHeight} specify the data in buffer memory as a subregion of a larger two- or three-dimensional image, and control the addressing calculations of data in buffer memory. If either of these values is zero, that aspect of the buffer memory is considered to be tightly packed according to the {@code imageExtent}.
  • *
  • {@code bufferImageHeight} – see {@code bufferRowLength}
  • *
  • {@code imageSubresource} – a {@link VkImageSubresourceLayers} used to specify the specific image subresources of the image used for the source or destination image data.
  • *
  • {@code imageOffset} – selects the initial x, y, z offsets in texels of the sub-region of the source or destination image data.
  • *
  • {@code imageExtent} – the size in texels of the image to copy in {@code width}, {@code height} and {@code depth}.
  • *
* *

Layout

* *
 * struct VkBufferImageCopy {
 *     VkDeviceSize bufferOffset;
 *     uint32_t bufferRowLength;
 *     uint32_t bufferImageHeight;
 *     {@link VkImageSubresourceLayers VkImageSubresourceLayers} imageSubresource;
 *     {@link VkOffset3D VkOffset3D} imageOffset;
 *     {@link VkExtent3D VkExtent3D} imageExtent;
 * }
*/ public class VkBufferImageCopy extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; public static final int ALIGNOF; /** The struct member offsets. */ public static final int BUFFEROFFSET, BUFFERROWLENGTH, BUFFERIMAGEHEIGHT, IMAGESUBRESOURCE, IMAGEOFFSET, IMAGEEXTENT; static { Layout layout = __struct( __member(8), __member(4), __member(4), __member(VkImageSubresourceLayers.SIZEOF, VkImageSubresourceLayers.ALIGNOF), __member(VkOffset3D.SIZEOF, VkOffset3D.ALIGNOF), __member(VkExtent3D.SIZEOF, VkExtent3D.ALIGNOF) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); BUFFEROFFSET = layout.offsetof(0); BUFFERROWLENGTH = layout.offsetof(1); BUFFERIMAGEHEIGHT = layout.offsetof(2); IMAGESUBRESOURCE = layout.offsetof(3); IMAGEOFFSET = layout.offsetof(4); IMAGEEXTENT = layout.offsetof(5); } VkBufferImageCopy(long address, ByteBuffer container) { super(address, container); } /** * Creates a {@link VkBufferImageCopy} instance at the current position of the specified {@link ByteBuffer} container. Changes to the buffer's content will be * visible to the struct instance and vice versa. * *

The created instance holds a strong reference to the container object.

*/ public VkBufferImageCopy(ByteBuffer container) { this(memAddress(container), checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code bufferOffset} field. */ @NativeType("VkDeviceSize") public long bufferOffset() { return nbufferOffset(address()); } /** Returns the value of the {@code bufferRowLength} field. */ @NativeType("uint32_t") public int bufferRowLength() { return nbufferRowLength(address()); } /** Returns the value of the {@code bufferImageHeight} field. */ @NativeType("uint32_t") public int bufferImageHeight() { return nbufferImageHeight(address()); } /** Returns a {@link VkImageSubresourceLayers} view of the {@code imageSubresource} field. */ public VkImageSubresourceLayers imageSubresource() { return nimageSubresource(address()); } /** Returns a {@link VkOffset3D} view of the {@code imageOffset} field. */ public VkOffset3D imageOffset() { return nimageOffset(address()); } /** Returns a {@link VkExtent3D} view of the {@code imageExtent} field. */ public VkExtent3D imageExtent() { return nimageExtent(address()); } /** Sets the specified value to the {@code bufferOffset} field. */ public VkBufferImageCopy bufferOffset(@NativeType("VkDeviceSize") long value) { nbufferOffset(address(), value); return this; } /** Sets the specified value to the {@code bufferRowLength} field. */ public VkBufferImageCopy bufferRowLength(@NativeType("uint32_t") int value) { nbufferRowLength(address(), value); return this; } /** Sets the specified value to the {@code bufferImageHeight} field. */ public VkBufferImageCopy bufferImageHeight(@NativeType("uint32_t") int value) { nbufferImageHeight(address(), value); return this; } /** Copies the specified {@link VkImageSubresourceLayers} to the {@code imageSubresource} field. */ public VkBufferImageCopy imageSubresource(VkImageSubresourceLayers value) { nimageSubresource(address(), value); return this; } /** Copies the specified {@link VkOffset3D} to the {@code imageOffset} field. */ public VkBufferImageCopy imageOffset(VkOffset3D value) { nimageOffset(address(), value); return this; } /** Copies the specified {@link VkExtent3D} to the {@code imageExtent} field. */ public VkBufferImageCopy imageExtent(VkExtent3D value) { nimageExtent(address(), value); return this; } /** Initializes this struct with the specified values. */ public VkBufferImageCopy set( long bufferOffset, int bufferRowLength, int bufferImageHeight, VkImageSubresourceLayers imageSubresource, VkOffset3D imageOffset, VkExtent3D imageExtent ) { bufferOffset(bufferOffset); bufferRowLength(bufferRowLength); bufferImageHeight(bufferImageHeight); imageSubresource(imageSubresource); imageOffset(imageOffset); imageExtent(imageExtent); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public VkBufferImageCopy set(VkBufferImageCopy src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@link VkBufferImageCopy} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static VkBufferImageCopy malloc() { return create(nmemAlloc(SIZEOF)); } /** Returns a new {@link VkBufferImageCopy} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static VkBufferImageCopy calloc() { return create(nmemCalloc(1, SIZEOF)); } /** Returns a new {@link VkBufferImageCopy} instance allocated with {@link BufferUtils}. */ public static VkBufferImageCopy create() { return new VkBufferImageCopy(BufferUtils.createByteBuffer(SIZEOF)); } /** Returns a new {@link VkBufferImageCopy} instance for the specified memory address or {@code null} if the address is {@code NULL}. */ public static VkBufferImageCopy create(long address) { return address == NULL ? null : new VkBufferImageCopy(address, null); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static Buffer malloc(int capacity) { return create(__malloc(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static Buffer calloc(int capacity) { return create(nmemCalloc(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static Buffer create(int capacity) { return new Buffer(__create(capacity, SIZEOF)); } /** * Create a {@link VkBufferImageCopy.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static Buffer create(long address, int capacity) { return address == NULL ? null : new Buffer(address, null, -1, 0, capacity, capacity); } // ----------------------------------- /** Returns a new {@link VkBufferImageCopy} instance allocated on the thread-local {@link MemoryStack}. */ public static VkBufferImageCopy mallocStack() { return mallocStack(stackGet()); } /** Returns a new {@link VkBufferImageCopy} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. */ public static VkBufferImageCopy callocStack() { return callocStack(stackGet()); } /** * Returns a new {@link VkBufferImageCopy} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static VkBufferImageCopy mallocStack(MemoryStack stack) { return create(stack.nmalloc(ALIGNOF, SIZEOF)); } /** * Returns a new {@link VkBufferImageCopy} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static VkBufferImageCopy callocStack(MemoryStack stack) { return create(stack.ncalloc(ALIGNOF, 1, SIZEOF)); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated on the thread-local {@link MemoryStack}. * * @param capacity the buffer capacity */ public static Buffer mallocStack(int capacity) { return mallocStack(capacity, stackGet()); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated on the thread-local {@link MemoryStack} and initializes all its bits to zero. * * @param capacity the buffer capacity */ public static Buffer callocStack(int capacity) { return callocStack(capacity, stackGet()); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static Buffer mallocStack(int capacity, MemoryStack stack) { return create(stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link VkBufferImageCopy.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static Buffer callocStack(int capacity, MemoryStack stack) { return create(stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #bufferOffset}. */ public static long nbufferOffset(long struct) { return memGetLong(struct + VkBufferImageCopy.BUFFEROFFSET); } /** Unsafe version of {@link #bufferRowLength}. */ public static int nbufferRowLength(long struct) { return memGetInt(struct + VkBufferImageCopy.BUFFERROWLENGTH); } /** Unsafe version of {@link #bufferImageHeight}. */ public static int nbufferImageHeight(long struct) { return memGetInt(struct + VkBufferImageCopy.BUFFERIMAGEHEIGHT); } /** Unsafe version of {@link #imageSubresource}. */ public static VkImageSubresourceLayers nimageSubresource(long struct) { return VkImageSubresourceLayers.create(struct + VkBufferImageCopy.IMAGESUBRESOURCE); } /** Unsafe version of {@link #imageOffset}. */ public static VkOffset3D nimageOffset(long struct) { return VkOffset3D.create(struct + VkBufferImageCopy.IMAGEOFFSET); } /** Unsafe version of {@link #imageExtent}. */ public static VkExtent3D nimageExtent(long struct) { return VkExtent3D.create(struct + VkBufferImageCopy.IMAGEEXTENT); } /** Unsafe version of {@link #bufferOffset(long) bufferOffset}. */ public static void nbufferOffset(long struct, long value) { memPutLong(struct + VkBufferImageCopy.BUFFEROFFSET, value); } /** Unsafe version of {@link #bufferRowLength(int) bufferRowLength}. */ public static void nbufferRowLength(long struct, int value) { memPutInt(struct + VkBufferImageCopy.BUFFERROWLENGTH, value); } /** Unsafe version of {@link #bufferImageHeight(int) bufferImageHeight}. */ public static void nbufferImageHeight(long struct, int value) { memPutInt(struct + VkBufferImageCopy.BUFFERIMAGEHEIGHT, value); } /** Unsafe version of {@link #imageSubresource(VkImageSubresourceLayers) imageSubresource}. */ public static void nimageSubresource(long struct, VkImageSubresourceLayers value) { memCopy(value.address(), struct + VkBufferImageCopy.IMAGESUBRESOURCE, VkImageSubresourceLayers.SIZEOF); } /** Unsafe version of {@link #imageOffset(VkOffset3D) imageOffset}. */ public static void nimageOffset(long struct, VkOffset3D value) { memCopy(value.address(), struct + VkBufferImageCopy.IMAGEOFFSET, VkOffset3D.SIZEOF); } /** Unsafe version of {@link #imageExtent(VkExtent3D) imageExtent}. */ public static void nimageExtent(long struct, VkExtent3D value) { memCopy(value.address(), struct + VkBufferImageCopy.IMAGEEXTENT, VkExtent3D.SIZEOF); } // ----------------------------------- /** An array of {@link VkBufferImageCopy} structs. */ public static class Buffer extends StructBuffer implements NativeResource { /** * Creates a new {@link VkBufferImageCopy.Buffer} instance backed by the specified container. * * Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link VkBufferImageCopy#SIZEOF}, and its mark will be undefined. * *

The created buffer instance holds a strong reference to the container object.

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } Buffer(long address, ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected Buffer newBufferInstance(long address, ByteBuffer container, int mark, int pos, int lim, int cap) { return new Buffer(address, container, mark, pos, lim, cap); } @Override protected VkBufferImageCopy newInstance(long address) { return new VkBufferImageCopy(address, container); } @Override public int sizeof() { return SIZEOF; } /** Returns the value of the {@code bufferOffset} field. */ @NativeType("VkDeviceSize") public long bufferOffset() { return VkBufferImageCopy.nbufferOffset(address()); } /** Returns the value of the {@code bufferRowLength} field. */ @NativeType("uint32_t") public int bufferRowLength() { return VkBufferImageCopy.nbufferRowLength(address()); } /** Returns the value of the {@code bufferImageHeight} field. */ @NativeType("uint32_t") public int bufferImageHeight() { return VkBufferImageCopy.nbufferImageHeight(address()); } /** Returns a {@link VkImageSubresourceLayers} view of the {@code imageSubresource} field. */ public VkImageSubresourceLayers imageSubresource() { return VkBufferImageCopy.nimageSubresource(address()); } /** Returns a {@link VkOffset3D} view of the {@code imageOffset} field. */ public VkOffset3D imageOffset() { return VkBufferImageCopy.nimageOffset(address()); } /** Returns a {@link VkExtent3D} view of the {@code imageExtent} field. */ public VkExtent3D imageExtent() { return VkBufferImageCopy.nimageExtent(address()); } /** Sets the specified value to the {@code bufferOffset} field. */ public VkBufferImageCopy.Buffer bufferOffset(@NativeType("VkDeviceSize") long value) { VkBufferImageCopy.nbufferOffset(address(), value); return this; } /** Sets the specified value to the {@code bufferRowLength} field. */ public VkBufferImageCopy.Buffer bufferRowLength(@NativeType("uint32_t") int value) { VkBufferImageCopy.nbufferRowLength(address(), value); return this; } /** Sets the specified value to the {@code bufferImageHeight} field. */ public VkBufferImageCopy.Buffer bufferImageHeight(@NativeType("uint32_t") int value) { VkBufferImageCopy.nbufferImageHeight(address(), value); return this; } /** Copies the specified {@link VkImageSubresourceLayers} to the {@code imageSubresource} field. */ public VkBufferImageCopy.Buffer imageSubresource(VkImageSubresourceLayers value) { VkBufferImageCopy.nimageSubresource(address(), value); return this; } /** Copies the specified {@link VkOffset3D} to the {@code imageOffset} field. */ public VkBufferImageCopy.Buffer imageOffset(VkOffset3D value) { VkBufferImageCopy.nimageOffset(address(), value); return this; } /** Copies the specified {@link VkExtent3D} to the {@code imageExtent} field. */ public VkBufferImageCopy.Buffer imageExtent(VkExtent3D value) { VkBufferImageCopy.nimageExtent(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy