mach/gpu/src/Instance.zig
Stephen Gutekanst 1fefc7e66b gpu: make Instance an enum with methods
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-08-12 00:43:43 -07:00

5 lines
102 B
Zig

pub const Instance = enum(usize) {
_,
pub const none: Instance = @intToEnum(Instance, 0);
};