1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 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 } }