Package org.lwjgl.vulkan
Class VkDebugMarkerObjectTagInfoEXT
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.vulkan.VkDebugMarkerObjectTagInfoEXT
-
- All Implemented Interfaces:
- java.lang.AutoCloseable, NativeResource, Pointer
public class VkDebugMarkerObjectTagInfoEXT extends Struct
Passed toDebugMarkerSetObjectTagEXT
to attach arbitrary data to a Vulkan object.Member documentation
sType
– the type of this structure. Must be:STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT
pNext
– reserved for use by extensionsobjectType
– the type of the object to be tagged. One of:object
– the object to be taggedtagName
– a numerical identifier of the tagtagSize
– the number of bytes of data to attach to the objectpTag
– an array oftagSize
bytes containing the data to be associated with the object
Layout
struct VkDebugMarkerObjectTagInfoEXT { VkStructureType sType; const void * pNext; VkDebugReportObjectTypeEXT objectType; uint64_t object; uint64_t tagName; size_t tagSize; const void * pTag; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static class
VkDebugMarkerObjectTagInfoEXT.Buffer
An array ofVkDebugMarkerObjectTagInfoEXT
structs.-
Nested classes/interfaces inherited from interface org.lwjgl.system.Pointer
Pointer.Default
-
-
Field Summary
Fields Modifier and Type Field and Description static int
SIZEOF
The struct size in bytes.-
Fields inherited from interface org.lwjgl.system.Pointer
POINTER_SHIFT, POINTER_SIZE
-
-
Constructor Summary
Constructors Constructor and Description VkDebugMarkerObjectTagInfoEXT(java.nio.ByteBuffer container)
Creates aVkDebugMarkerObjectTagInfoEXT
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description static VkDebugMarkerObjectTagInfoEXT
calloc()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated withmemCalloc
.static VkDebugMarkerObjectTagInfoEXT.Buffer
calloc(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated withmemCalloc
.static VkDebugMarkerObjectTagInfoEXT
callocStack()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkDebugMarkerObjectTagInfoEXT.Buffer
callocStack(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkDebugMarkerObjectTagInfoEXT.Buffer
callocStack(int capacity, MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkDebugMarkerObjectTagInfoEXT
callocStack(MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkDebugMarkerObjectTagInfoEXT
create()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated withBufferUtils
.static VkDebugMarkerObjectTagInfoEXT.Buffer
create(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated withBufferUtils
.static VkDebugMarkerObjectTagInfoEXT
create(long address)
Returns a newVkDebugMarkerObjectTagInfoEXT
instance for the specified memory address ornull
if the address isNULL
.static VkDebugMarkerObjectTagInfoEXT.Buffer
create(long address, int capacity)
Create aVkDebugMarkerObjectTagInfoEXT.Buffer
instance at the specified memory.static VkDebugMarkerObjectTagInfoEXT
malloc()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated withmemAlloc
.static VkDebugMarkerObjectTagInfoEXT.Buffer
malloc(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated withmemAlloc
.static VkDebugMarkerObjectTagInfoEXT
mallocStack()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the thread-localMemoryStack
.static VkDebugMarkerObjectTagInfoEXT.Buffer
mallocStack(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the thread-localMemoryStack
.static VkDebugMarkerObjectTagInfoEXT.Buffer
mallocStack(int capacity, MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the specifiedMemoryStack
.static VkDebugMarkerObjectTagInfoEXT
mallocStack(MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the specifiedMemoryStack
.VkDebugMarkerObjectTagInfoEXT
nset(long struct)
Unsafe version ofset
.long
object()
Returns the value of theobject
field.VkDebugMarkerObjectTagInfoEXT
object(long value)
Sets the specified value to theobject
field.int
objectType()
Returns the value of theobjectType
field.VkDebugMarkerObjectTagInfoEXT
objectType(int value)
Sets the specified value to theobjectType
field.long
pNext()
Returns the value of thepNext
field.VkDebugMarkerObjectTagInfoEXT
pNext(long value)
Sets the specified value to thepNext
field.java.nio.ByteBuffer
pTag()
Returns aByteBuffer
view of the data pointed to by thepTag
field.VkDebugMarkerObjectTagInfoEXT
pTag(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to thepTag
field.VkDebugMarkerObjectTagInfoEXT
set(int sType, long pNext, int objectType, long object, long tagName, java.nio.ByteBuffer pTag)
Initializes this struct with the specified values.VkDebugMarkerObjectTagInfoEXT
set(VkDebugMarkerObjectTagInfoEXT src)
Copies the specified struct data to this struct.int
sizeof()
Returns thesizeof(struct)
.int
sType()
Returns the value of thesType
field.VkDebugMarkerObjectTagInfoEXT
sType(int value)
Sets the specified value to thesType
field.long
tagName()
Returns the value of thetagName
field.VkDebugMarkerObjectTagInfoEXT
tagName(long value)
Sets the specified value to thetagName
field.long
tagSize()
Returns the value of thetagSize
field.static void
validate(long struct)
Validates pointer members that should not beNULL
.static void
validate(long array, int count)
CallsVkDebugMarkerObjectTagInfoEXT.validate(long)
for each struct contained in the specified struct array.-
Methods inherited from class org.lwjgl.system.Pointer.Default
address, equals, hashCode, toString
-
Methods inherited from interface org.lwjgl.system.NativeResource
close
-
-
-
-
Constructor Detail
-
VkDebugMarkerObjectTagInfoEXT
public VkDebugMarkerObjectTagInfoEXT(java.nio.ByteBuffer container)
Creates aVkDebugMarkerObjectTagInfoEXT
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()
Description copied from class:Struct
Returns thesizeof(struct)
.
-
sType
public int sType()
Returns the value of thesType
field.
-
pNext
public long pNext()
Returns the value of thepNext
field.
-
objectType
public int objectType()
Returns the value of theobjectType
field.
-
object
public long object()
Returns the value of theobject
field.
-
tagName
public long tagName()
Returns the value of thetagName
field.
-
tagSize
public long tagSize()
Returns the value of thetagSize
field.
-
pTag
public java.nio.ByteBuffer pTag()
Returns aByteBuffer
view of the data pointed to by thepTag
field.
-
sType
public VkDebugMarkerObjectTagInfoEXT sType(int value)
Sets the specified value to thesType
field.
-
pNext
public VkDebugMarkerObjectTagInfoEXT pNext(long value)
Sets the specified value to thepNext
field.
-
objectType
public VkDebugMarkerObjectTagInfoEXT objectType(int value)
Sets the specified value to theobjectType
field.
-
object
public VkDebugMarkerObjectTagInfoEXT object(long value)
Sets the specified value to theobject
field.
-
tagName
public VkDebugMarkerObjectTagInfoEXT tagName(long value)
Sets the specified value to thetagName
field.
-
pTag
public VkDebugMarkerObjectTagInfoEXT pTag(java.nio.ByteBuffer value)
Sets the address of the specifiedByteBuffer
to thepTag
field.
-
set
public VkDebugMarkerObjectTagInfoEXT set(int sType, long pNext, int objectType, long object, long tagName, java.nio.ByteBuffer pTag)
Initializes this struct with the specified values.
-
nset
public VkDebugMarkerObjectTagInfoEXT nset(long struct)
Unsafe version ofset
.
-
set
public VkDebugMarkerObjectTagInfoEXT set(VkDebugMarkerObjectTagInfoEXT src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static VkDebugMarkerObjectTagInfoEXT malloc()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static VkDebugMarkerObjectTagInfoEXT calloc()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static VkDebugMarkerObjectTagInfoEXT create()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated withBufferUtils
.
-
create
public static VkDebugMarkerObjectTagInfoEXT create(long address)
Returns a newVkDebugMarkerObjectTagInfoEXT
instance for the specified memory address ornull
if the address isNULL
.
-
malloc
public static VkDebugMarkerObjectTagInfoEXT.Buffer malloc(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static VkDebugMarkerObjectTagInfoEXT.Buffer calloc(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static VkDebugMarkerObjectTagInfoEXT.Buffer create(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static VkDebugMarkerObjectTagInfoEXT.Buffer create(long address, int capacity)
Create aVkDebugMarkerObjectTagInfoEXT.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
mallocStack
public static VkDebugMarkerObjectTagInfoEXT mallocStack()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the thread-localMemoryStack
.
-
callocStack
public static VkDebugMarkerObjectTagInfoEXT callocStack()
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.
-
mallocStack
public static VkDebugMarkerObjectTagInfoEXT mallocStack(MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
callocStack
public static VkDebugMarkerObjectTagInfoEXT callocStack(MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
mallocStack
public static VkDebugMarkerObjectTagInfoEXT.Buffer mallocStack(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the thread-localMemoryStack
.- Parameters:
capacity
- the buffer capacity
-
callocStack
public static VkDebugMarkerObjectTagInfoEXT.Buffer callocStack(int capacity)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacity
-
mallocStack
public static VkDebugMarkerObjectTagInfoEXT.Buffer mallocStack(int capacity, MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
callocStack
public static VkDebugMarkerObjectTagInfoEXT.Buffer callocStack(int capacity, MemoryStack stack)
Returns a newVkDebugMarkerObjectTagInfoEXT.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
validate
public static void validate(long struct)
Validates pointer members that should not beNULL
.- Parameters:
struct
- the struct to validate
-
validate
public static void validate(long array, int count)
CallsVkDebugMarkerObjectTagInfoEXT.validate(long)
for each struct contained in the specified struct array.- Parameters:
array
- the struct array to validatecount
- the number of structs inarray
-
-