summaryrefslogtreecommitdiffstats
path: root/third_party/rust/ash/src/extensions/khr/display.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/ash/src/extensions/khr/display.rs')
-rwxr-xr-xthird_party/rust/ash/src/extensions/khr/display.rs203
1 files changed, 203 insertions, 0 deletions
diff --git a/third_party/rust/ash/src/extensions/khr/display.rs b/third_party/rust/ash/src/extensions/khr/display.rs
new file mode 100755
index 0000000000..8ea5e62572
--- /dev/null
+++ b/third_party/rust/ash/src/extensions/khr/display.rs
@@ -0,0 +1,203 @@
+use crate::prelude::*;
+use crate::version::{EntryV1_0, InstanceV1_0};
+use crate::vk;
+use crate::RawPtr;
+use std::ffi::CStr;
+use std::mem;
+use std::ptr;
+
+#[derive(Clone)]
+pub struct Display {
+ handle: vk::Instance,
+ display_fn: vk::KhrDisplayFn,
+}
+
+impl Display {
+ pub fn new<E: EntryV1_0, I: InstanceV1_0>(entry: &E, instance: &I) -> Display {
+ let display_fn = vk::KhrDisplayFn::load(|name| unsafe {
+ mem::transmute(entry.get_instance_proc_addr(instance.handle(), name.as_ptr()))
+ });
+ Display {
+ handle: instance.handle(),
+ display_fn,
+ }
+ }
+
+ pub fn name() -> &'static CStr {
+ vk::KhrDisplayFn::name()
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceDisplayPropertiesKHR.html>"]
+ pub unsafe fn get_physical_device_display_properties(
+ &self,
+ physical_device: vk::PhysicalDevice,
+ ) -> VkResult<Vec<vk::DisplayPropertiesKHR>> {
+ let mut count = 0;
+ self.display_fn.get_physical_device_display_properties_khr(
+ physical_device,
+ &mut count,
+ ptr::null_mut(),
+ );
+ let mut v = Vec::with_capacity(count as usize);
+ let err_code = self.display_fn.get_physical_device_display_properties_khr(
+ physical_device,
+ &mut count,
+ v.as_mut_ptr(),
+ );
+ v.set_len(count as usize);
+ match err_code {
+ vk::Result::SUCCESS => Ok(v),
+ _ => Err(err_code),
+ }
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceDisplayPlanePropertiesKHR.html>"]
+ pub unsafe fn get_physical_device_display_plane_properties(
+ &self,
+ physical_device: vk::PhysicalDevice,
+ ) -> VkResult<Vec<vk::DisplayPlanePropertiesKHR>> {
+ let mut count = 0;
+ self.display_fn
+ .get_physical_device_display_plane_properties_khr(
+ physical_device,
+ &mut count,
+ ptr::null_mut(),
+ );
+ let mut v = Vec::with_capacity(count as usize);
+ let err_code = self
+ .display_fn
+ .get_physical_device_display_plane_properties_khr(
+ physical_device,
+ &mut count,
+ v.as_mut_ptr(),
+ );
+ v.set_len(count as usize);
+ match err_code {
+ vk::Result::SUCCESS => Ok(v),
+ _ => Err(err_code),
+ }
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetDisplayPlaneSupportedDisplaysKHR.html>"]
+ pub unsafe fn get_display_plane_supported_displays(
+ &self,
+ physical_device: vk::PhysicalDevice,
+ plane_index: u32,
+ ) -> VkResult<Vec<vk::DisplayKHR>> {
+ let mut count = 0;
+ self.display_fn.get_display_plane_supported_displays_khr(
+ physical_device,
+ plane_index,
+ &mut count,
+ ptr::null_mut(),
+ );
+ let mut v = Vec::with_capacity(count as usize);
+ let err_code = self.display_fn.get_display_plane_supported_displays_khr(
+ physical_device,
+ plane_index,
+ &mut count,
+ v.as_mut_ptr(),
+ );
+ v.set_len(count as usize);
+ match err_code {
+ vk::Result::SUCCESS => Ok(v),
+ _ => Err(err_code),
+ }
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetDisplayModePropertiesKHR.html>"]
+ pub unsafe fn get_display_mode_properties(
+ &self,
+ physical_device: vk::PhysicalDevice,
+ display: vk::DisplayKHR,
+ ) -> VkResult<Vec<vk::DisplayModePropertiesKHR>> {
+ let mut count = 0;
+ self.display_fn.get_display_mode_properties_khr(
+ physical_device,
+ display,
+ &mut count,
+ ptr::null_mut(),
+ );
+ let mut v = Vec::with_capacity(count as usize);
+ let err_code = self.display_fn.get_display_mode_properties_khr(
+ physical_device,
+ display,
+ &mut count,
+ v.as_mut_ptr(),
+ );
+ v.set_len(count as usize);
+ match err_code {
+ vk::Result::SUCCESS => Ok(v),
+ _ => Err(err_code),
+ }
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkCreateDisplayModeKHR.html>"]
+ pub unsafe fn create_display_mode(
+ &self,
+ physical_device: vk::PhysicalDevice,
+ display: vk::DisplayKHR,
+ create_info: &vk::DisplayModeCreateInfoKHR,
+ allocation_callbacks: Option<&vk::AllocationCallbacks>,
+ ) -> VkResult<vk::DisplayModeKHR> {
+ let mut display_mode = mem::MaybeUninit::zeroed();
+ let err_code = self.display_fn.create_display_mode_khr(
+ physical_device,
+ display,
+ create_info,
+ allocation_callbacks.as_raw_ptr(),
+ display_mode.as_mut_ptr(),
+ );
+ match err_code {
+ vk::Result::SUCCESS => Ok(display_mode.assume_init()),
+ _ => Err(err_code),
+ }
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetDisplayPlaneCapabilitiesKHR.html>"]
+ pub unsafe fn get_display_plane_capabilities(
+ &self,
+ physical_device: vk::PhysicalDevice,
+ mode: vk::DisplayModeKHR,
+ plane_index: u32,
+ ) -> VkResult<vk::DisplayPlaneCapabilitiesKHR> {
+ let mut display_plane_capabilities = mem::MaybeUninit::zeroed();
+ let err_code = self.display_fn.get_display_plane_capabilities_khr(
+ physical_device,
+ mode,
+ plane_index,
+ display_plane_capabilities.as_mut_ptr(),
+ );
+ match err_code {
+ vk::Result::SUCCESS => Ok(display_plane_capabilities.assume_init()),
+ _ => Err(err_code),
+ }
+ }
+
+ #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkCreateDisplayPlaneSurfaceKHR.html>"]
+ pub unsafe fn create_display_plane_surface(
+ &self,
+ create_info: &vk::DisplaySurfaceCreateInfoKHR,
+ allocation_callbacks: Option<&vk::AllocationCallbacks>,
+ ) -> VkResult<vk::SurfaceKHR> {
+ let mut surface = mem::MaybeUninit::zeroed();
+ let err_code = self.display_fn.create_display_plane_surface_khr(
+ self.handle,
+ create_info,
+ allocation_callbacks.as_raw_ptr(),
+ surface.as_mut_ptr(),
+ );
+ match err_code {
+ vk::Result::SUCCESS => Ok(surface.assume_init()),
+ _ => Err(err_code),
+ }
+ }
+
+ pub fn fp(&self) -> &vk::KhrDisplayFn {
+ &self.display_fn
+ }
+
+ pub fn instance(&self) -> vk::Instance {
+ self.handle
+ }
+}