Function Prototype
vkGetDynamicRenderingTilePropertiesQCOM
Get the properties when using dynamic rendering
To query the tile properties when using dynamic rendering, call:
VkResult vkGetDynamicRenderingTilePropertiesQCOM(
VkDevice device,
const VkRenderingInfo* pRenderingInfo,
VkTilePropertiesQCOM* pProperties);
pub fn get_dynamic_rendering_tile_properties_qcom(
device: vk::Device,
p_rendering_info: *const vk::RenderingInfo,
p_properties: *mut vk::TilePropertiesQCOM,
) -> vk::Result;
deviceis a logical device associated with the render pass.pRenderingInfois a pointer to the VkRenderingInfo structure specifying details of the render pass instance in dynamic rendering.pPropertiesis a pointer to a VkTilePropertiesQCOM structure in which the properties are returned.
Valid Usage (Implicit)
VUID-vkGetDynamicRenderingTilePropertiesQCOM-device-parameter
device must be a valid VkDevice handle
VUID-vkGetDynamicRenderingTilePropertiesQCOM-pRenderingInfo-parameter
pRenderingInfo must be a valid pointer to a valid VkRenderingInfo structure
VUID-vkGetDynamicRenderingTilePropertiesQCOM-pProperties-parameter
pProperties must be a valid pointer to a VkTilePropertiesQCOM structure
Parent
VK_QCOM_tile_propertiesType
Function Prototype