Package org.lwjgl.vulkan
Class VkSemaphoreCreateInfo
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.vulkan.VkSemaphoreCreateInfo
-
- All Implemented Interfaces:
- java.lang.AutoCloseable, NativeResource, Pointer
public class VkSemaphoreCreateInfo extends Struct
Khronos Reference Page
Vulkan SpecificationContains information about how a semaphore object should be created.
Valid Usage
sTypemust beSTRUCTURE_TYPE_SEMAPHORE_CREATE_INFOpNextmust beNULLflagsmust be 0
Member documentation
sType– the type of this structure. Must be:STRUCTURE_TYPE_SEMAPHORE_CREATE_INFOpNext– reserved for use by extensionsflags– reserved for future use
Layout
struct VkSemaphoreCreateInfo { VkStructureType sType; const void * pNext; VkSemaphoreCreateFlags flags; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static classVkSemaphoreCreateInfo.BufferAn array ofVkSemaphoreCreateInfostructs.-
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
-
Field Summary
Fields Modifier and Type Field and Description static intSIZEOFThe struct size in bytes.-
Fields inherited from interface org.lwjgl.system.Pointer
POINTER_SHIFT, POINTER_SIZE
-
-
Constructor Summary
Constructors Constructor and Description VkSemaphoreCreateInfo(java.nio.ByteBuffer container)Creates aVkSemaphoreCreateInfoinstance at the current position of the specifiedByteBuffercontainer.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description static VkSemaphoreCreateInfocalloc()Returns a newVkSemaphoreCreateInfoinstance allocated withmemCalloc.static VkSemaphoreCreateInfo.Buffercalloc(int capacity)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated withmemCalloc.static VkSemaphoreCreateInfocallocStack()Returns a newVkSemaphoreCreateInfoinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.static VkSemaphoreCreateInfo.BuffercallocStack(int capacity)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.static VkSemaphoreCreateInfo.BuffercallocStack(int capacity, MemoryStack stack)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkSemaphoreCreateInfocallocStack(MemoryStack stack)Returns a newVkSemaphoreCreateInfoinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static VkSemaphoreCreateInfocreate()Returns a newVkSemaphoreCreateInfoinstance allocated withBufferUtils.static VkSemaphoreCreateInfo.Buffercreate(int capacity)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated withBufferUtils.static VkSemaphoreCreateInfocreate(long address)Returns a newVkSemaphoreCreateInfoinstance for the specified memory address ornullif the address isNULL.static VkSemaphoreCreateInfo.Buffercreate(long address, int capacity)Create aVkSemaphoreCreateInfo.Bufferinstance at the specified memory.intflags()Returns the value of theflagsfield.VkSemaphoreCreateInfoflags(int value)Sets the specified value to theflagsfield.static VkSemaphoreCreateInfomalloc()Returns a newVkSemaphoreCreateInfoinstance allocated withmemAlloc.static VkSemaphoreCreateInfo.Buffermalloc(int capacity)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated withmemAlloc.static VkSemaphoreCreateInfomallocStack()Returns a newVkSemaphoreCreateInfoinstance allocated on the thread-localMemoryStack.static VkSemaphoreCreateInfo.BuffermallocStack(int capacity)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the thread-localMemoryStack.static VkSemaphoreCreateInfo.BuffermallocStack(int capacity, MemoryStack stack)Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the specifiedMemoryStack.static VkSemaphoreCreateInfomallocStack(MemoryStack stack)Returns a newVkSemaphoreCreateInfoinstance allocated on the specifiedMemoryStack.VkSemaphoreCreateInfonset(long struct)Unsafe version ofset.longpNext()Returns the value of thepNextfield.VkSemaphoreCreateInfopNext(long value)Sets the specified value to thepNextfield.VkSemaphoreCreateInfoset(int sType, long pNext, int flags)Initializes this struct with the specified values.VkSemaphoreCreateInfoset(VkSemaphoreCreateInfo src)Copies the specified struct data to this struct.intsizeof()Returns thesizeof(struct).intsType()Returns the value of thesTypefield.VkSemaphoreCreateInfosType(int value)Sets the specified value to thesTypefield.-
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Methods inherited from interface org.lwjgl.system.NativeResource
close
-
-
-
-
Constructor Detail
-
VkSemaphoreCreateInfo
public VkSemaphoreCreateInfo(java.nio.ByteBuffer container)
Creates aVkSemaphoreCreateInfoinstance 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 Detail
-
sizeof
public int sizeof()
Description copied from class:StructReturns thesizeof(struct).
-
sType
public int sType()
Returns the value of thesTypefield.
-
pNext
public long pNext()
Returns the value of thepNextfield.
-
flags
public int flags()
Returns the value of theflagsfield.
-
sType
public VkSemaphoreCreateInfo sType(int value)
Sets the specified value to thesTypefield.
-
pNext
public VkSemaphoreCreateInfo pNext(long value)
Sets the specified value to thepNextfield.
-
flags
public VkSemaphoreCreateInfo flags(int value)
Sets the specified value to theflagsfield.
-
set
public VkSemaphoreCreateInfo set(int sType, long pNext, int flags)
Initializes this struct with the specified values.
-
nset
public VkSemaphoreCreateInfo nset(long struct)
Unsafe version ofset.
-
set
public VkSemaphoreCreateInfo set(VkSemaphoreCreateInfo src)
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
public static VkSemaphoreCreateInfo malloc()
Returns a newVkSemaphoreCreateInfoinstance allocated withmemAlloc. The instance must be explicitly freed.
-
calloc
public static VkSemaphoreCreateInfo calloc()
Returns a newVkSemaphoreCreateInfoinstance allocated withmemCalloc. The instance must be explicitly freed.
-
create
public static VkSemaphoreCreateInfo create()
Returns a newVkSemaphoreCreateInfoinstance allocated withBufferUtils.
-
create
public static VkSemaphoreCreateInfo create(long address)
Returns a newVkSemaphoreCreateInfoinstance for the specified memory address ornullif the address isNULL.
-
malloc
public static VkSemaphoreCreateInfo.Buffer malloc(int capacity)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
public static VkSemaphoreCreateInfo.Buffer calloc(int capacity)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
public static VkSemaphoreCreateInfo.Buffer create(int capacity)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
public static VkSemaphoreCreateInfo.Buffer create(long address, int capacity)
Create aVkSemaphoreCreateInfo.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
mallocStack
public static VkSemaphoreCreateInfo mallocStack()
Returns a newVkSemaphoreCreateInfoinstance allocated on the thread-localMemoryStack.
-
callocStack
public static VkSemaphoreCreateInfo callocStack()
Returns a newVkSemaphoreCreateInfoinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.
-
mallocStack
public static VkSemaphoreCreateInfo mallocStack(MemoryStack stack)
Returns a newVkSemaphoreCreateInfoinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
callocStack
public static VkSemaphoreCreateInfo callocStack(MemoryStack stack)
Returns a newVkSemaphoreCreateInfoinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
mallocStack
public static VkSemaphoreCreateInfo.Buffer mallocStack(int capacity)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the thread-localMemoryStack.- Parameters:
capacity- the buffer capacity
-
callocStack
public static VkSemaphoreCreateInfo.Buffer callocStack(int capacity)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the thread-localMemoryStackand initializes all its bits to zero.- Parameters:
capacity- the buffer capacity
-
mallocStack
public static VkSemaphoreCreateInfo.Buffer mallocStack(int capacity, MemoryStack stack)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
callocStack
public static VkSemaphoreCreateInfo.Buffer callocStack(int capacity, MemoryStack stack)
Returns a newVkSemaphoreCreateInfo.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
-