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

5 lines
120 B
Zig

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