ghostty/pkg/glslang/test.zig
Mitchell Hashimoto 4afaea19d6 pkg/glslang: shader api
2023-11-17 21:50:35 -08:00

11 lines
270 B
Zig

const glslang = @import("main.zig");
var initialized: bool = false;
/// Call this function before any other tests in this package to ensure that
/// the glslang library is initialized.
pub fn ensureInit() !void {
if (initialized) return;
try glslang.init();
}