pub trait KhrXcbSurfaceExtension: InstanceV1_0 {
    const METADATA: Extension = KHR_XCB_SURFACE_EXTENSION;

    // Provided methods
    unsafe fn create_xcb_surface_khr(
        &self,
        create_info: &XcbSurfaceCreateInfoKHR,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<SurfaceKHR> { ... }
    unsafe fn get_physical_device_xcb_presentation_support_khr(
        &self,
        physical_device: PhysicalDevice,
        queue_family_index: u32,
        connection: *mut xcb_connection_t,
        visual_id: xcb_visualid_t
    ) -> Bool32 { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_XCB_SURFACE_EXTENSION

The metadata for this extension.

Provided Methods§

Implementors§