mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +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
7 lines
269 B
Rust
7 lines
269 B
Rust
pub unsafe fn pointer_to_string(pointer: *mut cef::sys::_cef_string_utf16_t) -> String {
|
|
let str = unsafe { (*pointer).str_ };
|
|
let len = unsafe { (*pointer).length };
|
|
let slice = unsafe { std::slice::from_raw_parts(str, len) };
|
|
String::from_utf16(slice).unwrap()
|
|
}
|