C Specification
The VkPerformanceValueDataINTEL union is defined as:
typedef union VkPerformanceValueDataINTEL {
    uint32_t       value32;
    uint64_t       value64;
    float          valueFloat;
    VkBool32       valueBool;
    const char*    valueString;
} VkPerformanceValueDataINTEL;Members
- 
data.value32represents 32-bit integer data.
- 
data.value64represents 64-bit integer data.
- 
data.valueFloatrepresents floating-point data.
- 
data.valueBoolrepresentsBool32data.
- 
data.valueStringrepresents a pointer to a null-terminated UTF-8 string.
Description
The correct member of the union is determined by the associated VkPerformanceValueTypeINTEL value.
See Also
VkBool32, VkPerformanceValueINTEL
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.