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
#![allow(dead_code)] use crate::prelude::*; use crate::version::{EntryV1_0, InstanceV1_0}; use crate::vk; use crate::RawPtr; use std::ffi::CStr; use std::mem; #[derive(Clone)] pub struct XcbSurface { handle: vk::Instance, xcb_surface_fn: vk::KhrXcbSurfaceFn, } impl XcbSurface { pub fn new<E: EntryV1_0, I: InstanceV1_0>(entry: &E, instance: &I) -> XcbSurface { let surface_fn = vk::KhrXcbSurfaceFn::load(|name| unsafe { mem::transmute(entry.get_instance_proc_addr(instance.handle(), name.as_ptr())) }); XcbSurface { handle: instance.handle(), xcb_surface_fn: surface_fn, } } pub fn name() -> &'static CStr { vk::KhrXcbSurfaceFn::name() } #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkCreateXcbSurfaceKHR.html>"] pub unsafe fn create_xcb_surface( &self, create_info: &vk::XcbSurfaceCreateInfoKHR, allocation_callbacks: Option<&vk::AllocationCallbacks>, ) -> VkResult<vk::SurfaceKHR> { let mut surface = mem::zeroed(); let err_code = self.xcb_surface_fn.create_xcb_surface_khr( self.handle, create_info, allocation_callbacks.as_raw_ptr(), &mut surface, ); match err_code { vk::Result::SUCCESS => Ok(surface), _ => Err(err_code), } } #[doc = "<https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/vkGetPhysicalDeviceXcbPresentationSupportKHR.html"] pub unsafe fn get_physical_device_xcb_presentation_support( &self, physical_device: vk::PhysicalDevice, queue_family_index: u32, connection: &mut vk::xcb_connection_t, visual_id: vk::xcb_visualid_t, ) -> bool { let b = self .xcb_surface_fn .get_physical_device_xcb_presentation_support_khr( physical_device, queue_family_index, connection, visual_id, ); b > 0 } pub fn fp(&self) -> &vk::KhrXcbSurfaceFn { &self.xcb_surface_fn } pub fn instance(&self) -> vk::Instance { self.handle } }