-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extensions/ext: Add VK_EXT_swapchain_maintenance1 (#786)
- Loading branch information
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
use crate::prelude::*; | ||
use crate::vk; | ||
use crate::{Device, Instance}; | ||
use std::ffi::CStr; | ||
use std::mem; | ||
|
||
/// <https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_swapchain_maintenance1.html> | ||
#[derive(Clone)] | ||
pub struct SwapchainMaintenance1 { | ||
handle: vk::Device, | ||
fp: vk::ExtSwapchainMaintenance1Fn, | ||
} | ||
|
||
impl SwapchainMaintenance1 { | ||
pub fn new(instance: &Instance, device: &Device) -> Self { | ||
let handle = device.handle(); | ||
let fp = vk::ExtSwapchainMaintenance1Fn::load(|name| unsafe { | ||
mem::transmute(instance.get_device_proc_addr(handle, name.as_ptr())) | ||
}); | ||
Self { handle, fp } | ||
} | ||
|
||
/// <https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/vkReleaseSwapchainImagesEXT.html> | ||
#[inline] | ||
pub unsafe fn release_swapchain_images( | ||
&self, | ||
release_info: &vk::ReleaseSwapchainImagesInfoEXT<'_>, | ||
) -> VkResult<()> { | ||
(self.fp.release_swapchain_images_ext)(self.handle, release_info).result() | ||
} | ||
|
||
pub const NAME: &'static CStr = vk::ExtSwapchainMaintenance1Fn::NAME; | ||
|
||
#[inline] | ||
pub fn fp(&self) -> &vk::ExtSwapchainMaintenance1Fn { | ||
&self.fp | ||
} | ||
|
||
#[inline] | ||
pub fn device(&self) -> vk::Device { | ||
self.handle | ||
} | ||
} |