public class VkQueueFamilyProperties2KHR extends VkQueueFamilyProperties2
VkQueueFamilyProperties2.
struct VkQueueFamilyProperties2KHR {
VkStructureType sType;
void * pNext;
VkQueueFamilyProperties queueFamilyProperties;
}| Modifier and Type | Class and Description |
|---|---|
static class |
VkQueueFamilyProperties2KHR.Buffer
An array of
VkQueueFamilyProperties2KHR structs. |
ALIGNOF, PNEXT, QUEUEFAMILYPROPERTIES, SIZEOF, STYPE| Constructor and Description |
|---|
VkQueueFamilyProperties2KHR(java.nio.ByteBuffer container)
Creates a
VkQueueFamilyProperties2KHR instance at the current position of the specified ByteBuffer container. |
| Modifier and Type | Method and Description |
|---|---|
static VkQueueFamilyProperties2KHR |
calloc()
Returns a new
VkQueueFamilyProperties2KHR instance allocated with memCalloc. |
static VkQueueFamilyProperties2KHR.Buffer |
calloc(int capacity)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated with memCalloc. |
static VkQueueFamilyProperties2KHR |
callocStack()
Returns a new
VkQueueFamilyProperties2KHR instance allocated on the thread-local MemoryStack and initializes all its bits to zero. |
static VkQueueFamilyProperties2KHR.Buffer |
callocStack(int capacity)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated on the thread-local MemoryStack and initializes all its bits to zero. |
static VkQueueFamilyProperties2KHR.Buffer |
callocStack(int capacity,
org.lwjgl.system.MemoryStack stack)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero. |
static VkQueueFamilyProperties2KHR |
callocStack(org.lwjgl.system.MemoryStack stack)
Returns a new
VkQueueFamilyProperties2KHR instance allocated on the specified MemoryStack and initializes all its bits to zero. |
static VkQueueFamilyProperties2KHR |
create()
Returns a new
VkQueueFamilyProperties2KHR instance allocated with BufferUtils. |
static VkQueueFamilyProperties2KHR.Buffer |
create(int capacity)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated with BufferUtils. |
static VkQueueFamilyProperties2KHR |
create(long address)
Returns a new
VkQueueFamilyProperties2KHR instance for the specified memory address. |
static VkQueueFamilyProperties2KHR.Buffer |
create(long address,
int capacity)
Create a
VkQueueFamilyProperties2KHR.Buffer instance at the specified memory. |
static VkQueueFamilyProperties2KHR |
createSafe(long address)
|
static VkQueueFamilyProperties2KHR.Buffer |
createSafe(long address,
int capacity)
|
static VkQueueFamilyProperties2KHR |
malloc()
Returns a new
VkQueueFamilyProperties2KHR instance allocated with memAlloc. |
static VkQueueFamilyProperties2KHR.Buffer |
malloc(int capacity)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated with memAlloc. |
static VkQueueFamilyProperties2KHR |
mallocStack()
Returns a new
VkQueueFamilyProperties2KHR instance allocated on the thread-local MemoryStack. |
static VkQueueFamilyProperties2KHR.Buffer |
mallocStack(int capacity)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated on the thread-local MemoryStack. |
static VkQueueFamilyProperties2KHR.Buffer |
mallocStack(int capacity,
org.lwjgl.system.MemoryStack stack)
Returns a new
VkQueueFamilyProperties2KHR.Buffer instance allocated on the specified MemoryStack. |
static VkQueueFamilyProperties2KHR |
mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a new
VkQueueFamilyProperties2KHR instance allocated on the specified MemoryStack. |
VkQueueFamilyProperties2KHR |
pNext(long value)
Sets the specified value to the
pNext field. |
VkQueueFamilyProperties2KHR |
set(int sType,
long pNext)
Initializes this struct with the specified values.
|
VkQueueFamilyProperties2KHR |
set(VkQueueFamilyProperties2KHR src)
Copies the specified struct data to this struct.
|
VkQueueFamilyProperties2KHR |
sType(int value)
Sets the specified value to the
sType field. |
npNext, npNext, nqueueFamilyProperties, nsType, nsType, pNext, queueFamilyProperties, set, sizeof, sTypepublic VkQueueFamilyProperties2KHR(java.nio.ByteBuffer container)
VkQueueFamilyProperties2KHR instance at the current position of the specified 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 VkQueueFamilyProperties2KHR sType(int value)
sType field.sType in class VkQueueFamilyProperties2public VkQueueFamilyProperties2KHR pNext(long value)
pNext field.pNext in class VkQueueFamilyProperties2public VkQueueFamilyProperties2KHR set(int sType, long pNext)
set in class VkQueueFamilyProperties2public VkQueueFamilyProperties2KHR set(VkQueueFamilyProperties2KHR src)
src - the source structpublic static VkQueueFamilyProperties2KHR malloc()
VkQueueFamilyProperties2KHR instance allocated with memAlloc. The instance must be explicitly freed.public static VkQueueFamilyProperties2KHR calloc()
VkQueueFamilyProperties2KHR instance allocated with memCalloc. The instance must be explicitly freed.public static VkQueueFamilyProperties2KHR create()
VkQueueFamilyProperties2KHR instance allocated with BufferUtils.public static VkQueueFamilyProperties2KHR create(long address)
VkQueueFamilyProperties2KHR instance for the specified memory address.@Nullable public static VkQueueFamilyProperties2KHR createSafe(long address)
public static VkQueueFamilyProperties2KHR.Buffer malloc(int capacity)
VkQueueFamilyProperties2KHR.Buffer instance allocated with memAlloc. The instance must be explicitly freed.capacity - the buffer capacitypublic static VkQueueFamilyProperties2KHR.Buffer calloc(int capacity)
VkQueueFamilyProperties2KHR.Buffer instance allocated with memCalloc. The instance must be explicitly freed.capacity - the buffer capacitypublic static VkQueueFamilyProperties2KHR.Buffer create(int capacity)
VkQueueFamilyProperties2KHR.Buffer instance allocated with BufferUtils.capacity - the buffer capacitypublic static VkQueueFamilyProperties2KHR.Buffer create(long address, int capacity)
VkQueueFamilyProperties2KHR.Buffer instance at the specified memory.address - the memory addresscapacity - the buffer capacity@Nullable public static VkQueueFamilyProperties2KHR.Buffer createSafe(long address, int capacity)
public static VkQueueFamilyProperties2KHR mallocStack()
VkQueueFamilyProperties2KHR instance allocated on the thread-local MemoryStack.public static VkQueueFamilyProperties2KHR callocStack()
VkQueueFamilyProperties2KHR instance allocated on the thread-local MemoryStack and initializes all its bits to zero.public static VkQueueFamilyProperties2KHR mallocStack(org.lwjgl.system.MemoryStack stack)
VkQueueFamilyProperties2KHR instance allocated on the specified MemoryStack.stack - the stack from which to allocatepublic static VkQueueFamilyProperties2KHR callocStack(org.lwjgl.system.MemoryStack stack)
VkQueueFamilyProperties2KHR instance allocated on the specified MemoryStack and initializes all its bits to zero.stack - the stack from which to allocatepublic static VkQueueFamilyProperties2KHR.Buffer mallocStack(int capacity)
VkQueueFamilyProperties2KHR.Buffer instance allocated on the thread-local MemoryStack.capacity - the buffer capacitypublic static VkQueueFamilyProperties2KHR.Buffer callocStack(int capacity)
VkQueueFamilyProperties2KHR.Buffer instance allocated on the thread-local MemoryStack and initializes all its bits to zero.capacity - the buffer capacitypublic static VkQueueFamilyProperties2KHR.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
VkQueueFamilyProperties2KHR.Buffer instance allocated on the specified MemoryStack.stack - the stack from which to allocatecapacity - the buffer capacitypublic static VkQueueFamilyProperties2KHR.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
VkQueueFamilyProperties2KHR.Buffer instance allocated on the specified MemoryStack and initializes all its bits to zero.stack - the stack from which to allocatecapacity - the buffer capacityCopyright LWJGL. All Rights Reserved. License terms.