Package org.lwjgl.vulkan
Class VkPhysicalDeviceLimits
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.vulkan.VkPhysicalDeviceLimits
-
- All Implemented Interfaces:
org.lwjgl.system.Pointer
public class VkPhysicalDeviceLimits extends org.lwjgl.system.Struct
Structure reporting implementation-dependent physical device limits.Description
- 1
- For all bitmasks of
VkSampleCountFlagBits
, the sample count limits defined above represent the minimum supported sample counts for each image type. Individual images may support additional sample counts, which are queried usingGetPhysicalDeviceImageFormatProperties
as described in Supported Sample Counts.
See Also
Member documentation
maxImageDimension1D
– the maximum dimension (width
) supported for all images created with animageType
ofIMAGE_TYPE_1D
.maxImageDimension2D
– the maximum dimension (width
orheight
) supported for all images created with animageType
ofIMAGE_TYPE_2D
and withoutIMAGE_CREATE_CUBE_COMPATIBLE_BIT
set inflags
.maxImageDimension3D
– the maximum dimension (width
,height
, ordepth
) supported for all images created with animageType
ofIMAGE_TYPE_3D
.maxImageDimensionCube
– the maximum dimension (width
orheight
) supported for all images created with animageType
ofIMAGE_TYPE_2D
and withIMAGE_CREATE_CUBE_COMPATIBLE_BIT
set inflags
.maxImageArrayLayers
– the maximum number of layers (arrayLayers
) for an image.maxTexelBufferElements
– the maximum number of addressable texels for a buffer view created on a buffer which was created with theBUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT
orBUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT
set in theusage
member of theVkBufferCreateInfo
structure.maxUniformBufferRange
– the maximum value that can be specified in therange
member of anyVkDescriptorBufferInfo
structures passed to a call toUpdateDescriptorSets
for descriptors of typeDESCRIPTOR_TYPE_UNIFORM_BUFFER
orDESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
.maxStorageBufferRange
– the maximum value that can be specified in therange
member of anyVkDescriptorBufferInfo
structures passed to a call toUpdateDescriptorSets
for descriptors of typeDESCRIPTOR_TYPE_STORAGE_BUFFER
orDESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
.maxPushConstantsSize
– the maximum size, in bytes, of the pool of push constant memory. For each of the push constant ranges indicated by thepPushConstantRanges
member of theVkPipelineLayoutCreateInfo
structure,(offset + size)
must be less than or equal to this limit.maxMemoryAllocationCount
– the maximum number of device memory allocations, as created byAllocateMemory
, which can simultaneously exist.maxSamplerAllocationCount
– the maximum number of sampler objects, as created byCreateSampler
, which can simultaneously exist on a device.bufferImageGranularity
– the granularity, in bytes, at which buffer or linear image resources, and optimal image resources can be bound to adjacent offsets in the sameVkDeviceMemory
object without aliasing. See Buffer-Image Granularity for more details.sparseAddressSpaceSize
– the total amount of address space available, in bytes, for sparse memory resources. This is an upper bound on the sum of the size of all sparse resources, regardless of whether any memory is bound to them.maxBoundDescriptorSets
– the maximum number of descriptor sets that can be simultaneously used by a pipeline. AllDescriptorSet
decorations in shader modules must have a value less thanmaxBoundDescriptorSets
. See Descriptor Sets.maxPerStageDescriptorSamplers
– the maximum number of samplers that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_SAMPLER
orDESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. A descriptor is accessible to a shader stage when thestageFlags
member of theVkDescriptorSetLayoutBinding
structure has the bit for that shader stage set. See Sampler and Combined Image Sampler.maxPerStageDescriptorUniformBuffers
– the maximum number of uniform buffers that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_UNIFORM_BUFFER
orDESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. A descriptor is accessible to a shader stage when thestageFlags
member of theVkDescriptorSetLayoutBinding
structure has the bit for that shader stage set. See Uniform Buffer and Dynamic Uniform Buffer.maxPerStageDescriptorStorageBuffers
– the maximum number of storage buffers that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_STORAGE_BUFFER
orDESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. A descriptor is accessible to a pipeline shader stage when thestageFlags
member of theVkDescriptorSetLayoutBinding
structure has the bit for that shader stage set. See Storage Buffer and Dynamic Storage Buffer.maxPerStageDescriptorSampledImages
– the maximum number of sampled images that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER
,DESCRIPTOR_TYPE_SAMPLED_IMAGE
, orDESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. A descriptor is accessible to a pipeline shader stage when thestageFlags
member of theVkDescriptorSetLayoutBinding
structure has the bit for that shader stage set. See Combined Image Sampler, Sampled Image, and Uniform Texel Buffer.maxPerStageDescriptorStorageImages
– the maximum number of storage images that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_STORAGE_IMAGE
, orDESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. A descriptor is accessible to a pipeline shader stage when thestageFlags
member of theVkDescriptorSetLayoutBinding
structure has the bit for that shader stage set. See Storage Image, and Storage Texel Buffer.maxPerStageDescriptorInputAttachments
– the maximum number of input attachments that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_INPUT_ATTACHMENT
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. A descriptor is accessible to a pipeline shader stage when thestageFlags
member of theVkDescriptorSetLayoutBinding
structure has the bit for that shader stage set. These are only supported for the fragment stage. See Input Attachment.maxPerStageResources
– the maximum number of resources that can be accessible to a single shader stage in a pipeline layout. Descriptors with a type ofDESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER
,DESCRIPTOR_TYPE_SAMPLED_IMAGE
,DESCRIPTOR_TYPE_STORAGE_IMAGE
,DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER
,DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER
,DESCRIPTOR_TYPE_UNIFORM_BUFFER
,DESCRIPTOR_TYPE_STORAGE_BUFFER
,DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
,DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
, orDESCRIPTOR_TYPE_INPUT_ATTACHMENT
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. For the fragment shader stage the framebuffer color attachments also count against this limit.maxDescriptorSetSamplers
– the maximum number of samplers that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_SAMPLER
orDESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Sampler and Combined Image Sampler.maxDescriptorSetUniformBuffers
– the maximum number of uniform buffers that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_UNIFORM_BUFFER
orDESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Uniform Buffer and Dynamic Uniform Buffer.maxDescriptorSetUniformBuffersDynamic
– the maximum number of dynamic uniform buffers that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Dynamic Uniform Buffer.maxDescriptorSetStorageBuffers
– the maximum number of storage buffers that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_STORAGE_BUFFER
orDESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Storage Buffer and Dynamic Storage Buffer.maxDescriptorSetStorageBuffersDynamic
– the maximum number of dynamic storage buffers that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Dynamic Storage Buffer.maxDescriptorSetSampledImages
– the maximum number of sampled images that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER
,DESCRIPTOR_TYPE_SAMPLED_IMAGE
, orDESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Combined Image Sampler, Sampled Image, and Uniform Texel Buffer.maxDescriptorSetStorageImages
– the maximum number of storage images that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_STORAGE_IMAGE
, orDESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Storage Image, and Storage Texel Buffer.maxDescriptorSetInputAttachments
– the maximum number of input attachments that can be included in descriptor bindings in a pipeline layout across all pipeline shader stages and descriptor set numbers. Descriptors with a type ofDESCRIPTOR_TYPE_INPUT_ATTACHMENT
count against this limit. Only descriptors in descriptor set layouts created without theDESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT
bit set count against this limit. See Input Attachment.maxVertexInputAttributes
– the maximum number of vertex input attributes that can be specified for a graphics pipeline. These are described in the array ofVkVertexInputAttributeDescription
structures that are provided at graphics pipeline creation time via thepVertexAttributeDescriptions
member of theVkPipelineVertexInputStateCreateInfo
structure. See Vertex Attributes and Vertex Input Description.maxVertexInputBindings
– the maximum number of vertex buffers that can be specified for providing vertex attributes to a graphics pipeline. These are described in the array ofVkVertexInputBindingDescription
structures that are provided at graphics pipeline creation time via thepVertexBindingDescriptions
member of theVkPipelineVertexInputStateCreateInfo
structure. Thebinding
member ofVkVertexInputBindingDescription
must be less than this limit. See Vertex Input Description.maxVertexInputAttributeOffset
– the maximum vertex input attribute offset that can be added to the vertex input binding stride. Theoffset
member of theVkVertexInputAttributeDescription
structure must be less than or equal to this limit. See Vertex Input Description.maxVertexInputBindingStride
– the maximum vertex input binding stride that can be specified in a vertex input binding. Thestride
member of theVkVertexInputBindingDescription
structure must be less than or equal to this limit. See Vertex Input Description.maxVertexOutputComponents
– the maximum number of components of output variables which can be output by a vertex shader. See Vertex Shaders.maxTessellationGenerationLevel
– the maximum tessellation generation level supported by the fixed-function tessellation primitive generator. See Tessellation.maxTessellationPatchSize
– the maximum patch size, in vertices, of patches that can be processed by the tessellation control shader and tessellation primitive generator. ThepatchControlPoints
member of theVkPipelineTessellationStateCreateInfo
structure specified at pipeline creation time and the value provided in theOutputVertices
execution mode of shader modules must be less than or equal to this limit. See Tessellation.maxTessellationControlPerVertexInputComponents
– the maximum number of components of input variables which can be provided as per-vertex inputs to the tessellation control shader stage.maxTessellationControlPerVertexOutputComponents
– the maximum number of components of per-vertex output variables which can be output from the tessellation control shader stage.maxTessellationControlPerPatchOutputComponents
– the maximum number of components of per-patch output variables which can be output from the tessellation control shader stage.maxTessellationControlTotalOutputComponents
– the maximum total number of components of per-vertex and per-patch output variables which can be output from the tessellation control shader stage.maxTessellationEvaluationInputComponents
– the maximum number of components of input variables which can be provided as per-vertex inputs to the tessellation evaluation shader stage.maxTessellationEvaluationOutputComponents
– the maximum number of components of per-vertex output variables which can be output from the tessellation evaluation shader stage.maxGeometryShaderInvocations
– the maximum invocation count supported for instanced geometry shaders. The value provided in theInvocations
execution mode of shader modules must be less than or equal to this limit. See Geometry Shading.maxGeometryInputComponents
– the maximum number of components of input variables which can be provided as inputs to the geometry shader stage.maxGeometryOutputComponents
– the maximum number of components of output variables which can be output from the geometry shader stage.maxGeometryOutputVertices
– the maximum number of vertices which can be emitted by any geometry shader.maxGeometryTotalOutputComponents
– the maximum total number of components of output, across all emitted vertices, which can be output from the geometry shader stage.maxFragmentInputComponents
– the maximum number of components of input variables which can be provided as inputs to the fragment shader stage.maxFragmentOutputAttachments
– the maximum number of output attachments which can be written to by the fragment shader stage.maxFragmentDualSrcAttachments
– the maximum number of output attachments which can be written to by the fragment shader stage when blending is enabled and one of the dual source blend modes is in use. See Dual-Source Blending and dualSrcBlend.maxFragmentCombinedOutputResources
– the total number of storage buffers, storage images, and output buffers which can be used in the fragment shader stage.maxComputeSharedMemorySize
– the maximum total storage size, in bytes, available for variables declared with theWorkgroup
storage class in shader modules (or with theshared
storage qualifier in GLSL) in the compute shader stage. The amount of storage consumed by the variables declared with theWorkgroup
storage class is implementation-dependent. However, the amount of storage consumed may not exceed the largest block size that would be obtained if all active variables declared withWorkgroup
storage class were assigned offsets in an arbitrary order by successively taking the smallest valid offset according to the Standard Storage Buffer Layout rules. (This is equivalent to using the GLSL std430 layout rules.)maxComputeWorkGroupCount[3]
– the maximum number of local workgroups that can be dispatched by a single dispatch command. These three values represent the maximum number of local workgroups for the X, Y, and Z dimensions, respectively. The workgroup count parameters to the dispatch commands must be less than or equal to the corresponding limit. See Dispatching Commands.maxComputeWorkGroupInvocations
– the maximum total number of compute 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.maxComputeWorkGroupSize[3]
– the maximum size of a local compute workgroup, per dimension. 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.subPixelPrecisionBits
– the number of bits of subpixel precision in framebuffer coordinatesxf
andyf
. See Rasterization.subTexelPrecisionBits
– the number of bits of precision in the division along an axis of an image used for minification and magnification filters.2subTexelPrecisionBits
is the actual number of divisions along each axis of the image represented. Sub-texel values calculated during image sampling will snap to these locations when generating the filtered results.mipmapPrecisionBits
– the number of bits of division that the LOD calculation for mipmap fetching get snapped to when determining the contribution from each mip level to the mip filtered results.2mipmapPrecisionBits
is the actual number of divisions.maxDrawIndexedIndexValue
– the maximum index value that can be used for indexed draw calls when using 32-bit indices. This excludes the primitive restart index value of 0xFFFFFFFF. See fullDrawIndexUint32.maxDrawIndirectCount
– the maximum draw count that is supported for indirect draw calls. See multiDrawIndirect.maxSamplerLodBias
– the maximum absolute sampler LOD bias. The sum of themipLodBias
member of theVkSamplerCreateInfo
structure and theBias
operand of image sampling operations in shader modules (or 0 if noBias
operand is provided to an image sampling operation) are clamped to the range[-maxSamplerLodBias,+maxSamplerLodBias]
. See samplers-mipLodBias.maxSamplerAnisotropy
– the maximum degree of sampler anisotropy. The maximum degree of anisotropic filtering used for an image sampling operation is the minimum of themaxAnisotropy
member of theVkSamplerCreateInfo
structure and this limit. See samplers-maxAnisotropy.maxViewports
– the maximum number of active viewports. TheviewportCount
member of theVkPipelineViewportStateCreateInfo
structure that is provided at pipeline creation must be less than or equal to this limit.maxViewportDimensions[2]
– are the maximum viewport dimensions in the X (width) and Y (height) dimensions, respectively. The maximum viewport dimensions must be greater than or equal to the largest image which can be created and used as a framebuffer attachment. See Controlling the Viewport.viewportBoundsRange[2]
– the[minimum, maximum]
range that the corners of a viewport must be contained in. This range must be at least[-2 × size, 2 × size - 1]
, wheresize = max(maxViewportDimensions[0], maxViewportDimensions[1])
. See Controlling the Viewport.Note
The intent of the
viewportBoundsRange
limit is to allow a maximum sized viewport to be arbitrarily shifted relative to the output target as long as at least some portion intersects. This would give a bounds limit of[-size + 1, 2 × size - 1]
which would allow all possible non-empty-set intersections of the output target and the viewport. Since these numbers are typically powers of two, picking the signed number range using the smallest possible number of bits ends up with the specified range.viewportSubPixelBits
– the number of bits of subpixel precision for viewport bounds. The subpixel precision that floating-point viewport bounds are interpreted at is given by this limit.minMemoryMapAlignment
– the minimum required: alignment, in bytes, of host visible memory allocations within the host address space. When mapping a memory allocation withMapMemory
, subtractingoffset
bytes from the returned pointer will always produce an integer multiple of this limit. See Host Access to Device Memory Objects.minTexelBufferOffsetAlignment
– the minimum required: alignment, in bytes, for theoffset
member of theVkBufferViewCreateInfo
structure for texel buffers. If texelBufferAlignment is enabled, this limit is equivalent to the maximum of theuniformTexelBufferOffsetAlignmentBytes
andstorageTexelBufferOffsetAlignmentBytes
members ofVkPhysicalDeviceTexelBufferAlignmentPropertiesEXT
, but smaller alignment is optionally: allowed bystorageTexelBufferOffsetSingleTexelAlignment
anduniformTexelBufferOffsetSingleTexelAlignment
. If texelBufferAlignment is not enabled,VkBufferViewCreateInfo
::offset
must be a multiple of this value.minUniformBufferOffsetAlignment
– the minimum required: alignment, in bytes, for theoffset
member of theVkDescriptorBufferInfo
structure for uniform buffers. When a descriptor of typeDESCRIPTOR_TYPE_UNIFORM_BUFFER
orDESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
is updated, theoffset
must be an integer multiple of this limit. Similarly, dynamic offsets for uniform buffers must be multiples of this limit.minStorageBufferOffsetAlignment
– the minimum required: alignment, in bytes, for theoffset
member of theVkDescriptorBufferInfo
structure for storage buffers. When a descriptor of typeDESCRIPTOR_TYPE_STORAGE_BUFFER
orDESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
is updated, theoffset
must be an integer multiple of this limit. Similarly, dynamic offsets for storage buffers must be multiples of this limit.minTexelOffset
– the minimum offset value for theConstOffset
image operand of any of theOpImageSample
* orOpImageFetch
* image instructions.maxTexelOffset
– the maximum offset value for theConstOffset
image operand of any of theOpImageSample
* orOpImageFetch
* image instructions.minTexelGatherOffset
– the minimum offset value for theOffset
,ConstOffset
, orConstOffsets
image operands of any of theOpImage
*Gather
image instructions.maxTexelGatherOffset
– the maximum offset value for theOffset
,ConstOffset
, orConstOffsets
image operands of any of theOpImage
*Gather
image instructions.minInterpolationOffset
– the minimum negative offset value for theoffset
operand of theInterpolateAtOffset
extended instruction.maxInterpolationOffset
– the maximum positive offset value for theoffset
operand of theInterpolateAtOffset
extended instruction.subPixelInterpolationOffsetBits
– the number of subpixel fractional bits that thex
andy
offsets to theInterpolateAtOffset
extended instruction may be rounded to as fixed-point values.maxFramebufferWidth
– the maximum width for a framebuffer. Thewidth
member of theVkFramebufferCreateInfo
structure must be less than or equal to this limit.maxFramebufferHeight
– the maximum height for a framebuffer. Theheight
member of theVkFramebufferCreateInfo
structure must be less than or equal to this limit.maxFramebufferLayers
– the maximum layer count for a layered framebuffer. Thelayers
member of theVkFramebufferCreateInfo
structure must be less than or equal to this limit.framebufferColorSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the color sample counts that are supported for all framebuffer color attachments with floating- or fixed-point formats. There is no limit that specifies the color sample counts that are supported for all color attachments with integer formats.framebufferDepthSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the supported depth sample counts for all framebuffer depth/stencil attachments, when the format includes a depth component.framebufferStencilSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the supported stencil sample counts for all framebuffer depth/stencil attachments, when the format includes a stencil component.framebufferNoAttachmentsSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the supported sample counts for a framebuffer with no attachments.maxColorAttachments
– the maximum number of color attachments that can be used by a subpass in a render pass. ThecolorAttachmentCount
member of theVkSubpassDescription
structure must be less than or equal to this limit.sampledImageColorSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the sample counts supported for all 2D images created withIMAGE_TILING_OPTIMAL
,usage
containingIMAGE_USAGE_SAMPLED_BIT
, and a non-integer color format.sampledImageIntegerSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the sample counts supported for all 2D images created withIMAGE_TILING_OPTIMAL
,usage
containingIMAGE_USAGE_SAMPLED_BIT
, and an integer color format.sampledImageDepthSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the sample counts supported for all 2D images created withIMAGE_TILING_OPTIMAL
,usage
containingIMAGE_USAGE_SAMPLED_BIT
, and a depth format.sampledImageStencilSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the sample supported for all 2D images created withIMAGE_TILING_OPTIMAL
,usage
containingIMAGE_USAGE_SAMPLED_BIT
, and a stencil format.storageImageSampleCounts
– a bitmask1 ofVkSampleCountFlagBits
indicating the sample counts supported for all 2D images created withIMAGE_TILING_OPTIMAL
, andusage
containingIMAGE_USAGE_STORAGE_BIT
.maxSampleMaskWords
– the maximum number of array elements of a variable decorated with theSampleMask
built-in decoration.timestampComputeAndGraphics
– specifies support for timestamps on all graphics and compute queues. If this limit is set toTRUE
, all queues that advertise theQUEUE_GRAPHICS_BIT
orQUEUE_COMPUTE_BIT
in theVkQueueFamilyProperties
::queueFlags
supportVkQueueFamilyProperties
::timestampValidBits
of at least 36. See Timestamp Queries.timestampPeriod
– the number of nanoseconds required: for a timestamp query to be incremented by 1. See Timestamp Queries.maxClipDistances
– the maximum number of clip distances that can be used in a single shader stage. The size of any array declared with theClipDistance
built-in decoration in a shader module must be less than or equal to this limit.maxCullDistances
– the maximum number of cull distances that can be used in a single shader stage. The size of any array declared with theCullDistance
built-in decoration in a shader module must be less than or equal to this limit.maxCombinedClipAndCullDistances
– the maximum combined number of clip and cull distances that can be used in a single shader stage. The sum of the sizes of any pair of arrays declared with theClipDistance
andCullDistance
built-in decoration used by a single shader stage in a shader module must be less than or equal to this limit.discreteQueuePriorities
– the number of discrete priorities that can be assigned to a queue based on the value of each member ofVkDeviceQueueCreateInfo
::pQueuePriorities
. This must be at least 2, and levels must be spread evenly over the range, with at least one level at 1.0, and another at 0.0. See Queue Priority.pointSizeRange[2]
– the range[minimum,maximum]
of supported sizes for points. Values written to variables decorated with thePointSize
built-in decoration are clamped to this range.lineWidthRange[2]
– the range[minimum,maximum]
of supported widths for lines. Values specified by thelineWidth
member of theVkPipelineRasterizationStateCreateInfo
or thelineWidth
parameter tovkCmdSetLineWidth
are clamped to this range.pointSizeGranularity
– the granularity of supported point sizes. Not all point sizes in the range defined bypointSizeRange
are supported. This limit specifies the granularity (or increment) between successive supported point sizes.lineWidthGranularity
– the granularity of supported line widths. Not all line widths in the range defined bylineWidthRange
are supported. This limit specifies the granularity (or increment) between successive supported line widths.strictLines
– specifies whether lines are rasterized according to the preferred method of rasterization. If set toFALSE
, lines may be rasterized under a relaxed set of rules. If set toTRUE
, lines are rasterized as per the strict definition. See Basic Line Segment Rasterization.standardSampleLocations
– specifies whether rasterization uses the standard sample locations as documented in Multisampling. If set toTRUE
, the implementation uses the documented sample locations. If set toFALSE
, the implementation may use different sample locations.optimalBufferCopyOffsetAlignment
– the optimal buffer offset alignment in bytes forvkCmdCopyBufferToImage
andvkCmdCopyImageToBuffer
. The per texel alignment requirements are enforced, but applications should use the optimal alignment for optimal performance and power use.optimalBufferCopyRowPitchAlignment
– the optimal buffer row pitch alignment in bytes forvkCmdCopyBufferToImage
andvkCmdCopyImageToBuffer
. Row pitch is the number of bytes between texels with the same X coordinate in adjacent rows (Y coordinates differ by one). The per texel alignment requirements are enforced, but applications should use the optimal alignment for optimal performance and power use.nonCoherentAtomSize
– the size and alignment in bytes that bounds concurrent access to host-mapped device memory.
Layout
struct VkPhysicalDeviceLimits { uint32_t maxImageDimension1D; uint32_t maxImageDimension2D; uint32_t maxImageDimension3D; uint32_t maxImageDimensionCube; uint32_t maxImageArrayLayers; uint32_t maxTexelBufferElements; uint32_t maxUniformBufferRange; uint32_t maxStorageBufferRange; uint32_t maxPushConstantsSize; uint32_t maxMemoryAllocationCount; uint32_t maxSamplerAllocationCount; VkDeviceSize bufferImageGranularity; VkDeviceSize sparseAddressSpaceSize; uint32_t maxBoundDescriptorSets; uint32_t maxPerStageDescriptorSamplers; uint32_t maxPerStageDescriptorUniformBuffers; uint32_t maxPerStageDescriptorStorageBuffers; uint32_t maxPerStageDescriptorSampledImages; uint32_t maxPerStageDescriptorStorageImages; uint32_t maxPerStageDescriptorInputAttachments; uint32_t maxPerStageResources; uint32_t maxDescriptorSetSamplers; uint32_t maxDescriptorSetUniformBuffers; uint32_t maxDescriptorSetUniformBuffersDynamic; uint32_t maxDescriptorSetStorageBuffers; uint32_t maxDescriptorSetStorageBuffersDynamic; uint32_t maxDescriptorSetSampledImages; uint32_t maxDescriptorSetStorageImages; uint32_t maxDescriptorSetInputAttachments; uint32_t maxVertexInputAttributes; uint32_t maxVertexInputBindings; uint32_t maxVertexInputAttributeOffset; uint32_t maxVertexInputBindingStride; uint32_t maxVertexOutputComponents; uint32_t maxTessellationGenerationLevel; uint32_t maxTessellationPatchSize; uint32_t maxTessellationControlPerVertexInputComponents; uint32_t maxTessellationControlPerVertexOutputComponents; uint32_t maxTessellationControlPerPatchOutputComponents; uint32_t maxTessellationControlTotalOutputComponents; uint32_t maxTessellationEvaluationInputComponents; uint32_t maxTessellationEvaluationOutputComponents; uint32_t maxGeometryShaderInvocations; uint32_t maxGeometryInputComponents; uint32_t maxGeometryOutputComponents; uint32_t maxGeometryOutputVertices; uint32_t maxGeometryTotalOutputComponents; uint32_t maxFragmentInputComponents; uint32_t maxFragmentOutputAttachments; uint32_t maxFragmentDualSrcAttachments; uint32_t maxFragmentCombinedOutputResources; uint32_t maxComputeSharedMemorySize; uint32_t maxComputeWorkGroupCount[3]; uint32_t maxComputeWorkGroupInvocations; uint32_t maxComputeWorkGroupSize[3]; uint32_t subPixelPrecisionBits; uint32_t subTexelPrecisionBits; uint32_t mipmapPrecisionBits; uint32_t maxDrawIndexedIndexValue; uint32_t maxDrawIndirectCount; float maxSamplerLodBias; float maxSamplerAnisotropy; uint32_t maxViewports; uint32_t maxViewportDimensions[2]; float viewportBoundsRange[2]; uint32_t viewportSubPixelBits; size_t minMemoryMapAlignment; VkDeviceSize minTexelBufferOffsetAlignment; VkDeviceSize minUniformBufferOffsetAlignment; VkDeviceSize minStorageBufferOffsetAlignment; int32_t minTexelOffset; uint32_t maxTexelOffset; int32_t minTexelGatherOffset; uint32_t maxTexelGatherOffset; float minInterpolationOffset; float maxInterpolationOffset; uint32_t subPixelInterpolationOffsetBits; uint32_t maxFramebufferWidth; uint32_t maxFramebufferHeight; uint32_t maxFramebufferLayers; VkSampleCountFlags framebufferColorSampleCounts; VkSampleCountFlags framebufferDepthSampleCounts; VkSampleCountFlags framebufferStencilSampleCounts; VkSampleCountFlags framebufferNoAttachmentsSampleCounts; uint32_t maxColorAttachments; VkSampleCountFlags sampledImageColorSampleCounts; VkSampleCountFlags sampledImageIntegerSampleCounts; VkSampleCountFlags sampledImageDepthSampleCounts; VkSampleCountFlags sampledImageStencilSampleCounts; VkSampleCountFlags storageImageSampleCounts; uint32_t maxSampleMaskWords; VkBool32 timestampComputeAndGraphics; float timestampPeriod; uint32_t maxClipDistances; uint32_t maxCullDistances; uint32_t maxCombinedClipAndCullDistances; uint32_t discreteQueuePriorities; float pointSizeRange[2]; float lineWidthRange[2]; float pointSizeGranularity; float lineWidthGranularity; VkBool32 strictLines; VkBool32 standardSampleLocations; VkDeviceSize optimalBufferCopyOffsetAlignment; VkDeviceSize optimalBufferCopyRowPitchAlignment; VkDeviceSize nonCoherentAtomSize; }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VkPhysicalDeviceLimits.Buffer
An array ofVkPhysicalDeviceLimits
structs.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description VkPhysicalDeviceLimits(java.nio.ByteBuffer container)
Creates aVkPhysicalDeviceLimits
instance at the current position of the specifiedByteBuffer
container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
bufferImageGranularity()
Returns the value of thebufferImageGranularity
field.static VkPhysicalDeviceLimits
create(long address)
Returns a newVkPhysicalDeviceLimits
instance for the specified memory address.static VkPhysicalDeviceLimits.Buffer
create(long address, int capacity)
Create aVkPhysicalDeviceLimits.Buffer
instance at the specified memory.static VkPhysicalDeviceLimits
createSafe(long address)
static VkPhysicalDeviceLimits.Buffer
createSafe(long address, int capacity)
int
discreteQueuePriorities()
Returns the value of thediscreteQueuePriorities
field.int
framebufferColorSampleCounts()
Returns the value of theframebufferColorSampleCounts
field.int
framebufferDepthSampleCounts()
Returns the value of theframebufferDepthSampleCounts
field.int
framebufferNoAttachmentsSampleCounts()
Returns the value of theframebufferNoAttachmentsSampleCounts
field.int
framebufferStencilSampleCounts()
Returns the value of theframebufferStencilSampleCounts
field.float
lineWidthGranularity()
Returns the value of thelineWidthGranularity
field.java.nio.FloatBuffer
lineWidthRange()
Returns aFloatBuffer
view of thelineWidthRange
field.float
lineWidthRange(int index)
Returns the value at the specified index of thelineWidthRange
field.int
maxBoundDescriptorSets()
Returns the value of themaxBoundDescriptorSets
field.int
maxClipDistances()
Returns the value of themaxClipDistances
field.int
maxColorAttachments()
Returns the value of themaxColorAttachments
field.int
maxCombinedClipAndCullDistances()
Returns the value of themaxCombinedClipAndCullDistances
field.int
maxComputeSharedMemorySize()
Returns the value of themaxComputeSharedMemorySize
field.java.nio.IntBuffer
maxComputeWorkGroupCount()
Returns aIntBuffer
view of themaxComputeWorkGroupCount
field.int
maxComputeWorkGroupCount(int index)
Returns the value at the specified index of themaxComputeWorkGroupCount
field.int
maxComputeWorkGroupInvocations()
Returns the value of themaxComputeWorkGroupInvocations
field.java.nio.IntBuffer
maxComputeWorkGroupSize()
Returns aIntBuffer
view of themaxComputeWorkGroupSize
field.int
maxComputeWorkGroupSize(int index)
Returns the value at the specified index of themaxComputeWorkGroupSize
field.int
maxCullDistances()
Returns the value of themaxCullDistances
field.int
maxDescriptorSetInputAttachments()
Returns the value of themaxDescriptorSetInputAttachments
field.int
maxDescriptorSetSampledImages()
Returns the value of themaxDescriptorSetSampledImages
field.int
maxDescriptorSetSamplers()
Returns the value of themaxDescriptorSetSamplers
field.int
maxDescriptorSetStorageBuffers()
Returns the value of themaxDescriptorSetStorageBuffers
field.int
maxDescriptorSetStorageBuffersDynamic()
Returns the value of themaxDescriptorSetStorageBuffersDynamic
field.int
maxDescriptorSetStorageImages()
Returns the value of themaxDescriptorSetStorageImages
field.int
maxDescriptorSetUniformBuffers()
Returns the value of themaxDescriptorSetUniformBuffers
field.int
maxDescriptorSetUniformBuffersDynamic()
Returns the value of themaxDescriptorSetUniformBuffersDynamic
field.int
maxDrawIndexedIndexValue()
Returns the value of themaxDrawIndexedIndexValue
field.int
maxDrawIndirectCount()
Returns the value of themaxDrawIndirectCount
field.int
maxFragmentCombinedOutputResources()
Returns the value of themaxFragmentCombinedOutputResources
field.int
maxFragmentDualSrcAttachments()
Returns the value of themaxFragmentDualSrcAttachments
field.int
maxFragmentInputComponents()
Returns the value of themaxFragmentInputComponents
field.int
maxFragmentOutputAttachments()
Returns the value of themaxFragmentOutputAttachments
field.int
maxFramebufferHeight()
Returns the value of themaxFramebufferHeight
field.int
maxFramebufferLayers()
Returns the value of themaxFramebufferLayers
field.int
maxFramebufferWidth()
Returns the value of themaxFramebufferWidth
field.int
maxGeometryInputComponents()
Returns the value of themaxGeometryInputComponents
field.int
maxGeometryOutputComponents()
Returns the value of themaxGeometryOutputComponents
field.int
maxGeometryOutputVertices()
Returns the value of themaxGeometryOutputVertices
field.int
maxGeometryShaderInvocations()
Returns the value of themaxGeometryShaderInvocations
field.int
maxGeometryTotalOutputComponents()
Returns the value of themaxGeometryTotalOutputComponents
field.int
maxImageArrayLayers()
Returns the value of themaxImageArrayLayers
field.int
maxImageDimension1D()
Returns the value of themaxImageDimension1D
field.int
maxImageDimension2D()
Returns the value of themaxImageDimension2D
field.int
maxImageDimension3D()
Returns the value of themaxImageDimension3D
field.int
maxImageDimensionCube()
Returns the value of themaxImageDimensionCube
field.float
maxInterpolationOffset()
Returns the value of themaxInterpolationOffset
field.int
maxMemoryAllocationCount()
Returns the value of themaxMemoryAllocationCount
field.int
maxPerStageDescriptorInputAttachments()
Returns the value of themaxPerStageDescriptorInputAttachments
field.int
maxPerStageDescriptorSampledImages()
Returns the value of themaxPerStageDescriptorSampledImages
field.int
maxPerStageDescriptorSamplers()
Returns the value of themaxPerStageDescriptorSamplers
field.int
maxPerStageDescriptorStorageBuffers()
Returns the value of themaxPerStageDescriptorStorageBuffers
field.int
maxPerStageDescriptorStorageImages()
Returns the value of themaxPerStageDescriptorStorageImages
field.int
maxPerStageDescriptorUniformBuffers()
Returns the value of themaxPerStageDescriptorUniformBuffers
field.int
maxPerStageResources()
Returns the value of themaxPerStageResources
field.int
maxPushConstantsSize()
Returns the value of themaxPushConstantsSize
field.int
maxSampleMaskWords()
Returns the value of themaxSampleMaskWords
field.int
maxSamplerAllocationCount()
Returns the value of themaxSamplerAllocationCount
field.float
maxSamplerAnisotropy()
Returns the value of themaxSamplerAnisotropy
field.float
maxSamplerLodBias()
Returns the value of themaxSamplerLodBias
field.int
maxStorageBufferRange()
Returns the value of themaxStorageBufferRange
field.int
maxTessellationControlPerPatchOutputComponents()
Returns the value of themaxTessellationControlPerPatchOutputComponents
field.int
maxTessellationControlPerVertexInputComponents()
Returns the value of themaxTessellationControlPerVertexInputComponents
field.int
maxTessellationControlPerVertexOutputComponents()
Returns the value of themaxTessellationControlPerVertexOutputComponents
field.int
maxTessellationControlTotalOutputComponents()
Returns the value of themaxTessellationControlTotalOutputComponents
field.int
maxTessellationEvaluationInputComponents()
Returns the value of themaxTessellationEvaluationInputComponents
field.int
maxTessellationEvaluationOutputComponents()
Returns the value of themaxTessellationEvaluationOutputComponents
field.int
maxTessellationGenerationLevel()
Returns the value of themaxTessellationGenerationLevel
field.int
maxTessellationPatchSize()
Returns the value of themaxTessellationPatchSize
field.int
maxTexelBufferElements()
Returns the value of themaxTexelBufferElements
field.int
maxTexelGatherOffset()
Returns the value of themaxTexelGatherOffset
field.int
maxTexelOffset()
Returns the value of themaxTexelOffset
field.int
maxUniformBufferRange()
Returns the value of themaxUniformBufferRange
field.int
maxVertexInputAttributeOffset()
Returns the value of themaxVertexInputAttributeOffset
field.int
maxVertexInputAttributes()
Returns the value of themaxVertexInputAttributes
field.int
maxVertexInputBindings()
Returns the value of themaxVertexInputBindings
field.int
maxVertexInputBindingStride()
Returns the value of themaxVertexInputBindingStride
field.int
maxVertexOutputComponents()
Returns the value of themaxVertexOutputComponents
field.java.nio.IntBuffer
maxViewportDimensions()
Returns aIntBuffer
view of themaxViewportDimensions
field.int
maxViewportDimensions(int index)
Returns the value at the specified index of themaxViewportDimensions
field.int
maxViewports()
Returns the value of themaxViewports
field.float
minInterpolationOffset()
Returns the value of theminInterpolationOffset
field.long
minMemoryMapAlignment()
Returns the value of theminMemoryMapAlignment
field.long
minStorageBufferOffsetAlignment()
Returns the value of theminStorageBufferOffsetAlignment
field.long
minTexelBufferOffsetAlignment()
Returns the value of theminTexelBufferOffsetAlignment
field.int
minTexelGatherOffset()
Returns the value of theminTexelGatherOffset
field.int
minTexelOffset()
Returns the value of theminTexelOffset
field.long
minUniformBufferOffsetAlignment()
Returns the value of theminUniformBufferOffsetAlignment
field.int
mipmapPrecisionBits()
Returns the value of themipmapPrecisionBits
field.static long
nbufferImageGranularity(long struct)
Unsafe version ofbufferImageGranularity()
.static int
ndiscreteQueuePriorities(long struct)
Unsafe version ofdiscreteQueuePriorities()
.static int
nframebufferColorSampleCounts(long struct)
Unsafe version offramebufferColorSampleCounts()
.static int
nframebufferDepthSampleCounts(long struct)
Unsafe version offramebufferDepthSampleCounts()
.static int
nframebufferNoAttachmentsSampleCounts(long struct)
Unsafe version offramebufferNoAttachmentsSampleCounts()
.static int
nframebufferStencilSampleCounts(long struct)
Unsafe version offramebufferStencilSampleCounts()
.static float
nlineWidthGranularity(long struct)
Unsafe version oflineWidthGranularity()
.static java.nio.FloatBuffer
nlineWidthRange(long struct)
Unsafe version oflineWidthRange()
.static float
nlineWidthRange(long struct, int index)
Unsafe version oflineWidthRange
.static int
nmaxBoundDescriptorSets(long struct)
Unsafe version ofmaxBoundDescriptorSets()
.static int
nmaxClipDistances(long struct)
Unsafe version ofmaxClipDistances()
.static int
nmaxColorAttachments(long struct)
Unsafe version ofmaxColorAttachments()
.static int
nmaxCombinedClipAndCullDistances(long struct)
Unsafe version ofmaxCombinedClipAndCullDistances()
.static int
nmaxComputeSharedMemorySize(long struct)
Unsafe version ofmaxComputeSharedMemorySize()
.static java.nio.IntBuffer
nmaxComputeWorkGroupCount(long struct)
Unsafe version ofmaxComputeWorkGroupCount()
.static int
nmaxComputeWorkGroupCount(long struct, int index)
Unsafe version ofmaxComputeWorkGroupCount
.static int
nmaxComputeWorkGroupInvocations(long struct)
Unsafe version ofmaxComputeWorkGroupInvocations()
.static java.nio.IntBuffer
nmaxComputeWorkGroupSize(long struct)
Unsafe version ofmaxComputeWorkGroupSize()
.static int
nmaxComputeWorkGroupSize(long struct, int index)
Unsafe version ofmaxComputeWorkGroupSize
.static int
nmaxCullDistances(long struct)
Unsafe version ofmaxCullDistances()
.static int
nmaxDescriptorSetInputAttachments(long struct)
Unsafe version ofmaxDescriptorSetInputAttachments()
.static int
nmaxDescriptorSetSampledImages(long struct)
Unsafe version ofmaxDescriptorSetSampledImages()
.static int
nmaxDescriptorSetSamplers(long struct)
Unsafe version ofmaxDescriptorSetSamplers()
.static int
nmaxDescriptorSetStorageBuffers(long struct)
Unsafe version ofmaxDescriptorSetStorageBuffers()
.static int
nmaxDescriptorSetStorageBuffersDynamic(long struct)
Unsafe version ofmaxDescriptorSetStorageBuffersDynamic()
.static int
nmaxDescriptorSetStorageImages(long struct)
Unsafe version ofmaxDescriptorSetStorageImages()
.static int
nmaxDescriptorSetUniformBuffers(long struct)
Unsafe version ofmaxDescriptorSetUniformBuffers()
.static int
nmaxDescriptorSetUniformBuffersDynamic(long struct)
Unsafe version ofmaxDescriptorSetUniformBuffersDynamic()
.static int
nmaxDrawIndexedIndexValue(long struct)
Unsafe version ofmaxDrawIndexedIndexValue()
.static int
nmaxDrawIndirectCount(long struct)
Unsafe version ofmaxDrawIndirectCount()
.static int
nmaxFragmentCombinedOutputResources(long struct)
Unsafe version ofmaxFragmentCombinedOutputResources()
.static int
nmaxFragmentDualSrcAttachments(long struct)
Unsafe version ofmaxFragmentDualSrcAttachments()
.static int
nmaxFragmentInputComponents(long struct)
Unsafe version ofmaxFragmentInputComponents()
.static int
nmaxFragmentOutputAttachments(long struct)
Unsafe version ofmaxFragmentOutputAttachments()
.static int
nmaxFramebufferHeight(long struct)
Unsafe version ofmaxFramebufferHeight()
.static int
nmaxFramebufferLayers(long struct)
Unsafe version ofmaxFramebufferLayers()
.static int
nmaxFramebufferWidth(long struct)
Unsafe version ofmaxFramebufferWidth()
.static int
nmaxGeometryInputComponents(long struct)
Unsafe version ofmaxGeometryInputComponents()
.static int
nmaxGeometryOutputComponents(long struct)
Unsafe version ofmaxGeometryOutputComponents()
.static int
nmaxGeometryOutputVertices(long struct)
Unsafe version ofmaxGeometryOutputVertices()
.static int
nmaxGeometryShaderInvocations(long struct)
Unsafe version ofmaxGeometryShaderInvocations()
.static int
nmaxGeometryTotalOutputComponents(long struct)
Unsafe version ofmaxGeometryTotalOutputComponents()
.static int
nmaxImageArrayLayers(long struct)
Unsafe version ofmaxImageArrayLayers()
.static int
nmaxImageDimension1D(long struct)
Unsafe version ofmaxImageDimension1D()
.static int
nmaxImageDimension2D(long struct)
Unsafe version ofmaxImageDimension2D()
.static int
nmaxImageDimension3D(long struct)
Unsafe version ofmaxImageDimension3D()
.static int
nmaxImageDimensionCube(long struct)
Unsafe version ofmaxImageDimensionCube()
.static float
nmaxInterpolationOffset(long struct)
Unsafe version ofmaxInterpolationOffset()
.static int
nmaxMemoryAllocationCount(long struct)
Unsafe version ofmaxMemoryAllocationCount()
.static int
nmaxPerStageDescriptorInputAttachments(long struct)
Unsafe version ofmaxPerStageDescriptorInputAttachments()
.static int
nmaxPerStageDescriptorSampledImages(long struct)
Unsafe version ofmaxPerStageDescriptorSampledImages()
.static int
nmaxPerStageDescriptorSamplers(long struct)
Unsafe version ofmaxPerStageDescriptorSamplers()
.static int
nmaxPerStageDescriptorStorageBuffers(long struct)
Unsafe version ofmaxPerStageDescriptorStorageBuffers()
.static int
nmaxPerStageDescriptorStorageImages(long struct)
Unsafe version ofmaxPerStageDescriptorStorageImages()
.static int
nmaxPerStageDescriptorUniformBuffers(long struct)
Unsafe version ofmaxPerStageDescriptorUniformBuffers()
.static int
nmaxPerStageResources(long struct)
Unsafe version ofmaxPerStageResources()
.static int
nmaxPushConstantsSize(long struct)
Unsafe version ofmaxPushConstantsSize()
.static int
nmaxSampleMaskWords(long struct)
Unsafe version ofmaxSampleMaskWords()
.static int
nmaxSamplerAllocationCount(long struct)
Unsafe version ofmaxSamplerAllocationCount()
.static float
nmaxSamplerAnisotropy(long struct)
Unsafe version ofmaxSamplerAnisotropy()
.static float
nmaxSamplerLodBias(long struct)
Unsafe version ofmaxSamplerLodBias()
.static int
nmaxStorageBufferRange(long struct)
Unsafe version ofmaxStorageBufferRange()
.static int
nmaxTessellationControlPerPatchOutputComponents(long struct)
Unsafe version ofmaxTessellationControlPerPatchOutputComponents()
.static int
nmaxTessellationControlPerVertexInputComponents(long struct)
Unsafe version ofmaxTessellationControlPerVertexInputComponents()
.static int
nmaxTessellationControlPerVertexOutputComponents(long struct)
Unsafe version ofmaxTessellationControlPerVertexOutputComponents()
.static int
nmaxTessellationControlTotalOutputComponents(long struct)
Unsafe version ofmaxTessellationControlTotalOutputComponents()
.static int
nmaxTessellationEvaluationInputComponents(long struct)
Unsafe version ofmaxTessellationEvaluationInputComponents()
.static int
nmaxTessellationEvaluationOutputComponents(long struct)
Unsafe version ofmaxTessellationEvaluationOutputComponents()
.static int
nmaxTessellationGenerationLevel(long struct)
Unsafe version ofmaxTessellationGenerationLevel()
.static int
nmaxTessellationPatchSize(long struct)
Unsafe version ofmaxTessellationPatchSize()
.static int
nmaxTexelBufferElements(long struct)
Unsafe version ofmaxTexelBufferElements()
.static int
nmaxTexelGatherOffset(long struct)
Unsafe version ofmaxTexelGatherOffset()
.static int
nmaxTexelOffset(long struct)
Unsafe version ofmaxTexelOffset()
.static int
nmaxUniformBufferRange(long struct)
Unsafe version ofmaxUniformBufferRange()
.static int
nmaxVertexInputAttributeOffset(long struct)
Unsafe version ofmaxVertexInputAttributeOffset()
.static int
nmaxVertexInputAttributes(long struct)
Unsafe version ofmaxVertexInputAttributes()
.static int
nmaxVertexInputBindings(long struct)
Unsafe version ofmaxVertexInputBindings()
.static int
nmaxVertexInputBindingStride(long struct)
Unsafe version ofmaxVertexInputBindingStride()
.static int
nmaxVertexOutputComponents(long struct)
Unsafe version ofmaxVertexOutputComponents()
.static java.nio.IntBuffer
nmaxViewportDimensions(long struct)
Unsafe version ofmaxViewportDimensions()
.static int
nmaxViewportDimensions(long struct, int index)
Unsafe version ofmaxViewportDimensions
.static int
nmaxViewports(long struct)
Unsafe version ofmaxViewports()
.static float
nminInterpolationOffset(long struct)
Unsafe version ofminInterpolationOffset()
.static long
nminMemoryMapAlignment(long struct)
Unsafe version ofminMemoryMapAlignment()
.static long
nminStorageBufferOffsetAlignment(long struct)
Unsafe version ofminStorageBufferOffsetAlignment()
.static long
nminTexelBufferOffsetAlignment(long struct)
Unsafe version ofminTexelBufferOffsetAlignment()
.static int
nminTexelGatherOffset(long struct)
Unsafe version ofminTexelGatherOffset()
.static int
nminTexelOffset(long struct)
Unsafe version ofminTexelOffset()
.static long
nminUniformBufferOffsetAlignment(long struct)
Unsafe version ofminUniformBufferOffsetAlignment()
.static int
nmipmapPrecisionBits(long struct)
Unsafe version ofmipmapPrecisionBits()
.static long
nnonCoherentAtomSize(long struct)
Unsafe version ofnonCoherentAtomSize()
.long
nonCoherentAtomSize()
Returns the value of thenonCoherentAtomSize
field.static long
noptimalBufferCopyOffsetAlignment(long struct)
Unsafe version ofoptimalBufferCopyOffsetAlignment()
.static long
noptimalBufferCopyRowPitchAlignment(long struct)
Unsafe version ofoptimalBufferCopyRowPitchAlignment()
.static float
npointSizeGranularity(long struct)
Unsafe version ofpointSizeGranularity()
.static java.nio.FloatBuffer
npointSizeRange(long struct)
Unsafe version ofpointSizeRange()
.static float
npointSizeRange(long struct, int index)
Unsafe version ofpointSizeRange
.static int
nsampledImageColorSampleCounts(long struct)
Unsafe version ofsampledImageColorSampleCounts()
.static int
nsampledImageDepthSampleCounts(long struct)
Unsafe version ofsampledImageDepthSampleCounts()
.static int
nsampledImageIntegerSampleCounts(long struct)
Unsafe version ofsampledImageIntegerSampleCounts()
.static int
nsampledImageStencilSampleCounts(long struct)
Unsafe version ofsampledImageStencilSampleCounts()
.static long
nsparseAddressSpaceSize(long struct)
Unsafe version ofsparseAddressSpaceSize()
.static int
nstandardSampleLocations(long struct)
Unsafe version ofstandardSampleLocations()
.static int
nstorageImageSampleCounts(long struct)
Unsafe version ofstorageImageSampleCounts()
.static int
nstrictLines(long struct)
Unsafe version ofstrictLines()
.static int
nsubPixelInterpolationOffsetBits(long struct)
Unsafe version ofsubPixelInterpolationOffsetBits()
.static int
nsubPixelPrecisionBits(long struct)
Unsafe version ofsubPixelPrecisionBits()
.static int
nsubTexelPrecisionBits(long struct)
Unsafe version ofsubTexelPrecisionBits()
.static int
ntimestampComputeAndGraphics(long struct)
Unsafe version oftimestampComputeAndGraphics()
.static float
ntimestampPeriod(long struct)
Unsafe version oftimestampPeriod()
.static java.nio.FloatBuffer
nviewportBoundsRange(long struct)
Unsafe version ofviewportBoundsRange()
.static float
nviewportBoundsRange(long struct, int index)
Unsafe version ofviewportBoundsRange
.static int
nviewportSubPixelBits(long struct)
Unsafe version ofviewportSubPixelBits()
.long
optimalBufferCopyOffsetAlignment()
Returns the value of theoptimalBufferCopyOffsetAlignment
field.long
optimalBufferCopyRowPitchAlignment()
Returns the value of theoptimalBufferCopyRowPitchAlignment
field.float
pointSizeGranularity()
Returns the value of thepointSizeGranularity
field.java.nio.FloatBuffer
pointSizeRange()
Returns aFloatBuffer
view of thepointSizeRange
field.float
pointSizeRange(int index)
Returns the value at the specified index of thepointSizeRange
field.int
sampledImageColorSampleCounts()
Returns the value of thesampledImageColorSampleCounts
field.int
sampledImageDepthSampleCounts()
Returns the value of thesampledImageDepthSampleCounts
field.int
sampledImageIntegerSampleCounts()
Returns the value of thesampledImageIntegerSampleCounts
field.int
sampledImageStencilSampleCounts()
Returns the value of thesampledImageStencilSampleCounts
field.int
sizeof()
long
sparseAddressSpaceSize()
Returns the value of thesparseAddressSpaceSize
field.boolean
standardSampleLocations()
Returns the value of thestandardSampleLocations
field.int
storageImageSampleCounts()
Returns the value of thestorageImageSampleCounts
field.boolean
strictLines()
Returns the value of thestrictLines
field.int
subPixelInterpolationOffsetBits()
Returns the value of thesubPixelInterpolationOffsetBits
field.int
subPixelPrecisionBits()
Returns the value of thesubPixelPrecisionBits
field.int
subTexelPrecisionBits()
Returns the value of thesubTexelPrecisionBits
field.boolean
timestampComputeAndGraphics()
Returns the value of thetimestampComputeAndGraphics
field.float
timestampPeriod()
Returns the value of thetimestampPeriod
field.java.nio.FloatBuffer
viewportBoundsRange()
Returns aFloatBuffer
view of theviewportBoundsRange
field.float
viewportBoundsRange(int index)
Returns the value at the specified index of theviewportBoundsRange
field.int
viewportSubPixelBits()
Returns the value of theviewportSubPixelBits
field.
-
-
-
Field Detail
-
SIZEOF
The struct size in bytes.
-
ALIGNOF
The struct alignment in bytes.
-
MAXIMAGEDIMENSION1D, MAXIMAGEDIMENSION2D, MAXIMAGEDIMENSION3D, MAXIMAGEDIMENSIONCUBE, MAXIMAGEARRAYLAYERS, MAXTEXELBUFFERELEMENTS, MAXUNIFORMBUFFERRANGE, MAXSTORAGEBUFFERRANGE, MAXPUSHCONSTANTSSIZE, MAXMEMORYALLOCATIONCOUNT, MAXSAMPLERALLOCATIONCOUNT, BUFFERIMAGEGRANULARITY, SPARSEADDRESSSPACESIZE, MAXBOUNDDESCRIPTORSETS, MAXPERSTAGEDESCRIPTORSAMPLERS, MAXPERSTAGEDESCRIPTORUNIFORMBUFFERS, MAXPERSTAGEDESCRIPTORSTORAGEBUFFERS, MAXPERSTAGEDESCRIPTORSAMPLEDIMAGES, MAXPERSTAGEDESCRIPTORSTORAGEIMAGES, MAXPERSTAGEDESCRIPTORINPUTATTACHMENTS, MAXPERSTAGERESOURCES, MAXDESCRIPTORSETSAMPLERS, MAXDESCRIPTORSETUNIFORMBUFFERS, MAXDESCRIPTORSETUNIFORMBUFFERSDYNAMIC, MAXDESCRIPTORSETSTORAGEBUFFERS, MAXDESCRIPTORSETSTORAGEBUFFERSDYNAMIC, MAXDESCRIPTORSETSAMPLEDIMAGES, MAXDESCRIPTORSETSTORAGEIMAGES, MAXDESCRIPTORSETINPUTATTACHMENTS, MAXVERTEXINPUTATTRIBUTES, MAXVERTEXINPUTBINDINGS, MAXVERTEXINPUTATTRIBUTEOFFSET, MAXVERTEXINPUTBINDINGSTRIDE, MAXVERTEXOUTPUTCOMPONENTS, MAXTESSELLATIONGENERATIONLEVEL, MAXTESSELLATIONPATCHSIZE, MAXTESSELLATIONCONTROLPERVERTEXINPUTCOMPONENTS, MAXTESSELLATIONCONTROLPERVERTEXOUTPUTCOMPONENTS, MAXTESSELLATIONCONTROLPERPATCHOUTPUTCOMPONENTS, MAXTESSELLATIONCONTROLTOTALOUTPUTCOMPONENTS, MAXTESSELLATIONEVALUATIONINPUTCOMPONENTS, MAXTESSELLATIONEVALUATIONOUTPUTCOMPONENTS, MAXGEOMETRYSHADERINVOCATIONS, MAXGEOMETRYINPUTCOMPONENTS, MAXGEOMETRYOUTPUTCOMPONENTS, MAXGEOMETRYOUTPUTVERTICES, MAXGEOMETRYTOTALOUTPUTCOMPONENTS, MAXFRAGMENTINPUTCOMPONENTS, MAXFRAGMENTOUTPUTATTACHMENTS, MAXFRAGMENTDUALSRCATTACHMENTS, MAXFRAGMENTCOMBINEDOUTPUTRESOURCES, MAXCOMPUTESHAREDMEMORYSIZE, MAXCOMPUTEWORKGROUPCOUNT, MAXCOMPUTEWORKGROUPINVOCATIONS, MAXCOMPUTEWORKGROUPSIZE, SUBPIXELPRECISIONBITS, SUBTEXELPRECISIONBITS, MIPMAPPRECISIONBITS, MAXDRAWINDEXEDINDEXVALUE, MAXDRAWINDIRECTCOUNT, MAXSAMPLERLODBIAS, MAXSAMPLERANISOTROPY, MAXVIEWPORTS, MAXVIEWPORTDIMENSIONS, VIEWPORTBOUNDSRANGE, VIEWPORTSUBPIXELBITS, MINMEMORYMAPALIGNMENT, MINTEXELBUFFEROFFSETALIGNMENT, MINUNIFORMBUFFEROFFSETALIGNMENT, MINSTORAGEBUFFEROFFSETALIGNMENT, MINTEXELOFFSET, MAXTEXELOFFSET, MINTEXELGATHEROFFSET, MAXTEXELGATHEROFFSET, MININTERPOLATIONOFFSET, MAXINTERPOLATIONOFFSET, SUBPIXELINTERPOLATIONOFFSETBITS, MAXFRAMEBUFFERWIDTH, MAXFRAMEBUFFERHEIGHT, MAXFRAMEBUFFERLAYERS, FRAMEBUFFERCOLORSAMPLECOUNTS, FRAMEBUFFERDEPTHSAMPLECOUNTS, FRAMEBUFFERSTENCILSAMPLECOUNTS, FRAMEBUFFERNOATTACHMENTSSAMPLECOUNTS, MAXCOLORATTACHMENTS, SAMPLEDIMAGECOLORSAMPLECOUNTS, SAMPLEDIMAGEINTEGERSAMPLECOUNTS, SAMPLEDIMAGEDEPTHSAMPLECOUNTS, SAMPLEDIMAGESTENCILSAMPLECOUNTS, STORAGEIMAGESAMPLECOUNTS, MAXSAMPLEMASKWORDS, TIMESTAMPCOMPUTEANDGRAPHICS, TIMESTAMPPERIOD, MAXCLIPDISTANCES, MAXCULLDISTANCES, MAXCOMBINEDCLIPANDCULLDISTANCES, DISCRETEQUEUEPRIORITIES, POINTSIZERANGE, LINEWIDTHRANGE, POINTSIZEGRANULARITY, LINEWIDTHGRANULARITY, STRICTLINES, STANDARDSAMPLELOCATIONS, OPTIMALBUFFERCOPYOFFSETALIGNMENT, OPTIMALBUFFERCOPYROWPITCHALIGNMENT, NONCOHERENTATOMSIZE
The struct member offsets.
-
-
Constructor Detail
-
VkPhysicalDeviceLimits
public VkPhysicalDeviceLimits(java.nio.ByteBuffer container)
Creates aVkPhysicalDeviceLimits
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
-
maxImageDimension1D
public int maxImageDimension1D()
Returns the value of themaxImageDimension1D
field.
-
maxImageDimension2D
public int maxImageDimension2D()
Returns the value of themaxImageDimension2D
field.
-
maxImageDimension3D
public int maxImageDimension3D()
Returns the value of themaxImageDimension3D
field.
-
maxImageDimensionCube
public int maxImageDimensionCube()
Returns the value of themaxImageDimensionCube
field.
-
maxImageArrayLayers
public int maxImageArrayLayers()
Returns the value of themaxImageArrayLayers
field.
-
maxTexelBufferElements
public int maxTexelBufferElements()
Returns the value of themaxTexelBufferElements
field.
-
maxUniformBufferRange
public int maxUniformBufferRange()
Returns the value of themaxUniformBufferRange
field.
-
maxStorageBufferRange
public int maxStorageBufferRange()
Returns the value of themaxStorageBufferRange
field.
-
maxPushConstantsSize
public int maxPushConstantsSize()
Returns the value of themaxPushConstantsSize
field.
-
maxMemoryAllocationCount
public int maxMemoryAllocationCount()
Returns the value of themaxMemoryAllocationCount
field.
-
maxSamplerAllocationCount
public int maxSamplerAllocationCount()
Returns the value of themaxSamplerAllocationCount
field.
-
bufferImageGranularity
public long bufferImageGranularity()
Returns the value of thebufferImageGranularity
field.
-
sparseAddressSpaceSize
public long sparseAddressSpaceSize()
Returns the value of thesparseAddressSpaceSize
field.
-
maxBoundDescriptorSets
public int maxBoundDescriptorSets()
Returns the value of themaxBoundDescriptorSets
field.
-
maxPerStageDescriptorSamplers
public int maxPerStageDescriptorSamplers()
Returns the value of themaxPerStageDescriptorSamplers
field.
-
maxPerStageDescriptorUniformBuffers
public int maxPerStageDescriptorUniformBuffers()
Returns the value of themaxPerStageDescriptorUniformBuffers
field.
-
maxPerStageDescriptorStorageBuffers
public int maxPerStageDescriptorStorageBuffers()
Returns the value of themaxPerStageDescriptorStorageBuffers
field.
-
maxPerStageDescriptorSampledImages
public int maxPerStageDescriptorSampledImages()
Returns the value of themaxPerStageDescriptorSampledImages
field.
-
maxPerStageDescriptorStorageImages
public int maxPerStageDescriptorStorageImages()
Returns the value of themaxPerStageDescriptorStorageImages
field.
-
maxPerStageDescriptorInputAttachments
public int maxPerStageDescriptorInputAttachments()
Returns the value of themaxPerStageDescriptorInputAttachments
field.
-
maxPerStageResources
public int maxPerStageResources()
Returns the value of themaxPerStageResources
field.
-
maxDescriptorSetSamplers
public int maxDescriptorSetSamplers()
Returns the value of themaxDescriptorSetSamplers
field.
-
maxDescriptorSetUniformBuffers
public int maxDescriptorSetUniformBuffers()
Returns the value of themaxDescriptorSetUniformBuffers
field.
-
maxDescriptorSetUniformBuffersDynamic
public int maxDescriptorSetUniformBuffersDynamic()
Returns the value of themaxDescriptorSetUniformBuffersDynamic
field.
-
maxDescriptorSetStorageBuffers
public int maxDescriptorSetStorageBuffers()
Returns the value of themaxDescriptorSetStorageBuffers
field.
-
maxDescriptorSetStorageBuffersDynamic
public int maxDescriptorSetStorageBuffersDynamic()
Returns the value of themaxDescriptorSetStorageBuffersDynamic
field.
-
maxDescriptorSetSampledImages
public int maxDescriptorSetSampledImages()
Returns the value of themaxDescriptorSetSampledImages
field.
-
maxDescriptorSetStorageImages
public int maxDescriptorSetStorageImages()
Returns the value of themaxDescriptorSetStorageImages
field.
-
maxDescriptorSetInputAttachments
public int maxDescriptorSetInputAttachments()
Returns the value of themaxDescriptorSetInputAttachments
field.
-
maxVertexInputAttributes
public int maxVertexInputAttributes()
Returns the value of themaxVertexInputAttributes
field.
-
maxVertexInputBindings
public int maxVertexInputBindings()
Returns the value of themaxVertexInputBindings
field.
-
maxVertexInputAttributeOffset
public int maxVertexInputAttributeOffset()
Returns the value of themaxVertexInputAttributeOffset
field.
-
maxVertexInputBindingStride
public int maxVertexInputBindingStride()
Returns the value of themaxVertexInputBindingStride
field.
-
maxVertexOutputComponents
public int maxVertexOutputComponents()
Returns the value of themaxVertexOutputComponents
field.
-
maxTessellationGenerationLevel
public int maxTessellationGenerationLevel()
Returns the value of themaxTessellationGenerationLevel
field.
-
maxTessellationPatchSize
public int maxTessellationPatchSize()
Returns the value of themaxTessellationPatchSize
field.
-
maxTessellationControlPerVertexInputComponents
public int maxTessellationControlPerVertexInputComponents()
Returns the value of themaxTessellationControlPerVertexInputComponents
field.
-
maxTessellationControlPerVertexOutputComponents
public int maxTessellationControlPerVertexOutputComponents()
Returns the value of themaxTessellationControlPerVertexOutputComponents
field.
-
maxTessellationControlPerPatchOutputComponents
public int maxTessellationControlPerPatchOutputComponents()
Returns the value of themaxTessellationControlPerPatchOutputComponents
field.
-
maxTessellationControlTotalOutputComponents
public int maxTessellationControlTotalOutputComponents()
Returns the value of themaxTessellationControlTotalOutputComponents
field.
-
maxTessellationEvaluationInputComponents
public int maxTessellationEvaluationInputComponents()
Returns the value of themaxTessellationEvaluationInputComponents
field.
-
maxTessellationEvaluationOutputComponents
public int maxTessellationEvaluationOutputComponents()
Returns the value of themaxTessellationEvaluationOutputComponents
field.
-
maxGeometryShaderInvocations
public int maxGeometryShaderInvocations()
Returns the value of themaxGeometryShaderInvocations
field.
-
maxGeometryInputComponents
public int maxGeometryInputComponents()
Returns the value of themaxGeometryInputComponents
field.
-
maxGeometryOutputComponents
public int maxGeometryOutputComponents()
Returns the value of themaxGeometryOutputComponents
field.
-
maxGeometryOutputVertices
public int maxGeometryOutputVertices()
Returns the value of themaxGeometryOutputVertices
field.
-
maxGeometryTotalOutputComponents
public int maxGeometryTotalOutputComponents()
Returns the value of themaxGeometryTotalOutputComponents
field.
-
maxFragmentInputComponents
public int maxFragmentInputComponents()
Returns the value of themaxFragmentInputComponents
field.
-
maxFragmentOutputAttachments
public int maxFragmentOutputAttachments()
Returns the value of themaxFragmentOutputAttachments
field.
-
maxFragmentDualSrcAttachments
public int maxFragmentDualSrcAttachments()
Returns the value of themaxFragmentDualSrcAttachments
field.
-
maxFragmentCombinedOutputResources
public int maxFragmentCombinedOutputResources()
Returns the value of themaxFragmentCombinedOutputResources
field.
-
maxComputeSharedMemorySize
public int maxComputeSharedMemorySize()
Returns the value of themaxComputeSharedMemorySize
field.
-
maxComputeWorkGroupCount
public java.nio.IntBuffer maxComputeWorkGroupCount()
Returns aIntBuffer
view of themaxComputeWorkGroupCount
field.
-
maxComputeWorkGroupCount
public int maxComputeWorkGroupCount(int index)
Returns the value at the specified index of themaxComputeWorkGroupCount
field.
-
maxComputeWorkGroupInvocations
public int maxComputeWorkGroupInvocations()
Returns the value of themaxComputeWorkGroupInvocations
field.
-
maxComputeWorkGroupSize
public java.nio.IntBuffer maxComputeWorkGroupSize()
Returns aIntBuffer
view of themaxComputeWorkGroupSize
field.
-
maxComputeWorkGroupSize
public int maxComputeWorkGroupSize(int index)
Returns the value at the specified index of themaxComputeWorkGroupSize
field.
-
subPixelPrecisionBits
public int subPixelPrecisionBits()
Returns the value of thesubPixelPrecisionBits
field.
-
subTexelPrecisionBits
public int subTexelPrecisionBits()
Returns the value of thesubTexelPrecisionBits
field.
-
mipmapPrecisionBits
public int mipmapPrecisionBits()
Returns the value of themipmapPrecisionBits
field.
-
maxDrawIndexedIndexValue
public int maxDrawIndexedIndexValue()
Returns the value of themaxDrawIndexedIndexValue
field.
-
maxDrawIndirectCount
public int maxDrawIndirectCount()
Returns the value of themaxDrawIndirectCount
field.
-
maxSamplerLodBias
public float maxSamplerLodBias()
Returns the value of themaxSamplerLodBias
field.
-
maxSamplerAnisotropy
public float maxSamplerAnisotropy()
Returns the value of themaxSamplerAnisotropy
field.
-
maxViewports
public int maxViewports()
Returns the value of themaxViewports
field.
-
maxViewportDimensions
public java.nio.IntBuffer maxViewportDimensions()
Returns aIntBuffer
view of themaxViewportDimensions
field.
-
maxViewportDimensions
public int maxViewportDimensions(int index)
Returns the value at the specified index of themaxViewportDimensions
field.
-
viewportBoundsRange
public java.nio.FloatBuffer viewportBoundsRange()
Returns aFloatBuffer
view of theviewportBoundsRange
field.
-
viewportBoundsRange
public float viewportBoundsRange(int index)
Returns the value at the specified index of theviewportBoundsRange
field.
-
viewportSubPixelBits
public int viewportSubPixelBits()
Returns the value of theviewportSubPixelBits
field.
-
minMemoryMapAlignment
public long minMemoryMapAlignment()
Returns the value of theminMemoryMapAlignment
field.
-
minTexelBufferOffsetAlignment
public long minTexelBufferOffsetAlignment()
Returns the value of theminTexelBufferOffsetAlignment
field.
-
minUniformBufferOffsetAlignment
public long minUniformBufferOffsetAlignment()
Returns the value of theminUniformBufferOffsetAlignment
field.
-
minStorageBufferOffsetAlignment
public long minStorageBufferOffsetAlignment()
Returns the value of theminStorageBufferOffsetAlignment
field.
-
minTexelOffset
public int minTexelOffset()
Returns the value of theminTexelOffset
field.
-
maxTexelOffset
public int maxTexelOffset()
Returns the value of themaxTexelOffset
field.
-
minTexelGatherOffset
public int minTexelGatherOffset()
Returns the value of theminTexelGatherOffset
field.
-
maxTexelGatherOffset
public int maxTexelGatherOffset()
Returns the value of themaxTexelGatherOffset
field.
-
minInterpolationOffset
public float minInterpolationOffset()
Returns the value of theminInterpolationOffset
field.
-
maxInterpolationOffset
public float maxInterpolationOffset()
Returns the value of themaxInterpolationOffset
field.
-
subPixelInterpolationOffsetBits
public int subPixelInterpolationOffsetBits()
Returns the value of thesubPixelInterpolationOffsetBits
field.
-
maxFramebufferWidth
public int maxFramebufferWidth()
Returns the value of themaxFramebufferWidth
field.
-
maxFramebufferHeight
public int maxFramebufferHeight()
Returns the value of themaxFramebufferHeight
field.
-
maxFramebufferLayers
public int maxFramebufferLayers()
Returns the value of themaxFramebufferLayers
field.
-
framebufferColorSampleCounts
public int framebufferColorSampleCounts()
Returns the value of theframebufferColorSampleCounts
field.
-
framebufferDepthSampleCounts
public int framebufferDepthSampleCounts()
Returns the value of theframebufferDepthSampleCounts
field.
-
framebufferStencilSampleCounts
public int framebufferStencilSampleCounts()
Returns the value of theframebufferStencilSampleCounts
field.
-
framebufferNoAttachmentsSampleCounts
public int framebufferNoAttachmentsSampleCounts()
Returns the value of theframebufferNoAttachmentsSampleCounts
field.
-
maxColorAttachments
public int maxColorAttachments()
Returns the value of themaxColorAttachments
field.
-
sampledImageColorSampleCounts
public int sampledImageColorSampleCounts()
Returns the value of thesampledImageColorSampleCounts
field.
-
sampledImageIntegerSampleCounts
public int sampledImageIntegerSampleCounts()
Returns the value of thesampledImageIntegerSampleCounts
field.
-
sampledImageDepthSampleCounts
public int sampledImageDepthSampleCounts()
Returns the value of thesampledImageDepthSampleCounts
field.
-
sampledImageStencilSampleCounts
public int sampledImageStencilSampleCounts()
Returns the value of thesampledImageStencilSampleCounts
field.
-
storageImageSampleCounts
public int storageImageSampleCounts()
Returns the value of thestorageImageSampleCounts
field.
-
maxSampleMaskWords
public int maxSampleMaskWords()
Returns the value of themaxSampleMaskWords
field.
-
timestampComputeAndGraphics
public boolean timestampComputeAndGraphics()
Returns the value of thetimestampComputeAndGraphics
field.
-
timestampPeriod
public float timestampPeriod()
Returns the value of thetimestampPeriod
field.
-
maxClipDistances
public int maxClipDistances()
Returns the value of themaxClipDistances
field.
-
maxCullDistances
public int maxCullDistances()
Returns the value of themaxCullDistances
field.
-
maxCombinedClipAndCullDistances
public int maxCombinedClipAndCullDistances()
Returns the value of themaxCombinedClipAndCullDistances
field.
-
discreteQueuePriorities
public int discreteQueuePriorities()
Returns the value of thediscreteQueuePriorities
field.
-
pointSizeRange
public java.nio.FloatBuffer pointSizeRange()
Returns aFloatBuffer
view of thepointSizeRange
field.
-
pointSizeRange
public float pointSizeRange(int index)
Returns the value at the specified index of thepointSizeRange
field.
-
lineWidthRange
public java.nio.FloatBuffer lineWidthRange()
Returns aFloatBuffer
view of thelineWidthRange
field.
-
lineWidthRange
public float lineWidthRange(int index)
Returns the value at the specified index of thelineWidthRange
field.
-
pointSizeGranularity
public float pointSizeGranularity()
Returns the value of thepointSizeGranularity
field.
-
lineWidthGranularity
public float lineWidthGranularity()
Returns the value of thelineWidthGranularity
field.
-
strictLines
public boolean strictLines()
Returns the value of thestrictLines
field.
-
standardSampleLocations
public boolean standardSampleLocations()
Returns the value of thestandardSampleLocations
field.
-
optimalBufferCopyOffsetAlignment
public long optimalBufferCopyOffsetAlignment()
Returns the value of theoptimalBufferCopyOffsetAlignment
field.
-
optimalBufferCopyRowPitchAlignment
public long optimalBufferCopyRowPitchAlignment()
Returns the value of theoptimalBufferCopyRowPitchAlignment
field.
-
nonCoherentAtomSize
public long nonCoherentAtomSize()
Returns the value of thenonCoherentAtomSize
field.
-
create
public static VkPhysicalDeviceLimits create(long address)
Returns a newVkPhysicalDeviceLimits
instance for the specified memory address.
-
createSafe
@Nullable public static VkPhysicalDeviceLimits createSafe(long address)
-
create
public static VkPhysicalDeviceLimits.Buffer create(long address, int capacity)
Create aVkPhysicalDeviceLimits.Buffer
instance at the specified memory.- Parameters:
address
- the memory addresscapacity
- the buffer capacity
-
createSafe
@Nullable public static VkPhysicalDeviceLimits.Buffer createSafe(long address, int capacity)
-
nmaxImageDimension1D
public static int nmaxImageDimension1D(long struct)
Unsafe version ofmaxImageDimension1D()
.
-
nmaxImageDimension2D
public static int nmaxImageDimension2D(long struct)
Unsafe version ofmaxImageDimension2D()
.
-
nmaxImageDimension3D
public static int nmaxImageDimension3D(long struct)
Unsafe version ofmaxImageDimension3D()
.
-
nmaxImageDimensionCube
public static int nmaxImageDimensionCube(long struct)
Unsafe version ofmaxImageDimensionCube()
.
-
nmaxImageArrayLayers
public static int nmaxImageArrayLayers(long struct)
Unsafe version ofmaxImageArrayLayers()
.
-
nmaxTexelBufferElements
public static int nmaxTexelBufferElements(long struct)
Unsafe version ofmaxTexelBufferElements()
.
-
nmaxUniformBufferRange
public static int nmaxUniformBufferRange(long struct)
Unsafe version ofmaxUniformBufferRange()
.
-
nmaxStorageBufferRange
public static int nmaxStorageBufferRange(long struct)
Unsafe version ofmaxStorageBufferRange()
.
-
nmaxPushConstantsSize
public static int nmaxPushConstantsSize(long struct)
Unsafe version ofmaxPushConstantsSize()
.
-
nmaxMemoryAllocationCount
public static int nmaxMemoryAllocationCount(long struct)
Unsafe version ofmaxMemoryAllocationCount()
.
-
nmaxSamplerAllocationCount
public static int nmaxSamplerAllocationCount(long struct)
Unsafe version ofmaxSamplerAllocationCount()
.
-
nbufferImageGranularity
public static long nbufferImageGranularity(long struct)
Unsafe version ofbufferImageGranularity()
.
-
nsparseAddressSpaceSize
public static long nsparseAddressSpaceSize(long struct)
Unsafe version ofsparseAddressSpaceSize()
.
-
nmaxBoundDescriptorSets
public static int nmaxBoundDescriptorSets(long struct)
Unsafe version ofmaxBoundDescriptorSets()
.
-
nmaxPerStageDescriptorSamplers
public static int nmaxPerStageDescriptorSamplers(long struct)
Unsafe version ofmaxPerStageDescriptorSamplers()
.
-
nmaxPerStageDescriptorUniformBuffers
public static int nmaxPerStageDescriptorUniformBuffers(long struct)
Unsafe version ofmaxPerStageDescriptorUniformBuffers()
.
-
nmaxPerStageDescriptorStorageBuffers
public static int nmaxPerStageDescriptorStorageBuffers(long struct)
Unsafe version ofmaxPerStageDescriptorStorageBuffers()
.
-
nmaxPerStageDescriptorSampledImages
public static int nmaxPerStageDescriptorSampledImages(long struct)
Unsafe version ofmaxPerStageDescriptorSampledImages()
.
-
nmaxPerStageDescriptorStorageImages
public static int nmaxPerStageDescriptorStorageImages(long struct)
Unsafe version ofmaxPerStageDescriptorStorageImages()
.
-
nmaxPerStageDescriptorInputAttachments
public static int nmaxPerStageDescriptorInputAttachments(long struct)
Unsafe version ofmaxPerStageDescriptorInputAttachments()
.
-
nmaxPerStageResources
public static int nmaxPerStageResources(long struct)
Unsafe version ofmaxPerStageResources()
.
-
nmaxDescriptorSetSamplers
public static int nmaxDescriptorSetSamplers(long struct)
Unsafe version ofmaxDescriptorSetSamplers()
.
-
nmaxDescriptorSetUniformBuffers
public static int nmaxDescriptorSetUniformBuffers(long struct)
Unsafe version ofmaxDescriptorSetUniformBuffers()
.
-
nmaxDescriptorSetUniformBuffersDynamic
public static int nmaxDescriptorSetUniformBuffersDynamic(long struct)
Unsafe version ofmaxDescriptorSetUniformBuffersDynamic()
.
-
nmaxDescriptorSetStorageBuffers
public static int nmaxDescriptorSetStorageBuffers(long struct)
Unsafe version ofmaxDescriptorSetStorageBuffers()
.
-
nmaxDescriptorSetStorageBuffersDynamic
public static int nmaxDescriptorSetStorageBuffersDynamic(long struct)
Unsafe version ofmaxDescriptorSetStorageBuffersDynamic()
.
-
nmaxDescriptorSetSampledImages
public static int nmaxDescriptorSetSampledImages(long struct)
Unsafe version ofmaxDescriptorSetSampledImages()
.
-
nmaxDescriptorSetStorageImages
public static int nmaxDescriptorSetStorageImages(long struct)
Unsafe version ofmaxDescriptorSetStorageImages()
.
-
nmaxDescriptorSetInputAttachments
public static int nmaxDescriptorSetInputAttachments(long struct)
Unsafe version ofmaxDescriptorSetInputAttachments()
.
-
nmaxVertexInputAttributes
public static int nmaxVertexInputAttributes(long struct)
Unsafe version ofmaxVertexInputAttributes()
.
-
nmaxVertexInputBindings
public static int nmaxVertexInputBindings(long struct)
Unsafe version ofmaxVertexInputBindings()
.
-
nmaxVertexInputAttributeOffset
public static int nmaxVertexInputAttributeOffset(long struct)
Unsafe version ofmaxVertexInputAttributeOffset()
.
-
nmaxVertexInputBindingStride
public static int nmaxVertexInputBindingStride(long struct)
Unsafe version ofmaxVertexInputBindingStride()
.
-
nmaxVertexOutputComponents
public static int nmaxVertexOutputComponents(long struct)
Unsafe version ofmaxVertexOutputComponents()
.
-
nmaxTessellationGenerationLevel
public static int nmaxTessellationGenerationLevel(long struct)
Unsafe version ofmaxTessellationGenerationLevel()
.
-
nmaxTessellationPatchSize
public static int nmaxTessellationPatchSize(long struct)
Unsafe version ofmaxTessellationPatchSize()
.
-
nmaxTessellationControlPerVertexInputComponents
public static int nmaxTessellationControlPerVertexInputComponents(long struct)
Unsafe version ofmaxTessellationControlPerVertexInputComponents()
.
-
nmaxTessellationControlPerVertexOutputComponents
public static int nmaxTessellationControlPerVertexOutputComponents(long struct)
Unsafe version ofmaxTessellationControlPerVertexOutputComponents()
.
-
nmaxTessellationControlPerPatchOutputComponents
public static int nmaxTessellationControlPerPatchOutputComponents(long struct)
Unsafe version ofmaxTessellationControlPerPatchOutputComponents()
.
-
nmaxTessellationControlTotalOutputComponents
public static int nmaxTessellationControlTotalOutputComponents(long struct)
Unsafe version ofmaxTessellationControlTotalOutputComponents()
.
-
nmaxTessellationEvaluationInputComponents
public static int nmaxTessellationEvaluationInputComponents(long struct)
Unsafe version ofmaxTessellationEvaluationInputComponents()
.
-
nmaxTessellationEvaluationOutputComponents
public static int nmaxTessellationEvaluationOutputComponents(long struct)
Unsafe version ofmaxTessellationEvaluationOutputComponents()
.
-
nmaxGeometryShaderInvocations
public static int nmaxGeometryShaderInvocations(long struct)
Unsafe version ofmaxGeometryShaderInvocations()
.
-
nmaxGeometryInputComponents
public static int nmaxGeometryInputComponents(long struct)
Unsafe version ofmaxGeometryInputComponents()
.
-
nmaxGeometryOutputComponents
public static int nmaxGeometryOutputComponents(long struct)
Unsafe version ofmaxGeometryOutputComponents()
.
-
nmaxGeometryOutputVertices
public static int nmaxGeometryOutputVertices(long struct)
Unsafe version ofmaxGeometryOutputVertices()
.
-
nmaxGeometryTotalOutputComponents
public static int nmaxGeometryTotalOutputComponents(long struct)
Unsafe version ofmaxGeometryTotalOutputComponents()
.
-
nmaxFragmentInputComponents
public static int nmaxFragmentInputComponents(long struct)
Unsafe version ofmaxFragmentInputComponents()
.
-
nmaxFragmentOutputAttachments
public static int nmaxFragmentOutputAttachments(long struct)
Unsafe version ofmaxFragmentOutputAttachments()
.
-
nmaxFragmentDualSrcAttachments
public static int nmaxFragmentDualSrcAttachments(long struct)
Unsafe version ofmaxFragmentDualSrcAttachments()
.
-
nmaxFragmentCombinedOutputResources
public static int nmaxFragmentCombinedOutputResources(long struct)
Unsafe version ofmaxFragmentCombinedOutputResources()
.
-
nmaxComputeSharedMemorySize
public static int nmaxComputeSharedMemorySize(long struct)
Unsafe version ofmaxComputeSharedMemorySize()
.
-
nmaxComputeWorkGroupCount
public static java.nio.IntBuffer nmaxComputeWorkGroupCount(long struct)
Unsafe version ofmaxComputeWorkGroupCount()
.
-
nmaxComputeWorkGroupCount
public static int nmaxComputeWorkGroupCount(long struct, int index)
Unsafe version ofmaxComputeWorkGroupCount
.
-
nmaxComputeWorkGroupInvocations
public static int nmaxComputeWorkGroupInvocations(long struct)
Unsafe version ofmaxComputeWorkGroupInvocations()
.
-
nmaxComputeWorkGroupSize
public static java.nio.IntBuffer nmaxComputeWorkGroupSize(long struct)
Unsafe version ofmaxComputeWorkGroupSize()
.
-
nmaxComputeWorkGroupSize
public static int nmaxComputeWorkGroupSize(long struct, int index)
Unsafe version ofmaxComputeWorkGroupSize
.
-
nsubPixelPrecisionBits
public static int nsubPixelPrecisionBits(long struct)
Unsafe version ofsubPixelPrecisionBits()
.
-
nsubTexelPrecisionBits
public static int nsubTexelPrecisionBits(long struct)
Unsafe version ofsubTexelPrecisionBits()
.
-
nmipmapPrecisionBits
public static int nmipmapPrecisionBits(long struct)
Unsafe version ofmipmapPrecisionBits()
.
-
nmaxDrawIndexedIndexValue
public static int nmaxDrawIndexedIndexValue(long struct)
Unsafe version ofmaxDrawIndexedIndexValue()
.
-
nmaxDrawIndirectCount
public static int nmaxDrawIndirectCount(long struct)
Unsafe version ofmaxDrawIndirectCount()
.
-
nmaxSamplerLodBias
public static float nmaxSamplerLodBias(long struct)
Unsafe version ofmaxSamplerLodBias()
.
-
nmaxSamplerAnisotropy
public static float nmaxSamplerAnisotropy(long struct)
Unsafe version ofmaxSamplerAnisotropy()
.
-
nmaxViewports
public static int nmaxViewports(long struct)
Unsafe version ofmaxViewports()
.
-
nmaxViewportDimensions
public static java.nio.IntBuffer nmaxViewportDimensions(long struct)
Unsafe version ofmaxViewportDimensions()
.
-
nmaxViewportDimensions
public static int nmaxViewportDimensions(long struct, int index)
Unsafe version ofmaxViewportDimensions
.
-
nviewportBoundsRange
public static java.nio.FloatBuffer nviewportBoundsRange(long struct)
Unsafe version ofviewportBoundsRange()
.
-
nviewportBoundsRange
public static float nviewportBoundsRange(long struct, int index)
Unsafe version ofviewportBoundsRange
.
-
nviewportSubPixelBits
public static int nviewportSubPixelBits(long struct)
Unsafe version ofviewportSubPixelBits()
.
-
nminMemoryMapAlignment
public static long nminMemoryMapAlignment(long struct)
Unsafe version ofminMemoryMapAlignment()
.
-
nminTexelBufferOffsetAlignment
public static long nminTexelBufferOffsetAlignment(long struct)
Unsafe version ofminTexelBufferOffsetAlignment()
.
-
nminUniformBufferOffsetAlignment
public static long nminUniformBufferOffsetAlignment(long struct)
Unsafe version ofminUniformBufferOffsetAlignment()
.
-
nminStorageBufferOffsetAlignment
public static long nminStorageBufferOffsetAlignment(long struct)
Unsafe version ofminStorageBufferOffsetAlignment()
.
-
nminTexelOffset
public static int nminTexelOffset(long struct)
Unsafe version ofminTexelOffset()
.
-
nmaxTexelOffset
public static int nmaxTexelOffset(long struct)
Unsafe version ofmaxTexelOffset()
.
-
nminTexelGatherOffset
public static int nminTexelGatherOffset(long struct)
Unsafe version ofminTexelGatherOffset()
.
-
nmaxTexelGatherOffset
public static int nmaxTexelGatherOffset(long struct)
Unsafe version ofmaxTexelGatherOffset()
.
-
nminInterpolationOffset
public static float nminInterpolationOffset(long struct)
Unsafe version ofminInterpolationOffset()
.
-
nmaxInterpolationOffset
public static float nmaxInterpolationOffset(long struct)
Unsafe version ofmaxInterpolationOffset()
.
-
nsubPixelInterpolationOffsetBits
public static int nsubPixelInterpolationOffsetBits(long struct)
Unsafe version ofsubPixelInterpolationOffsetBits()
.
-
nmaxFramebufferWidth
public static int nmaxFramebufferWidth(long struct)
Unsafe version ofmaxFramebufferWidth()
.
-
nmaxFramebufferHeight
public static int nmaxFramebufferHeight(long struct)
Unsafe version ofmaxFramebufferHeight()
.
-
nmaxFramebufferLayers
public static int nmaxFramebufferLayers(long struct)
Unsafe version ofmaxFramebufferLayers()
.
-
nframebufferColorSampleCounts
public static int nframebufferColorSampleCounts(long struct)
Unsafe version offramebufferColorSampleCounts()
.
-
nframebufferDepthSampleCounts
public static int nframebufferDepthSampleCounts(long struct)
Unsafe version offramebufferDepthSampleCounts()
.
-
nframebufferStencilSampleCounts
public static int nframebufferStencilSampleCounts(long struct)
Unsafe version offramebufferStencilSampleCounts()
.
-
nframebufferNoAttachmentsSampleCounts
public static int nframebufferNoAttachmentsSampleCounts(long struct)
Unsafe version offramebufferNoAttachmentsSampleCounts()
.
-
nmaxColorAttachments
public static int nmaxColorAttachments(long struct)
Unsafe version ofmaxColorAttachments()
.
-
nsampledImageColorSampleCounts
public static int nsampledImageColorSampleCounts(long struct)
Unsafe version ofsampledImageColorSampleCounts()
.
-
nsampledImageIntegerSampleCounts
public static int nsampledImageIntegerSampleCounts(long struct)
Unsafe version ofsampledImageIntegerSampleCounts()
.
-
nsampledImageDepthSampleCounts
public static int nsampledImageDepthSampleCounts(long struct)
Unsafe version ofsampledImageDepthSampleCounts()
.
-
nsampledImageStencilSampleCounts
public static int nsampledImageStencilSampleCounts(long struct)
Unsafe version ofsampledImageStencilSampleCounts()
.
-
nstorageImageSampleCounts
public static int nstorageImageSampleCounts(long struct)
Unsafe version ofstorageImageSampleCounts()
.
-
nmaxSampleMaskWords
public static int nmaxSampleMaskWords(long struct)
Unsafe version ofmaxSampleMaskWords()
.
-
ntimestampComputeAndGraphics
public static int ntimestampComputeAndGraphics(long struct)
Unsafe version oftimestampComputeAndGraphics()
.
-
ntimestampPeriod
public static float ntimestampPeriod(long struct)
Unsafe version oftimestampPeriod()
.
-
nmaxClipDistances
public static int nmaxClipDistances(long struct)
Unsafe version ofmaxClipDistances()
.
-
nmaxCullDistances
public static int nmaxCullDistances(long struct)
Unsafe version ofmaxCullDistances()
.
-
nmaxCombinedClipAndCullDistances
public static int nmaxCombinedClipAndCullDistances(long struct)
Unsafe version ofmaxCombinedClipAndCullDistances()
.
-
ndiscreteQueuePriorities
public static int ndiscreteQueuePriorities(long struct)
Unsafe version ofdiscreteQueuePriorities()
.
-
npointSizeRange
public static java.nio.FloatBuffer npointSizeRange(long struct)
Unsafe version ofpointSizeRange()
.
-
npointSizeRange
public static float npointSizeRange(long struct, int index)
Unsafe version ofpointSizeRange
.
-
nlineWidthRange
public static java.nio.FloatBuffer nlineWidthRange(long struct)
Unsafe version oflineWidthRange()
.
-
nlineWidthRange
public static float nlineWidthRange(long struct, int index)
Unsafe version oflineWidthRange
.
-
npointSizeGranularity
public static float npointSizeGranularity(long struct)
Unsafe version ofpointSizeGranularity()
.
-
nlineWidthGranularity
public static float nlineWidthGranularity(long struct)
Unsafe version oflineWidthGranularity()
.
-
nstrictLines
public static int nstrictLines(long struct)
Unsafe version ofstrictLines()
.
-
nstandardSampleLocations
public static int nstandardSampleLocations(long struct)
Unsafe version ofstandardSampleLocations()
.
-
noptimalBufferCopyOffsetAlignment
public static long noptimalBufferCopyOffsetAlignment(long struct)
Unsafe version ofoptimalBufferCopyOffsetAlignment()
.
-
noptimalBufferCopyRowPitchAlignment
public static long noptimalBufferCopyRowPitchAlignment(long struct)
Unsafe version ofoptimalBufferCopyRowPitchAlignment()
.
-
nnonCoherentAtomSize
public static long nnonCoherentAtomSize(long struct)
Unsafe version ofnonCoherentAtomSize()
.
-
-