freetype: init harfbuzz binding

This commit is contained in:
Ali Chraghi 2022-06-07 18:16:48 +04:30 committed by Stephen Gutekanst
parent 04a0a79ef6
commit 82e1990009
18 changed files with 111 additions and 31 deletions

View file

@ -1,38 +0,0 @@
pub usingnamespace @import("freetype.zig");
pub usingnamespace @import("types.zig");
pub usingnamespace @import("image.zig");
pub usingnamespace @import("color.zig");
pub usingnamespace @import("lcdfilter.zig");
pub const c = @import("c.zig");
pub const Glyph = @import("Glyph.zig");
pub const Stroker = @import("Stroker.zig");
pub const Error = @import("error.zig").Error;
const std = @import("std");
fn refLiterallyAllDecls(comptime T: type) void {
switch (@typeInfo(T)) {
.Struct, .Union, .Opaque, .Enum => {
inline for (comptime std.meta.declarations(T)) |decl| {
if (decl.is_pub) {
refLiterallyAllDecls(@TypeOf(@field(T, decl.name)));
std.testing.refAllDecls(T);
}
}
},
else => {},
}
}
test {
refLiterallyAllDecls(@This());
refLiterallyAllDecls(@import("color.zig"));
refLiterallyAllDecls(@import("error.zig"));
refLiterallyAllDecls(@import("utils.zig"));
refLiterallyAllDecls(@import("Face.zig"));
refLiterallyAllDecls(@import("GlyphSlot.zig"));
refLiterallyAllDecls(@import("Library.zig"));
refLiterallyAllDecls(@import("Outline.zig"));
refLiterallyAllDecls(Glyph);
refLiterallyAllDecls(Stroker);
}