-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extensions/khr: Add VK_KHR_external_fence_win32 (#582)
- Loading branch information
Showing
3 changed files
with
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
use crate::prelude::*; | ||
use crate::vk; | ||
use crate::{Device, Instance}; | ||
use std::ffi::CStr; | ||
use std::mem; | ||
use std::ptr; | ||
|
||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/VK_KHR_external_fence_win32.html> | ||
#[derive(Clone)] | ||
pub struct ExternalFenceWin32 { | ||
handle: vk::Device, | ||
fp: vk::KhrExternalFenceWin32Fn, | ||
} | ||
|
||
impl ExternalFenceWin32 { | ||
pub fn new(instance: &Instance, device: &Device) -> Self { | ||
let handle = device.handle(); | ||
let fp = vk::KhrExternalFenceWin32Fn::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/vkImportFenceWin32HandleKHR.html> | ||
pub unsafe fn import_fence_win32_handle( | ||
&self, | ||
import_info: &vk::ImportFenceWin32HandleInfoKHR, | ||
) -> VkResult<()> { | ||
self.fp | ||
.import_fence_win32_handle_khr(self.handle, import_info) | ||
.result() | ||
} | ||
|
||
/// <https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkGetFenceWin32HandleKHR.html> | ||
pub unsafe fn get_fence_win32_handle( | ||
&self, | ||
get_info: &vk::FenceGetWin32HandleInfoKHR, | ||
) -> VkResult<vk::HANDLE> { | ||
let mut handle = ptr::null_mut(); | ||
self.fp | ||
.get_fence_win32_handle_khr(self.handle, get_info, &mut handle) | ||
.result_with_success(handle) | ||
} | ||
|
||
pub fn name() -> &'static CStr { | ||
vk::KhrExternalFenceWin32Fn::name() | ||
} | ||
|
||
pub fn fp(&self) -> &vk::KhrExternalFenceWin32Fn { | ||
&self.fp | ||
} | ||
|
||
pub fn device(&self) -> vk::Device { | ||
self.handle | ||
} | ||
} |
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