Structures
VkRenderingEndInfoKHR
Structure specifying render pass end information
The VkRenderingEndInfoKHR structure is defined as:
typedef struct VkRenderingEndInfoKHR {
VkStructureType sType;
const void* pNext;
} VkRenderingEndInfoKHR;
pub struct RenderingEndInfoKHR {
s_type: vk::StructureType,
p_next: *const c_void,
}
typedef VkRenderingEndInfoKHR VkRenderingEndInfoEXT;
type RenderingEndInfoEXT = vk::RenderingEndInfoKHR;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.
Valid Usage (Implicit)
VUID-VkRenderingEndInfoKHR-sType-sType
sType must be VK_STRUCTURE_TYPE_RENDERING_END_INFO_KHR
VUID-VkRenderingEndInfoKHR-pNext-pNext
pNext must be NULL or a pointer to a valid instance of VkRenderPassFragmentDensityMapOffsetEndInfoEXT
VUID-VkRenderingEndInfoKHR-sType-unique
The sType value of each structure in the pNext chain must be unique