extensions/khr: Add VK_KHR_device_group (#631)
This commit is contained in:
parent
671f98ce55
commit
71d45e46f7
|
@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Added `VK_EXT_image_drm_format_modifier` device extension (#603)
|
- Added `VK_EXT_image_drm_format_modifier` device extension (#603)
|
||||||
- Added new functions to `VK_KHR_swapchain`, available since Vulkan 1.1 (#629)
|
- Added new functions to `VK_KHR_swapchain`, available since Vulkan 1.1 (#629)
|
||||||
- Added `VK_KHR_device_group_creation` instance extension (#630)
|
- Added `VK_KHR_device_group_creation` instance extension (#630)
|
||||||
|
- Added `VK_KHR_device_group` device extension (#631)
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
|
159
ash/src/extensions/khr/device_group.rs
Normal file
159
ash/src/extensions/khr/device_group.rs
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
#[cfg(doc)]
|
||||||
|
use super::Swapchain;
|
||||||
|
use crate::prelude::*;
|
||||||
|
use crate::vk;
|
||||||
|
use crate::{Device, Instance};
|
||||||
|
use std::ffi::CStr;
|
||||||
|
use std::mem;
|
||||||
|
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_device_group.html>
|
||||||
|
#[derive(Clone)]
|
||||||
|
pub struct DeviceGroup {
|
||||||
|
handle: vk::Device,
|
||||||
|
fp: vk::KhrDeviceGroupFn,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DeviceGroup {
|
||||||
|
pub fn new(instance: &Instance, device: &Device) -> Self {
|
||||||
|
let handle = device.handle();
|
||||||
|
let fp = vk::KhrDeviceGroupFn::load(|name| unsafe {
|
||||||
|
mem::transmute(instance.get_device_proc_addr(handle, name.as_ptr()))
|
||||||
|
});
|
||||||
|
Self { handle, fp }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupPeerMemoryFeaturesKHR.html>
|
||||||
|
pub unsafe fn get_device_group_peer_memory_features(
|
||||||
|
&self,
|
||||||
|
heap_index: u32,
|
||||||
|
local_device_index: u32,
|
||||||
|
remote_device_index: u32,
|
||||||
|
) -> vk::PeerMemoryFeatureFlags {
|
||||||
|
let mut peer_memory_features = mem::zeroed();
|
||||||
|
(self.fp.get_device_group_peer_memory_features_khr)(
|
||||||
|
self.handle,
|
||||||
|
heap_index,
|
||||||
|
local_device_index,
|
||||||
|
remote_device_index,
|
||||||
|
&mut peer_memory_features,
|
||||||
|
);
|
||||||
|
peer_memory_features
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCmdSetDeviceMaskKHR.html>
|
||||||
|
pub unsafe fn cmd_set_device_mask(&self, command_buffer: vk::CommandBuffer, device_mask: u32) {
|
||||||
|
(self.fp.cmd_set_device_mask_khr)(command_buffer, device_mask)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCmdDispatchBaseKHR.html>
|
||||||
|
pub unsafe fn cmd_dispatch_base(
|
||||||
|
&self,
|
||||||
|
command_buffer: vk::CommandBuffer,
|
||||||
|
base_group: (u32, u32, u32),
|
||||||
|
group_count: (u32, u32, u32),
|
||||||
|
) {
|
||||||
|
(self.fp.cmd_dispatch_base_khr)(
|
||||||
|
command_buffer,
|
||||||
|
base_group.0,
|
||||||
|
base_group.1,
|
||||||
|
base_group.2,
|
||||||
|
group_count.0,
|
||||||
|
group_count.1,
|
||||||
|
group_count.2,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Requires [`VK_KHR_surface`] to be enabled.
|
||||||
|
///
|
||||||
|
/// Also available as [`Swapchain::get_device_group_present_capabilities()`] since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupPresentCapabilitiesKHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_surface`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_surface.html
|
||||||
|
pub unsafe fn get_device_group_present_capabilities(
|
||||||
|
&self,
|
||||||
|
device_group_present_capabilities: &mut vk::DeviceGroupPresentCapabilitiesKHR,
|
||||||
|
) -> VkResult<()> {
|
||||||
|
(self.fp.get_device_group_present_capabilities_khr)(
|
||||||
|
self.handle,
|
||||||
|
device_group_present_capabilities,
|
||||||
|
)
|
||||||
|
.result()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Requires [`VK_KHR_surface`] to be enabled.
|
||||||
|
///
|
||||||
|
/// Also available as [`Swapchain::get_device_group_surface_present_modes()`] since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupSurfacePresentModesKHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_surface`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_surface.html
|
||||||
|
pub unsafe fn get_device_group_surface_present_modes(
|
||||||
|
&self,
|
||||||
|
surface: vk::SurfaceKHR,
|
||||||
|
) -> VkResult<vk::DeviceGroupPresentModeFlagsKHR> {
|
||||||
|
let mut modes = mem::zeroed();
|
||||||
|
(self.fp.get_device_group_surface_present_modes_khr)(self.handle, surface, &mut modes)
|
||||||
|
.result_with_success(modes)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Requires [`VK_KHR_surface`] to be enabled.
|
||||||
|
///
|
||||||
|
/// Also available as [`Swapchain::get_physical_device_present_rectangles()`] since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetPhysicalDevicePresentRectanglesKHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_surface`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_surface.html
|
||||||
|
pub unsafe fn get_physical_device_present_rectangles(
|
||||||
|
&self,
|
||||||
|
physical_device: vk::PhysicalDevice,
|
||||||
|
surface: vk::SurfaceKHR,
|
||||||
|
) -> VkResult<Vec<vk::Rect2D>> {
|
||||||
|
read_into_uninitialized_vector(|count, data| {
|
||||||
|
(self.fp.get_physical_device_present_rectangles_khr)(
|
||||||
|
physical_device,
|
||||||
|
surface,
|
||||||
|
count,
|
||||||
|
data,
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// On success, returns the next image's index and whether the swapchain is suboptimal for the surface.
|
||||||
|
///
|
||||||
|
/// Requires [`VK_KHR_swapchain`] to be enabled.
|
||||||
|
///
|
||||||
|
/// Also available as [`Swapchain::acquire_next_image2()`] since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkAcquireNextImage2KHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_swapchain`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_swapchain.html
|
||||||
|
pub unsafe fn acquire_next_image2(
|
||||||
|
&self,
|
||||||
|
acquire_info: &vk::AcquireNextImageInfoKHR,
|
||||||
|
) -> VkResult<(u32, bool)> {
|
||||||
|
let mut index = 0;
|
||||||
|
let err_code = (self.fp.acquire_next_image2_khr)(self.handle, acquire_info, &mut index);
|
||||||
|
match err_code {
|
||||||
|
vk::Result::SUCCESS => Ok((index, false)),
|
||||||
|
vk::Result::SUBOPTIMAL_KHR => Ok((index, true)),
|
||||||
|
_ => Err(err_code),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub const fn name() -> &'static CStr {
|
||||||
|
vk::KhrDeviceGroupFn::name()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn fp(&self) -> &vk::KhrDeviceGroupFn {
|
||||||
|
&self.fp
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn device(&self) -> vk::Device {
|
||||||
|
self.handle
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,6 +5,7 @@ use std::ffi::CStr;
|
||||||
use std::mem;
|
use std::mem;
|
||||||
use std::ptr;
|
use std::ptr;
|
||||||
|
|
||||||
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_device_group_creation.html>
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct DeviceGroupCreation {
|
pub struct DeviceGroupCreation {
|
||||||
handle: vk::Instance,
|
handle: vk::Instance,
|
||||||
|
|
|
@ -4,6 +4,7 @@ pub use self::buffer_device_address::BufferDeviceAddress;
|
||||||
pub use self::copy_commands2::CopyCommands2;
|
pub use self::copy_commands2::CopyCommands2;
|
||||||
pub use self::create_render_pass2::CreateRenderPass2;
|
pub use self::create_render_pass2::CreateRenderPass2;
|
||||||
pub use self::deferred_host_operations::DeferredHostOperations;
|
pub use self::deferred_host_operations::DeferredHostOperations;
|
||||||
|
pub use self::device_group::DeviceGroup;
|
||||||
pub use self::device_group_creation::DeviceGroupCreation;
|
pub use self::device_group_creation::DeviceGroupCreation;
|
||||||
pub use self::display::Display;
|
pub use self::display::Display;
|
||||||
pub use self::display_swapchain::DisplaySwapchain;
|
pub use self::display_swapchain::DisplaySwapchain;
|
||||||
|
@ -40,6 +41,7 @@ mod buffer_device_address;
|
||||||
mod copy_commands2;
|
mod copy_commands2;
|
||||||
mod create_render_pass2;
|
mod create_render_pass2;
|
||||||
mod deferred_host_operations;
|
mod deferred_host_operations;
|
||||||
|
mod device_group;
|
||||||
mod device_group_creation;
|
mod device_group_creation;
|
||||||
mod display;
|
mod display;
|
||||||
mod display_swapchain;
|
mod display_swapchain;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#[cfg(doc)]
|
||||||
|
use super::DeviceGroup;
|
||||||
use crate::prelude::*;
|
use crate::prelude::*;
|
||||||
use crate::vk;
|
use crate::vk;
|
||||||
use crate::RawPtr;
|
use crate::RawPtr;
|
||||||
|
@ -97,9 +99,15 @@ impl Swapchain {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Only available since Vulkan 1.1.
|
/// Only available since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// Also available as [`DeviceGroup::get_device_group_present_capabilities()`]
|
||||||
|
/// when [`VK_KHR_surface`] is enabled.
|
||||||
///
|
///
|
||||||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupPresentCapabilitiesKHR.html>
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupPresentCapabilitiesKHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_surface`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_surface.html
|
||||||
pub unsafe fn get_device_group_present_capabilities(
|
pub unsafe fn get_device_group_present_capabilities(
|
||||||
&self,
|
&self,
|
||||||
device_group_present_capabilities: &mut vk::DeviceGroupPresentCapabilitiesKHR,
|
device_group_present_capabilities: &mut vk::DeviceGroupPresentCapabilitiesKHR,
|
||||||
|
@ -111,9 +119,15 @@ impl Swapchain {
|
||||||
.result()
|
.result()
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Only available since Vulkan 1.1.
|
/// Only available since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// Also available as [`DeviceGroup::get_device_group_surface_present_modes()`]
|
||||||
|
/// when [`VK_KHR_surface`] is enabled.
|
||||||
///
|
///
|
||||||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupSurfacePresentModesKHR.html>
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetDeviceGroupSurfacePresentModesKHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_surface`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_surface.html
|
||||||
pub unsafe fn get_device_group_surface_present_modes(
|
pub unsafe fn get_device_group_surface_present_modes(
|
||||||
&self,
|
&self,
|
||||||
surface: vk::SurfaceKHR,
|
surface: vk::SurfaceKHR,
|
||||||
|
@ -123,9 +137,15 @@ impl Swapchain {
|
||||||
.result_with_success(modes)
|
.result_with_success(modes)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Only available since Vulkan 1.1.
|
/// Only available since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// Also available as [`DeviceGroup::get_physical_device_present_rectangles()`]
|
||||||
|
/// when [`VK_KHR_surface`] is enabled.
|
||||||
///
|
///
|
||||||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetPhysicalDevicePresentRectanglesKHR.html>
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetPhysicalDevicePresentRectanglesKHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_surface`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_surface.html
|
||||||
pub unsafe fn get_physical_device_present_rectangles(
|
pub unsafe fn get_physical_device_present_rectangles(
|
||||||
&self,
|
&self,
|
||||||
physical_device: vk::PhysicalDevice,
|
physical_device: vk::PhysicalDevice,
|
||||||
|
@ -143,9 +163,15 @@ impl Swapchain {
|
||||||
|
|
||||||
/// On success, returns the next image's index and whether the swapchain is suboptimal for the surface.
|
/// On success, returns the next image's index and whether the swapchain is suboptimal for the surface.
|
||||||
///
|
///
|
||||||
/// Only available since Vulkan 1.1.
|
/// Only available since [Vulkan 1.1].
|
||||||
|
///
|
||||||
|
/// Also available as [`DeviceGroup::acquire_next_image2()`]
|
||||||
|
/// when [`VK_KHR_swapchain`] is enabled.
|
||||||
///
|
///
|
||||||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkAcquireNextImage2KHR.html>
|
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkAcquireNextImage2KHR.html>
|
||||||
|
///
|
||||||
|
/// [Vulkan 1.1]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_VERSION_1_1.html
|
||||||
|
/// [`VK_KHR_swapchain`]: https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_swapchain.html
|
||||||
pub unsafe fn acquire_next_image2(
|
pub unsafe fn acquire_next_image2(
|
||||||
&self,
|
&self,
|
||||||
acquire_info: &vk::AcquireNextImageInfoKHR,
|
acquire_info: &vk::AcquireNextImageInfoKHR,
|
||||||
|
|
Loading…
Reference in a new issue