1 // This file is auto-generated by vulkano autogen from vk.xml header version 1.3.238. 2 // It should not be edited manually. Changes should be made by editing autogen. 3 4 impl Version { 5 #[doc = r" The highest Vulkan API version currently supported by Vulkano."] 6 #[doc = r""] 7 #[doc = r" It is allowed for applications that use Vulkano to make use of features from higher"] 8 #[doc = r" versions than this. However, Vulkano itself will not make use of those features and"] 9 #[doc = r" will not expose their APIs, so they must be accessed by other means."] 10 #[doc = r""] 11 #[doc = r" The `max_api_version` of an [`Instance`](crate::instance::Instance) equals"] 12 #[doc = r" `HEADER_VERSION` by default, which locks out features from newer versions. In order"] 13 #[doc = r" to enable the use of higher versions, the `max_api_version` must be overridden when"] 14 #[doc = r" creating an instance."] 15 pub const HEADER_VERSION: Version = Version { 16 major: 1, 17 minor: 3, 18 patch: 238, 19 }; 20 } 21