-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extensions: Add VK_KHR_get_surface_capabilities2
- Loading branch information
1 parent
7cf3b4f
commit 9a5a338
Showing
2 changed files
with
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
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) | ||
} | ||
|
||
#[doc = "https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceSurfaceFormats2KHR.html"] | ||
pub unsafe fn get_physical_device_surface_formats2( | ||
&self, | ||
physical_device: vk::PhysicalDevice, | ||
surface_info: &vk::PhysicalDeviceSurfaceInfo2KHR, | ||
) -> VkResult<Vec<vk::SurfaceFormat2KHR>> { | ||
read_into_uninitialized_vector(|count, data| { | ||
self.fp.get_physical_device_surface_formats2_khr( | ||
physical_device, | ||
surface_info, | ||
count, | ||
data | ||
) | ||
}) | ||
} | ||
|
||
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