Package org.lwjgl.vulkan
Class VkImageResolve2
- All Implemented Interfaces:
AutoCloseable,NativeResource,Pointer
- Direct Known Subclasses:
VkImageResolve2KHR
struct VkImageResolve2 {
VkStructureType sType;
void const * pNext;
VkImageSubresourceLayers srcSubresource;
VkOffset3D srcOffset;
VkImageSubresourceLayers dstSubresource;
VkOffset3D dstOffset;
VkExtent3D extent;
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct size in bytes.static final intThe struct member offsets.static final intThe struct member offsets.static final intThe struct member offsets.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionVkImageResolve2(ByteBuffer container) Creates aVkImageResolve2instance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkImageResolve2calloc()Returns a newVkImageResolve2instance allocated withmemCalloc.static VkImageResolve2.Buffercalloc(int capacity) Returns a newVkImageResolve2.Bufferinstance allocated withmemCalloc.static VkImageResolve2.Buffercalloc(int capacity, MemoryStack stack) Returns a newVkImageResolve2.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkImageResolve2calloc(MemoryStack stack) Returns a newVkImageResolve2instance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkImageResolve2create()Returns a newVkImageResolve2instance allocated withBufferUtils.static VkImageResolve2.Buffercreate(int capacity) Returns a newVkImageResolve2.Bufferinstance allocated withBufferUtils.static VkImageResolve2create(long address) Returns a newVkImageResolve2instance for the specified memory address.static VkImageResolve2.Buffercreate(long address, int capacity) Create aVkImageResolve2.Bufferinstance at the specified memory.static @Nullable VkImageResolve2createSafe(long address) static @Nullable VkImageResolve2.BuffercreateSafe(long address, int capacity) dstOffset(Consumer<VkOffset3D> consumer) Passes thedstOffsetfield to the specifiedConsumer.dstOffset(VkOffset3D value) Copies the specifiedVkOffset3Dto thedstOffsetfield.dstSubresource(Consumer<VkImageSubresourceLayers> consumer) Passes thedstSubresourcefield to the specifiedConsumer.Copies the specifiedVkImageSubresourceLayersto thedstSubresourcefield.extent()extent(Consumer<VkExtent3D> consumer) Passes theextentfield to the specifiedConsumer.extent(VkExtent3D value) Copies the specifiedVkExtent3Dto theextentfield.static VkImageResolve2malloc()Returns a newVkImageResolve2instance allocated withmemAlloc.static VkImageResolve2.Buffermalloc(int capacity) Returns a newVkImageResolve2.Bufferinstance allocated withmemAlloc.static VkImageResolve2.Buffermalloc(int capacity, MemoryStack stack) Returns a newVkImageResolve2.Bufferinstance allocated on the specifiedMemoryStack.static VkImageResolve2malloc(MemoryStack stack) Returns a newVkImageResolve2instance allocated on the specifiedMemoryStack.static VkOffset3DndstOffset(long struct) Unsafe version ofdstOffset().static voidndstOffset(long struct, VkOffset3D value) Unsafe version ofdstOffset.static VkImageSubresourceLayersndstSubresource(long struct) Unsafe version ofdstSubresource().static voidndstSubresource(long struct, VkImageSubresourceLayers value) Unsafe version ofdstSubresource.static VkExtent3Dnextent(long struct) Unsafe version ofextent().static voidnextent(long struct, VkExtent3D value) Unsafe version ofextent.static longnpNext(long struct) Unsafe version ofpNext().static voidnpNext(long struct, long value) Unsafe version ofpNext.static VkOffset3DnsrcOffset(long struct) Unsafe version ofsrcOffset().static voidnsrcOffset(long struct, VkOffset3D value) Unsafe version ofsrcOffset.static VkImageSubresourceLayersnsrcSubresource(long struct) Unsafe version ofsrcSubresource().static voidnsrcSubresource(long struct, VkImageSubresourceLayers value) Unsafe version ofsrcSubresource.static intnsType(long struct) Unsafe version ofsType().static voidnsType(long struct, int value) Unsafe version ofsType.longpNext()pNext(long value) Sets the specified value to thepNextfield.set(int sType, long pNext, VkImageSubresourceLayers srcSubresource, VkOffset3D srcOffset, VkImageSubresourceLayers dstSubresource, VkOffset3D dstOffset, VkExtent3D extent) Initializes this struct with the specified values.set(VkImageResolve2 src) Copies the specified struct data to this struct.intsizeof()Returnssizeof(struct).srcOffset(Consumer<VkOffset3D> consumer) Passes thesrcOffsetfield to the specifiedConsumer.srcOffset(VkOffset3D value) Copies the specifiedVkOffset3Dto thesrcOffsetfield.srcSubresource(Consumer<VkImageSubresourceLayers> consumer) Passes thesrcSubresourcefield to the specifiedConsumer.Copies the specifiedVkImageSubresourceLayersto thesrcSubresourcefield.intsType()sType(int value) Sets the specified value to thesTypefield.Sets theSTRUCTURE_TYPE_IMAGE_RESOLVE_2value to thesTypefield.Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toStringMethods inherited from interface org.lwjgl.system.NativeResource
close, free
-
Field Details
-
SIZEOF
public static final int SIZEOFThe struct size in bytes. -
ALIGNOF
public static final int ALIGNOFThe struct alignment in bytes. -
STYPE
public static final int STYPEThe struct member offsets. -
PNEXT
public static final int PNEXTThe struct member offsets. -
SRCSUBRESOURCE
public static final int SRCSUBRESOURCEThe struct member offsets. -
SRCOFFSET
public static final int SRCOFFSETThe struct member offsets. -
DSTSUBRESOURCE
public static final int DSTSUBRESOURCEThe struct member offsets. -
DSTOFFSET
public static final int DSTOFFSETThe struct member offsets. -
EXTENT
public static final int EXTENTThe struct member offsets.
-
-
Constructor Details
-
VkImageResolve2
Creates aVkImageResolve2instance at the current position of the specifiedByteBuffercontainer. 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.
-
-
Method Details
-
sizeof
public int sizeof()Description copied from class:StructReturnssizeof(struct).- Specified by:
sizeofin classStruct<VkImageResolve2>
-
sType
public int sType()- Returns:
- the value of the
sTypefield.
-
pNext
public long pNext()- Returns:
- the value of the
pNextfield.
-
srcSubresource
- Returns:
- a
VkImageSubresourceLayersview of thesrcSubresourcefield.
-
srcOffset
- Returns:
- a
VkOffset3Dview of thesrcOffsetfield.
-
dstSubresource
- Returns:
- a
VkImageSubresourceLayersview of thedstSubresourcefield.
-
dstOffset
- Returns:
- a
VkOffset3Dview of thedstOffsetfield.
-
extent
- Returns:
- a
VkExtent3Dview of theextentfield.
-
sType
Sets the specified value to thesTypefield. -
sType$Default
Sets theSTRUCTURE_TYPE_IMAGE_RESOLVE_2value to thesTypefield. -
pNext
Sets the specified value to thepNextfield. -
srcSubresource
Copies the specifiedVkImageSubresourceLayersto thesrcSubresourcefield. -
srcSubresource
Passes thesrcSubresourcefield to the specifiedConsumer. -
srcOffset
Copies the specifiedVkOffset3Dto thesrcOffsetfield. -
srcOffset
Passes thesrcOffsetfield to the specifiedConsumer. -
dstSubresource
Copies the specifiedVkImageSubresourceLayersto thedstSubresourcefield. -
dstSubresource
Passes thedstSubresourcefield to the specifiedConsumer. -
dstOffset
Copies the specifiedVkOffset3Dto thedstOffsetfield. -
dstOffset
Passes thedstOffsetfield to the specifiedConsumer. -
extent
Copies the specifiedVkExtent3Dto theextentfield. -
extent
Passes theextentfield to the specifiedConsumer. -
set
public VkImageResolve2 set(int sType, long pNext, VkImageSubresourceLayers srcSubresource, VkOffset3D srcOffset, VkImageSubresourceLayers dstSubresource, VkOffset3D dstOffset, VkExtent3D extent) Initializes this struct with the specified values. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newVkImageResolve2instance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newVkImageResolve2instance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newVkImageResolve2instance allocated withBufferUtils. -
create
Returns a newVkImageResolve2instance for the specified memory address. -
createSafe
-
malloc
Returns a newVkImageResolve2.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newVkImageResolve2.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newVkImageResolve2.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aVkImageResolve2.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
malloc
Returns a newVkImageResolve2instance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newVkImageResolve2instance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newVkImageResolve2.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newVkImageResolve2.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
nsType
public static int nsType(long struct) Unsafe version ofsType(). -
npNext
public static long npNext(long struct) Unsafe version ofpNext(). -
nsrcSubresource
Unsafe version ofsrcSubresource(). -
nsrcOffset
Unsafe version ofsrcOffset(). -
ndstSubresource
Unsafe version ofdstSubresource(). -
ndstOffset
Unsafe version ofdstOffset(). -
nextent
Unsafe version ofextent(). -
nsType
public static void nsType(long struct, int value) Unsafe version ofsType. -
npNext
public static void npNext(long struct, long value) Unsafe version ofpNext. -
nsrcSubresource
Unsafe version ofsrcSubresource. -
nsrcOffset
Unsafe version ofsrcOffset. -
ndstSubresource
Unsafe version ofdstSubresource. -
ndstOffset
Unsafe version ofdstOffset. -
nextent
Unsafe version ofextent.
-