Package org.lwjgl.vulkan
Class VkClearDepthStencilValue
java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkClearDepthStencilValue>
org.lwjgl.vulkan.VkClearDepthStencilValue
- All Implemented Interfaces:
AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public class VkClearDepthStencilValue
extends org.lwjgl.system.Struct<VkClearDepthStencilValue>
implements org.lwjgl.system.NativeResource
Structure specifying a clear depth stencil value.
Valid Usage
- Unless the
VK_EXT_depth_range_unrestrictedextension is enableddepthmust be between0.0and1.0, inclusive
See Also
VkClearValue, CmdClearDepthStencilImage
Layout
struct VkClearDepthStencilValue {
float depth();
uint32_t stencil();
}-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.lwjgl.system.Struct
org.lwjgl.system.Struct.StructValidationNested classes/interfaces inherited from interface org.lwjgl.system.Pointer
org.lwjgl.system.Pointer.Default -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe struct alignment in bytes.static final intThe struct member offsets.static final intThe struct size in bytes.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
ConstructorsConstructorDescriptionVkClearDepthStencilValue(ByteBuffer container) Creates aVkClearDepthStencilValueinstance at the current position of the specifiedByteBuffercontainer. -
Method Summary
Modifier and TypeMethodDescriptionstatic VkClearDepthStencilValuecalloc()Returns a newVkClearDepthStencilValueinstance allocated withmemCalloc.calloc(int capacity) Returns a newVkClearDepthStencilValue.Bufferinstance allocated withmemCalloc.calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkClearDepthStencilValue.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkClearDepthStencilValuecalloc(org.lwjgl.system.MemoryStack stack) Returns a newVkClearDepthStencilValueinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkClearDepthStencilValueDeprecated.callocStack(int capacity) Deprecated.callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static VkClearDepthStencilValuecallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static VkClearDepthStencilValuecreate()Returns a newVkClearDepthStencilValueinstance allocated withBufferUtils.create(int capacity) Returns a newVkClearDepthStencilValue.Bufferinstance allocated withBufferUtils.static VkClearDepthStencilValuecreate(long address) Returns a newVkClearDepthStencilValueinstance for the specified memory address.create(long address, int capacity) Create aVkClearDepthStencilValue.Bufferinstance at the specified memory.static @Nullable VkClearDepthStencilValuecreateSafe(long address) static @Nullable VkClearDepthStencilValue.BuffercreateSafe(long address, int capacity) floatdepth()the clear value for the depth aspect of the depth/stencil attachment.depth(float value) Sets the specified value to thedepth()field.static VkClearDepthStencilValuemalloc()Returns a newVkClearDepthStencilValueinstance allocated withmemAlloc.malloc(int capacity) Returns a newVkClearDepthStencilValue.Bufferinstance allocated withmemAlloc.malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkClearDepthStencilValue.Bufferinstance allocated on the specifiedMemoryStack.static VkClearDepthStencilValuemalloc(org.lwjgl.system.MemoryStack stack) Returns a newVkClearDepthStencilValueinstance allocated on the specifiedMemoryStack.static VkClearDepthStencilValueDeprecated.mallocStack(int capacity) Deprecated.mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.static VkClearDepthStencilValuemallocStack(org.lwjgl.system.MemoryStack stack) Deprecated.static floatndepth(long struct) Unsafe version ofdepth().static voidndepth(long struct, float value) Unsafe version ofdepth.static intnstencil(long struct) Unsafe version ofstencil().static voidnstencil(long struct, int value) Unsafe version ofstencil.set(float depth, int stencil) Initializes this struct with the specified values.Copies the specified struct data to this struct.intsizeof()intstencil()the clear value for the stencil aspect of the depth/stencil attachment.stencil(int value) Sets the specified value to thestencil()field.Methods inherited from class org.lwjgl.system.Struct
clear, free, isNull, validate, validateMethods 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. -
DEPTH
public static final int DEPTHThe struct member offsets. -
STENCIL
public static final int STENCILThe struct member offsets.
-
-
Constructor Details
-
VkClearDepthStencilValue
Creates aVkClearDepthStencilValueinstance 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()- Specified by:
sizeofin classorg.lwjgl.system.Struct<VkClearDepthStencilValue>
-
depth
public float depth()the clear value for the depth aspect of the depth/stencil attachment. It is a floating-point value which is automatically converted to the attachment’s format. -
stencil
public int stencil()the clear value for the stencil aspect of the depth/stencil attachment. It is a 32-bit integer value which is converted to the attachment’s format by taking the appropriate number of LSBs. -
depth
Sets the specified value to thedepth()field. -
stencil
Sets the specified value to thestencil()field. -
set
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 newVkClearDepthStencilValueinstance allocated withmemAlloc. The instance must be explicitly freed. -
calloc
Returns a newVkClearDepthStencilValueinstance allocated withmemCalloc. The instance must be explicitly freed. -
create
Returns a newVkClearDepthStencilValueinstance allocated withBufferUtils. -
create
Returns a newVkClearDepthStencilValueinstance for the specified memory address. -
createSafe
-
malloc
Returns a newVkClearDepthStencilValue.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
Returns a newVkClearDepthStencilValue.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
Returns a newVkClearDepthStencilValue.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
Create aVkClearDepthStencilValue.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 public static VkClearDepthStencilValue.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usemalloc(int, MemoryStack)instead. -
callocStack
@Deprecated public static VkClearDepthStencilValue.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack) Deprecated.Deprecated for removal in 3.4.0. Usecalloc(int, MemoryStack)instead. -
malloc
Returns a newVkClearDepthStencilValueinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
Returns a newVkClearDepthStencilValueinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
public static VkClearDepthStencilValue.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkClearDepthStencilValue.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
calloc
public static VkClearDepthStencilValue.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack) Returns a newVkClearDepthStencilValue.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacitystack- the stack from which to allocate
-
ndepth
public static float ndepth(long struct) Unsafe version ofdepth(). -
nstencil
public static int nstencil(long struct) Unsafe version ofstencil(). -
ndepth
public static void ndepth(long struct, float value) Unsafe version ofdepth. -
nstencil
public static void nstencil(long struct, int value) Unsafe version ofstencil.
-