blob: a865e9e7965961a5144cf4bea9c2a21cfc82e685 (
plain)
1
2
3
4
5
6
7
8
9
|
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();
}
|