mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-20 00:18:53 +03:00
10 lines
194 B
Zig
10 lines
194 B
Zig
const c = @import("c.zig").c;
|
|
|
|
pub fn init() !void {
|
|
if (c.glslang_initialize_process() == 0) return error.GlslangInitFailed;
|
|
}
|
|
|
|
pub fn finalize() void {
|
|
c.glslang_finalize_process();
|
|
}
|