gpu: make ShaderModule an enum with methods

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-15 00:23:33 -07:00 committed by Stephen Gutekanst
parent 40306320f6
commit 4413860d92
3 changed files with 7 additions and 3 deletions

View file

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