C Specification
The VkPhysicalDeviceRobustness2PropertiesEXT
structure is defined as:
typedef struct VkPhysicalDeviceRobustness2PropertiesEXT {
VkStructureType sType;
void* pNext;
VkDeviceSize robustStorageBufferAccessSizeAlignment;
VkDeviceSize robustUniformBufferAccessSizeAlignment;
} VkPhysicalDeviceRobustness2PropertiesEXT;
Members
The members of the VkPhysicalDeviceRobustness2PropertiesEXT
structure
describe the following implementation-dependent limits:
Description
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to an extension-specific structure. -
robustStorageBufferAccessSizeAlignment
is the number of bytes that the range of a storage buffer descriptor is rounded up to when used for bounds-checking whenrobustBufferAccess2
is enabled. This value is either 1 or 4. -
robustUniformBufferAccessSizeAlignment
is the number of bytes that the range of a uniform buffer descriptor is rounded up to when used for bounds-checking whenrobustBufferAccess2
is enabled. This value is a power of two in the range [1, 256].
If the VkPhysicalDeviceRobustness2PropertiesEXT
structure is included
in the pNext
chain of VkPhysicalDeviceProperties2, it is filled
with the implementation-dependent limits.
See Also
VkDeviceSize
, VkStructureType
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.
Copyright
Copyright (c) 2014-2020 Khronos Group. This work is licensed under a Creative Commons Attribution 4.0 International License.