mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 10:58:04 +08:00
* Extract CEF rendered UI into a separate process and crate * Review * Review * Review * Review * Remove necessary workarounds * Block on frame copy ack * Crop and resample frames correctly * Skip blank frames * Fix deps * Fix fmt * Fix clippy warning * Review * Fix todo
26 lines
657 B
Rust
26 lines
657 B
Rust
mod browser_process_app;
|
|
mod browser_process_client;
|
|
mod browser_process_handler;
|
|
|
|
mod render_process_app;
|
|
mod render_process_handler;
|
|
mod render_process_v8_handler;
|
|
|
|
mod context_menu_handler;
|
|
mod display_handler;
|
|
mod life_span_handler;
|
|
mod load_handler;
|
|
mod request_handler;
|
|
mod resource_handler;
|
|
mod resource_request_handler;
|
|
mod scheme_handler_factory;
|
|
|
|
pub(super) mod render_handler;
|
|
|
|
pub(super) mod task;
|
|
|
|
pub(super) use browser_process_app::BrowserProcessAppImpl;
|
|
pub(super) use browser_process_client::BrowserProcessClientImpl;
|
|
pub(super) use render_process_app::RenderProcessAppImpl;
|
|
pub(super) use scheme_handler_factory::SchemeHandlerFactoryImpl;
|