Package org.lwjgl.vulkan
Class VkPhysicalDeviceMeshShaderPropertiesNV
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.vulkan.VkPhysicalDeviceMeshShaderPropertiesNV
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,org.lwjgl.system.NativeResource
,org.lwjgl.system.Pointer
public class VkPhysicalDeviceMeshShaderPropertiesNV extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResource
Structure describing mesh shading properties.Description
If the
VkPhysicalDeviceMeshShaderPropertiesNV
structure is included in thepNext
chain ofVkPhysicalDeviceProperties2
, it is filled with the implementation-dependent limits.Valid Usage (Implicit)
sType
must beSTRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_NV
Member documentation
sType
– the type of this structure.pNext
–NULL
or a pointer to an extension-specific structure.maxDrawMeshTasksCount
– the maximum number of local workgroups that can be launched by a single draw mesh tasks command. See Programmable Mesh Shading.maxTaskWorkGroupInvocations
– the maximum total number of task shader invocations in a single local workgroup. The product of the X, Y, and Z sizes, as specified by theLocalSize
execution mode in shader modules or by the object decorated by theWorkgroupSize
decoration, must be less than or equal to this limit.maxTaskWorkGroupSize[3]
– the maximum size of a local task workgroup. These three values represent the maximum local workgroup size in the X, Y, and Z dimensions, respectively. Thex
,y
, andz
sizes, as specified by theLocalSize
execution mode or by the object decorated by theWorkgroupSize
decoration in shader modules, must be less than or equal to the corresponding limit.maxTaskTotalMemorySize
– the maximum number of bytes that the task shader can use in total for shared and output memory combined.maxTaskOutputCount
– the maximum number of output tasks a single task shader workgroup can emit.maxMeshWorkGroupInvocations
– the maximum total number of mesh shader invocations in a single local workgroup. The product of the X, Y, and Z sizes, as specified by theLocalSize
execution mode in shader modules or by the object decorated by theWorkgroupSize
decoration, must be less than or equal to this limit.maxMeshWorkGroupSize[3]
– the maximum size of a local mesh workgroup. These three values represent the maximum local workgroup size in the X, Y, and Z dimensions, respectively. Thex
,y
, andz
sizes, as specified by theLocalSize
execution mode or by the object decorated by theWorkgroupSize
decoration in shader modules, must be less than or equal to the corresponding limit.maxMeshTotalMemorySize
– the maximum number of bytes that the mesh shader can use in total for shared and output memory combined.maxMeshOutputVertices
– the maximum number of vertices a mesh shader output can store.maxMeshOutputPrimitives
– the maximum number of primitives a mesh shader output can store.maxMeshMultiviewViewCount
– the maximum number of multi-view views a mesh shader can use.meshOutputPerVertexGranularity
– the granularity with which mesh vertex outputs are allocated. The value can be used to compute the memory size used by the mesh shader, which must be less than or equal tomaxMeshTotalMemorySize
.meshOutputPerPrimitiveGranularity
– the granularity with which mesh outputs qualified as per-primitive are allocated. The value can be used to compute the memory size used by the mesh shader, which must be less than or equal tomaxMeshTotalMemorySize
.
Layout
struct VkPhysicalDeviceMeshShaderPropertiesNV { VkStructureType sType; void * pNext; uint32_t maxDrawMeshTasksCount; uint32_t maxTaskWorkGroupInvocations; uint32_t maxTaskWorkGroupSize[3]; uint32_t maxTaskTotalMemorySize; uint32_t maxTaskOutputCount; uint32_t maxMeshWorkGroupInvocations; uint32_t maxMeshWorkGroupSize[3]; uint32_t maxMeshTotalMemorySize; uint32_t maxMeshOutputVertices; uint32_t maxMeshOutputPrimitives; uint32_t maxMeshMultiviewViewCount; uint32_t meshOutputPerVertexGranularity; uint32_t meshOutputPerPrimitiveGranularity; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
An array ofVkPhysicalDeviceMeshShaderPropertiesNV
structs.
-
Field Summary
Fields Modifier and Type Field Description static int
ALIGNOF
The struct alignment in bytes.static int
MAXDRAWMESHTASKSCOUNT
MAXMESHMULTIVIEWVIEWCOUNT
MAXMESHOUTPUTPRIMITIVES
MAXMESHOUTPUTVERTICES
MAXMESHTOTALMEMORYSIZE
MAXMESHWORKGROUPINVOCATIONS
MAXMESHWORKGROUPSIZE
MAXTASKOUTPUTCOUNT
MAXTASKTOTALMEMORYSIZE
MAXTASKWORKGROUPINVOCATIONS
MAXTASKWORKGROUPSIZE
MESHOUTPUTPERPRIMITIVEGRANULARITY
MESHOUTPUTPERVERTEXGRANULARITY
PNEXTThe struct member offsets.static int
SIZEOF
The struct size in bytes.static int
STYPE
The struct member offsets.
-
Constructor Summary
Constructors Constructor Description VkPhysicalDeviceMeshShaderPropertiesNV(java.nio.ByteBuffer container)
Creates aVkPhysicalDeviceMeshShaderPropertiesNV
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 VkPhysicalDeviceMeshShaderPropertiesNV
calloc()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated withmemCalloc
.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
calloc(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated withmemCalloc
.static VkPhysicalDeviceMeshShaderPropertiesNV
callocStack()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
callocStack(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkPhysicalDeviceMeshShaderPropertiesNV
callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.static VkPhysicalDeviceMeshShaderPropertiesNV
create()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated withBufferUtils
.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
create(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated withBufferUtils
.static VkPhysicalDeviceMeshShaderPropertiesNV
create(long address)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance for the specified memory address.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
create(long address, int capacity)
Create aVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance at the specified memory.static VkPhysicalDeviceMeshShaderPropertiesNV
createSafe(long address)
static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
createSafe(long address, int capacity)
static VkPhysicalDeviceMeshShaderPropertiesNV
malloc()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated withmemAlloc
.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
malloc(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated withmemAlloc
.static VkPhysicalDeviceMeshShaderPropertiesNV
mallocStack()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the thread-localMemoryStack
.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
mallocStack(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the thread-localMemoryStack
.static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer
mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the specifiedMemoryStack
.static VkPhysicalDeviceMeshShaderPropertiesNV
mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the specifiedMemoryStack
.int
maxDrawMeshTasksCount()
Returns the value of themaxDrawMeshTasksCount
field.int
maxMeshMultiviewViewCount()
Returns the value of themaxMeshMultiviewViewCount
field.int
maxMeshOutputPrimitives()
Returns the value of themaxMeshOutputPrimitives
field.int
maxMeshOutputVertices()
Returns the value of themaxMeshOutputVertices
field.int
maxMeshTotalMemorySize()
Returns the value of themaxMeshTotalMemorySize
field.int
maxMeshWorkGroupInvocations()
Returns the value of themaxMeshWorkGroupInvocations
field.java.nio.IntBuffer
maxMeshWorkGroupSize()
Returns aIntBuffer
view of themaxMeshWorkGroupSize
field.int
maxMeshWorkGroupSize(int index)
Returns the value at the specified index of themaxMeshWorkGroupSize
field.int
maxTaskOutputCount()
Returns the value of themaxTaskOutputCount
field.int
maxTaskTotalMemorySize()
Returns the value of themaxTaskTotalMemorySize
field.int
maxTaskWorkGroupInvocations()
Returns the value of themaxTaskWorkGroupInvocations
field.java.nio.IntBuffer
maxTaskWorkGroupSize()
Returns aIntBuffer
view of themaxTaskWorkGroupSize
field.int
maxTaskWorkGroupSize(int index)
Returns the value at the specified index of themaxTaskWorkGroupSize
field.int
meshOutputPerPrimitiveGranularity()
Returns the value of themeshOutputPerPrimitiveGranularity
field.int
meshOutputPerVertexGranularity()
Returns the value of themeshOutputPerVertexGranularity
field.static int
nmaxDrawMeshTasksCount(long struct)
Unsafe version ofmaxDrawMeshTasksCount()
.static int
nmaxMeshMultiviewViewCount(long struct)
Unsafe version ofmaxMeshMultiviewViewCount()
.static int
nmaxMeshOutputPrimitives(long struct)
Unsafe version ofmaxMeshOutputPrimitives()
.static int
nmaxMeshOutputVertices(long struct)
Unsafe version ofmaxMeshOutputVertices()
.static int
nmaxMeshTotalMemorySize(long struct)
Unsafe version ofmaxMeshTotalMemorySize()
.static int
nmaxMeshWorkGroupInvocations(long struct)
Unsafe version ofmaxMeshWorkGroupInvocations()
.static java.nio.IntBuffer
nmaxMeshWorkGroupSize(long struct)
Unsafe version ofmaxMeshWorkGroupSize()
.static int
nmaxMeshWorkGroupSize(long struct, int index)
Unsafe version ofmaxMeshWorkGroupSize
.static int
nmaxTaskOutputCount(long struct)
Unsafe version ofmaxTaskOutputCount()
.static int
nmaxTaskTotalMemorySize(long struct)
Unsafe version ofmaxTaskTotalMemorySize()
.static int
nmaxTaskWorkGroupInvocations(long struct)
Unsafe version ofmaxTaskWorkGroupInvocations()
.static java.nio.IntBuffer
nmaxTaskWorkGroupSize(long struct)
Unsafe version ofmaxTaskWorkGroupSize()
.static int
nmaxTaskWorkGroupSize(long struct, int index)
Unsafe version ofmaxTaskWorkGroupSize
.static int
nmeshOutputPerPrimitiveGranularity(long struct)
Unsafe version ofmeshOutputPerPrimitiveGranularity()
.static int
nmeshOutputPerVertexGranularity(long struct)
Unsafe version ofmeshOutputPerVertexGranularity()
.static long
npNext(long struct)
Unsafe version ofpNext()
.static void
npNext(long struct, long value)
Unsafe version ofpNext
.static int
nsType(long struct)
Unsafe version ofsType()
.static void
nsType(long struct, int value)
Unsafe version ofsType
.long
pNext()
Returns the value of thepNext
field.VkPhysicalDeviceMeshShaderPropertiesNV
pNext(long value)
Sets the specified value to thepNext
field.VkPhysicalDeviceMeshShaderPropertiesNV
set(int sType, long pNext)
Initializes this struct with the specified values.VkPhysicalDeviceMeshShaderPropertiesNV
set(VkPhysicalDeviceMeshShaderPropertiesNV src)
Copies the specified struct data to this struct.int
sizeof()
int
sType()
Returns the value of thesType
field.VkPhysicalDeviceMeshShaderPropertiesNV
sType(int value)
Sets the specified value to thesType
field.
-
-
-
Field Detail
-
SIZEOF
The struct size in bytes.
-
ALIGNOF
The struct alignment in bytes.
-
STYPE, PNEXT, MAXDRAWMESHTASKSCOUNT, MAXTASKWORKGROUPINVOCATIONS, MAXTASKWORKGROUPSIZE, MAXTASKTOTALMEMORYSIZE, MAXTASKOUTPUTCOUNT, MAXMESHWORKGROUPINVOCATIONS, MAXMESHWORKGROUPSIZE, MAXMESHTOTALMEMORYSIZE, MAXMESHOUTPUTVERTICES, MAXMESHOUTPUTPRIMITIVES, MAXMESHMULTIVIEWVIEWCOUNT, MESHOUTPUTPERVERTEXGRANULARITY, MESHOUTPUTPERPRIMITIVEGRANULARITY
The struct member offsets.
-
-
Constructor Detail
-
VkPhysicalDeviceMeshShaderPropertiesNV
public VkPhysicalDeviceMeshShaderPropertiesNV(java.nio.ByteBuffer container)
Creates aVkPhysicalDeviceMeshShaderPropertiesNV
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
-
sType
public int sType()
Returns the value of thesType
field.
-
pNext
public long pNext()
Returns the value of thepNext
field.
-
maxDrawMeshTasksCount
public int maxDrawMeshTasksCount()
Returns the value of themaxDrawMeshTasksCount
field.
-
maxTaskWorkGroupInvocations
public int maxTaskWorkGroupInvocations()
Returns the value of themaxTaskWorkGroupInvocations
field.
-
maxTaskWorkGroupSize
public java.nio.IntBuffer maxTaskWorkGroupSize()
Returns aIntBuffer
view of themaxTaskWorkGroupSize
field.
-
maxTaskWorkGroupSize
public int maxTaskWorkGroupSize(int index)
Returns the value at the specified index of themaxTaskWorkGroupSize
field.
-
maxTaskTotalMemorySize
public int maxTaskTotalMemorySize()
Returns the value of themaxTaskTotalMemorySize
field.
-
maxTaskOutputCount
public int maxTaskOutputCount()
Returns the value of themaxTaskOutputCount
field.
-
maxMeshWorkGroupInvocations
public int maxMeshWorkGroupInvocations()
Returns the value of themaxMeshWorkGroupInvocations
field.
-
maxMeshWorkGroupSize
public java.nio.IntBuffer maxMeshWorkGroupSize()
Returns aIntBuffer
view of themaxMeshWorkGroupSize
field.
-
maxMeshWorkGroupSize
public int maxMeshWorkGroupSize(int index)
Returns the value at the specified index of themaxMeshWorkGroupSize
field.
-
maxMeshTotalMemorySize
public int maxMeshTotalMemorySize()
Returns the value of themaxMeshTotalMemorySize
field.
-
maxMeshOutputVertices
public int maxMeshOutputVertices()
Returns the value of themaxMeshOutputVertices
field.
-
maxMeshOutputPrimitives
public int maxMeshOutputPrimitives()
Returns the value of themaxMeshOutputPrimitives
field.
-
maxMeshMultiviewViewCount
public int maxMeshMultiviewViewCount()
Returns the value of themaxMeshMultiviewViewCount
field.
-
meshOutputPerVertexGranularity
public int meshOutputPerVertexGranularity()
Returns the value of themeshOutputPerVertexGranularity
field.
-
meshOutputPerPrimitiveGranularity
public int meshOutputPerPrimitiveGranularity()
Returns the value of themeshOutputPerPrimitiveGranularity
field.
-
sType
public VkPhysicalDeviceMeshShaderPropertiesNV sType(int value)
Sets the specified value to thesType
field.
-
pNext
public VkPhysicalDeviceMeshShaderPropertiesNV pNext(long value)
Sets the specified value to thepNext
field.
-
set
public VkPhysicalDeviceMeshShaderPropertiesNV set(int sType, long pNext)
Initializes this struct with the specified values.
-
set
public VkPhysicalDeviceMeshShaderPropertiesNV set(VkPhysicalDeviceMeshShaderPropertiesNV src)
Copies the specified struct data to this struct.- Parameters:
src
- the source struct- Returns:
- this struct
-
malloc
public static VkPhysicalDeviceMeshShaderPropertiesNV malloc()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated withmemAlloc
. The instance must be explicitly freed.
-
calloc
public static VkPhysicalDeviceMeshShaderPropertiesNV calloc()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated withmemCalloc
. The instance must be explicitly freed.
-
create
public static VkPhysicalDeviceMeshShaderPropertiesNV create()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated withBufferUtils
.
-
create
public static VkPhysicalDeviceMeshShaderPropertiesNV create(long address)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance for the specified memory address.
-
createSafe
@Nullable public static VkPhysicalDeviceMeshShaderPropertiesNV createSafe(long address)
-
malloc
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer malloc(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated withmemAlloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
calloc
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer calloc(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated withmemCalloc
. The instance must be explicitly freed.- Parameters:
capacity
- the buffer capacity
-
create
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer create(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated withBufferUtils
.- Parameters:
capacity
- the buffer capacity
-
create
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer create(long address, int capacity)
Create aVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer createSafe(long address, int capacity)
-
mallocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV mallocStack()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the thread-localMemoryStack
.
-
callocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV callocStack()
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.
-
mallocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV mallocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocate
-
callocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV callocStack(org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocate
-
mallocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer mallocStack(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the thread-localMemoryStack
.- Parameters:
capacity
- the buffer capacity
-
callocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer callocStack(int capacity)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the thread-localMemoryStack
and initializes all its bits to zero.- Parameters:
capacity
- the buffer capacity
-
mallocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer mallocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the specifiedMemoryStack
.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
callocStack
public static VkPhysicalDeviceMeshShaderPropertiesNV.Buffer callocStack(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newVkPhysicalDeviceMeshShaderPropertiesNV.Buffer
instance allocated on the specifiedMemoryStack
and initializes all its bits to zero.- Parameters:
stack
- the stack from which to allocatecapacity
- the buffer capacity
-
nsType
public static int nsType(long struct)
Unsafe version ofsType()
.
-
npNext
public static long npNext(long struct)
Unsafe version ofpNext()
.
-
nmaxDrawMeshTasksCount
public static int nmaxDrawMeshTasksCount(long struct)
Unsafe version ofmaxDrawMeshTasksCount()
.
-
nmaxTaskWorkGroupInvocations
public static int nmaxTaskWorkGroupInvocations(long struct)
Unsafe version ofmaxTaskWorkGroupInvocations()
.
-
nmaxTaskWorkGroupSize
public static java.nio.IntBuffer nmaxTaskWorkGroupSize(long struct)
Unsafe version ofmaxTaskWorkGroupSize()
.
-
nmaxTaskWorkGroupSize
public static int nmaxTaskWorkGroupSize(long struct, int index)
Unsafe version ofmaxTaskWorkGroupSize
.
-
nmaxTaskTotalMemorySize
public static int nmaxTaskTotalMemorySize(long struct)
Unsafe version ofmaxTaskTotalMemorySize()
.
-
nmaxTaskOutputCount
public static int nmaxTaskOutputCount(long struct)
Unsafe version ofmaxTaskOutputCount()
.
-
nmaxMeshWorkGroupInvocations
public static int nmaxMeshWorkGroupInvocations(long struct)
Unsafe version ofmaxMeshWorkGroupInvocations()
.
-
nmaxMeshWorkGroupSize
public static java.nio.IntBuffer nmaxMeshWorkGroupSize(long struct)
Unsafe version ofmaxMeshWorkGroupSize()
.
-
nmaxMeshWorkGroupSize
public static int nmaxMeshWorkGroupSize(long struct, int index)
Unsafe version ofmaxMeshWorkGroupSize
.
-
nmaxMeshTotalMemorySize
public static int nmaxMeshTotalMemorySize(long struct)
Unsafe version ofmaxMeshTotalMemorySize()
.
-
nmaxMeshOutputVertices
public static int nmaxMeshOutputVertices(long struct)
Unsafe version ofmaxMeshOutputVertices()
.
-
nmaxMeshOutputPrimitives
public static int nmaxMeshOutputPrimitives(long struct)
Unsafe version ofmaxMeshOutputPrimitives()
.
-
nmaxMeshMultiviewViewCount
public static int nmaxMeshMultiviewViewCount(long struct)
Unsafe version ofmaxMeshMultiviewViewCount()
.
-
nmeshOutputPerVertexGranularity
public static int nmeshOutputPerVertexGranularity(long struct)
Unsafe version ofmeshOutputPerVertexGranularity()
.
-
nmeshOutputPerPrimitiveGranularity
public static int nmeshOutputPerPrimitiveGranularity(long struct)
Unsafe version ofmeshOutputPerPrimitiveGranularity()
.
-
nsType
public static void nsType(long struct, int value)
Unsafe version ofsType
.
-
npNext
public static void npNext(long struct, long value)
Unsafe version ofpNext
.
-
-