Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 363 Bytes

File metadata and controls

21 lines (15 loc) · 363 Bytes

libxcvt-zig

A port of the libxcvt 0.1.2 to Zig.

Usage

Zig Version: 0.13.0

const cvt = @import("cvt");

test {
    const mode = cvt.compute(.{
        .width = 800,
        .height = 600,
        .refresh_rate = 60.0,
    });

    std.debug.print("MODE = {}\n", .{mode});
}