Package org.lwjgl.vulkan
Class VkClearValue
- All Implemented Interfaces:
AutoCloseable,NativeResource,Pointer
union VkClearValue {
{@link VkClearColorValue VkClearColorValue} color;
{@link VkClearDepthStencilValue VkClearDepthStencilValue} depthStencil;
}-
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 size in bytes.Fields inherited from interface org.lwjgl.system.Pointer
BITS32, BITS64, CLONG_SHIFT, CLONG_SIZE, POINTER_SHIFT, POINTER_SIZE -
Constructor Summary
ConstructorsConstructorDescriptionVkClearValue(ByteBuffer container) Creates aVkClearValueinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkClearValuecalloc()Returns a newVkClearValueinstance allocated withmemCalloc.static VkClearValue.Buffercalloc(int capacity) Returns a newVkClearValue.Bufferinstance allocated withmemCalloc.static VkClearValue.Buffercalloc(int capacity, MemoryStack stack) Returns a newVkClearValue.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkClearValuecalloc(MemoryStack stack) Returns a newVkClearValueinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkClearValueDeprecated.static VkClearValue.BuffercallocStack(int capacity) Deprecated.static VkClearValue.BuffercallocStack(int capacity, MemoryStack stack) Deprecated.static VkClearValuecallocStack(MemoryStack stack) Deprecated.color()color(Consumer<VkClearColorValue> consumer) Passes thecolorfield to the specifiedConsumer.color(VkClearColorValue value) Copies the specifiedVkClearColorValueto thecolorfield.static VkClearValuecreate()Returns a newVkClearValueinstance allocated withBufferUtils.static VkClearValue.Buffercreate(int capacity) Returns a newVkClearValue.Bufferinstance allocated withBufferUtils.static VkClearValuecreate(long address) Returns a newVkClearValueinstance for the specified memory address.static VkClearValue.Buffercreate(long address, int capacity) Create aVkClearValue.Bufferinstance at the specified memory.static @Nullable VkClearValuecreateSafe(long address) static @Nullable VkClearValue.BuffercreateSafe(long address, int capacity) depthStencil(Consumer<VkClearDepthStencilValue> consumer) Passes thedepthStencilfield to the specifiedConsumer.Copies the specifiedVkClearDepthStencilValueto thedepthStencilfield.static VkClearValuemalloc()Returns a newVkClearValueinstance allocated withmemAlloc.static VkClearValue.Buffermalloc(int capacity) Returns a newVkClearValue.Bufferinstance allocated withmemAlloc.static VkClearValue.Buffermalloc(int capacity, MemoryStack stack) Returns a newVkClearValue.Bufferinstance allocated on the specifiedMemoryStack.static VkClearValuemalloc(MemoryStack stack) Returns a newVkClearValueinstance allocated on the specifiedMemoryStack.static VkClearValueDeprecated.static VkClearValue.BuffermallocStack(int capacity) Deprecated.static VkClearValue.BuffermallocStack(int capacity, MemoryStack stack) Deprecated.static VkClearValuemallocStack(MemoryStack stack) Deprecated.static VkClearColorValuencolor(long struct) Unsafe version ofcolor().static voidncolor(long struct, VkClearColorValue value) Unsafe version ofcolor.static VkClearDepthStencilValuendepthStencil(long struct) Unsafe version ofdepthStencil().static voidndepthStencil(long struct, VkClearDepthStencilValue value) Unsafe version ofdepthStencil.set(VkClearValue src) Copies the specified struct data to this struct.intsizeof()Returnssizeof(struct).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. -
COLOR
public static final int COLORThe struct member offsets. -
DEPTHSTENCIL
public static final int DEPTHSTENCILThe struct member offsets.
-
-
Constructor Details
-
VkClearValue
Creates aVkClearValueinstance 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<VkClearValue>
-
color
- Returns:
- a
VkClearColorValueview of thecolorfield.
-
depthStencil
- Returns:
- a
VkClearDepthStencilValueview of thedepthStencilfield.
-
color
Copies the specifiedVkClearColorValueto thecolorfield. -
color
Passes thecolorfield to the specifiedConsumer. -
depthStencil
Copies the specifiedVkClearDepthStencilValueto thedepthStencilfield. -
depthStencil
Passes thedepthStencilfield to the specifiedConsumer. -
set
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
Returns a newVkClearValueinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newVkClearValueinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newVkClearValueinstance allocated withBufferUtils. -
create
Returns a newVkClearValueinstance for the specified memory address. -
createSafe
-
malloc
Returns a newVkClearValue.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newVkClearValue.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newVkClearValue.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aVkClearValue.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
-
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
mallocStack
Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newVkClearValueinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newVkClearValueinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
Returns a newVkClearValue.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
Returns a newVkClearValue.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
ncolor
Unsafe version ofcolor(). -
ndepthStencil
Unsafe version ofdepthStencil(). -
ncolor
Unsafe version ofcolor. -
ndepthStencil
Unsafe version ofdepthStencil.
-