mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-08-02 14:57:31 +03:00
font: add noop endFrame calls to all other shapers
This commit is contained in:
@ -74,6 +74,10 @@ pub const Shaper = struct {
|
||||
self.hb_feats.deinit(self.alloc);
|
||||
}
|
||||
|
||||
pub fn endFrame(self: *const Shaper) void {
|
||||
_ = self;
|
||||
}
|
||||
|
||||
/// Returns an iterator that returns one text run at a time for the
|
||||
/// given terminal row. Note that text runs are are only valid one at a time
|
||||
/// for a Shaper struct since they share state.
|
||||
|
@ -64,6 +64,10 @@ pub const Shaper = struct {
|
||||
self.run_state.deinit(self.alloc);
|
||||
}
|
||||
|
||||
pub fn endFrame(self: *const Shaper) void {
|
||||
_ = self;
|
||||
}
|
||||
|
||||
pub fn runIterator(
|
||||
self: *Shaper,
|
||||
grid: *SharedGrid,
|
||||
|
@ -52,6 +52,10 @@ pub const Shaper = struct {
|
||||
self.* = undefined;
|
||||
}
|
||||
|
||||
pub fn endFrame(self: *const Shaper) void {
|
||||
_ = self;
|
||||
}
|
||||
|
||||
/// Returns an iterator that returns one text run at a time for the
|
||||
/// given terminal row. Note that text runs are are only valid one at a time
|
||||
/// for a Shaper struct since they share state.
|
||||
|
Reference in New Issue
Block a user