Skip to main content

screencapturekit/cm/
iosurface.rs

1//! `IOSurface` — re-exported from `apple-cf` so all doom-fish crates share
2//! one canonical `IOSurface` type.
3//!
4//! Metal-specific extension methods live on the `IOSurfaceMetalExt` trait in
5//! `screencapturekit::metal` (bring it into scope to call `surface.info()` /
6//! `surface.create_metal_textures(...)`, etc.).
7
8pub use apple_cf::iosurface::{
9    IOSurface, IOSurfaceLockGuard, IOSurfaceLockOptions, PlaneProperties,
10};