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

5 lines
123 B
Zig

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