Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use std::sync::Arc; 2 3pub struct BladeRenderer { 4 gpu: Arc<blade::Context>, 5} 6 7impl BladeRenderer { 8 pub fn new(gpu: Arc<blade::Context>) -> Self { 9 Self { gpu } 10 } 11}