gpu: make ComputePipeline an enum with methods

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-15 00:12:48 -07:00 committed by Stephen Gutekanst
parent e42554fc3f
commit 62a991090a
3 changed files with 7 additions and 3 deletions

View file

@ -0,0 +1,5 @@
pub const ComputePipeline = enum(usize) {
_,
pub const none: ComputePipeline = @intToEnum(ComputePipeline, 0);
};