open-gpui-scap 0.1.0-beta.1

Open GPUI-maintained fork of the scap screen capture library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Cross Platform, Performant and High Quality screen recordings

pub mod capturer;
pub mod frame;
mod targets;
mod utils;

// Helper Methods
pub use targets::{get_all_targets, get_main_display};
pub use targets::{Display, Target};
pub use utils::has_permission;
pub use utils::is_supported;
pub use utils::request_permission;

#[cfg(target_os = "macos")]
pub mod engine {
    pub use crate::capturer::engine::mac;
}