adding spirv header parsing

This commit is contained in:
2025-12-23 21:44:05 +01:00
parent 977d05f15d
commit b4ff6f559b
3 changed files with 122 additions and 3 deletions

View File

@@ -5,7 +5,9 @@ pub const Image = @import("Image.zig");
pub const Interpreter = @import("Interpreter.zig");
pub const Module = @import("Module.zig");
pub const State = @import("State.zig");
const opcode = @import("opcode.zig");
const spv_data = @import("spv_data.zig");
pub const SpvVoid = void;
pub const SpvByte = u8;
@@ -18,4 +20,5 @@ test {
std.testing.refAllDecls(Module);
std.testing.refAllDecls(State);
std.testing.refAllDecls(opcode);
std.testing.refAllDecls(spv_data);
}