ghostty/pkg/fontconfig/matrix.zig
2024-08-16 16:58:16 -07:00

11 lines
182 B
Zig

const std = @import("std");
const assert = std.debug.assert;
const c = @import("c.zig").c;
pub const Matrix = extern struct {
xx: f64,
xy: f64,
yx: f64,
yy: f64,
};