VkDataGraphPipelinePropertyQueryResultARM
The VkDataGraphPipelinePropertyQueryResultARM structure is defined as:
typedef struct VkDataGraphPipelinePropertyQueryResultARM {
VkStructureType sType;
void* pNext;
VkDataGraphPipelinePropertyARM property;
VkBool32 isText;
size_t dataSize;
void* pData;
} VkDataGraphPipelinePropertyQueryResultARM;
pub struct DataGraphPipelinePropertyQueryResultARM {
s_type: vk::StructureType,
p_next: *mut c_void,
property: vk::DataGraphPipelinePropertyARM,
is_text: vk::Bool32,
data_size: usize,
p_data: *mut c_void,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.propertyis a VkDataGraphPipelinePropertyARM specifying the property of the data graph pipeline being queried.isTextspecifies whether the returned data is text or opaque data. IfisTextisVK_TRUEthen the data returned inpDatais text and guaranteed to be a null-terminated UTF-8 string.dataSizeis an integer related to the size, in bytes, of the data, as described below.pDatais eitherNULLor a pointer to a block of memory into which the implementation will return the property data.
If pData is NULL, then the size, in bytes, of the property data is
returned in dataSize.
Otherwise, dataSize must be the size of the buffer, in bytes, pointed
to by pData and on return dataSize is overwritten with the
number of bytes of data actually written to pData including any
trailing NUL character.
If dataSize is less than the size, in bytes, of the property data, at
most dataSize bytes of data will be written to pData, and
VK_INCOMPLETE will be returned by
vkGetDataGraphPipelinePropertiesARM instead of VK_SUCCESS, to
indicate that not all the available property data was returned.
If isText is VK_TRUE and pData is not NULL and
dataSize is not zero, the last byte written to pData will be a
NUL character.
Valid Usage (Implicit)
VUID-VkDataGraphPipelinePropertyQueryResultARM-sType-sType
sType must be VK_STRUCTURE_TYPE_DATA_GRAPH_PIPELINE_PROPERTY_QUERY_RESULT_ARM
VUID-VkDataGraphPipelinePropertyQueryResultARM-pNext-pNext
pNext must be NULL
VUID-VkDataGraphPipelinePropertyQueryResultARM-property-parameter
property must be a valid VkDataGraphPipelinePropertyARM value
VUID-VkDataGraphPipelinePropertyQueryResultARM-pData-parameter
If dataSize is not 0, and pData is not NULL, pData must be a valid pointer to an array of dataSize bytes