Package org.lwjgl.vulkan
Class VkExtent3D
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.vulkan.VkExtent3D
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class VkExtent3D extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
Structure specifying a three-dimensional extent.Member documentation
width
– the width of the extent.height
– the height of the extent.depth
– the depth of the extent.
Layout
struct VkExtent3D { uint32_t width; uint32_t height; uint32_t depth; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VkExtent3D.Buffer
An array ofVkExtent3D
structs.
-
Constructor Summary
Constructors Constructor Description VkExtent3D(java.nio.ByteBuffer container)
Creates aVkExtent3D
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VkExtent3D
calloc()
Returns a newVkExtent3D
instance allocated withmemCalloc
.static VkExtent3D.Buffer
calloc(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated withmemCalloc
.static VkExtent3D
callocStack()
Returns a newVkExtent3D
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkExtent3D.Buffer
callocStack(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkExtent3D.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkExtent3D
callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkExtent3D
create()
Returns a newVkExtent3D
instance allocated withBufferUtils
.static VkExtent3D.Buffer
create(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated withBufferUtils
.static VkExtent3D
create(long address)
Returns a newVkExtent3D
instance for the specified memory address.static VkExtent3D.Buffer
create(long address, int capacity)
Create aVkExtent3D.Buffer
instance at the specified memory.static VkExtent3D
createSafe(long address)
static VkExtent3D.Buffer
createSafe(long address, int capacity)
int
depth()
Returns the value of thedepth
field.VkExtent3D
depth(int value)
Sets the specified value to thedepth
field.int
height()
Returns the value of theheight
field.VkExtent3D
height(int value)
Sets the specified value to theheight
field.static VkExtent3D
malloc()
Returns a newVkExtent3D
instance allocated withmemAlloc
.static VkExtent3D.Buffer
malloc(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated withmemAlloc
.static VkExtent3D
mallocStack()
Returns a newVkExtent3D
instance allocated on the thread-localMemoryStack
.static VkExtent3D.Buffer
mallocStack(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated on the thread-localMemoryStack
.static VkExtent3D.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D.Buffer
instance allocated on the specifiedMemoryStack
.static VkExtent3D
mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D
instance allocated on the specifiedMemoryStack
.static int
ndepth(long struct)
Unsafe version ofdepth()
.static void
ndepth(long struct, int value)
Unsafe version ofdepth
.static int
nheight(long struct)
Unsafe version ofheight()
.static void
nheight(long struct, int value)
Unsafe version ofheight
.static int
nwidth(long struct)
Unsafe version ofwidth()
.static void
nwidth(long struct, int value)
Unsafe version ofwidth
.VkExtent3D
set(int width, int height, int depth)
Initializes this struct with the specified values.VkExtent3D
set(VkExtent3D src)
Copies the specified struct data to this struct.int
sizeof()
int
width()
Returns the value of thewidth
field.VkExtent3D
width(int value)
Sets the specified value to thewidth
field.
-
-
-
Constructor Detail
-
VkExtent3D
public VkExtent3D(java.nio.ByteBuffer container)
Creates aVkExtent3D
instance at the current position of the specifiedByteBuffer
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.
-
-
Method Detail
-
sizeof
public int sizeof()
- Specified by:
sizeof
in classorg.lwjgl.system.Struct
-
width
public int width()
Returns the value of thewidth
field.
-
height
public int height()
Returns the value of theheight
field.
-
depth
public int depth()
Returns the value of thedepth
field.
-
width
public VkExtent3D width(int value)
Sets the specified value to thewidth
field.
-
height
public VkExtent3D height(int value)
Sets the specified value to theheight
field.
-
depth
public VkExtent3D depth(int value)
Sets the specified value to thedepth
field.
-
set
public VkExtent3D set(int width, int height, int depth)
Initializes this struct with the specified values.
-
set
public VkExtent3D set(VkExtent3D src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static VkExtent3D malloc()
Returns a newVkExtent3D
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static VkExtent3D calloc()
Returns a newVkExtent3D
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static VkExtent3D create()
Returns a newVkExtent3D
instance allocated withBufferUtils
.
-
create
public static VkExtent3D create(long address)
Returns a newVkExtent3D
instance for the specified memory address.
-
createSafe
@Nullable public static VkExtent3D createSafe(long address)
-
malloc
public static VkExtent3D.Buffer malloc(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static VkExtent3D.Buffer calloc(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static VkExtent3D.Buffer create(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static VkExtent3D.Buffer create(long address, int capacity)
Create aVkExtent3D.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static VkExtent3D.Buffer createSafe(long address, int capacity)
-
mallocStack
public static VkExtent3D mallocStack()
Returns a newVkExtent3D
instance allocated on the thread-localMemoryStack
.
-
callocStack
public static VkExtent3D callocStack()
Returns a newVkExtent3D
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.
-
mallocStack
public static VkExtent3D mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
callocStack
public static VkExtent3D callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
mallocStack
public static VkExtent3D.Buffer mallocStack(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated on the thread-localMemoryStack
.- Parameters:
capacity
- the buffer capacity
-
callocStack
public static VkExtent3D.Buffer callocStack(int capacity)
Returns a newVkExtent3D.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacity
-
mallocStack
public static VkExtent3D.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
callocStack
public static VkExtent3D.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkExtent3D.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
nwidth
public static int nwidth(long struct)
Unsafe version ofwidth()
.
-
nheight
public static int nheight(long struct)
Unsafe version ofheight()
.
-
ndepth
public static int ndepth(long struct)
Unsafe version ofdepth()
.
-
nwidth
public static void nwidth(long struct, int value)
Unsafe version ofwidth
.
-
nheight
public static void nheight(long struct, int value)
Unsafe version ofheight
.
-
ndepth
public static void ndepth(long struct, int value)
Unsafe version ofdepth
.
-
-