Skip to content

Commit

Permalink
Update Vulkan-Headers to 1.3.287
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 committed Jun 7, 2024
1 parent 385d805 commit fb1f7b3
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Update Vulkan-Headers to 1.3.286 (#910)
- Update Vulkan-Headers to 1.3.287 (#910)

## [0.38.0] - 2024-04-01

Expand Down
2 changes: 1 addition & 1 deletion ash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ash"
version = "0.38.0+1.3.286"
version = "0.38.0+1.3.287"
authors = [
"Maik Klein <maikklein@googlemail.com>",
"Benjamin Saunders <ben.e.saunders@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion ash/src/extensions_generated.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14994,7 +14994,7 @@ pub mod khr {
cmd_set_rendering_input_attachment_indices_khr: unsafe {
unsafe extern "system" fn cmd_set_rendering_input_attachment_indices_khr(
_command_buffer: CommandBuffer,
_p_location_info: *const RenderingInputAttachmentIndexInfoKHR<'_>,
_p_input_attachment_index_info : * const RenderingInputAttachmentIndexInfoKHR < '_ >,
) {
panic!(concat!(
"Unable to load ",
Expand Down
2 changes: 1 addition & 1 deletion ash/src/vk/const_debugs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1675,7 +1675,7 @@ impl fmt::Debug for DriverId {
Self::MESA_DOZEN => Some("MESA_DOZEN"),
Self::MESA_NVK => Some("MESA_NVK"),
Self::IMAGINATION_OPEN_SOURCE_MESA => Some("IMAGINATION_OPEN_SOURCE_MESA"),
Self::MESA_AGXV => Some("MESA_AGXV"),
Self::MESA_HONEYKRISP => Some("MESA_HONEYKRISP"),
Self::RESERVED_27 => Some("RESERVED_27"),
_ => None,
};
Expand Down
4 changes: 3 additions & 1 deletion ash/src/vk/definitions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pub const API_VERSION_1_2: u32 = make_api_version(0, 1, 2, 0);
#[doc = "<https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_API_VERSION_1_3.html>"]
pub const API_VERSION_1_3: u32 = make_api_version(0, 1, 3, 0);
#[doc = "<https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_HEADER_VERSION.html>"]
pub const HEADER_VERSION: u32 = 286;
pub const HEADER_VERSION: u32 = 287;
#[doc = "<https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_HEADER_VERSION_COMPLETE.html>"]
pub const HEADER_VERSION_COMPLETE: u32 = make_api_version(0, 1, 3, HEADER_VERSION);
#[doc = "<https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VkSampleMask.html>"]
Expand Down Expand Up @@ -9319,6 +9319,8 @@ unsafe impl<'a> TaggedStructure for ValidationFeaturesEXT<'a> {
const STRUCTURE_TYPE: StructureType = StructureType::VALIDATION_FEATURES_EXT;
}
unsafe impl ExtendsInstanceCreateInfo for ValidationFeaturesEXT<'_> {}
unsafe impl ExtendsShaderModuleCreateInfo for ValidationFeaturesEXT<'_> {}
unsafe impl ExtendsShaderCreateInfoEXT for ValidationFeaturesEXT<'_> {}
impl<'a> ValidationFeaturesEXT<'a> {
#[inline]
pub fn enabled_validation_features(
Expand Down
2 changes: 1 addition & 1 deletion ash/src/vk/enums.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1840,7 +1840,7 @@ impl DriverId {
#[doc = "Imagination Technologies"]
pub const IMAGINATION_OPEN_SOURCE_MESA: Self = Self(25);
#[doc = "Mesa open source project"]
pub const MESA_AGXV: Self = Self(26);
pub const MESA_HONEYKRISP: Self = Self(26);
#[doc = "Reserved for undisclosed driver project"]
pub const RESERVED_27: Self = Self(27);
}
Expand Down
2 changes: 1 addition & 1 deletion ash/src/vk/extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6112,7 +6112,7 @@ pub type PFN_vkCmdSetRenderingAttachmentLocationsKHR = unsafe extern "system" fn
#[allow(non_camel_case_types)]
pub type PFN_vkCmdSetRenderingInputAttachmentIndicesKHR = unsafe extern "system" fn(
command_buffer: CommandBuffer,
p_location_info: *const RenderingInputAttachmentIndexInfoKHR<'_>,
p_input_attachment_index_info: *const RenderingInputAttachmentIndexInfoKHR<'_>,
);
pub const EXT_SHADER_IMAGE_ATOMIC_INT64_NAME: &CStr =
unsafe { CStr::from_bytes_with_nul_unchecked(b"VK_EXT_shader_image_atomic_int64\0") };
Expand Down

0 comments on commit fb1f7b3

Please sign in to comment.