mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 00:36:07 +03:00
14 lines
276 B
Zig
14 lines
276 B
Zig
const Face = @This();
|
|
|
|
const std = @import("std");
|
|
const c = @import("c.zig");
|
|
const errors = @import("errors.zig");
|
|
const Error = errors.Error;
|
|
const intToError = errors.intToError;
|
|
|
|
handle: c.FT_Face,
|
|
|
|
pub fn deinit(self: Face) void {
|
|
_ = c.FT_Done_Face(self.handle);
|
|
}
|