mach/gpu/src/instance.zig
Stephen Gutekanst 1b2ca96541 gpu: fix filename case sensitivity
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-08-12 00:43:43 -07:00

6 lines
175 B
Zig

pub const Instance = enum(usize) {
_,
// TODO: verify there is a use case for nullable value of this type.
pub const none: Instance = @intToEnum(Instance, 0);
};