-
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.
extension: Add VK_KHR_get_surface_capabilities2
- Loading branch information
1 parent
8a46a15
commit 9ed10f1
Showing
3 changed files
with
86 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,80 @@ | ||
use crate::prelude::*; | ||
use crate::vk; | ||
use crate::{Entry, Instance}; | ||
use std::ffi::CStr; | ||
use std::mem; | ||
|
||
#[derive(Clone)] | ||
pub struct GetSurfaceCapabilities2 { | ||
fp: vk::KhrGetSurfaceCapabilities2Fn, | ||
} | ||
|
||
impl GetSurfaceCapabilities2 { | ||
pub fn new(entry: &Entry, instance: &Instance) -> Self { | ||
let fp = vk::KhrGetSurfaceCapabilities2Fn::load(|name| unsafe { | ||
mem::transmute(entry.get_instance_proc_addr(instance.handle(), name.as_ptr())) | ||
}); | ||
Self { fp } | ||
} | ||
|
||
#[doc = "https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceSurfaceCapabilities2KHR.html"] | ||
pub unsafe fn get_physical_device_surface_capabilities2( | ||
&self, | ||
physical_device: vk::PhysicalDevice, | ||
surface_info: &vk::PhysicalDeviceSurfaceInfo2KHR, | ||
) -> VkResult<vk::SurfaceCapabilities2KHR> { | ||
let mut surface_capabilities = Default::default(); | ||
self.fp | ||
.get_physical_device_surface_capabilities2_khr( | ||
physical_device, | ||
surface_info, | ||
&mut surface_capabilities, | ||
) | ||
.result_with_success(surface_capabilities) | ||
} | ||
|
||
/// Retrieve the number of elements to pass to [`Self::get_physical_device_surface_formats2()`] | ||
pub unsafe fn get_physical_device_surface_formats2_len( | ||
&self, | ||
physical_device: vk::PhysicalDevice, | ||
surface_info: &vk::PhysicalDeviceSurfaceInfo2KHR, | ||
) -> VkResult<usize> { | ||
let mut count = 0; | ||
let err_code = self.fp.get_physical_device_surface_formats2_khr( | ||
physical_device, | ||
surface_info, | ||
&mut count, | ||
std::ptr::null_mut(), | ||
); | ||
err_code.result_with_success(count as usize) | ||
} | ||
|
||
#[doc = "https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceSurfaceFormats2KHR.html"] | ||
/// | ||
/// Call [`Self::get_physical_device_surface_formats2_len()`] to query the number of elements to pass to `out`. | ||
/// Be sure to [`Default::default()`]-initialize these elements and optionally set their `p_next` pointer. | ||
pub unsafe fn get_physical_device_surface_formats2( | ||
&self, | ||
physical_device: vk::PhysicalDevice, | ||
surface_info: &vk::PhysicalDeviceSurfaceInfo2KHR, | ||
out: &mut [vk::SurfaceFormat2KHR], | ||
) -> VkResult<()> { | ||
let mut count = out.len() as u32; | ||
let err_code = self.fp.get_physical_device_surface_formats2_khr( | ||
physical_device, | ||
surface_info, | ||
&mut count, | ||
out.as_mut_ptr(), | ||
); | ||
assert_eq!(count, out.len() as u32); | ||
err_code.result() | ||
} | ||
|
||
pub fn name() -> &'static CStr { | ||
vk::KhrGetSurfaceCapabilities2Fn::name() | ||
} | ||
|
||
pub fn fp(&self) -> &vk::KhrGetSurfaceCapabilities2Fn { | ||
&self.fp | ||
} | ||
} |
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