screencapturekit/cg/mod.rs
1//! CoreGraphics value types — re-exported from `apple-cf` so that downstream
2//! crates and other doom-fish bindings see the same `CGRect` / `CGPoint` /
3//! `CGSize` types.
4//!
5//! This module used to vendor its own copies; the canonical implementations
6//! now live in `apple_cf::cg` and this re-export preserves the
7//! `screencapturekit::cg::CGRect` (etc.) public path for backward compatibility.
8
9pub use apple_cf::cg::{CGPoint, CGRect, CGSize};