mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
log the renderer on startup
This commit is contained in:
@ -6,6 +6,7 @@ const fontconfig = @import("fontconfig");
|
|||||||
const freetype = @import("freetype");
|
const freetype = @import("freetype");
|
||||||
const harfbuzz = @import("harfbuzz");
|
const harfbuzz = @import("harfbuzz");
|
||||||
const tracy = @import("tracy");
|
const tracy = @import("tracy");
|
||||||
|
const renderer = @import("renderer.zig");
|
||||||
|
|
||||||
const App = @import("App.zig");
|
const App = @import("App.zig");
|
||||||
const cli_args = @import("cli_args.zig");
|
const cli_args = @import("cli_args.zig");
|
||||||
@ -19,6 +20,7 @@ pub fn main() !void {
|
|||||||
if (options.fontconfig) {
|
if (options.fontconfig) {
|
||||||
log.info("dependency fontconfig={d}", .{fontconfig.version()});
|
log.info("dependency fontconfig={d}", .{fontconfig.version()});
|
||||||
}
|
}
|
||||||
|
log.info("renderer={}", .{renderer.Renderer});
|
||||||
|
|
||||||
const GPA = std.heap.GeneralPurposeAllocator(.{});
|
const GPA = std.heap.GeneralPurposeAllocator(.{});
|
||||||
var gpa: ?GPA = gpa: {
|
var gpa: ?GPA = gpa: {
|
||||||
|
Reference in New Issue
Block a user