mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-10-09 11:26:41 +00:00

You can pretty simply reproduce a crash on `main` in `Debug` mode by running `printf "مرحبًا \n"` with your primary font set to one that supports Arabic such as Cascadia Code/Mono or Kawkab Mono, which will cause CoreText to output the shaped glyphs non-monotonically which hits the assert we have in the renderer. In `ReleaseFast` this assert is skipped and because we already moved ahead to the space glyph (which belongs at the end but is emitted first) all of the glyphs up to that point are lost. I believe this is probably the cause of #8280, I tested and this change seems to fix it at least. Included in this PR is a little optimization: we were allocating buffers to copy glyphs etc. from runs to every time, even though CoreText provides `CTRunGet*Ptr` functions which get *pointers* to the internal storage of these values- these aren't guaranteed to return a usable pointer but in that case we can always fall back to allocating again. Also avoided allocation while processing glyphs by ensuring capacity beforehand immediately after creating the `CTLine`. The performance impact of this PR is negligible on my machine and actually seems to be positive, probably due to avoiding allocations if I had to guess.
39 lines
1.8 KiB
Zig
39 lines
1.8 KiB
Zig
const font = @import("text/font.zig");
|
|
const font_collection = @import("text/font_collection.zig");
|
|
const font_descriptor = @import("text/font_descriptor.zig");
|
|
const font_manager = @import("text/font_manager.zig");
|
|
const frame = @import("text/frame.zig");
|
|
const framesetter = @import("text/framesetter.zig");
|
|
const typesetter = @import("text/typesetter.zig");
|
|
const line = @import("text/line.zig");
|
|
const paragraph_style = @import("text/paragraph_style.zig");
|
|
const run = @import("text/run.zig");
|
|
const stylized_strings = @import("text/stylized_strings.zig");
|
|
|
|
pub const c = @import("text/c.zig").c;
|
|
pub const Font = font.Font;
|
|
pub const FontTableTag = font.FontTableTag;
|
|
pub const FontCollection = font_collection.FontCollection;
|
|
pub const FontDescriptor = font_descriptor.FontDescriptor;
|
|
pub const FontAttribute = font_descriptor.FontAttribute;
|
|
pub const FontTraitKey = font_descriptor.FontTraitKey;
|
|
pub const FontVariationAxisKey = font_descriptor.FontVariationAxisKey;
|
|
pub const FontSymbolicTraits = font_descriptor.FontSymbolicTraits;
|
|
pub const createFontDescriptorsFromURL = font_manager.createFontDescriptorsFromURL;
|
|
pub const createFontDescriptorsFromData = font_manager.createFontDescriptorsFromData;
|
|
pub const createFontDescriptorFromData = font_manager.createFontDescriptorFromData;
|
|
pub const Frame = frame.Frame;
|
|
pub const Framesetter = framesetter.Framesetter;
|
|
pub const Typesetter = typesetter.Typesetter;
|
|
pub const Line = line.Line;
|
|
pub const ParagraphStyle = paragraph_style.ParagraphStyle;
|
|
pub const ParagraphStyleSetting = paragraph_style.ParagraphStyleSetting;
|
|
pub const ParagraphStyleSpecifier = paragraph_style.ParagraphStyleSpecifier;
|
|
pub const WritingDirection = paragraph_style.WritingDirection;
|
|
pub const Run = run.Run;
|
|
pub const StringAttribute = stylized_strings.StringAttribute;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
}
|