mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-27 22:48:12 +08:00
* WIP accelerade offscreen canvas implementation * Implement vulkan dmabuf import * Add fps printing * Add feature gates * Forgot to add file * Experimental windows support * Cast ptr to isize * Remove testing chrome://flags url * Experimental macos support for texture import * Cleanup code and improve latency / frame pacing * Add path for importing textures on windows through dx12 * Update doc comment * Import textures through metal on macos * Review cleanup --------- Co-authored-by: Timon Schelling <me@timon.zip>
8 lines
322 B
Rust
8 lines
322 B
Rust
pub(crate) static APP_NAME: &str = "Graphite";
|
|
pub(crate) static APP_ID: &str = "rs.graphite.GraphiteEditor";
|
|
pub(crate) static APP_DIRECTORY_NAME: &str = "graphite-editor";
|
|
|
|
// CEF configuration constants
|
|
pub(crate) const CEF_WINDOWLESS_FRAME_RATE: i32 = 60;
|
|
pub(crate) const CEF_MESSAGE_LOOP_MAX_ITERATIONS: usize = 10;
|