mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00

* update zig * pkg/fontconfig: clean up @as * pkg/freetype,harfbuzz: clean up @as * pkg/imgui: clean up @as * pkg/macos: clean up @as * pkg/pixman,utf8proc: clean up @as * clean up @as * lots more @as cleanup * undo flatpak changes * clean up @as
28 lines
902 B
Zig
28 lines
902 B
Zig
const std = @import("std");
|
|
const c = @import("c.zig");
|
|
const Font = @import("font.zig").Font;
|
|
const Buffer = @import("buffer.zig").Buffer;
|
|
const Feature = @import("common.zig").Feature;
|
|
|
|
/// Shapes buffer using font turning its Unicode characters content to
|
|
/// positioned glyphs. If features is not NULL, it will be used to control
|
|
/// the features applied during shaping. If two features have the same tag
|
|
/// but overlapping ranges the value of the feature with the higher index
|
|
/// takes precedence.
|
|
pub fn shape(font: Font, buf: Buffer, features: ?[]const Feature) void {
|
|
const hb_feats: [*c]const c.hb_feature_t = feats: {
|
|
if (features) |fs| {
|
|
if (fs.len > 0) break :feats @ptrCast(fs.ptr);
|
|
}
|
|
|
|
break :feats null;
|
|
};
|
|
|
|
c.hb_shape(
|
|
font.handle,
|
|
buf.handle,
|
|
hb_feats,
|
|
if (features) |f| @intCast(f.len) else 0,
|
|
);
|
|
}
|