mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-20 10:46:07 +03:00
16 lines
294 B
Zig
16 lines
294 B
Zig
const std = @import("std");
|
|
|
|
pub const png = @import("png.zig");
|
|
pub const jpeg = @import("jpeg.zig");
|
|
pub const swizzle = @import("swizzle.zig");
|
|
|
|
pub const ImageData = struct {
|
|
width: u32,
|
|
height: u32,
|
|
data: []const u8,
|
|
};
|
|
|
|
test {
|
|
std.testing.refAllDeclsRecursive(@This());
|
|
}
|