Structures
VkConformanceVersion
Structure containing the conformance test suite version the implementation is compliant with
The conformance test suite version an implementation is compliant with is
described with the VkConformanceVersion
structure:
typedef struct VkConformanceVersion {
uint8_t major;
uint8_t minor;
uint8_t subminor;
uint8_t patch;
} VkConformanceVersion;
or the equivalent
typedef VkConformanceVersion VkConformanceVersionKHR;
major
is the major version number of the conformance test suite.minor
is the minor version number of the conformance test suite.subminor
is the subminor version number of the conformance test suite.patch
is the patch version number of the conformance test suite.