#[cfg(feature = "objc2")]
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-metal")]
#[cfg(not(target_os = "watchos"))]
use objc2_metal::*;
use crate::*;
#[cfg(all(
feature = "CGDirectDisplay",
feature = "objc2",
feature = "objc2-metal"
))]
#[cfg(not(target_os = "watchos"))]
#[inline]
pub extern "C-unwind" fn CGDirectDisplayCopyCurrentMetalDevice(
display: CGDirectDisplayID,
) -> Option<Retained<ProtocolObject<dyn MTLDevice>>> {
extern "C-unwind" {
fn CGDirectDisplayCopyCurrentMetalDevice(
display: CGDirectDisplayID,
) -> *mut ProtocolObject<dyn MTLDevice>;
}
let ret = unsafe { CGDirectDisplayCopyCurrentMetalDevice(display) };
unsafe { Retained::from_raw(ret) }
}