Struct ash::extensions::khr::Surface
source · pub struct Surface { /* private fields */ }
Implementations§
source§impl Surface
impl Surface
pub fn new(entry: &Entry, instance: &Instance) -> Self
sourcepub unsafe fn get_physical_device_surface_support(
&self,
physical_device: PhysicalDevice,
queue_family_index: u32,
surface: SurfaceKHR
) -> VkResult<bool>
pub unsafe fn get_physical_device_surface_support( &self, physical_device: PhysicalDevice, queue_family_index: u32, surface: SurfaceKHR ) -> VkResult<bool>
sourcepub unsafe fn get_physical_device_surface_present_modes(
&self,
physical_device: PhysicalDevice,
surface: SurfaceKHR
) -> VkResult<Vec<PresentModeKHR>>
pub unsafe fn get_physical_device_surface_present_modes( &self, physical_device: PhysicalDevice, surface: SurfaceKHR ) -> VkResult<Vec<PresentModeKHR>>
sourcepub unsafe fn get_physical_device_surface_capabilities(
&self,
physical_device: PhysicalDevice,
surface: SurfaceKHR
) -> VkResult<SurfaceCapabilitiesKHR>
pub unsafe fn get_physical_device_surface_capabilities( &self, physical_device: PhysicalDevice, surface: SurfaceKHR ) -> VkResult<SurfaceCapabilitiesKHR>
sourcepub unsafe fn get_physical_device_surface_formats(
&self,
physical_device: PhysicalDevice,
surface: SurfaceKHR
) -> VkResult<Vec<SurfaceFormatKHR>>
pub unsafe fn get_physical_device_surface_formats( &self, physical_device: PhysicalDevice, surface: SurfaceKHR ) -> VkResult<Vec<SurfaceFormatKHR>>
sourcepub unsafe fn destroy_surface(
&self,
surface: SurfaceKHR,
allocation_callbacks: Option<&AllocationCallbacks>
)
pub unsafe fn destroy_surface( &self, surface: SurfaceKHR, allocation_callbacks: Option<&AllocationCallbacks> )
pub const fn name() -> &'static CStr
pub fn fp(&self) -> &KhrSurfaceFn
pub fn instance(&self) -> Instance
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Surface
impl RefUnwindSafe for Surface
impl Send for Surface
impl Sync for Surface
impl Unpin for Surface
impl UnwindSafe for Surface
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more