mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
rename font/font.zig to font/main.zig
This commit is contained in:
@ -6,7 +6,7 @@ const assert = std.debug.assert;
|
||||
const testing = std.testing;
|
||||
const Allocator = std.mem.Allocator;
|
||||
const Atlas = @import("Atlas.zig");
|
||||
const font = @import("font/font.zig");
|
||||
const font = @import("font/main.zig");
|
||||
const terminal = @import("terminal/main.zig");
|
||||
const Terminal = terminal.Terminal;
|
||||
const gl = @import("opengl.zig");
|
||||
|
@ -11,7 +11,7 @@ const testing = std.testing;
|
||||
const Allocator = std.mem.Allocator;
|
||||
const ftc = @import("freetype").c;
|
||||
const Atlas = @import("../Atlas.zig");
|
||||
const Glyph = @import("font.zig").Glyph;
|
||||
const Glyph = @import("main.zig").Glyph;
|
||||
|
||||
const ftok = ftc.FT_Err_Ok;
|
||||
const log = std.log.scoped(.font_face);
|
||||
|
@ -7,9 +7,9 @@ const Allocator = std.mem.Allocator;
|
||||
const Atlas = @import("../Atlas.zig");
|
||||
const ftc = @import("freetype").c;
|
||||
const ftok = ftc.FT_Err_Ok;
|
||||
const Face = @import("font.zig").Face;
|
||||
const Glyph = @import("font.zig").Glyph;
|
||||
const Style = @import("font.zig").Style;
|
||||
const Face = @import("main.zig").Face;
|
||||
const Glyph = @import("main.zig").Glyph;
|
||||
const Style = @import("main.zig").Style;
|
||||
const testFont = @import("test.zig").fontRegular;
|
||||
|
||||
const log = std.log.scoped(.font_family);
|
||||
|
@ -96,7 +96,7 @@ test {
|
||||
_ = @import("Pty.zig");
|
||||
_ = @import("Command.zig");
|
||||
_ = @import("TempDir.zig");
|
||||
_ = @import("font/font.zig");
|
||||
_ = @import("font/main.zig");
|
||||
_ = @import("terminal/Terminal.zig");
|
||||
|
||||
// Libraries
|
||||
|
Reference in New Issue
Block a user